Bug Summary

File:lwan-thread.c
Warning:line 867, column 31
Array subscript is undefined

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-thread.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 -mframe-pointer=all -fmath-errno -fno-rounding-math -mconstructor-aliases -fno-plt -munwind-tables -target-cpu x86-64 -fno-split-dwarf-inlining -debugger-tuning=gdb -resource-dir /usr/lib/clang/11.1.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/11.1.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 -stack-protector 2 -fgnuc-version=4.2.1 -analyzer-output=html -faddrsig -o /home/buildbot/lwan-worker/clang-analyze/CLANG/2021-05-16-161439-416621-1 -x c /home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.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 <errno(*__errno_location ()).h>
24#include <fcntl.h>
25#include <pthread.h>
26#include <sched.h>
27#include <stdlib.h>
28#include <string.h>
29#include <sys/epoll.h>
30#include <sys/ioctl.h>
31#include <sys/socket.h>
32#include <unistd.h>
33
34#if defined(HAVE_SO_ATTACH_REUSEPORT_CBPF)
35#include <linux1/filter.h>
36#endif
37
38#include "lwan-private.h"
39#include "lwan-tq.h"
40#include "list.h"
41
42static void lwan_strbuf_free_defer(void *data)
43{
44 lwan_strbuf_free((struct lwan_strbuf *)data);
45}
46
47static void graceful_close(struct lwan *l,
48 struct lwan_connection *conn,
49 char buffer[static DEFAULT_BUFFER_SIZE4096])
50{
51 int fd = lwan_connection_get_fd(l, conn);
52
53 while (TIOCOUTQ0x5411) {
54 /* This ioctl isn't probably doing what it says on the tin; the details
55 * are subtle, but it seems to do the trick to allow gracefully closing
56 * the connection in some cases with minimal system calls. */
57 int bytes_waiting;
58 int r = ioctl(fd, TIOCOUTQ0x5411, &bytes_waiting);
59
60 if (!r && !bytes_waiting) /* See note about close(2) below. */
61 return;
62 if (r < 0 && errno(*__errno_location ()) == EINTR4)
63 continue;
64
65 break;
66 }
67
68 if (UNLIKELY(shutdown(fd, SHUT_WR) < 0)__builtin_expect(((shutdown(fd, SHUT_WR) < 0)), (0))) {
69 if (UNLIKELY(errno == ENOTCONN)__builtin_expect((((*__errno_location ()) == 107)), (0)))
70 return;
71 }
72
73 for (int tries = 0; tries < 20; tries++) {
74 ssize_t r = read(fd, buffer, DEFAULT_BUFFER_SIZE4096);
75
76 if (!r)
77 break;
78
79 if (r < 0) {
80 switch (errno(*__errno_location ())) {
81 case EAGAIN11:
82 break;
83 case EINTR4:
84 continue;
85 default:
86 return;
87 }
88 }
89
90 coro_yield(conn->coro, CONN_CORO_WANT_READ);
91 }
92
93 /* close(2) will be called when the coroutine yields with CONN_CORO_ABORT */
94}
95
96__attribute__((noreturn)) static int process_request_coro(struct coro *coro,
97 void *data)
98{
99 /* NOTE: This function should not return; coro_yield should be used
100 * instead. This ensures the storage for `strbuf` is alive when the
101 * coroutine ends and lwan_strbuf_free() is called. */
102 struct lwan_connection *conn = data;
103 struct lwan *lwan = conn->thread->lwan;
104 int fd = lwan_connection_get_fd(lwan, conn);
105 enum lwan_request_flags flags = lwan->config.request_flags;
106 struct lwan_strbuf strbuf = LWAN_STRBUF_STATIC_INIT(struct lwan_strbuf) { .buffer = "" };
107 char request_buffer[DEFAULT_BUFFER_SIZE4096];
108 struct lwan_value buffer = {.value = request_buffer, .len = 0};
109 char *next_request = NULL((void*)0);
110 char *header_start[N_HEADER_START64];
111 struct lwan_proxy proxy;
112 const int error_when_n_packets = lwan_calculate_n_packets(DEFAULT_BUFFER_SIZE4096);
113
114 coro_defer(coro, lwan_strbuf_free_defer, &strbuf);
115
116 const size_t init_gen = 1; /* 1 call to coro_defer() */
117 assert(init_gen == coro_deferred_get_generation(coro))((void) sizeof ((init_gen == coro_deferred_get_generation(coro
)) ? 1 : 0), __extension__ ({ if (init_gen == coro_deferred_get_generation
(coro)) ; else __assert_fail ("init_gen == coro_deferred_get_generation(coro)"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 117, __extension__ __PRETTY_FUNCTION__); }))
;
118
119 while (true1) {
120 struct lwan_request_parser_helper helper = {
121 .buffer = &buffer,
122 .next_request = next_request,
123 .error_when_n_packets = error_when_n_packets,
124 .header_start = header_start,
125 };
126 struct lwan_request request = {.conn = conn,
127 .global_response_headers = &lwan->headers,
128 .fd = fd,
129 .response = {.buffer = &strbuf},
130 .flags = flags,
131 .proxy = &proxy,
132 .helper = &helper};
133
134 lwan_process_request(lwan, &request);
135
136 /* Run the deferred instructions now (except those used to initialize
137 * the coroutine), so that if the connection is gracefully closed,
138 * the storage for ``helper'' is still there. */
139 coro_deferred_run(coro, init_gen);
140
141 if (UNLIKELY(!(conn->flags & CONN_IS_KEEP_ALIVE))__builtin_expect(((!(conn->flags & CONN_IS_KEEP_ALIVE)
)), (0))
) {
142 graceful_close(lwan, conn, request_buffer);
143 break;
144 }
145
146 if (next_request && *next_request) {
147 conn->flags |= CONN_CORK;
148
149 if (!(conn->flags & CONN_EVENTS_WRITE))
150 coro_yield(coro, CONN_CORO_WANT_WRITE);
151 } else {
152 conn->flags &= ~CONN_CORK;
153 coro_yield(coro, CONN_CORO_WANT_READ);
154 }
155
156 /* Ensure string buffer is reset between requests, and that the backing
157 * store isn't over 2KB. */
158 lwan_strbuf_reset_trim(&strbuf, 2048);
159
160 /* Only allow flags from config. */
161 flags = request.flags & (REQUEST_PROXIED | REQUEST_ALLOW_CORS);
162 next_request = helper.next_request;
163 }
164
165 coro_yield(coro, CONN_CORO_ABORT);
166 __builtin_unreachable();
167}
168
169static ALWAYS_INLINEinline __attribute__((always_inline)) uint32_t
170conn_flags_to_epoll_events(enum lwan_connection_flags flags)
171{
172 static const uint32_t map[CONN_EVENTS_MASK + 1] = {
173 [0 /* Suspended (timer or await) */] = EPOLLRDHUPEPOLLRDHUP,
174 [CONN_EVENTS_WRITE] = EPOLLOUTEPOLLOUT | EPOLLRDHUPEPOLLRDHUP,
175 [CONN_EVENTS_READ] = EPOLLINEPOLLIN | EPOLLRDHUPEPOLLRDHUP,
176 [CONN_EVENTS_READ_WRITE] = EPOLLINEPOLLIN | EPOLLOUTEPOLLOUT | EPOLLRDHUPEPOLLRDHUP,
177 };
178
179 return map[flags & CONN_EVENTS_MASK];
180}
181
182static void update_epoll_flags(int fd,
183 struct lwan_connection *conn,
184 int epoll_fd,
185 enum lwan_connection_coro_yield yield_result)
186{
187 static const enum lwan_connection_flags or_mask[CONN_CORO_MAX] = {
188 [CONN_CORO_YIELD] = 0,
189
190 [CONN_CORO_WANT_READ_WRITE] = CONN_EVENTS_READ_WRITE,
191 [CONN_CORO_WANT_READ] = CONN_EVENTS_READ,
192 [CONN_CORO_WANT_WRITE] = CONN_EVENTS_WRITE,
193
194 /* While the coro is suspended, we're not interested in either EPOLLIN
195 * or EPOLLOUT events. We still want to track this fd in epoll, though,
196 * so unset both so that only EPOLLRDHUP (plus the implicitly-set ones)
197 * are set. */
198 [CONN_CORO_SUSPEND] = CONN_SUSPENDED,
199
200 /* Ideally, when suspending a coroutine, the current flags&CONN_EVENTS_MASK
201 * would have to be stored and restored -- however, resuming as if the
202 * client coroutine is interested in a write event always guarantees that
203 * they'll be resumed as they're TCP sockets. There's a good chance that
204 * trying to read from a socket after resuming a coroutine will succeed,
205 * but if it doesn't because read() returns -EAGAIN, the I/O wrappers will
206 * yield with CONN_CORO_WANT_READ anyway. */
207 [CONN_CORO_RESUME] = CONN_EVENTS_WRITE,
208 };
209 static const enum lwan_connection_flags and_mask[CONN_CORO_MAX] = {
210 [CONN_CORO_YIELD] = ~0,
211
212 [CONN_CORO_WANT_READ_WRITE] = ~0,
213 [CONN_CORO_WANT_READ] = ~CONN_EVENTS_WRITE,
214 [CONN_CORO_WANT_WRITE] = ~CONN_EVENTS_READ,
215
216 [CONN_CORO_SUSPEND] = ~CONN_EVENTS_READ_WRITE,
217 [CONN_CORO_RESUME] = ~CONN_SUSPENDED,
218 };
219 enum lwan_connection_flags prev_flags = conn->flags;
220
221 conn->flags |= or_mask[yield_result];
222 conn->flags &= and_mask[yield_result];
223
224 if (conn->flags == prev_flags)
225 return;
226
227 struct epoll_event event = {
228 .events = conn_flags_to_epoll_events(conn->flags),
229 .data.ptr = conn,
230 };
231
232 if (UNLIKELY(epoll_ctl(epoll_fd, EPOLL_CTL_MOD, fd, &event) < 0)__builtin_expect(((epoll_ctl(epoll_fd, 3, fd, &event) <
0)), (0))
)
233 lwan_status_perror("epoll_ctl")lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 233, __FUNCTION__, "epoll_ctl")
;
234}
235
236static void clear_async_await_flag(void *data)
237{
238 struct lwan_connection *async_fd_conn = data;
239
240 async_fd_conn->flags &= ~CONN_ASYNC_AWAIT;
241}
242
243static enum lwan_connection_coro_yield
244resume_async(struct timeout_queue *tq,
245 enum lwan_connection_coro_yield yield_result,
246 int64_t from_coro,
247 struct lwan_connection *conn,
248 int epoll_fd)
249{
250 static const enum lwan_connection_flags to_connection_flags[] = {
251 [CONN_CORO_ASYNC_AWAIT_READ] = CONN_EVENTS_READ,
252 [CONN_CORO_ASYNC_AWAIT_WRITE] = CONN_EVENTS_WRITE,
253 [CONN_CORO_ASYNC_AWAIT_READ_WRITE] = CONN_EVENTS_READ_WRITE,
254 };
255 int await_fd = (int)((uint64_t)from_coro >> 32);
256 enum lwan_connection_flags flags;
257 int op;
258
259 assert(await_fd >= 0)((void) sizeof ((await_fd >= 0) ? 1 : 0), __extension__ ({
if (await_fd >= 0) ; else __assert_fail ("await_fd >= 0"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 259, __extension__ __PRETTY_FUNCTION__); }))
;
260 assert(yield_result >= CONN_CORO_ASYNC_AWAIT_READ &&((void) sizeof ((yield_result >= CONN_CORO_ASYNC_AWAIT_READ
&& yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE
) ? 1 : 0), __extension__ ({ if (yield_result >= CONN_CORO_ASYNC_AWAIT_READ
&& yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE
) ; else __assert_fail ("yield_result >= CONN_CORO_ASYNC_AWAIT_READ && yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 261, __extension__ __PRETTY_FUNCTION__); }))
261 yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE)((void) sizeof ((yield_result >= CONN_CORO_ASYNC_AWAIT_READ
&& yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE
) ? 1 : 0), __extension__ ({ if (yield_result >= CONN_CORO_ASYNC_AWAIT_READ
&& yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE
) ; else __assert_fail ("yield_result >= CONN_CORO_ASYNC_AWAIT_READ && yield_result <= CONN_CORO_ASYNC_AWAIT_READ_WRITE"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 261, __extension__ __PRETTY_FUNCTION__); }))
;
262
263 flags = to_connection_flags[yield_result];
264
265 struct lwan_connection *await_fd_conn = &tq->lwan->conns[await_fd];
266 if (LIKELY(await_fd_conn->flags & CONN_ASYNC_AWAIT)__builtin_expect((!!(await_fd_conn->flags & CONN_ASYNC_AWAIT
)), (1))
) {
267 if (LIKELY((await_fd_conn->flags & CONN_EVENTS_MASK) == flags)__builtin_expect((!!((await_fd_conn->flags & CONN_EVENTS_MASK
) == flags)), (1))
)
268 return CONN_CORO_SUSPEND;
269
270 op = EPOLL_CTL_MOD3;
271 } else {
272 op = EPOLL_CTL_ADD1;
273 flags |= CONN_ASYNC_AWAIT;
274 coro_defer(conn->coro, clear_async_await_flag, await_fd_conn);
275 }
276
277 struct epoll_event event = {.events = conn_flags_to_epoll_events(flags),
278 .data.ptr = conn};
279 if (LIKELY(!epoll_ctl(epoll_fd, op, await_fd, &event))__builtin_expect((!!(!epoll_ctl(epoll_fd, op, await_fd, &
event))), (1))
) {
280 await_fd_conn->flags &= ~CONN_EVENTS_MASK;
281 await_fd_conn->flags |= flags;
282 return CONN_CORO_SUSPEND;
283 }
284
285 return CONN_CORO_ABORT;
286}
287
288static ALWAYS_INLINEinline __attribute__((always_inline)) void resume_coro(struct timeout_queue *tq,
289 struct lwan_connection *conn,
290 int epoll_fd)
291{
292 assert(conn->coro)((void) sizeof ((conn->coro) ? 1 : 0), __extension__ ({ if
(conn->coro) ; else __assert_fail ("conn->coro", "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 292, __extension__ __PRETTY_FUNCTION__); }))
;
293
294 int64_t from_coro = coro_resume(conn->coro);
295 enum lwan_connection_coro_yield yield_result = from_coro & 0xffffffff;
296
297 if (UNLIKELY(yield_result >= CONN_CORO_ASYNC)__builtin_expect(((yield_result >= CONN_CORO_ASYNC)), (0)))
298 yield_result = resume_async(tq, yield_result, from_coro, conn, epoll_fd);
299
300 if (UNLIKELY(yield_result == CONN_CORO_ABORT)__builtin_expect(((yield_result == CONN_CORO_ABORT)), (0)))
301 return timeout_queue_expire(tq, conn);
302
303 return update_epoll_flags(lwan_connection_get_fd(tq->lwan, conn), conn,
304 epoll_fd, yield_result);
305}
306
307static void update_date_cache(struct lwan_thread *thread)
308{
309 time_t now = time(NULL((void*)0));
310
311 lwan_format_rfc_time(now, thread->date.date);
312 lwan_format_rfc_time(now + (time_t)thread->lwan->config.expires,
313 thread->date.expires);
314}
315
316static bool_Bool send_buffer_without_coro(int fd, const char *buf, size_t buf_len)
317{
318 size_t total_sent = 0;
319
320 for (int try = 0; try < 10; try++) {
321 size_t to_send = buf_len - total_sent;
322 if (!to_send)
323 return true1;
324
325 ssize_t sent = write(fd, buf + total_sent, to_send);
326 if (sent <= 0) {
327 if (errno(*__errno_location ()) == EINTR4)
328 continue;
329 break;
330 }
331
332 total_sent += (size_t)sent;
333 }
334
335 return false0;
336}
337
338static bool_Bool send_string_without_coro(int fd, const char *str)
339{
340 return send_buffer_without_coro(fd, str, strlen(str));
341}
342
343static ALWAYS_INLINEinline __attribute__((always_inline)) bool_Bool spawn_coro(struct lwan_connection *conn,
344 struct coro_switcher *switcher,
345 struct timeout_queue *tq)
346{
347 struct lwan_thread *t = conn->thread;
348
349 assert(!conn->coro)((void) sizeof ((!conn->coro) ? 1 : 0), __extension__ ({ if
(!conn->coro) ; else __assert_fail ("!conn->coro", "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 349, __extension__ __PRETTY_FUNCTION__); }))
;
350 assert(!(conn->flags & CONN_ASYNC_AWAIT))((void) sizeof ((!(conn->flags & CONN_ASYNC_AWAIT)) ? 1
: 0), __extension__ ({ if (!(conn->flags & CONN_ASYNC_AWAIT
)) ; else __assert_fail ("!(conn->flags & CONN_ASYNC_AWAIT)"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 350, __extension__ __PRETTY_FUNCTION__); }))
;
351 assert(t)((void) sizeof ((t) ? 1 : 0), __extension__ ({ if (t) ; else __assert_fail
("t", "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 351, __extension__ __PRETTY_FUNCTION__); }))
;
352 assert((uintptr_t)t >= (uintptr_t)tq->lwan->thread.threads)((void) sizeof (((uintptr_t)t >= (uintptr_t)tq->lwan->
thread.threads) ? 1 : 0), __extension__ ({ if ((uintptr_t)t >=
(uintptr_t)tq->lwan->thread.threads) ; else __assert_fail
("(uintptr_t)t >= (uintptr_t)tq->lwan->thread.threads"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 352, __extension__ __PRETTY_FUNCTION__); }))
;
353 assert((uintptr_t)t <((void) sizeof (((uintptr_t)t < (uintptr_t)(tq->lwan->
thread.threads + tq->lwan->thread.count)) ? 1 : 0), __extension__
({ if ((uintptr_t)t < (uintptr_t)(tq->lwan->thread.
threads + tq->lwan->thread.count)) ; else __assert_fail
("(uintptr_t)t < (uintptr_t)(tq->lwan->thread.threads + tq->lwan->thread.count)"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 354, __extension__ __PRETTY_FUNCTION__); }))
354 (uintptr_t)(tq->lwan->thread.threads + tq->lwan->thread.count))((void) sizeof (((uintptr_t)t < (uintptr_t)(tq->lwan->
thread.threads + tq->lwan->thread.count)) ? 1 : 0), __extension__
({ if ((uintptr_t)t < (uintptr_t)(tq->lwan->thread.
threads + tq->lwan->thread.count)) ; else __assert_fail
("(uintptr_t)t < (uintptr_t)(tq->lwan->thread.threads + tq->lwan->thread.count)"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 354, __extension__ __PRETTY_FUNCTION__); }))
;
355
356 *conn = (struct lwan_connection){
357 .coro = coro_new(switcher, process_request_coro, conn),
358 .flags = CONN_EVENTS_READ,
359 .time_to_expire = tq->current_time + tq->move_to_last_bump,
360 .thread = t,
361 };
362 if (LIKELY(conn->coro)__builtin_expect((!!(conn->coro)), (1))) {
363 timeout_queue_insert(tq, conn);
364 return true1;
365 }
366
367 conn->flags = 0;
368
369 int fd = lwan_connection_get_fd(tq->lwan, conn);
370
371 if (!send_string_without_coro(fd, "HTTP/1.0 503 Unavailable"))
372 goto out;
373 if (!send_string_without_coro(fd, "\r\nConnection: close"))
374 goto out;
375 if (!send_string_without_coro(fd, "\r\nContent-Type: text/html"))
376 goto out;
377 if (send_buffer_without_coro(fd, lwan_strbuf_get_buffer(&tq->lwan->headers),
378 lwan_strbuf_get_length(&tq->lwan->headers))) {
379 struct lwan_strbuf buffer;
380
381 lwan_strbuf_init(&buffer);
382 lwan_fill_default_response(&buffer, HTTP_UNAVAILABLE);
383
384 send_buffer_without_coro(fd, lwan_strbuf_get_buffer(&buffer),
385 lwan_strbuf_get_length(&buffer));
386
387 lwan_strbuf_free(&buffer);
388 }
389
390out:
391 shutdown(fd, SHUT_RDWRSHUT_RDWR);
392 close(fd);
393 return false0;
394}
395
396static bool_Bool process_pending_timers(struct timeout_queue *tq,
397 struct lwan_thread *t,
398 int epoll_fd)
399{
400 struct timeout *timeout;
401 bool_Bool should_expire_timers = false0;
402
403 while ((timeout = timeouts_get(t->wheel))) {
404 struct lwan_request *request;
405
406 if (timeout == &tq->timeout) {
407 should_expire_timers = true1;
408 continue;
409 }
410
411 request = container_of(timeout, struct lwan_request, timeout)((struct lwan_request *) ((char *)(timeout) - __builtin_offsetof
(struct lwan_request, timeout)) + ((typeof(*(timeout)) *)0 !=
(typeof(((struct lwan_request *)0)->timeout) *)0))
;
412
413 update_epoll_flags(request->fd, request->conn, epoll_fd,
414 CONN_CORO_RESUME);
415 }
416
417 if (should_expire_timers) {
418 timeout_queue_expire_waiting(tq);
419
420 /* tq timeout expires every 1000ms if there are connections, so
421 * update the date cache at this point as well. */
422 update_date_cache(t);
423
424 if (!timeout_queue_empty(tq)) {
425 timeouts_add(t->wheel, &tq->timeout, 1000);
426 return true1;
427 }
428
429 timeouts_del(t->wheel, &tq->timeout);
430 }
431
432 return false0;
433}
434
435static int
436turn_timer_wheel(struct timeout_queue *tq, struct lwan_thread *t, int epoll_fd)
437{
438 const int infinite_timeout = -1;
439 timeout_t wheel_timeout;
440 struct timespec now;
441
442 if (UNLIKELY(clock_gettime(monotonic_clock_id, &now) < 0)__builtin_expect(((clock_gettime(monotonic_clock_id, &now
) < 0)), (0))
)
443 lwan_status_critical("Could not get monotonic time")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 443, __FUNCTION__, "Could not get monotonic time")
;
444
445 timeouts_update(t->wheel,
446 (timeout_t)(now.tv_sec * 1000 + now.tv_nsec / 1000000));
447
448 /* Check if there's an expired timer. */
449 wheel_timeout = timeouts_timeout(t->wheel);
450 if (wheel_timeout > 0) {
451 return (int)wheel_timeout; /* No, but will soon. Wake us up in
452 wheel_timeout ms. */
453 }
454
455 if (UNLIKELY((int64_t)wheel_timeout < 0)__builtin_expect((((int64_t)wheel_timeout < 0)), (0)))
456 return infinite_timeout; /* None found. */
457
458 if (!process_pending_timers(tq, t, epoll_fd))
459 return infinite_timeout; /* No more timers to process. */
460
461 /* After processing pending timers, determine when to wake up. */
462 return (int)timeouts_timeout(t->wheel);
463}
464
465static bool_Bool accept_waiting_clients(const struct lwan_thread *t)
466{
467 const struct lwan_connection *conns = t->lwan->conns;
468
469 while (true1) {
470 int fd =
471 accept4(t->listen_fd, NULL((void*)0), NULL((void*)0), SOCK_NONBLOCKSOCK_NONBLOCK | SOCK_CLOEXECSOCK_CLOEXEC);
472
473 if (LIKELY(fd >= 0)__builtin_expect((!!(fd >= 0)), (1))) {
474 const struct lwan_connection *conn = &conns[fd];
475 struct epoll_event ev = {
476 .data.ptr = (void *)conn,
477 .events = conn_flags_to_epoll_events(CONN_EVENTS_READ),
478 };
479 int r = epoll_ctl(conn->thread->epoll_fd, EPOLL_CTL_ADD1, fd, &ev);
480
481 if (UNLIKELY(r < 0)__builtin_expect(((r < 0)), (0))) {
482 /* FIXME: send a "busy" response here? No coroutine has been
483 * created at this point to use the usual stuff, though. */
484 lwan_status_perror("Could not add file descriptor %d to epoll "lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 486, __FUNCTION__, "Could not add file descriptor %d to epoll "
"set %d. Dropping connection", fd, conn->thread->epoll_fd
)
485 "set %d. Dropping connection",lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 486, __FUNCTION__, "Could not add file descriptor %d to epoll "
"set %d. Dropping connection", fd, conn->thread->epoll_fd
)
486 fd, conn->thread->epoll_fd)lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 486, __FUNCTION__, "Could not add file descriptor %d to epoll "
"set %d. Dropping connection", fd, conn->thread->epoll_fd
)
;
487 shutdown(fd, SHUT_RDWRSHUT_RDWR);
488 close(fd);
489 }
490
491#if defined(HAVE_SO_INCOMING_CPU) && defined(__x86_64__1)
492 /* Ignore errors here, as this is just a hint */
493 (void)setsockopt(fd, SOL_SOCKET1, SO_INCOMING_CPU49, &t->cpu, sizeof(t->cpu));
494#endif
495
496 continue;
497 }
498
499 switch (errno(*__errno_location ())) {
500 default:
501 lwan_status_perror("Unexpected error while accepting connections")lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 501, __FUNCTION__, "Unexpected error while accepting connections"
)
;
502 /* fallthrough */
503
504 case EAGAIN11:
505 return true1;
506
507 case EBADF9:
508 case ECONNABORTED103:
509 case EINVAL22:
510 lwan_status_info("Listening socket closed")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 510, __FUNCTION__, "Listening socket closed")
;
511 return false0;
512 }
513 }
514
515 __builtin_unreachable();
516}
517
518static int create_listen_socket(struct lwan_thread *t,
519 unsigned int num,
520 unsigned int num_sockets)
521{
522 int listen_fd;
523
524 listen_fd = lwan_create_listen_socket(t->lwan, num == 0);
525 if (listen_fd < 0)
526 lwan_status_critical("Could not create listen_fd")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 526, __FUNCTION__, "Could not create listen_fd")
;
527
528 /* Ignore errors here, as this is just a hint */
529#if defined(HAVE_SO_ATTACH_REUSEPORT_CBPF)
530 /* From socket(7): "These options may be set repeatedly at any time on
531 * any socket in the group to replace the current BPF program used by
532 * all sockets in the group." */
533 if (num == 0) {
534 /* From socket(7): "The BPF program must return an index between 0 and
535 * N-1 representing the socket which should receive the packet (where N
536 * is the number of sockets in the group)." */
537 const uint32_t cpu_ad_off = (uint32_t)SKF_AD_OFF(-0x1000) + SKF_AD_CPU36;
538 struct sock_filter filter[] = {
539 {BPF_LD0x00 | BPF_W0x00 | BPF_ABS0x20, 0, 0, cpu_ad_off}, /* A = curr_cpu_index */
540 {BPF_ALU0x04 | BPF_MOD0x90 | BPF_K0x00, 0, 0, num_sockets}, /* A %= num_sockets */
541 {BPF_RET0x06 | BPF_A0x10, 0, 0, 0}, /* return A */
542 };
543 struct sock_fprog fprog = {.filter = filter, .len = N_ELEMENTS(filter)((!sizeof(char[1 - 2 * __builtin_types_compatible_p( __typeof__
(filter), __typeof__(&(filter)[0]))])) | sizeof(filter) /
sizeof(filter[0]))
};
544
545 if (!(num_sockets & (num_sockets - 1))) {
546 /* FIXME: Is this strength reduction already made by the kernel? */
547 filter[1].code &= (uint16_t)~BPF_MOD0x90;
548 filter[1].code |= BPF_AND0x50;
549 filter[1].k = num_sockets - 1;
550 }
551
552 (void)setsockopt(listen_fd, SOL_SOCKET1, SO_ATTACH_REUSEPORT_CBPF51,
553 &fprog, sizeof(fprog));
554 (void)setsockopt(listen_fd, SOL_SOCKET1, SO_LOCK_FILTER44,
555 (int[]){1}, sizeof(int));
556 }
557#elif defined(HAVE_SO_INCOMING_CPU) && defined(__x86_64__1)
558 (void)setsockopt(listen_fd, SOL_SOCKET1, SO_INCOMING_CPU49, &t->cpu,
559 sizeof(t->cpu));
560#endif
561
562 struct epoll_event event = {
563 .events = EPOLLINEPOLLIN | EPOLLETEPOLLET | EPOLLERREPOLLERR,
564 .data.ptr = NULL((void*)0),
565 };
566 if (epoll_ctl(t->epoll_fd, EPOLL_CTL_ADD1, listen_fd, &event) < 0)
567 lwan_status_critical_perror("Could not add socket to epoll")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 567, __FUNCTION__, "Could not add socket to epoll")
;
568
569 return listen_fd;
570}
571
572static void *thread_io_loop(void *data)
573{
574 struct lwan_thread *t = data;
575 int epoll_fd = t->epoll_fd;
576 const int max_events = LWAN_MIN((int)t->lwan->thread.max_fd, 1024)({ const __typeof__(((int)t->lwan->thread.max_fd) + 0) lwan_tmp_id6
= ((int)t->lwan->thread.max_fd); const __typeof__((1024
) + 0) lwan_tmp_id7 = (1024); lwan_tmp_id6 > lwan_tmp_id7 ?
lwan_tmp_id7 : lwan_tmp_id6; })
;
577 struct lwan *lwan = t->lwan;
578 struct epoll_event *events;
579 struct coro_switcher switcher;
580 struct timeout_queue tq;
581
582 lwan_status_debug("Worker thread #%zd starting",lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 583, __FUNCTION__, "Worker thread #%zd starting", t - t->
lwan->thread.threads + 1)
583 t - t->lwan->thread.threads + 1)lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 583, __FUNCTION__, "Worker thread #%zd starting", t - t->
lwan->thread.threads + 1)
;
584 lwan_set_thread_name("worker");
585
586 events = calloc((size_t)max_events, sizeof(*events));
587 if (UNLIKELY(!events)__builtin_expect(((!events)), (0)))
588 lwan_status_critical("Could not allocate memory for events")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 588, __FUNCTION__, "Could not allocate memory for events")
;
589
590 update_date_cache(t);
591
592 timeout_queue_init(&tq, lwan);
593
594 pthread_barrier_wait(&lwan->thread.barrier);
595
596 for (;;) {
597 int timeout = turn_timer_wheel(&tq, t, epoll_fd);
598 int n_fds = epoll_wait(epoll_fd, events, max_events, timeout);
599 bool_Bool accepted_connections = false0;
600
601 if (UNLIKELY(n_fds < 0)__builtin_expect(((n_fds < 0)), (0))) {
602 if (errno(*__errno_location ()) == EBADF9 || errno(*__errno_location ()) == EINVAL22)
603 break;
604 continue;
605 }
606
607 for (struct epoll_event *event = events; n_fds--; event++) {
608 struct lwan_connection *conn;
609
610 if (!event->data.ptr) {
611 if (LIKELY(accept_waiting_clients(t))__builtin_expect((!!(accept_waiting_clients(t))), (1))) {
612 accepted_connections = true1;
613 continue;
614 }
615 close(epoll_fd);
616 epoll_fd = -1;
617 break;
618 }
619
620 conn = event->data.ptr;
621
622 if (UNLIKELY(event->events & (EPOLLRDHUP | EPOLLHUP))__builtin_expect(((event->events & (EPOLLRDHUP | EPOLLHUP
))), (0))
) {
623 timeout_queue_expire(&tq, conn);
624 continue;
625 }
626
627 if (!conn->coro) {
628 if (UNLIKELY(!spawn_coro(conn, &switcher, &tq))__builtin_expect(((!spawn_coro(conn, &switcher, &tq))
), (0))
)
629 continue;
630 }
631
632 resume_coro(&tq, conn, epoll_fd);
633 timeout_queue_move_to_last(&tq, conn);
634 }
635
636 if (accepted_connections)
637 timeouts_add(t->wheel, &tq.timeout, 1000);
638 }
639
640 pthread_barrier_wait(&lwan->thread.barrier);
641
642 timeout_queue_expire_all(&tq);
643 free(events);
644
645 return NULL((void*)0);
646}
647
648static void create_thread(struct lwan *l, struct lwan_thread *thread)
649{
650 int ignore;
651 pthread_attr_t attr;
652
653 thread->lwan = l;
654
655 thread->wheel = timeouts_open(&ignore);
656 if (!thread->wheel)
657 lwan_status_critical("Could not create timer wheel")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 657, __FUNCTION__, "Could not create timer wheel")
;
658
659 if ((thread->epoll_fd = epoll_create1(EPOLL_CLOEXECEPOLL_CLOEXEC)) < 0)
660 lwan_status_critical_perror("epoll_create")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 660, __FUNCTION__, "epoll_create")
;
661
662 if (pthread_attr_init(&attr))
663 lwan_status_critical_perror("pthread_attr_init")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 663, __FUNCTION__, "pthread_attr_init")
;
664
665 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEMPTHREAD_SCOPE_SYSTEM))
666 lwan_status_critical_perror("pthread_attr_setscope")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 666, __FUNCTION__, "pthread_attr_setscope")
;
667
668 if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLEPTHREAD_CREATE_JOINABLE))
669 lwan_status_critical_perror("pthread_attr_setdetachstate")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 669, __FUNCTION__, "pthread_attr_setdetachstate")
;
670
671 if (pthread_create(&thread->self, &attr, thread_io_loop, thread))
672 lwan_status_critical_perror("pthread_create")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 672, __FUNCTION__, "pthread_create")
;
673
674 if (pthread_attr_destroy(&attr))
675 lwan_status_critical_perror("pthread_attr_destroy")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 675, __FUNCTION__, "pthread_attr_destroy")
;
676}
677
678#if defined(__linux__1) && defined(__x86_64__1)
679static bool_Bool read_cpu_topology(struct lwan *l, uint32_t siblings[])
680{
681 char path[PATH_MAX4096];
682
683 for (uint32_t i = 0; i < l->available_cpus; i++)
684 siblings[i] = 0xbebacafe;
685
686 for (unsigned int i = 0; i < l->available_cpus; i++) {
687 FILE *sib;
688 uint32_t id, sibling;
689 char separator;
690
691 snprintf(path, sizeof(path),
692 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
693 i);
694
695 sib = fopen(path, "re");
696 if (!sib) {
697 lwan_status_warning("Could not open `%s` to determine CPU topology",lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 698, __FUNCTION__, "Could not open `%s` to determine CPU topology"
, path)
698 path)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 698, __FUNCTION__, "Could not open `%s` to determine CPU topology"
, path)
;
699 return false0;
700 }
701
702 switch (fscanf(sib, "%u%c%u", &id, &separator, &sibling)) {
703 case 2: /* No SMT */
704 siblings[i] = id;
705 break;
706 case 3: /* SMT */
707 if (!(separator == ',' || separator == '-')) {
708 lwan_status_critical("Expecting either ',' or '-' for sibling separator")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 708, __FUNCTION__, "Expecting either ',' or '-' for sibling separator"
)
;
709 __builtin_unreachable();
710 }
711
712 siblings[i] = sibling;
713 break;
714 default:
715 lwan_status_critical("%s has invalid format", path)lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 715, __FUNCTION__, "%s has invalid format", path)
;
716 __builtin_unreachable();
717 }
718
719 fclose(sib);
720 }
721
722 /* Perform a sanity check here, as some systems seem to filter out the
723 * result of sysconf() to obtain the number of configured and online
724 * CPUs but don't bother changing what's available through sysfs as far
725 * as the CPU topology information goes. It's better to fall back to a
726 * possibly non-optimal setup than just crash during startup while
727 * trying to perform an out-of-bounds array access. */
728 for (unsigned int i = 0; i < l->available_cpus; i++) {
729 if (siblings[i] == 0xbebacafe) {
730 lwan_status_warning("Could not determine sibling for CPU %d", i)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 730, __FUNCTION__, "Could not determine sibling for CPU %d"
, i)
;
731 return false0;
732 }
733
734 if (siblings[i] >= l->available_cpus) {
735 lwan_status_warning("CPU information topology says CPU %d exists, "lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 738, __FUNCTION__, "CPU information topology says CPU %d exists, "
"but max available CPUs is %d (online CPUs: %d). " "Is Lwan running in a (broken) container?"
, siblings[i], l->available_cpus, l->online_cpus)
736 "but max available CPUs is %d (online CPUs: %d). "lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 738, __FUNCTION__, "CPU information topology says CPU %d exists, "
"but max available CPUs is %d (online CPUs: %d). " "Is Lwan running in a (broken) container?"
, siblings[i], l->available_cpus, l->online_cpus)
737 "Is Lwan running in a (broken) container?",lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 738, __FUNCTION__, "CPU information topology says CPU %d exists, "
"but max available CPUs is %d (online CPUs: %d). " "Is Lwan running in a (broken) container?"
, siblings[i], l->available_cpus, l->online_cpus)
738 siblings[i], l->available_cpus, l->online_cpus)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 738, __FUNCTION__, "CPU information topology says CPU %d exists, "
"but max available CPUs is %d (online CPUs: %d). " "Is Lwan running in a (broken) container?"
, siblings[i], l->available_cpus, l->online_cpus)
;
739 return false0;
740 }
741 }
742
743 return true1;
744}
745
746static void
747siblings_to_schedtbl(struct lwan *l, uint32_t siblings[], uint32_t schedtbl[])
748{
749 int *seen = alloca(l->available_cpus * sizeof(int))__builtin_alloca (l->available_cpus * sizeof(int));
750 unsigned int n_schedtbl = 0;
751
752 for (uint32_t i = 0; i < l->available_cpus; i++)
753 seen[i] = -1;
754
755 for (uint32_t i = 0; i < l->available_cpus; i++) {
756 if (seen[siblings[i]] < 0) {
757 seen[siblings[i]] = (int)i;
758 } else {
759 schedtbl[n_schedtbl++] = (uint32_t)seen[siblings[i]];
760 schedtbl[n_schedtbl++] = i;
761 }
762 }
763
764 if (n_schedtbl != l->available_cpus)
765 memcpy(schedtbl, seen, l->available_cpus * sizeof(int));
766}
767
768static bool_Bool
769topology_to_schedtbl(struct lwan *l, uint32_t schedtbl[], uint32_t n_threads)
770{
771 uint32_t *siblings = alloca(l->available_cpus * sizeof(uint32_t))__builtin_alloca (l->available_cpus * sizeof(uint32_t));
772
773 if (read_cpu_topology(l, siblings)) {
8
Assuming the condition is false
9
Taking false branch
774 uint32_t *affinity = alloca(l->available_cpus * sizeof(uint32_t))__builtin_alloca (l->available_cpus * sizeof(uint32_t));
775
776 siblings_to_schedtbl(l, siblings, affinity);
777
778 for (uint32_t i = 0; i < n_threads; i++)
779 schedtbl[i] = affinity[i % l->available_cpus];
780 return true1;
781 }
782
783 for (uint32_t i = 0; i < n_threads; i++)
10
Assuming 'i' is >= 'n_threads'
11
Loop condition is false. Execution continues on line 785
784 schedtbl[i] = (i / 2) % l->thread.count;
785 return false0;
12
Returning without writing to '*schedtbl'
786}
787
788static void
789adjust_threads_affinity(struct lwan *l, uint32_t *schedtbl, uint32_t mask)
790{
791 for (uint32_t i = 0; i < l->thread.count; i++) {
792 cpu_set_t set;
793
794 CPU_ZERO(&set)do __builtin_memset (&set, '\0', sizeof (cpu_set_t)); while
(0)
;
795 CPU_SET(schedtbl[i & mask], &set)(__extension__ ({ size_t __cpu = (schedtbl[i & mask]); __cpu
/ 8 < (sizeof (cpu_set_t)) ? (((__cpu_mask *) ((&set)
->__bits))[((__cpu) / (8 * sizeof (__cpu_mask)))] |= ((__cpu_mask
) 1 << ((__cpu) % (8 * sizeof (__cpu_mask))))) : 0; }))
;
796
797 if (pthread_setaffinity_np(l->thread.threads[i].self, sizeof(set),
798 &set))
799 lwan_status_warning("Could not set affinity for thread %d", i)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 799, __FUNCTION__, "Could not set affinity for thread %d", i
)
;
800 }
801}
802#elif defined(__x86_64__1)
803static bool_Bool
804topology_to_schedtbl(struct lwan *l, uint32_t schedtbl[], uint32_t n_threads)
805{
806 for (uint32_t i = 0; i < n_threads; i++)
807 schedtbl[i] = (i / 2) % l->thread.count;
808 return false0;
809}
810
811static void
812adjust_threads_affinity(struct lwan *l, uint32_t *schedtbl, uint32_t n)
813{
814}
815#endif
816
817void lwan_thread_init(struct lwan *l)
818{
819 const unsigned int total_conns = l->thread.max_fd * l->thread.count;
820
821 if (pthread_barrier_init(&l->thread.barrier, NULL((void*)0),
1
Assuming the condition is false
2
Taking false branch
822 (unsigned)l->thread.count + 1))
823 lwan_status_critical("Could not create barrier")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 823, __FUNCTION__, "Could not create barrier")
;
824
825 lwan_status_debug("Initializing threads")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 825, __FUNCTION__, "Initializing threads")
;
826
827 l->thread.threads =
828 calloc((size_t)l->thread.count, sizeof(struct lwan_thread));
829 if (!l->thread.threads)
3
Assuming field 'threads' is non-null
4
Taking false branch
830 lwan_status_critical("Could not allocate memory for threads")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 830, __FUNCTION__, "Could not allocate memory for threads")
;
831
832#ifdef __x86_64__1
833 static_assert(sizeof(struct lwan_connection) == 32,extern int (*__Static_assert_function (void)) [!!sizeof (struct
{ int __error_if_negative: (sizeof(struct lwan_connection) ==
32) ? 2 : -1; })]
834 "Two connections per cache line")extern int (*__Static_assert_function (void)) [!!sizeof (struct
{ int __error_if_negative: (sizeof(struct lwan_connection) ==
32) ? 2 : -1; })]
;
835#ifdef _SC_LEVEL1_DCACHE_LINESIZE_SC_LEVEL1_DCACHE_LINESIZE
836 assert(sysconf(_SC_LEVEL1_DCACHE_LINESIZE) == 64)((void) sizeof ((sysconf(_SC_LEVEL1_DCACHE_LINESIZE) == 64) ?
1 : 0), __extension__ ({ if (sysconf(_SC_LEVEL1_DCACHE_LINESIZE
) == 64) ; else __assert_fail ("sysconf(_SC_LEVEL1_DCACHE_LINESIZE) == 64"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 836, __extension__ __PRETTY_FUNCTION__); }))
;
5
Assuming the condition is true
6
Taking true branch
837#endif
838
839 lwan_status_debug("%d CPUs of %d are online. "lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 841, __FUNCTION__, "%d CPUs of %d are online. " "Reading topology to pre-schedule clients"
, l->online_cpus, l->available_cpus)
840 "Reading topology to pre-schedule clients",lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 841, __FUNCTION__, "%d CPUs of %d are online. " "Reading topology to pre-schedule clients"
, l->online_cpus, l->available_cpus)
841 l->online_cpus, l->available_cpus)lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 841, __FUNCTION__, "%d CPUs of %d are online. " "Reading topology to pre-schedule clients"
, l->online_cpus, l->available_cpus)
;
842
843 /*
844 * Pre-schedule each file descriptor, to reduce some operations in the
845 * fast path.
846 *
847 * Since struct lwan_connection is guaranteed to be 32-byte long, two of
848 * them can fill up a cache line. Assume siblings share cache lines and
849 * use the CPU topology to group two connections per cache line in such
850 * a way that false sharing is avoided.
851 */
852 uint32_t n_threads = (uint32_t)lwan_nextpow2((size_t)((l->thread.count - 1) * 2));
853 uint32_t *schedtbl = alloca(n_threads * sizeof(uint32_t))__builtin_alloca (n_threads * sizeof(uint32_t));
854
855 bool_Bool adj_affinity = topology_to_schedtbl(l, schedtbl, n_threads);
7
Calling 'topology_to_schedtbl'
13
Returning from 'topology_to_schedtbl'
856
857 n_threads--; /* Transform count into mask for AND below */
858
859 if (adj_affinity
13.1
'adj_affinity' is false
) {
14
Taking false branch
860 /* Save which CPU this tread will be pinned at so we can use
861 * SO_INCOMING_CPU later. */
862 for (unsigned int i = 0; i < l->thread.count; i++)
863 l->thread.threads[i].cpu = schedtbl[i & n_threads];
864 }
865
866 for (unsigned int i = 0; i < total_conns; i++)
15
Assuming 'i' is < 'total_conns'
16
Loop condition is true. Entering loop body
867 l->conns[i].thread = &l->thread.threads[schedtbl[i & n_threads]];
17
Array subscript is undefined
868#else
869 for (unsigned int i = 0; i < l->thread.count; i++)
870 l->thread.threads[i].cpu = i % l->online_cpus;
871 for (unsigned int i = 0; i < total_conns; i++)
872 l->conns[i].thread = &l->thread.threads[i % l->thread.count];
873#endif
874
875 for (unsigned int i = 0; i < l->thread.count; i++) {
876 struct lwan_thread *thread = &l->thread.threads[i];
877
878 create_thread(l, thread);
879
880 if ((thread->listen_fd = create_listen_socket(thread, i, l->thread.count)) < 0)
881 lwan_status_critical_perror("Could not create listening socket")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 881, __FUNCTION__, "Could not create listening socket")
;
882 }
883
884#ifdef __x86_64__1
885 if (adj_affinity)
886 adjust_threads_affinity(l, schedtbl, n_threads);
887#endif
888
889 pthread_barrier_wait(&l->thread.barrier);
890
891 lwan_status_debug("Worker threads created and ready to serve")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 891, __FUNCTION__, "Worker threads created and ready to serve"
)
;
892}
893
894void lwan_thread_shutdown(struct lwan *l)
895{
896 lwan_status_debug("Shutting down threads")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan-thread.c"
, 896, __FUNCTION__, "Shutting down threads")
;
897
898 for (unsigned int i = 0; i < l->thread.count; i++) {
899 struct lwan_thread *t = &l->thread.threads[i];
900 int epoll_fd = t->epoll_fd;
901 int listen_fd = t->listen_fd;
902
903 t->listen_fd = -1;
904 t->epoll_fd = -1;
905 close(epoll_fd);
906 close(listen_fd);
907 }
908
909 pthread_barrier_wait(&l->thread.barrier);
910 pthread_barrier_destroy(&l->thread.barrier);
911
912 for (unsigned int i = 0; i < l->thread.count; i++) {
913 struct lwan_thread *t = &l->thread.threads[i];
914
915 pthread_join(l->thread.threads[i].self, NULL((void*)0));
916 timeouts_close(t->wheel);
917 }
918
919 free(l->thread.threads);
920}