blob: f86d05490515934cf5ea456353aae9a08dce09ba [file] [log] [blame]
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001/*
2 * Process debugging functions.
3 *
4 * Copyright 2000-2019 Willy Tarreau <willy@haproxy.org>.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreauf5b4e062020-03-03 15:40:23 +010013
Willy Tarreau368bff42019-12-06 17:18:28 +010014#include <fcntl.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020015#include <signal.h>
16#include <time.h>
17#include <stdio.h>
Willy Tarreau6bdf3e92019-05-20 14:25:05 +020018#include <stdlib.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020019#include <syslog.h>
Willy Tarreau368bff42019-12-06 17:18:28 +010020#include <sys/types.h>
21#include <sys/wait.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020022
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau8dabda72020-05-27 17:22:10 +020024#include <haproxy/buf.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020025#include <haproxy/cli.h>
Willy Tarreau2a83d602020-05-27 16:58:08 +020026#include <haproxy/debug.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/fd.h>
28#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +020029#include <haproxy/hlua.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020030#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/net_helper.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020032#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020033#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020034#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020035#include <haproxy/tools.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <import/ist.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020037
Willy Tarreau4e2b6462019-05-16 17:44:30 +020038
Willy Tarreaua37cb182019-07-31 19:20:39 +020039/* mask of threads still having to dump, used to respect ordering. Only used
40 * when USE_THREAD_DUMP is set.
41 */
42volatile unsigned long threads_to_dump = 0;
Willy Tarreau9b013702019-10-24 18:18:02 +020043unsigned int debug_commands_issued = 0;
Willy Tarreaua37cb182019-07-31 19:20:39 +020044
Willy Tarreau123fc972021-01-22 13:52:41 +010045/* dumps a backtrace of the current thread that is appended to buffer <buf>.
46 * Lines are prefixed with the string <prefix> which may be empty (used for
47 * indenting). It is recommended to use this at a function's tail so that
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010048 * the function does not appear in the call stack. The <dump> argument
49 * indicates what dump state to start from, and should usually be zero. It
50 * may be among the following values:
51 * - 0: search usual callers before step 1, or directly jump to 2
52 * - 1: skip usual callers before step 2
53 * - 2: dump until polling loop, scheduler, or main() (excluded)
54 * - 3: end
55 * - 4-7: like 0 but stops *after* main.
Willy Tarreau123fc972021-01-22 13:52:41 +010056 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010057void ha_dump_backtrace(struct buffer *buf, const char *prefix, int dump)
Willy Tarreau123fc972021-01-22 13:52:41 +010058{
59 struct buffer bak;
60 char pfx2[100];
61 void *callers[100];
62 int j, nptrs;
63 const void *addr;
Willy Tarreau123fc972021-01-22 13:52:41 +010064
65 nptrs = my_backtrace(callers, sizeof(callers)/sizeof(*callers));
66 if (!nptrs)
67 return;
68
69 if (snprintf(pfx2, sizeof(pfx2), "%s| ", prefix) > sizeof(pfx2))
70 pfx2[0] = 0;
71
72 /* The call backtrace_symbols_fd(callers, nptrs, STDOUT_FILENO would
73 * produce similar output to the following:
74 */
75 chunk_appendf(buf, "%scall trace(%d):\n", prefix, nptrs);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010076 for (j = 0; (j < nptrs || (dump & 3) < 2); j++) {
77 if (j == nptrs && !(dump & 3)) {
Willy Tarreau123fc972021-01-22 13:52:41 +010078 /* we failed to spot the starting point of the
79 * dump, let's start over dumping everything we
80 * have.
81 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010082 dump += 2;
Willy Tarreau123fc972021-01-22 13:52:41 +010083 j = 0;
84 }
85 bak = *buf;
86 dump_addr_and_bytes(buf, pfx2, callers[j], 8);
87 addr = resolve_sym_name(buf, ": ", callers[j]);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010088 if ((dump & 3) == 0) {
Willy Tarreau123fc972021-01-22 13:52:41 +010089 /* dump not started, will start *after*
Willy Tarreaua8459b22021-01-22 14:12:27 +010090 * ha_thread_dump_all_to_trash, ha_panic and ha_backtrace_to_stderr
Willy Tarreau123fc972021-01-22 13:52:41 +010091 */
Willy Tarreaua8459b22021-01-22 14:12:27 +010092 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
93 addr == ha_backtrace_to_stderr)
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010094 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +010095 *buf = bak;
96 continue;
97 }
98
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010099 if ((dump & 3) == 1) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100100 /* starting */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100101 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
102 addr == ha_backtrace_to_stderr) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100103 *buf = bak;
104 continue;
105 }
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100106 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100107 }
108
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100109 if ((dump & 3) == 2) {
110 /* still dumping */
111 if (dump == 6) {
112 /* we only stop *after* main and we must send the LF */
113 if (addr == main) {
114 j = nptrs;
115 dump++;
116 }
117 }
118 else if (addr == run_poll_loop || addr == main || addr == run_tasks_from_lists) {
119 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100120 *buf = bak;
121 break;
122 }
123 }
124 /* OK, line dumped */
125 chunk_appendf(buf, "\n");
126 }
127}
128
Willy Tarreaua8459b22021-01-22 14:12:27 +0100129/* dump a backtrace of current thread's stack to stderr. */
130void ha_backtrace_to_stderr()
131{
132 char area[2048];
133 struct buffer b = b_make(area, sizeof(area), 0, 0);
134
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100135 ha_dump_backtrace(&b, " ", 4);
Willy Tarreaua8459b22021-01-22 14:12:27 +0100136 if (b.data)
Willy Tarreau2cbe2e72021-01-22 15:58:26 +0100137 DISGUISE(write(2, b.area, b.data));
Willy Tarreaua8459b22021-01-22 14:12:27 +0100138}
139
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200140/* Dumps to the buffer some known information for the desired thread, and
141 * optionally extra info for the current thread. The dump will be appended to
142 * the buffer, so the caller is responsible for preliminary initializing it.
143 * The calling thread ID needs to be passed in <calling_tid> to display a star
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200144 * in front of the calling thread's line (usually it's tid). Any stuck thread
145 * is also prefixed with a '>'.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200146 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200147void ha_thread_dump(struct buffer *buf, int thr, int calling_tid)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200148{
149 unsigned long thr_bit = 1UL << thr;
David Carliera92c5ce2019-09-13 05:03:12 +0100150 unsigned long long p = ha_thread_info[thr].prev_cpu_time;
151 unsigned long long n = now_cpu_time_thread(&ha_thread_info[thr]);
152 int stuck = !!(ha_thread_info[thr].flags & TI_FL_STUCK);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200153
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200154 chunk_appendf(buf,
Willy Tarreauf0e5da22020-05-01 12:26:03 +0200155 "%c%cThread %-2u: id=0x%llx act=%d glob=%d wq=%d rq=%d tl=%d tlsz=%d rqsz=%d\n"
Olivier Houchard305d5ab2019-07-24 18:07:06 +0200156 " stuck=%d prof=%d",
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200157 (thr == calling_tid) ? '*' : ' ', stuck ? '>' : ' ', thr + 1,
Willy Tarreauff64d3b2020-05-01 11:28:49 +0200158 ha_get_pthread_id(thr),
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200159 thread_has_tasks(),
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200160 !!(global_tasks_mask & thr_bit),
161 !eb_is_empty(&task_per_thread[thr].timers),
162 !eb_is_empty(&task_per_thread[thr].rqueue),
Willy Tarreaua62917b2020-01-30 18:37:28 +0100163 !(LIST_ISEMPTY(&task_per_thread[thr].tasklets[TL_URGENT]) &&
164 LIST_ISEMPTY(&task_per_thread[thr].tasklets[TL_NORMAL]) &&
165 LIST_ISEMPTY(&task_per_thread[thr].tasklets[TL_BULK]) &&
166 MT_LIST_ISEMPTY(&task_per_thread[thr].shared_tasklet_list)),
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100167 task_per_thread[thr].tasks_in_list,
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100168 task_per_thread[thr].rq_total,
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200169 stuck,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200170 !!(task_profiling_mask & thr_bit));
171
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200172 chunk_appendf(buf,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200173 " harmless=%d wantrdv=%d",
174 !!(threads_harmless_mask & thr_bit),
175 !!(threads_want_rdv_mask & thr_bit));
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200176
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200177 chunk_appendf(buf, "\n");
Willy Tarreau9c8800a2019-05-20 20:52:20 +0200178 chunk_appendf(buf, " cpu_ns: poll=%llu now=%llu diff=%llu\n", p, n, n-p);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200179
180 /* this is the end of what we can dump from outside the thread */
181
182 if (thr != tid)
183 return;
184
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200185 chunk_appendf(buf, " curr_task=");
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200186 ha_task_dump(buf, sched->current, " ");
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100187
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100188 if (stuck) {
189 /* We only emit the backtrace for stuck threads in order not to
190 * waste precious output buffer space with non-interesting data.
Willy Tarreau123fc972021-01-22 13:52:41 +0100191 * Please leave this as the last instruction in this function
192 * so that the compiler uses tail merging and the current
193 * function does not appear in the stack.
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100194 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100195 ha_dump_backtrace(buf, " ", 0);
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100196 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200197}
198
199
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200200/* dumps into the buffer some information related to task <task> (which may
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200201 * either be a task or a tasklet, and prepend each line except the first one
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200202 * with <pfx>. The buffer is only appended and the first output starts by the
203 * pointer itself. The caller is responsible for making sure the task is not
204 * going to vanish during the dump.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200205 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200206void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200207{
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200208 const struct stream *s = NULL;
Willy Tarreaua512b022019-08-21 14:12:19 +0200209 const struct appctx __maybe_unused *appctx = NULL;
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200210 struct hlua __maybe_unused *hlua = NULL;
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200211
Willy Tarreau14a1ab72019-05-17 10:34:25 +0200212 if (!task) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200213 chunk_appendf(buf, "0\n");
Willy Tarreau231ec392019-05-17 10:39:47 +0200214 return;
215 }
216
Willy Tarreau20db9112019-05-17 14:14:35 +0200217 if (TASK_IS_TASKLET(task))
218 chunk_appendf(buf,
219 "%p (tasklet) calls=%u\n",
220 task,
221 task->calls);
222 else
223 chunk_appendf(buf,
224 "%p (task) calls=%u last=%llu%s\n",
225 task,
226 task->calls,
227 task->call_date ? (unsigned long long)(now_mono_time() - task->call_date) : 0,
228 task->call_date ? " ns ago" : "");
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200229
Willy Tarreau2e89b092020-03-03 17:13:02 +0100230 chunk_appendf(buf, "%s fct=%p(", pfx, task->process);
231 resolve_sym_name(buf, NULL, task->process);
232 chunk_appendf(buf,") ctx=%p", task->context);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200233
Willy Tarreaua512b022019-08-21 14:12:19 +0200234 if (task->process == task_run_applet && (appctx = task->context))
235 chunk_appendf(buf, "(%s)\n", appctx->applet->name);
236 else
237 chunk_appendf(buf, "\n");
238
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200239 if (task->process == process_stream && task->context)
240 s = (struct stream *)task->context;
241 else if (task->process == task_run_applet && task->context)
242 s = si_strm(((struct appctx *)task->context)->owner);
243 else if (task->process == si_cs_io_cb && task->context)
244 s = si_strm((struct stream_interface *)task->context);
245
246 if (s)
247 stream_dump(buf, s, pfx, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200248
249#ifdef USE_LUA
250 hlua = NULL;
251 if (s && (hlua = s->hlua)) {
252 chunk_appendf(buf, "%sCurrent executing Lua from a stream analyser -- ", pfx);
253 }
254 else if (task->process == hlua_process_task && (hlua = task->context)) {
255 chunk_appendf(buf, "%sCurrent executing a Lua task -- ", pfx);
256 }
257 else if (task->process == task_run_applet && (appctx = task->context) &&
258 (appctx->applet->fct == hlua_applet_tcp_fct && (hlua = appctx->ctx.hlua_apptcp.hlua))) {
259 chunk_appendf(buf, "%sCurrent executing a Lua TCP service -- ", pfx);
260 }
261 else if (task->process == task_run_applet && (appctx = task->context) &&
262 (appctx->applet->fct == hlua_applet_http_fct && (hlua = appctx->ctx.hlua_apphttp.hlua))) {
263 chunk_appendf(buf, "%sCurrent executing a Lua HTTP service -- ", pfx);
264 }
265
Christopher Faulet471425f2020-07-24 19:08:05 +0200266 if (hlua && hlua->T) {
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200267 luaL_traceback(hlua->T, hlua->T, NULL, 0);
268 if (!append_prefixed_str(buf, lua_tostring(hlua->T, -1), pfx, '\n', 1))
269 b_putchr(buf, '\n');
270 }
Christopher Faulet471425f2020-07-24 19:08:05 +0200271 else
272 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200273#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200274}
275
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200276/* This function dumps all profiling settings. It returns 0 if the output
277 * buffer is full and it needs to be called again, otherwise non-zero.
278 */
279static int cli_io_handler_show_threads(struct appctx *appctx)
280{
281 struct stream_interface *si = appctx->owner;
282 int thr;
283
284 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
285 return 1;
286
287 if (appctx->st0)
288 thr = appctx->st1;
289 else
290 thr = 0;
291
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200292 chunk_reset(&trash);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200293 ha_thread_dump_all_to_trash();
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200294
295 if (ci_putchk(si_ic(si), &trash) == -1) {
296 /* failed, try again */
297 si_rx_room_blk(si);
298 appctx->st1 = thr;
299 return 0;
300 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200301 return 1;
302}
303
Willy Tarreau56131ca2019-05-20 13:48:29 +0200304/* dumps a state of all threads into the trash and on fd #2, then aborts. */
305void ha_panic()
306{
307 chunk_reset(&trash);
Willy Tarreaua9f9fc92019-05-20 17:45:35 +0200308 chunk_appendf(&trash, "Thread %u is about to kill the process.\n", tid + 1);
Willy Tarreau56131ca2019-05-20 13:48:29 +0200309 ha_thread_dump_all_to_trash();
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +0100310 DISGUISE(write(2, trash.area, trash.data));
Willy Tarreau56131ca2019-05-20 13:48:29 +0200311 for (;;)
312 abort();
313}
314
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200315/* parse a "debug dev exit" command. It always returns 1, though it should never return. */
316static int debug_parse_cli_exit(char **args, char *payload, struct appctx *appctx, void *private)
317{
318 int code = atoi(args[3]);
319
320 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
321 return 1;
322
Willy Tarreau9b013702019-10-24 18:18:02 +0200323 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200324 exit(code);
325 return 1;
326}
327
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100328/* parse a "debug dev bug" command. It always returns 1, though it should never return.
329 * Note: we make sure not to make the function static so that it appears in the trace.
330 */
331int debug_parse_cli_bug(char **args, char *payload, struct appctx *appctx, void *private)
332{
333 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
334 return 1;
335
336 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
337 BUG_ON(one > zero);
338 return 1;
339}
340
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200341/* parse a "debug dev close" command. It always returns 1. */
342static int debug_parse_cli_close(char **args, char *payload, struct appctx *appctx, void *private)
343{
344 int fd;
345
346 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
347 return 1;
348
Willy Tarreau9d008692019-08-09 11:21:01 +0200349 if (!*args[3])
350 return cli_err(appctx, "Missing file descriptor number.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200351
352 fd = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +0200353 if (fd < 0 || fd >= global.maxsock)
354 return cli_err(appctx, "File descriptor out of range.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200355
Willy Tarreau9d008692019-08-09 11:21:01 +0200356 if (!fdtab[fd].owner)
357 return cli_msg(appctx, LOG_INFO, "File descriptor was already closed.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200358
Willy Tarreau9b013702019-10-24 18:18:02 +0200359 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200360 fd_delete(fd);
361 return 1;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200362}
363
364/* parse a "debug dev delay" command. It always returns 1. */
365static int debug_parse_cli_delay(char **args, char *payload, struct appctx *appctx, void *private)
366{
367 int delay = atoi(args[3]);
368
369 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
370 return 1;
371
Willy Tarreau9b013702019-10-24 18:18:02 +0200372 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200373 usleep((long)delay * 1000);
374 return 1;
375}
376
377/* parse a "debug dev log" command. It always returns 1. */
378static int debug_parse_cli_log(char **args, char *payload, struct appctx *appctx, void *private)
379{
380 int arg;
381
382 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
383 return 1;
384
Willy Tarreau9b013702019-10-24 18:18:02 +0200385 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200386 chunk_reset(&trash);
387 for (arg = 3; *args[arg]; arg++) {
388 if (arg > 3)
389 chunk_strcat(&trash, " ");
390 chunk_strcat(&trash, args[arg]);
391 }
392
393 send_log(NULL, LOG_INFO, "%s\n", trash.area);
394 return 1;
395}
396
397/* parse a "debug dev loop" command. It always returns 1. */
398static int debug_parse_cli_loop(char **args, char *payload, struct appctx *appctx, void *private)
399{
400 struct timeval deadline, curr;
401 int loop = atoi(args[3]);
402
403 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
404 return 1;
405
Willy Tarreau9b013702019-10-24 18:18:02 +0200406 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200407 gettimeofday(&curr, NULL);
408 tv_ms_add(&deadline, &curr, loop);
409
410 while (tv_ms_cmp(&curr, &deadline) < 0)
411 gettimeofday(&curr, NULL);
412
413 return 1;
414}
415
416/* parse a "debug dev panic" command. It always returns 1, though it should never return. */
417static int debug_parse_cli_panic(char **args, char *payload, struct appctx *appctx, void *private)
418{
419 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
420 return 1;
421
Willy Tarreau9b013702019-10-24 18:18:02 +0200422 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200423 ha_panic();
424 return 1;
425}
426
427/* parse a "debug dev exec" command. It always returns 1. */
Willy Tarreaub24ab222019-10-24 18:03:39 +0200428#if defined(DEBUG_DEV)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200429static int debug_parse_cli_exec(char **args, char *payload, struct appctx *appctx, void *private)
430{
Willy Tarreau368bff42019-12-06 17:18:28 +0100431 int pipefd[2];
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200432 int arg;
Willy Tarreau368bff42019-12-06 17:18:28 +0100433 int pid;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200434
435 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
436 return 1;
437
Willy Tarreau9b013702019-10-24 18:18:02 +0200438 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200439 chunk_reset(&trash);
440 for (arg = 3; *args[arg]; arg++) {
441 if (arg > 3)
442 chunk_strcat(&trash, " ");
443 chunk_strcat(&trash, args[arg]);
444 }
445
Willy Tarreau368bff42019-12-06 17:18:28 +0100446 thread_isolate();
447 if (pipe(pipefd) < 0)
448 goto fail_pipe;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200449
Willy Tarreau368bff42019-12-06 17:18:28 +0100450 if (fcntl(pipefd[0], F_SETFD, fcntl(pipefd[0], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
451 goto fail_fcntl;
452
453 if (fcntl(pipefd[1], F_SETFD, fcntl(pipefd[1], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
454 goto fail_fcntl;
455
456 pid = fork();
457
458 if (pid < 0)
459 goto fail_fork;
460 else if (pid == 0) {
461 /* child */
462 char *cmd[4] = { "/bin/sh", "-c", 0, 0 };
463
464 close(0);
465 dup2(pipefd[1], 1);
466 dup2(pipefd[1], 2);
467
468 cmd[2] = trash.area;
469 execvp(cmd[0], cmd);
470 printf("execvp() failed\n");
471 exit(1);
472 }
473
474 /* parent */
475 thread_release();
476 close(pipefd[1]);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200477 chunk_reset(&trash);
478 while (1) {
Willy Tarreau368bff42019-12-06 17:18:28 +0100479 size_t ret = read(pipefd[0], trash.area + trash.data, trash.size - 20 - trash.data);
480 if (ret <= 0)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200481 break;
482 trash.data += ret;
483 if (trash.data + 20 == trash.size) {
484 chunk_strcat(&trash, "\n[[[TRUNCATED]]]\n");
485 break;
486 }
487 }
Willy Tarreau368bff42019-12-06 17:18:28 +0100488 close(pipefd[0]);
489 waitpid(pid, NULL, WNOHANG);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200490 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200491 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau368bff42019-12-06 17:18:28 +0100492
493 fail_fork:
494 fail_fcntl:
495 close(pipefd[0]);
496 close(pipefd[1]);
497 fail_pipe:
498 thread_release();
499 return cli_err(appctx, "Failed to execute command.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200500}
Willy Tarreaub24ab222019-10-24 18:03:39 +0200501#endif
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200502
503/* parse a "debug dev hex" command. It always returns 1. */
504static int debug_parse_cli_hex(char **args, char *payload, struct appctx *appctx, void *private)
505{
506 unsigned long start, len;
507
508 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
509 return 1;
510
Willy Tarreau9d008692019-08-09 11:21:01 +0200511 if (!*args[3])
512 return cli_err(appctx, "Missing memory address to dump from.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200513
514 start = strtoul(args[3], NULL, 0);
Willy Tarreau9d008692019-08-09 11:21:01 +0200515 if (!start)
516 return cli_err(appctx, "Will not dump from NULL address.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200517
Willy Tarreau9b013702019-10-24 18:18:02 +0200518 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
519
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200520 /* by default, dump ~128 till next block of 16 */
521 len = strtoul(args[4], NULL, 0);
522 if (!len)
523 len = ((start + 128) & -16) - start;
524
525 chunk_reset(&trash);
Willy Tarreau37101052019-05-20 16:48:20 +0200526 dump_hex(&trash, " ", (const void *)start, len, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200527 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200528 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200529}
530
531/* parse a "debug dev tkill" command. It always returns 1. */
532static int debug_parse_cli_tkill(char **args, char *payload, struct appctx *appctx, void *private)
533{
534 int thr = 0;
535 int sig = SIGABRT;
536
537 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
538 return 1;
539
540 if (*args[3])
541 thr = atoi(args[3]);
542
Willy Tarreau9d008692019-08-09 11:21:01 +0200543 if (thr < 0 || thr > global.nbthread)
544 return cli_err(appctx, "Thread number out of range (use 0 for current).\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200545
546 if (*args[4])
547 sig = atoi(args[4]);
548
Willy Tarreau9b013702019-10-24 18:18:02 +0200549 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200550 if (thr)
Willy Tarreaufade80d2019-05-22 08:46:59 +0200551 ha_tkill(thr - 1, sig);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200552 else
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200553 raise(sig);
554 return 1;
555}
556
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100557/* parse a "debug dev write" command. It always returns 1. */
558static int debug_parse_cli_write(char **args, char *payload, struct appctx *appctx, void *private)
559{
560 unsigned long len;
561
562 if (!*args[3])
563 return cli_err(appctx, "Missing output size.\n");
564
565 len = strtoul(args[3], NULL, 0);
566 if (len >= trash.size)
567 return cli_err(appctx, "Output too large, must be <tune.bufsize.\n");
568
569 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
570
571 chunk_reset(&trash);
572 trash.data = len;
573 memset(trash.area, '.', trash.data);
574 trash.area[trash.data] = 0;
575 for (len = 64; len < trash.data; len += 64)
576 trash.area[len] = '\n';
577 return cli_msg(appctx, LOG_INFO, trash.area);
578}
579
Willy Tarreau68680bb2019-10-23 17:23:25 +0200580/* parse a "debug dev stream" command */
581/*
582 * debug dev stream [strm=<ptr>] [strm.f[{+-=}<flags>]] [txn.f[{+-=}<flags>]] \
583 * [req.f[{+-=}<flags>]] [res.f[{+-=}<flags>]] \
584 * [sif.f[{+-=<flags>]] [sib.f[{+-=<flags>]] \
585 * [sif.s[=<state>]] [sib.s[=<state>]]
586 */
587static int debug_parse_cli_stream(char **args, char *payload, struct appctx *appctx, void *private)
588{
589 struct stream *s = si_strm(appctx->owner);
590 int arg;
591 void *ptr;
592 int size;
593 const char *word, *end;
594 struct ist name;
595 char *msg = NULL;
596 char *endarg;
597 unsigned long long old, new;
598
599 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
600 return 1;
601
602 ptr = NULL; size = 0;
603
604 if (!*args[3]) {
605 return cli_err(appctx,
606 "Usage: debug dev stream { <obj> <op> <value> | wake }*\n"
607 " <obj> = {strm | strm.f | sif.f | sif.s | sif.x | sib.f | sib.s | sib.x |\n"
608 " txn.f | req.f | req.r | req.w | res.f | res.r | res.w}\n"
609 " <op> = {'' (show) | '=' (assign) | '^' (xor) | '+' (or) | '-' (andnot)}\n"
610 " <value> = 'now' | 64-bit dec/hex integer (0x prefix supported)\n"
611 " 'wake' wakes the stream asssigned to 'strm' (default: current)\n"
612 );
613 }
614
Willy Tarreau9b013702019-10-24 18:18:02 +0200615 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200616 for (arg = 3; *args[arg]; arg++) {
617 old = 0;
618 end = word = args[arg];
619 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
620 end++;
621 name = ist2(word, end - word);
622 if (isteq(name, ist("strm"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200623 ptr = (!s || !may_access(s)) ? NULL : &s; size = sizeof(s);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200624 } else if (isteq(name, ist("strm.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200625 ptr = (!s || !may_access(s)) ? NULL : &s->flags; size = sizeof(s->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200626 } else if (isteq(name, ist("txn.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200627 ptr = (!s || !may_access(s)) ? NULL : &s->txn->flags; size = sizeof(s->txn->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200628 } else if (isteq(name, ist("req.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200629 ptr = (!s || !may_access(s)) ? NULL : &s->req.flags; size = sizeof(s->req.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200630 } else if (isteq(name, ist("res.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200631 ptr = (!s || !may_access(s)) ? NULL : &s->res.flags; size = sizeof(s->res.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200632 } else if (isteq(name, ist("req.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200633 ptr = (!s || !may_access(s)) ? NULL : &s->req.rex; size = sizeof(s->req.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200634 } else if (isteq(name, ist("res.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200635 ptr = (!s || !may_access(s)) ? NULL : &s->res.rex; size = sizeof(s->res.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200636 } else if (isteq(name, ist("req.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200637 ptr = (!s || !may_access(s)) ? NULL : &s->req.wex; size = sizeof(s->req.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200638 } else if (isteq(name, ist("res.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200639 ptr = (!s || !may_access(s)) ? NULL : &s->res.wex; size = sizeof(s->res.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200640 } else if (isteq(name, ist("sif.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200641 ptr = (!s || !may_access(s)) ? NULL : &s->si[0].flags; size = sizeof(s->si[0].flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200642 } else if (isteq(name, ist("sib.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200643 ptr = (!s || !may_access(s)) ? NULL : &s->si[1].flags; size = sizeof(s->si[1].flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200644 } else if (isteq(name, ist("sif.x"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200645 ptr = (!s || !may_access(s)) ? NULL : &s->si[0].exp; size = sizeof(s->si[0].exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200646 } else if (isteq(name, ist("sib.x"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200647 ptr = (!s || !may_access(s)) ? NULL : &s->si[1].exp; size = sizeof(s->si[1].exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200648 } else if (isteq(name, ist("sif.s"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200649 ptr = (!s || !may_access(s)) ? NULL : &s->si[0].state; size = sizeof(s->si[0].state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200650 } else if (isteq(name, ist("sib.s"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200651 ptr = (!s || !may_access(s)) ? NULL : &s->si[1].state; size = sizeof(s->si[1].state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200652 } else if (isteq(name, ist("wake"))) {
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200653 if (s && may_access(s) && may_access((void *)s + sizeof(*s) - 1))
Willy Tarreau68680bb2019-10-23 17:23:25 +0200654 task_wakeup(s->task, TASK_WOKEN_TIMER|TASK_WOKEN_IO|TASK_WOKEN_MSG);
655 continue;
656 } else
657 return cli_dynerr(appctx, memprintf(&msg, "Unsupported field name: '%s'.\n", word));
658
659 /* read previous value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200660 if ((s || ptr == &s) && ptr && may_access(ptr) && may_access(ptr + size - 1)) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200661 if (size == 8)
662 old = read_u64(ptr);
663 else if (size == 4)
664 old = read_u32(ptr);
665 else if (size == 2)
666 old = read_u16(ptr);
667 else
668 old = *(const uint8_t *)ptr;
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200669 } else {
670 memprintf(&msg,
671 "%sSkipping inaccessible pointer %p for field '%.*s'.\n",
672 msg ? msg : "", ptr, (int)(end - word), word);
673 continue;
Willy Tarreau68680bb2019-10-23 17:23:25 +0200674 }
675
676 /* parse the new value . */
677 new = strtoll(end + 1, &endarg, 0);
678 if (end[1] && *endarg) {
679 if (strcmp(end + 1, "now") == 0)
680 new = now_ms;
681 else {
682 memprintf(&msg,
683 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
684 msg ? msg : "", end + 1, (int)(end - word), word);
685 continue;
686 }
687 }
688
689 switch (*end) {
690 case '\0': /* show */
691 memprintf(&msg, "%s%.*s=%#llx ", msg ? msg : "", (int)(end - word), word, old);
692 new = old; // do not change the value
693 break;
694
695 case '=': /* set */
696 break;
697
698 case '^': /* XOR */
699 new = old ^ new;
700 break;
701
702 case '+': /* OR */
703 new = old | new;
704 break;
705
706 case '-': /* AND NOT */
707 new = old & ~new;
708 break;
709
710 default:
711 break;
712 }
713
714 /* write the new value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200715 if (new != old) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200716 if (size == 8)
717 write_u64(ptr, new);
718 else if (size == 4)
719 write_u32(ptr, new);
720 else if (size == 2)
721 write_u16(ptr, new);
722 else
723 *(uint8_t *)ptr = new;
724 }
725 }
726
727 if (msg && *msg)
728 return cli_dynmsg(appctx, LOG_INFO, msg);
729 return 1;
730}
731
Willy Tarreau144f84a2021-03-02 16:09:26 +0100732static struct task *debug_task_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100733{
734 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
735 unsigned long inter = tctx[1];
736 unsigned long rnd;
737
738 t->expire = tick_add(now_ms, inter);
739
740 /* half of the calls will wake up another entry */
Willy Tarreau06e69b52021-03-02 14:01:35 +0100741 rnd = statistical_prng();
Willy Tarreaua5a44792020-11-29 17:12:15 +0100742 if (rnd & 1) {
743 rnd >>= 1;
744 rnd %= tctx[0];
745 rnd = tctx[rnd + 2];
746
747 if (rnd & 1)
748 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
749 else
750 tasklet_wakeup((struct tasklet *)rnd);
751 }
752 return t;
753}
754
Willy Tarreau144f84a2021-03-02 16:09:26 +0100755static struct task *debug_tasklet_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100756{
757 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
758 unsigned long rnd;
759 int i;
760
761 /* wake up two random entries */
762 for (i = 0; i < 2; i++) {
Willy Tarreau06e69b52021-03-02 14:01:35 +0100763 rnd = statistical_prng() % tctx[0];
Willy Tarreaua5a44792020-11-29 17:12:15 +0100764 rnd = tctx[rnd + 2];
765
766 if (rnd & 1)
767 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
768 else
769 tasklet_wakeup((struct tasklet *)rnd);
770 }
771 return t;
772}
773
774/* parse a "debug dev sched" command
775 * debug dev sched {task|tasklet} [count=<count>] [mask=<mask>] [single=<single>] [inter=<inter>]
776 */
777static int debug_parse_cli_sched(char **args, char *payload, struct appctx *appctx, void *private)
778{
779 int arg;
780 void *ptr;
781 int size;
782 const char *word, *end;
783 struct ist name;
784 char *msg = NULL;
785 char *endarg;
786 unsigned long long new;
787 unsigned long count = 0;
788 unsigned long thrid = 0;
789 unsigned int inter = 0;
790 unsigned long mask, tmask;
791 unsigned long i;
792 int mode = 0; // 0 = tasklet; 1 = task
793 int single = 0;
794 unsigned long *tctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
795
796 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
797 return 1;
798
799 ptr = NULL; size = 0;
800 mask = all_threads_mask;
801
802 if (strcmp(args[3], "task") != 0 && strcmp(args[3], "tasklet") != 0) {
803 return cli_err(appctx,
804 "Usage: debug dev sched {task|tasklet} { <obj> = <value> }*\n"
805 " <obj> = {count | mask | inter | single }\n"
806 " <value> = 64-bit dec/hex integer (0x prefix supported)\n"
807 );
808 }
809
810 mode = strcmp(args[3], "task") == 0;
811
812 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
813 for (arg = 4; *args[arg]; arg++) {
814 end = word = args[arg];
815 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
816 end++;
817 name = ist2(word, end - word);
818 if (isteq(name, ist("count"))) {
819 ptr = &count; size = sizeof(count);
820 } else if (isteq(name, ist("mask"))) {
821 ptr = &mask; size = sizeof(mask);
822 } else if (isteq(name, ist("tid"))) {
823 ptr = &thrid; size = sizeof(thrid);
824 } else if (isteq(name, ist("inter"))) {
825 ptr = &inter; size = sizeof(inter);
826 } else if (isteq(name, ist("single"))) {
827 ptr = &single; size = sizeof(single);
828 } else
829 return cli_dynerr(appctx, memprintf(&msg, "Unsupported setting: '%s'.\n", word));
830
831 /* parse the new value . */
832 new = strtoll(end + 1, &endarg, 0);
833 if (end[1] && *endarg) {
834 memprintf(&msg,
835 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
836 msg ? msg : "", end + 1, (int)(end - word), word);
837 continue;
838 }
839
840 /* write the new value */
841 if (size == 8)
842 write_u64(ptr, new);
843 else if (size == 4)
844 write_u32(ptr, new);
845 else if (size == 2)
846 write_u16(ptr, new);
847 else
848 *(uint8_t *)ptr = new;
849 }
850
851 tctx = calloc(sizeof(*tctx), count + 2);
852 if (!tctx)
853 goto fail;
854
855 tctx[0] = (unsigned long)count;
856 tctx[1] = (unsigned long)inter;
857
858 mask &= all_threads_mask;
859 if (!mask)
860 mask = tid_bit;
861
862 tmask = 0;
863 for (i = 0; i < count; i++) {
864 if (single || mode == 0) {
865 /* look for next bit matching a bit in mask or loop back to zero */
866 for (tmask <<= 1; !(mask & tmask); ) {
867 if (!(mask & -tmask))
868 tmask = 1;
869 else
870 tmask <<= 1;
871 }
872 } else {
873 /* multi-threaded task */
874 tmask = mask;
875 }
876
877 /* now, if poly or mask was set, tmask corresponds to the
878 * valid thread mask to use, otherwise it remains zero.
879 */
880 //printf("%lu: mode=%d mask=%#lx\n", i, mode, tmask);
881 if (mode == 0) {
882 struct tasklet *tl = tasklet_new();
883
884 if (!tl)
885 goto fail;
886
887 if (tmask)
888 tl->tid = my_ffsl(tmask) - 1;
889 tl->process = debug_tasklet_handler;
890 tl->context = tctx;
891 tctx[i + 2] = (unsigned long)tl;
892 } else {
893 struct task *task = task_new(tmask ? tmask : tid_bit);
894
895 if (!task)
896 goto fail;
897
898 task->process = debug_task_handler;
899 task->context = tctx;
900 tctx[i + 2] = (unsigned long)task + 1;
901 }
902 }
903
904 /* start the tasks and tasklets */
905 for (i = 0; i < count; i++) {
906 unsigned long ctx = tctx[i + 2];
907
908 if (ctx & 1)
909 task_wakeup((struct task *)(ctx - 1), TASK_WOKEN_INIT);
910 else
911 tasklet_wakeup((struct tasklet *)ctx);
912 }
913
914 if (msg && *msg)
915 return cli_dynmsg(appctx, LOG_INFO, msg);
916 return 1;
917
918 fail:
919 /* free partially allocated entries */
920 for (i = 0; tctx && i < count; i++) {
921 unsigned long ctx = tctx[i + 2];
922
923 if (!ctx)
924 break;
925
926 if (ctx & 1)
927 task_destroy((struct task *)(ctx - 1));
928 else
929 tasklet_free((struct tasklet *)ctx);
930 }
931
932 free(tctx);
933 return cli_err(appctx, "Not enough memory");
934}
935
Willy Tarreaua6026a02020-07-02 09:14:48 +0200936#if defined(DEBUG_MEM_STATS)
937/* CLI parser for the "debug dev memstats" command */
938static int debug_parse_cli_memstats(char **args, char *payload, struct appctx *appctx, void *private)
939{
940 extern __attribute__((__weak__)) struct mem_stats __start_mem_stats;
941 extern __attribute__((__weak__)) struct mem_stats __stop_mem_stats;
942
943 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
944 return 1;
945
946 if (strcmp(args[3], "reset") == 0) {
947 struct mem_stats *ptr;
948
949 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
950 return 1;
951
952 for (ptr = &__start_mem_stats; ptr < &__stop_mem_stats; ptr++) {
953 _HA_ATOMIC_STORE(&ptr->calls, 0);
954 _HA_ATOMIC_STORE(&ptr->size, 0);
955 }
956 return 1;
957 }
958
959 if (strcmp(args[3], "all") == 0)
960 appctx->ctx.cli.i0 = 1;
961
962 /* otherwise proceed with the dump from p0 to p1 */
963 appctx->ctx.cli.p0 = &__start_mem_stats;
964 appctx->ctx.cli.p1 = &__stop_mem_stats;
965 return 0;
966}
967
968/* CLI I/O handler for the "debug dev memstats" command. Dumps all mem_stats
969 * structs referenced by pointers located between p0 and p1. Dumps all entries
970 * if i0 > 0, otherwise only non-zero calls.
971 */
972static int debug_iohandler_memstats(struct appctx *appctx)
973{
974 struct stream_interface *si = appctx->owner;
975 struct mem_stats *ptr = appctx->ctx.cli.p0;
976 int ret = 1;
977
978 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
979 goto end;
980
981 chunk_reset(&trash);
982
983 /* we have two inner loops here, one for the proxy, the other one for
984 * the buffer.
985 */
986 for (ptr = appctx->ctx.cli.p0; ptr != appctx->ctx.cli.p1; ptr++) {
987 const char *type;
988 const char *name;
989 const char *p;
990
991 if (!ptr->size && !ptr->calls && !appctx->ctx.cli.i0)
992 continue;
993
994 /* basename only */
995 for (p = name = ptr->file; *p; p++) {
996 if (*p == '/')
997 name = p + 1;
998 }
999
1000 switch (ptr->type) {
1001 case MEM_STATS_TYPE_CALLOC: type = "CALLOC"; break;
1002 case MEM_STATS_TYPE_FREE: type = "FREE"; break;
1003 case MEM_STATS_TYPE_MALLOC: type = "MALLOC"; break;
1004 case MEM_STATS_TYPE_REALLOC: type = "REALLOC"; break;
1005 case MEM_STATS_TYPE_STRDUP: type = "STRDUP"; break;
1006 default: type = "UNSET"; break;
1007 }
1008
1009 //chunk_printf(&trash,
1010 // "%20s:%-5d %7s size: %12lu calls: %9lu size/call: %6lu\n",
1011 // name, ptr->line, type,
1012 // (unsigned long)ptr->size, (unsigned long)ptr->calls,
1013 // (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1014
1015 chunk_printf(&trash, "%s:%d", name, ptr->line);
1016 while (trash.data < 25)
1017 trash.area[trash.data++] = ' ';
1018 chunk_appendf(&trash, "%7s size: %12lu calls: %9lu size/call: %6lu\n",
1019 type,
1020 (unsigned long)ptr->size, (unsigned long)ptr->calls,
1021 (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1022
1023 if (ci_putchk(si_ic(si), &trash) == -1) {
1024 si_rx_room_blk(si);
1025 appctx->ctx.cli.p0 = ptr;
1026 ret = 0;
1027 break;
1028 }
1029 }
1030
1031 end:
1032 return ret;
1033}
1034
1035#endif
1036
Willy Tarreauc7091d82019-05-17 10:08:49 +02001037#ifndef USE_THREAD_DUMP
1038
1039/* This function dumps all threads' state to the trash. This version is the
1040 * most basic one, which doesn't inspect other threads.
1041 */
1042void ha_thread_dump_all_to_trash()
1043{
1044 unsigned int thr;
1045
1046 for (thr = 0; thr < global.nbthread; thr++)
1047 ha_thread_dump(&trash, thr, tid);
1048}
1049
1050#else /* below USE_THREAD_DUMP is set */
1051
Willy Tarreauc7091d82019-05-17 10:08:49 +02001052/* ID of the thread requesting the dump */
1053static unsigned int thread_dump_tid;
1054
1055/* points to the buffer where the dump functions should write. It must
1056 * have already been initialized by the requester. Nothing is done if
1057 * it's NULL.
1058 */
1059struct buffer *thread_dump_buffer = NULL;
1060
1061void ha_thread_dump_all_to_trash()
1062{
Willy Tarreauc7091d82019-05-17 10:08:49 +02001063 unsigned long old;
1064
1065 while (1) {
1066 old = 0;
1067 if (HA_ATOMIC_CAS(&threads_to_dump, &old, all_threads_mask))
1068 break;
1069 ha_thread_relax();
1070 }
1071
1072 thread_dump_buffer = &trash;
1073 thread_dump_tid = tid;
Willy Tarreaufade80d2019-05-22 08:46:59 +02001074 ha_tkillall(DEBUGSIG);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001075}
1076
1077/* handles DEBUGSIG to dump the state of the thread it's working on */
1078void debug_handler(int sig, siginfo_t *si, void *arg)
1079{
Willy Tarreau82aafc42020-03-03 08:31:34 +01001080 /* first, let's check it's really for us and that we didn't just get
1081 * a spurious DEBUGSIG.
1082 */
1083 if (!(threads_to_dump & tid_bit))
1084 return;
1085
Willy Tarreauc7091d82019-05-17 10:08:49 +02001086 /* There are 4 phases in the dump process:
1087 * 1- wait for our turn, i.e. when all lower bits are gone.
1088 * 2- perform the action if our bit is set
1089 * 3- remove our bit to let the next one go, unless we're
Willy Tarreauc0773622019-07-31 19:15:45 +02001090 * the last one and have to put them all as a signal
1091 * 4- wait out bit to re-appear, then clear it and quit.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001092 */
1093
1094 /* wait for all previous threads to finish first */
1095 while (threads_to_dump & (tid_bit - 1))
1096 ha_thread_relax();
1097
1098 /* dump if needed */
1099 if (threads_to_dump & tid_bit) {
1100 if (thread_dump_buffer)
1101 ha_thread_dump(thread_dump_buffer, tid, thread_dump_tid);
1102 if ((threads_to_dump & all_threads_mask) == tid_bit) {
1103 /* last one */
Willy Tarreauc0773622019-07-31 19:15:45 +02001104 HA_ATOMIC_STORE(&threads_to_dump, all_threads_mask);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001105 thread_dump_buffer = NULL;
1106 }
1107 else
1108 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
1109 }
1110
1111 /* now wait for all others to finish dumping. The last one will set all
Willy Tarreauc0773622019-07-31 19:15:45 +02001112 * bits again to broadcast the leaving condition so we'll see ourselves
1113 * present again. This way the threads_to_dump variable never passes to
1114 * zero until all visitors have stopped waiting.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001115 */
Willy Tarreauc0773622019-07-31 19:15:45 +02001116 while (!(threads_to_dump & tid_bit))
1117 ha_thread_relax();
1118 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
Willy Tarreaue6a02fa2019-05-22 07:06:44 +02001119
1120 /* mark the current thread as stuck to detect it upon next invocation
1121 * if it didn't move.
1122 */
1123 if (!((threads_harmless_mask|sleeping_thread_mask) & tid_bit))
1124 ti->flags |= TI_FL_STUCK;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001125}
1126
1127static int init_debug_per_thread()
1128{
1129 sigset_t set;
1130
1131 /* unblock the DEBUGSIG signal we intend to use */
1132 sigemptyset(&set);
1133 sigaddset(&set, DEBUGSIG);
1134 ha_sigmask(SIG_UNBLOCK, &set, NULL);
1135 return 1;
1136}
1137
1138static int init_debug()
1139{
1140 struct sigaction sa;
Willy Tarreau2f1227e2021-01-22 12:12:29 +01001141 void *callers[1];
Willy Tarreauc7091d82019-05-17 10:08:49 +02001142
Willy Tarreau0214b452020-03-04 06:01:40 +01001143 /* calling backtrace() will access libgcc at runtime. We don't want to
1144 * do it after the chroot, so let's perform a first call to have it
1145 * ready in memory for later use.
1146 */
Willy Tarreau13faf162020-03-04 07:44:06 +01001147 my_backtrace(callers, sizeof(callers)/sizeof(*callers));
Willy Tarreauc7091d82019-05-17 10:08:49 +02001148 sa.sa_handler = NULL;
1149 sa.sa_sigaction = debug_handler;
1150 sigemptyset(&sa.sa_mask);
1151 sa.sa_flags = SA_SIGINFO;
1152 sigaction(DEBUGSIG, &sa, NULL);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001153 return ERR_NONE;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001154}
1155
1156REGISTER_POST_CHECK(init_debug);
1157REGISTER_PER_THREAD_INIT(init_debug_per_thread);
1158
1159#endif /* USE_THREAD_DUMP */
1160
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001161/* register cli keywords */
1162static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau5baf4fe2021-01-22 14:15:46 +01001163 {{ "debug", "dev", "bug", NULL }, "debug dev bug : call BUG_ON()", debug_parse_cli_bug, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub24ab222019-10-24 18:03:39 +02001164 {{ "debug", "dev", "close", NULL }, "debug dev close <fd> : close this file descriptor", debug_parse_cli_close, NULL, NULL, NULL, ACCESS_EXPERT },
1165 {{ "debug", "dev", "delay", NULL }, "debug dev delay [ms] : sleep this long", debug_parse_cli_delay, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau6bdf3e92019-05-20 14:25:05 +02001166#if defined(DEBUG_DEV)
Willy Tarreaub24ab222019-10-24 18:03:39 +02001167 {{ "debug", "dev", "exec", NULL }, "debug dev exec [cmd] ... : show this command's output", debug_parse_cli_exec, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau6bdf3e92019-05-20 14:25:05 +02001168#endif
Willy Tarreaub24ab222019-10-24 18:03:39 +02001169 {{ "debug", "dev", "exit", NULL }, "debug dev exit [code] : immediately exit the process", debug_parse_cli_exit, NULL, NULL, NULL, ACCESS_EXPERT },
1170 {{ "debug", "dev", "hex", NULL }, "debug dev hex <addr> [len]: dump a memory area", debug_parse_cli_hex, NULL, NULL, NULL, ACCESS_EXPERT },
1171 {{ "debug", "dev", "log", NULL }, "debug dev log [msg] ... : send this msg to global logs", debug_parse_cli_log, NULL, NULL, NULL, ACCESS_EXPERT },
1172 {{ "debug", "dev", "loop", NULL }, "debug dev loop [ms] : loop this long", debug_parse_cli_loop, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaua6026a02020-07-02 09:14:48 +02001173#if defined(DEBUG_MEM_STATS)
1174 {{ "debug", "dev", "memstats", NULL }, "debug dev memstats [reset|all] : dump/reset memory statistics", debug_parse_cli_memstats, debug_iohandler_memstats, NULL, NULL, ACCESS_EXPERT },
1175#endif
Willy Tarreaub24ab222019-10-24 18:03:39 +02001176 {{ "debug", "dev", "panic", NULL }, "debug dev panic : immediately trigger a panic", debug_parse_cli_panic, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaua5a44792020-11-29 17:12:15 +01001177 {{ "debug", "dev", "sched", NULL }, "debug dev sched ... : stress the scheduler", debug_parse_cli_sched, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub24ab222019-10-24 18:03:39 +02001178 {{ "debug", "dev", "stream",NULL }, "debug dev stream ... : show/manipulate stream flags", debug_parse_cli_stream,NULL, NULL, NULL, ACCESS_EXPERT },
1179 {{ "debug", "dev", "tkill", NULL }, "debug dev tkill [thr] [sig] : send signal to thread", debug_parse_cli_tkill, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau6cbe62b2020-03-05 17:16:24 +01001180 {{ "debug", "dev", "write", NULL }, "debug dev write [size] : write that many bytes", debug_parse_cli_write, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub24ab222019-10-24 18:03:39 +02001181 {{ "show", "threads", NULL, NULL }, "show threads : show some threads debugging information", NULL, cli_io_handler_show_threads, NULL },
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001182 {{},}
1183}};
1184
1185INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);