blob: 62efca6111a35190d88691687c4eee8b09268b35 [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 Tarreau5be7c192022-01-24 20:26:09 +010014#include <errno.h>
Willy Tarreau368bff42019-12-06 17:18:28 +010015#include <fcntl.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020016#include <signal.h>
17#include <time.h>
18#include <stdio.h>
Willy Tarreau6bdf3e92019-05-20 14:25:05 +020019#include <stdlib.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020020#include <syslog.h>
Willy Tarreau5be7c192022-01-24 20:26:09 +010021#include <sys/stat.h>
Willy Tarreau368bff42019-12-06 17:18:28 +010022#include <sys/types.h>
23#include <sys/wait.h>
Willy Tarreau5be7c192022-01-24 20:26:09 +010024#include <unistd.h>
25#ifdef USE_EPOLL
26#include <sys/epoll.h>
27#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +020028
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020029#include <haproxy/api.h>
Willy Tarreau8dabda72020-05-27 17:22:10 +020030#include <haproxy/buf.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020031#include <haproxy/cli.h>
Christopher Faulet908628c2022-03-25 16:43:49 +010032#include <haproxy/conn_stream.h>
33#include <haproxy/cs_utils.h>
Willy Tarreau55542642021-10-08 09:33:24 +020034#include <haproxy/clock.h>
Willy Tarreau2a83d602020-05-27 16:58:08 +020035#include <haproxy/debug.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/fd.h>
37#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +020038#include <haproxy/hlua.h>
Willy Tarreaub7fc4c42021-10-06 18:56:42 +020039#include <haproxy/http_ana.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020040#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/net_helper.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020042#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020043#include <haproxy/thread.h>
Willy Tarreau55542642021-10-08 09:33:24 +020044#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020045#include <haproxy/tools.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <import/ist.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020047
Willy Tarreau4e2b6462019-05-16 17:44:30 +020048
Willy Tarreaua37cb182019-07-31 19:20:39 +020049/* mask of threads still having to dump, used to respect ordering. Only used
50 * when USE_THREAD_DUMP is set.
51 */
52volatile unsigned long threads_to_dump = 0;
Willy Tarreau9b013702019-10-24 18:18:02 +020053unsigned int debug_commands_issued = 0;
Willy Tarreaua37cb182019-07-31 19:20:39 +020054
Willy Tarreau123fc972021-01-22 13:52:41 +010055/* dumps a backtrace of the current thread that is appended to buffer <buf>.
56 * Lines are prefixed with the string <prefix> which may be empty (used for
57 * indenting). It is recommended to use this at a function's tail so that
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010058 * the function does not appear in the call stack. The <dump> argument
59 * indicates what dump state to start from, and should usually be zero. It
60 * may be among the following values:
61 * - 0: search usual callers before step 1, or directly jump to 2
62 * - 1: skip usual callers before step 2
63 * - 2: dump until polling loop, scheduler, or main() (excluded)
64 * - 3: end
65 * - 4-7: like 0 but stops *after* main.
Willy Tarreau123fc972021-01-22 13:52:41 +010066 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010067void ha_dump_backtrace(struct buffer *buf, const char *prefix, int dump)
Willy Tarreau123fc972021-01-22 13:52:41 +010068{
69 struct buffer bak;
70 char pfx2[100];
71 void *callers[100];
72 int j, nptrs;
73 const void *addr;
Willy Tarreau123fc972021-01-22 13:52:41 +010074
75 nptrs = my_backtrace(callers, sizeof(callers)/sizeof(*callers));
76 if (!nptrs)
77 return;
78
79 if (snprintf(pfx2, sizeof(pfx2), "%s| ", prefix) > sizeof(pfx2))
80 pfx2[0] = 0;
81
82 /* The call backtrace_symbols_fd(callers, nptrs, STDOUT_FILENO would
83 * produce similar output to the following:
84 */
85 chunk_appendf(buf, "%scall trace(%d):\n", prefix, nptrs);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010086 for (j = 0; (j < nptrs || (dump & 3) < 2); j++) {
87 if (j == nptrs && !(dump & 3)) {
Willy Tarreau123fc972021-01-22 13:52:41 +010088 /* we failed to spot the starting point of the
89 * dump, let's start over dumping everything we
90 * have.
91 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010092 dump += 2;
Willy Tarreau123fc972021-01-22 13:52:41 +010093 j = 0;
94 }
95 bak = *buf;
96 dump_addr_and_bytes(buf, pfx2, callers[j], 8);
97 addr = resolve_sym_name(buf, ": ", callers[j]);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010098 if ((dump & 3) == 0) {
Willy Tarreau123fc972021-01-22 13:52:41 +010099 /* dump not started, will start *after*
Willy Tarreaua8459b22021-01-22 14:12:27 +0100100 * ha_thread_dump_all_to_trash, ha_panic and ha_backtrace_to_stderr
Willy Tarreau123fc972021-01-22 13:52:41 +0100101 */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100102 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
103 addr == ha_backtrace_to_stderr)
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100104 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100105 *buf = bak;
106 continue;
107 }
108
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100109 if ((dump & 3) == 1) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100110 /* starting */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100111 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
112 addr == ha_backtrace_to_stderr) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100113 *buf = bak;
114 continue;
115 }
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100116 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100117 }
118
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100119 if ((dump & 3) == 2) {
120 /* still dumping */
121 if (dump == 6) {
122 /* we only stop *after* main and we must send the LF */
123 if (addr == main) {
124 j = nptrs;
125 dump++;
126 }
127 }
128 else if (addr == run_poll_loop || addr == main || addr == run_tasks_from_lists) {
129 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100130 *buf = bak;
131 break;
132 }
133 }
134 /* OK, line dumped */
135 chunk_appendf(buf, "\n");
136 }
137}
138
Willy Tarreaua8459b22021-01-22 14:12:27 +0100139/* dump a backtrace of current thread's stack to stderr. */
140void ha_backtrace_to_stderr()
141{
142 char area[2048];
143 struct buffer b = b_make(area, sizeof(area), 0, 0);
144
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100145 ha_dump_backtrace(&b, " ", 4);
Willy Tarreaua8459b22021-01-22 14:12:27 +0100146 if (b.data)
Willy Tarreau2cbe2e72021-01-22 15:58:26 +0100147 DISGUISE(write(2, b.area, b.data));
Willy Tarreaua8459b22021-01-22 14:12:27 +0100148}
149
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200150/* Dumps to the buffer some known information for the desired thread, and
151 * optionally extra info for the current thread. The dump will be appended to
152 * the buffer, so the caller is responsible for preliminary initializing it.
153 * The calling thread ID needs to be passed in <calling_tid> to display a star
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200154 * in front of the calling thread's line (usually it's tid). Any stuck thread
155 * is also prefixed with a '>'.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200156 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200157void ha_thread_dump(struct buffer *buf, int thr, int calling_tid)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200158{
159 unsigned long thr_bit = 1UL << thr;
Willy Tarreau45c38e22021-09-30 18:28:49 +0200160 unsigned long long p = ha_thread_ctx[thr].prev_cpu_time;
Willy Tarreau21694982021-10-08 15:09:17 +0200161 unsigned long long n = now_cpu_time_thread(thr);
Willy Tarreaua0b99532021-09-30 18:48:37 +0200162 int stuck = !!(ha_thread_ctx[thr].flags & TH_FL_STUCK);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200163
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200164 chunk_appendf(buf,
Willy Tarreauf0e5da22020-05-01 12:26:03 +0200165 "%c%cThread %-2u: id=0x%llx act=%d glob=%d wq=%d rq=%d tl=%d tlsz=%d rqsz=%d\n"
Willy Tarreaua3870b72021-09-13 19:24:47 +0200166 " %2u/%-2u stuck=%d prof=%d",
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200167 (thr == calling_tid) ? '*' : ' ', stuck ? '>' : ' ', thr + 1,
Willy Tarreauff64d3b2020-05-01 11:28:49 +0200168 ha_get_pthread_id(thr),
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200169 thread_has_tasks(),
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200170 !!(global_tasks_mask & thr_bit),
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200171 !eb_is_empty(&ha_thread_ctx[thr].timers),
172 !eb_is_empty(&ha_thread_ctx[thr].rqueue),
173 !(LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_URGENT]) &&
174 LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_NORMAL]) &&
175 LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_BULK]) &&
176 MT_LIST_ISEMPTY(&ha_thread_ctx[thr].shared_tasklet_list)),
177 ha_thread_ctx[thr].tasks_in_list,
178 ha_thread_ctx[thr].rq_total,
Willy Tarreaua3870b72021-09-13 19:24:47 +0200179 ha_thread_info[thr].tg->tgid, ha_thread_info[thr].ltid + 1,
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200180 stuck,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200181 !!(task_profiling_mask & thr_bit));
182
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200183 chunk_appendf(buf,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200184 " harmless=%d wantrdv=%d",
185 !!(threads_harmless_mask & thr_bit),
186 !!(threads_want_rdv_mask & thr_bit));
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200187
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200188 chunk_appendf(buf, "\n");
Willy Tarreau9c8800a2019-05-20 20:52:20 +0200189 chunk_appendf(buf, " cpu_ns: poll=%llu now=%llu diff=%llu\n", p, n, n-p);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200190
Willy Tarreaua3870b72021-09-13 19:24:47 +0200191 /* this is the end of what we can dump from outside the current thread */
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200192
193 if (thr != tid)
194 return;
195
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200196 chunk_appendf(buf, " curr_task=");
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200197 ha_task_dump(buf, th_ctx->current, " ");
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100198
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100199 if (stuck) {
200 /* We only emit the backtrace for stuck threads in order not to
201 * waste precious output buffer space with non-interesting data.
Willy Tarreau123fc972021-01-22 13:52:41 +0100202 * Please leave this as the last instruction in this function
203 * so that the compiler uses tail merging and the current
204 * function does not appear in the stack.
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100205 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100206 ha_dump_backtrace(buf, " ", 0);
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100207 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200208}
209
210
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200211/* dumps into the buffer some information related to task <task> (which may
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200212 * either be a task or a tasklet, and prepend each line except the first one
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200213 * with <pfx>. The buffer is only appended and the first output starts by the
214 * pointer itself. The caller is responsible for making sure the task is not
215 * going to vanish during the dump.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200216 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200217void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200218{
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200219 const struct stream *s = NULL;
Willy Tarreaua512b022019-08-21 14:12:19 +0200220 const struct appctx __maybe_unused *appctx = NULL;
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200221 struct hlua __maybe_unused *hlua = NULL;
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200222
Willy Tarreau14a1ab72019-05-17 10:34:25 +0200223 if (!task) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200224 chunk_appendf(buf, "0\n");
Willy Tarreau231ec392019-05-17 10:39:47 +0200225 return;
226 }
227
Willy Tarreau20db9112019-05-17 14:14:35 +0200228 if (TASK_IS_TASKLET(task))
229 chunk_appendf(buf,
230 "%p (tasklet) calls=%u\n",
231 task,
232 task->calls);
233 else
234 chunk_appendf(buf,
235 "%p (task) calls=%u last=%llu%s\n",
236 task,
237 task->calls,
238 task->call_date ? (unsigned long long)(now_mono_time() - task->call_date) : 0,
239 task->call_date ? " ns ago" : "");
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200240
Willy Tarreau2e89b092020-03-03 17:13:02 +0100241 chunk_appendf(buf, "%s fct=%p(", pfx, task->process);
242 resolve_sym_name(buf, NULL, task->process);
243 chunk_appendf(buf,") ctx=%p", task->context);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200244
Willy Tarreaua512b022019-08-21 14:12:19 +0200245 if (task->process == task_run_applet && (appctx = task->context))
246 chunk_appendf(buf, "(%s)\n", appctx->applet->name);
247 else
248 chunk_appendf(buf, "\n");
249
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200250 if (task->process == process_stream && task->context)
251 s = (struct stream *)task->context;
252 else if (task->process == task_run_applet && task->context)
Christopher Faulet908628c2022-03-25 16:43:49 +0100253 s = cs_strm(((struct appctx *)task->context)->owner);
Christopher Faulet4a7764a2022-04-01 16:58:52 +0200254 else if (task->process == cs_conn_io_cb && task->context)
255 s = cs_strm(((struct conn_stream *)task->context));
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200256
257 if (s)
258 stream_dump(buf, s, pfx, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200259
260#ifdef USE_LUA
261 hlua = NULL;
262 if (s && (hlua = s->hlua)) {
263 chunk_appendf(buf, "%sCurrent executing Lua from a stream analyser -- ", pfx);
264 }
265 else if (task->process == hlua_process_task && (hlua = task->context)) {
266 chunk_appendf(buf, "%sCurrent executing a Lua task -- ", pfx);
267 }
268 else if (task->process == task_run_applet && (appctx = task->context) &&
269 (appctx->applet->fct == hlua_applet_tcp_fct && (hlua = appctx->ctx.hlua_apptcp.hlua))) {
270 chunk_appendf(buf, "%sCurrent executing a Lua TCP service -- ", pfx);
271 }
272 else if (task->process == task_run_applet && (appctx = task->context) &&
273 (appctx->applet->fct == hlua_applet_http_fct && (hlua = appctx->ctx.hlua_apphttp.hlua))) {
274 chunk_appendf(buf, "%sCurrent executing a Lua HTTP service -- ", pfx);
275 }
276
Christopher Faulet471425f2020-07-24 19:08:05 +0200277 if (hlua && hlua->T) {
Christopher Fauletcc2c4f82021-03-24 14:52:24 +0100278 chunk_appendf(buf, "stack traceback:\n ");
279 append_prefixed_str(buf, hlua_traceback(hlua->T, "\n "), pfx, '\n', 0);
280 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200281 }
Christopher Faulet471425f2020-07-24 19:08:05 +0200282 else
283 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200284#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200285}
286
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200287/* This function dumps all profiling settings. It returns 0 if the output
288 * buffer is full and it needs to be called again, otherwise non-zero.
289 */
290static int cli_io_handler_show_threads(struct appctx *appctx)
291{
Christopher Faulet908628c2022-03-25 16:43:49 +0100292 struct conn_stream *cs = appctx->owner;
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200293 int thr;
294
Christopher Faulet908628c2022-03-25 16:43:49 +0100295 if (unlikely(cs_ic(cs)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200296 return 1;
297
298 if (appctx->st0)
299 thr = appctx->st1;
300 else
301 thr = 0;
302
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200303 chunk_reset(&trash);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200304 ha_thread_dump_all_to_trash();
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200305
Christopher Faulet908628c2022-03-25 16:43:49 +0100306 if (ci_putchk(cs_ic(cs), &trash) == -1) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200307 /* failed, try again */
Christopher Fauleta0bdec32022-04-04 07:51:21 +0200308 cs_rx_room_blk(cs);
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200309 appctx->st1 = thr;
310 return 0;
311 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200312 return 1;
313}
314
Willy Tarreau6ab7b212021-12-28 09:57:10 +0100315#if defined(HA_HAVE_DUMP_LIBS)
316/* parse a "show libs" command. It returns 1 if it emits anything otherwise zero. */
317static int debug_parse_cli_show_libs(char **args, char *payload, struct appctx *appctx, void *private)
318{
319 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
320 return 1;
321
322 chunk_reset(&trash);
323 if (dump_libs(&trash, 1))
324 return cli_msg(appctx, LOG_INFO, trash.area);
325 else
326 return 0;
327}
328#endif
329
Willy Tarreau56131ca2019-05-20 13:48:29 +0200330/* dumps a state of all threads into the trash and on fd #2, then aborts. */
331void ha_panic()
332{
333 chunk_reset(&trash);
Willy Tarreaua9f9fc92019-05-20 17:45:35 +0200334 chunk_appendf(&trash, "Thread %u is about to kill the process.\n", tid + 1);
Willy Tarreau56131ca2019-05-20 13:48:29 +0200335 ha_thread_dump_all_to_trash();
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +0100336 DISGUISE(write(2, trash.area, trash.data));
Willy Tarreau56131ca2019-05-20 13:48:29 +0200337 for (;;)
338 abort();
339}
340
Willy Tarreau06e66c82022-03-02 15:52:03 +0100341/* Complain with message <msg> on stderr. If <counter> is not NULL, it is
342 * atomically incremented, and the message is only printed when the counter
343 * was zero, so that the message is only printed once. <taint> is only checked
344 * on bit 1, and will taint the process either for a bug (2) or warn (0).
345 */
346void complain(int *counter, const char *msg, int taint)
347{
348 if (counter && _HA_ATOMIC_FETCH_ADD(counter, 1))
349 return;
350 DISGUISE(write(2, msg, strlen(msg)));
351 if (taint & 2)
352 mark_tainted(TAINTED_BUG);
353 else
354 mark_tainted(TAINTED_WARN);
355}
356
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200357/* parse a "debug dev exit" command. It always returns 1, though it should never return. */
358static int debug_parse_cli_exit(char **args, char *payload, struct appctx *appctx, void *private)
359{
360 int code = atoi(args[3]);
361
362 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
363 return 1;
364
Willy Tarreau4781b152021-04-06 13:53:36 +0200365 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200366 exit(code);
367 return 1;
368}
369
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100370/* parse a "debug dev bug" command. It always returns 1, though it should never return.
371 * Note: we make sure not to make the function static so that it appears in the trace.
372 */
373int debug_parse_cli_bug(char **args, char *payload, struct appctx *appctx, void *private)
374{
375 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
376 return 1;
377
Willy Tarreau4781b152021-04-06 13:53:36 +0200378 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100379 BUG_ON(one > zero);
380 return 1;
381}
382
Willy Tarreau305cfbd2022-02-25 08:52:39 +0100383/* parse a "debug dev warn" command. It always returns 1.
384 * Note: we make sure not to make the function static so that it appears in the trace.
385 */
386int debug_parse_cli_warn(char **args, char *payload, struct appctx *appctx, void *private)
387{
388 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
389 return 1;
390
391 _HA_ATOMIC_INC(&debug_commands_issued);
392 WARN_ON(one > zero);
393 return 1;
394}
395
Willy Tarreau6d3f1e32022-02-28 11:51:23 +0100396/* parse a "debug dev check" command. It always returns 1.
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100397 * Note: we make sure not to make the function static so that it appears in the trace.
398 */
Willy Tarreau6d3f1e32022-02-28 11:51:23 +0100399int debug_parse_cli_check(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100400{
401 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
402 return 1;
403
404 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6d3f1e32022-02-28 11:51:23 +0100405 CHECK_IF(one > zero);
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100406 return 1;
407}
408
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200409/* parse a "debug dev close" command. It always returns 1. */
410static int debug_parse_cli_close(char **args, char *payload, struct appctx *appctx, void *private)
411{
412 int fd;
413
414 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
415 return 1;
416
Willy Tarreau9d008692019-08-09 11:21:01 +0200417 if (!*args[3])
418 return cli_err(appctx, "Missing file descriptor number.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200419
420 fd = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +0200421 if (fd < 0 || fd >= global.maxsock)
422 return cli_err(appctx, "File descriptor out of range.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200423
Willy Tarreau9d008692019-08-09 11:21:01 +0200424 if (!fdtab[fd].owner)
425 return cli_msg(appctx, LOG_INFO, "File descriptor was already closed.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200426
Willy Tarreau4781b152021-04-06 13:53:36 +0200427 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200428 fd_delete(fd);
429 return 1;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200430}
431
432/* parse a "debug dev delay" command. It always returns 1. */
433static int debug_parse_cli_delay(char **args, char *payload, struct appctx *appctx, void *private)
434{
435 int delay = atoi(args[3]);
436
437 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
438 return 1;
439
Willy Tarreau4781b152021-04-06 13:53:36 +0200440 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200441 usleep((long)delay * 1000);
442 return 1;
443}
444
445/* parse a "debug dev log" command. It always returns 1. */
446static int debug_parse_cli_log(char **args, char *payload, struct appctx *appctx, void *private)
447{
448 int arg;
449
450 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
451 return 1;
452
Willy Tarreau4781b152021-04-06 13:53:36 +0200453 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200454 chunk_reset(&trash);
455 for (arg = 3; *args[arg]; arg++) {
456 if (arg > 3)
457 chunk_strcat(&trash, " ");
458 chunk_strcat(&trash, args[arg]);
459 }
460
461 send_log(NULL, LOG_INFO, "%s\n", trash.area);
462 return 1;
463}
464
465/* parse a "debug dev loop" command. It always returns 1. */
466static int debug_parse_cli_loop(char **args, char *payload, struct appctx *appctx, void *private)
467{
468 struct timeval deadline, curr;
469 int loop = atoi(args[3]);
470
471 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
472 return 1;
473
Willy Tarreau4781b152021-04-06 13:53:36 +0200474 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200475 gettimeofday(&curr, NULL);
476 tv_ms_add(&deadline, &curr, loop);
477
478 while (tv_ms_cmp(&curr, &deadline) < 0)
479 gettimeofday(&curr, NULL);
480
481 return 1;
482}
483
484/* parse a "debug dev panic" command. It always returns 1, though it should never return. */
485static int debug_parse_cli_panic(char **args, char *payload, struct appctx *appctx, void *private)
486{
487 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
488 return 1;
489
Willy Tarreau4781b152021-04-06 13:53:36 +0200490 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200491 ha_panic();
492 return 1;
493}
494
495/* parse a "debug dev exec" command. It always returns 1. */
Willy Tarreaub24ab222019-10-24 18:03:39 +0200496#if defined(DEBUG_DEV)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200497static int debug_parse_cli_exec(char **args, char *payload, struct appctx *appctx, void *private)
498{
Willy Tarreau368bff42019-12-06 17:18:28 +0100499 int pipefd[2];
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200500 int arg;
Willy Tarreau368bff42019-12-06 17:18:28 +0100501 int pid;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200502
503 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
504 return 1;
505
Willy Tarreau4781b152021-04-06 13:53:36 +0200506 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200507 chunk_reset(&trash);
508 for (arg = 3; *args[arg]; arg++) {
509 if (arg > 3)
510 chunk_strcat(&trash, " ");
511 chunk_strcat(&trash, args[arg]);
512 }
513
Willy Tarreau368bff42019-12-06 17:18:28 +0100514 thread_isolate();
515 if (pipe(pipefd) < 0)
516 goto fail_pipe;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200517
Willy Tarreau368bff42019-12-06 17:18:28 +0100518 if (fcntl(pipefd[0], F_SETFD, fcntl(pipefd[0], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
519 goto fail_fcntl;
520
521 if (fcntl(pipefd[1], F_SETFD, fcntl(pipefd[1], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
522 goto fail_fcntl;
523
524 pid = fork();
525
526 if (pid < 0)
527 goto fail_fork;
528 else if (pid == 0) {
529 /* child */
530 char *cmd[4] = { "/bin/sh", "-c", 0, 0 };
531
532 close(0);
533 dup2(pipefd[1], 1);
534 dup2(pipefd[1], 2);
535
536 cmd[2] = trash.area;
537 execvp(cmd[0], cmd);
538 printf("execvp() failed\n");
539 exit(1);
540 }
541
542 /* parent */
543 thread_release();
544 close(pipefd[1]);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200545 chunk_reset(&trash);
546 while (1) {
Willy Tarreau368bff42019-12-06 17:18:28 +0100547 size_t ret = read(pipefd[0], trash.area + trash.data, trash.size - 20 - trash.data);
548 if (ret <= 0)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200549 break;
550 trash.data += ret;
551 if (trash.data + 20 == trash.size) {
552 chunk_strcat(&trash, "\n[[[TRUNCATED]]]\n");
553 break;
554 }
555 }
Willy Tarreau368bff42019-12-06 17:18:28 +0100556 close(pipefd[0]);
557 waitpid(pid, NULL, WNOHANG);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200558 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200559 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau368bff42019-12-06 17:18:28 +0100560
561 fail_fork:
562 fail_fcntl:
563 close(pipefd[0]);
564 close(pipefd[1]);
565 fail_pipe:
566 thread_release();
567 return cli_err(appctx, "Failed to execute command.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200568}
Willy Tarreaub24ab222019-10-24 18:03:39 +0200569#endif
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200570
571/* parse a "debug dev hex" command. It always returns 1. */
572static int debug_parse_cli_hex(char **args, char *payload, struct appctx *appctx, void *private)
573{
574 unsigned long start, len;
575
576 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
577 return 1;
578
Willy Tarreau9d008692019-08-09 11:21:01 +0200579 if (!*args[3])
580 return cli_err(appctx, "Missing memory address to dump from.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200581
582 start = strtoul(args[3], NULL, 0);
Willy Tarreau9d008692019-08-09 11:21:01 +0200583 if (!start)
584 return cli_err(appctx, "Will not dump from NULL address.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200585
Willy Tarreau4781b152021-04-06 13:53:36 +0200586 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau9b013702019-10-24 18:18:02 +0200587
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200588 /* by default, dump ~128 till next block of 16 */
589 len = strtoul(args[4], NULL, 0);
590 if (!len)
591 len = ((start + 128) & -16) - start;
592
593 chunk_reset(&trash);
Willy Tarreau37101052019-05-20 16:48:20 +0200594 dump_hex(&trash, " ", (const void *)start, len, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200595 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200596 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200597}
598
Willy Tarreau48129be2021-05-04 18:40:50 +0200599/* parse a "debug dev sym <addr>" command. It always returns 1. */
600static int debug_parse_cli_sym(char **args, char *payload, struct appctx *appctx, void *private)
601{
602 unsigned long addr;
603
604 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
605 return 1;
606
607 if (!*args[3])
608 return cli_err(appctx, "Missing memory address to be resolved.\n");
609
610 _HA_ATOMIC_INC(&debug_commands_issued);
611
612 addr = strtoul(args[3], NULL, 0);
613 chunk_printf(&trash, "%#lx resolves to ", addr);
614 resolve_sym_name(&trash, NULL, (const void *)addr);
615 chunk_appendf(&trash, "\n");
616
617 return cli_msg(appctx, LOG_INFO, trash.area);
618}
619
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200620/* parse a "debug dev tkill" command. It always returns 1. */
621static int debug_parse_cli_tkill(char **args, char *payload, struct appctx *appctx, void *private)
622{
623 int thr = 0;
624 int sig = SIGABRT;
625
626 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
627 return 1;
628
629 if (*args[3])
630 thr = atoi(args[3]);
631
Willy Tarreau9d008692019-08-09 11:21:01 +0200632 if (thr < 0 || thr > global.nbthread)
633 return cli_err(appctx, "Thread number out of range (use 0 for current).\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200634
635 if (*args[4])
636 sig = atoi(args[4]);
637
Willy Tarreau4781b152021-04-06 13:53:36 +0200638 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200639 if (thr)
Willy Tarreaufade80d2019-05-22 08:46:59 +0200640 ha_tkill(thr - 1, sig);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200641 else
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200642 raise(sig);
643 return 1;
644}
645
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100646/* parse a "debug dev write" command. It always returns 1. */
647static int debug_parse_cli_write(char **args, char *payload, struct appctx *appctx, void *private)
648{
649 unsigned long len;
650
651 if (!*args[3])
652 return cli_err(appctx, "Missing output size.\n");
653
654 len = strtoul(args[3], NULL, 0);
655 if (len >= trash.size)
656 return cli_err(appctx, "Output too large, must be <tune.bufsize.\n");
657
Willy Tarreau4781b152021-04-06 13:53:36 +0200658 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100659
660 chunk_reset(&trash);
661 trash.data = len;
662 memset(trash.area, '.', trash.data);
663 trash.area[trash.data] = 0;
664 for (len = 64; len < trash.data; len += 64)
665 trash.area[len] = '\n';
666 return cli_msg(appctx, LOG_INFO, trash.area);
667}
668
Willy Tarreau68680bb2019-10-23 17:23:25 +0200669/* parse a "debug dev stream" command */
670/*
671 * debug dev stream [strm=<ptr>] [strm.f[{+-=}<flags>]] [txn.f[{+-=}<flags>]] \
672 * [req.f[{+-=}<flags>]] [res.f[{+-=}<flags>]] \
673 * [sif.f[{+-=<flags>]] [sib.f[{+-=<flags>]] \
674 * [sif.s[=<state>]] [sib.s[=<state>]]
675 */
676static int debug_parse_cli_stream(char **args, char *payload, struct appctx *appctx, void *private)
677{
Christopher Faulet908628c2022-03-25 16:43:49 +0100678 struct stream *s = __cs_strm(appctx->owner);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200679 int arg;
680 void *ptr;
681 int size;
682 const char *word, *end;
683 struct ist name;
684 char *msg = NULL;
685 char *endarg;
686 unsigned long long old, new;
687
688 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
689 return 1;
690
691 ptr = NULL; size = 0;
692
693 if (!*args[3]) {
694 return cli_err(appctx,
695 "Usage: debug dev stream { <obj> <op> <value> | wake }*\n"
Christopher Faulet62e75742022-03-31 09:16:34 +0200696 " <obj> = {strm | strm.f | strm.x | sif.f | csf.s | sib.f | csb.s |\n"
Willy Tarreau68680bb2019-10-23 17:23:25 +0200697 " txn.f | req.f | req.r | req.w | res.f | res.r | res.w}\n"
698 " <op> = {'' (show) | '=' (assign) | '^' (xor) | '+' (or) | '-' (andnot)}\n"
699 " <value> = 'now' | 64-bit dec/hex integer (0x prefix supported)\n"
700 " 'wake' wakes the stream asssigned to 'strm' (default: current)\n"
701 );
702 }
703
Willy Tarreau4781b152021-04-06 13:53:36 +0200704 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200705 for (arg = 3; *args[arg]; arg++) {
706 old = 0;
707 end = word = args[arg];
708 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
709 end++;
710 name = ist2(word, end - word);
711 if (isteq(name, ist("strm"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200712 ptr = (!s || !may_access(s)) ? NULL : &s; size = sizeof(s);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200713 } else if (isteq(name, ist("strm.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200714 ptr = (!s || !may_access(s)) ? NULL : &s->flags; size = sizeof(s->flags);
Christopher Fauletae024ce2022-03-29 19:02:31 +0200715 } else if (isteq(name, ist("strm.x"))) {
716 ptr = (!s || !may_access(s)) ? NULL : &s->conn_exp; size = sizeof(s->conn_exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200717 } else if (isteq(name, ist("txn.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200718 ptr = (!s || !may_access(s)) ? NULL : &s->txn->flags; size = sizeof(s->txn->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200719 } else if (isteq(name, ist("req.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200720 ptr = (!s || !may_access(s)) ? NULL : &s->req.flags; size = sizeof(s->req.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200721 } else if (isteq(name, ist("res.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200722 ptr = (!s || !may_access(s)) ? NULL : &s->res.flags; size = sizeof(s->res.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200723 } else if (isteq(name, ist("req.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200724 ptr = (!s || !may_access(s)) ? NULL : &s->req.rex; size = sizeof(s->req.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200725 } else if (isteq(name, ist("res.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200726 ptr = (!s || !may_access(s)) ? NULL : &s->res.rex; size = sizeof(s->res.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200727 } else if (isteq(name, ist("req.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200728 ptr = (!s || !may_access(s)) ? NULL : &s->req.wex; size = sizeof(s->req.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200729 } else if (isteq(name, ist("res.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200730 ptr = (!s || !may_access(s)) ? NULL : &s->res.wex; size = sizeof(s->res.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200731 } else if (isteq(name, ist("sif.f"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100732 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->flags; size = sizeof(cs_si(s->csf)->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200733 } else if (isteq(name, ist("sib.f"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100734 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csb)->flags; size = sizeof(cs_si(s->csb)->flags);
Christopher Faulet62e75742022-03-31 09:16:34 +0200735 } else if (isteq(name, ist("csf.s"))) {
736 ptr = (!s || !may_access(s)) ? NULL : &s->csf->state; size = sizeof(s->csf->state);
737 } else if (isteq(name, ist("csb.s"))) {
738 ptr = (!s || !may_access(s)) ? NULL : &s->csf->state; size = sizeof(s->csb->state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200739 } else if (isteq(name, ist("wake"))) {
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200740 if (s && may_access(s) && may_access((void *)s + sizeof(*s) - 1))
Willy Tarreau68680bb2019-10-23 17:23:25 +0200741 task_wakeup(s->task, TASK_WOKEN_TIMER|TASK_WOKEN_IO|TASK_WOKEN_MSG);
742 continue;
743 } else
744 return cli_dynerr(appctx, memprintf(&msg, "Unsupported field name: '%s'.\n", word));
745
746 /* read previous value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200747 if ((s || ptr == &s) && ptr && may_access(ptr) && may_access(ptr + size - 1)) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200748 if (size == 8)
749 old = read_u64(ptr);
750 else if (size == 4)
751 old = read_u32(ptr);
752 else if (size == 2)
753 old = read_u16(ptr);
754 else
755 old = *(const uint8_t *)ptr;
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200756 } else {
757 memprintf(&msg,
758 "%sSkipping inaccessible pointer %p for field '%.*s'.\n",
759 msg ? msg : "", ptr, (int)(end - word), word);
760 continue;
Willy Tarreau68680bb2019-10-23 17:23:25 +0200761 }
762
763 /* parse the new value . */
764 new = strtoll(end + 1, &endarg, 0);
765 if (end[1] && *endarg) {
766 if (strcmp(end + 1, "now") == 0)
767 new = now_ms;
768 else {
769 memprintf(&msg,
770 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
771 msg ? msg : "", end + 1, (int)(end - word), word);
772 continue;
773 }
774 }
775
776 switch (*end) {
777 case '\0': /* show */
778 memprintf(&msg, "%s%.*s=%#llx ", msg ? msg : "", (int)(end - word), word, old);
779 new = old; // do not change the value
780 break;
781
782 case '=': /* set */
783 break;
784
785 case '^': /* XOR */
786 new = old ^ new;
787 break;
788
789 case '+': /* OR */
790 new = old | new;
791 break;
792
793 case '-': /* AND NOT */
794 new = old & ~new;
795 break;
796
797 default:
798 break;
799 }
800
801 /* write the new value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200802 if (new != old) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200803 if (size == 8)
804 write_u64(ptr, new);
805 else if (size == 4)
806 write_u32(ptr, new);
807 else if (size == 2)
808 write_u16(ptr, new);
809 else
810 *(uint8_t *)ptr = new;
811 }
812 }
813
814 if (msg && *msg)
815 return cli_dynmsg(appctx, LOG_INFO, msg);
816 return 1;
817}
818
Willy Tarreau144f84a2021-03-02 16:09:26 +0100819static struct task *debug_task_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100820{
821 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
822 unsigned long inter = tctx[1];
823 unsigned long rnd;
824
825 t->expire = tick_add(now_ms, inter);
826
827 /* half of the calls will wake up another entry */
Willy Tarreau06e69b52021-03-02 14:01:35 +0100828 rnd = statistical_prng();
Willy Tarreaua5a44792020-11-29 17:12:15 +0100829 if (rnd & 1) {
830 rnd >>= 1;
831 rnd %= tctx[0];
832 rnd = tctx[rnd + 2];
833
834 if (rnd & 1)
835 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
836 else
837 tasklet_wakeup((struct tasklet *)rnd);
838 }
839 return t;
840}
841
Willy Tarreau144f84a2021-03-02 16:09:26 +0100842static struct task *debug_tasklet_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100843{
844 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
845 unsigned long rnd;
846 int i;
847
848 /* wake up two random entries */
849 for (i = 0; i < 2; i++) {
Willy Tarreau06e69b52021-03-02 14:01:35 +0100850 rnd = statistical_prng() % tctx[0];
Willy Tarreaua5a44792020-11-29 17:12:15 +0100851 rnd = tctx[rnd + 2];
852
853 if (rnd & 1)
854 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
855 else
856 tasklet_wakeup((struct tasklet *)rnd);
857 }
858 return t;
859}
860
861/* parse a "debug dev sched" command
862 * debug dev sched {task|tasklet} [count=<count>] [mask=<mask>] [single=<single>] [inter=<inter>]
863 */
864static int debug_parse_cli_sched(char **args, char *payload, struct appctx *appctx, void *private)
865{
866 int arg;
867 void *ptr;
868 int size;
869 const char *word, *end;
870 struct ist name;
871 char *msg = NULL;
872 char *endarg;
873 unsigned long long new;
874 unsigned long count = 0;
875 unsigned long thrid = 0;
876 unsigned int inter = 0;
877 unsigned long mask, tmask;
878 unsigned long i;
879 int mode = 0; // 0 = tasklet; 1 = task
880 int single = 0;
881 unsigned long *tctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
882
883 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
884 return 1;
885
886 ptr = NULL; size = 0;
887 mask = all_threads_mask;
888
889 if (strcmp(args[3], "task") != 0 && strcmp(args[3], "tasklet") != 0) {
890 return cli_err(appctx,
891 "Usage: debug dev sched {task|tasklet} { <obj> = <value> }*\n"
892 " <obj> = {count | mask | inter | single }\n"
893 " <value> = 64-bit dec/hex integer (0x prefix supported)\n"
894 );
895 }
896
897 mode = strcmp(args[3], "task") == 0;
898
Willy Tarreau4781b152021-04-06 13:53:36 +0200899 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreaua5a44792020-11-29 17:12:15 +0100900 for (arg = 4; *args[arg]; arg++) {
901 end = word = args[arg];
902 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
903 end++;
904 name = ist2(word, end - word);
905 if (isteq(name, ist("count"))) {
906 ptr = &count; size = sizeof(count);
907 } else if (isteq(name, ist("mask"))) {
908 ptr = &mask; size = sizeof(mask);
909 } else if (isteq(name, ist("tid"))) {
910 ptr = &thrid; size = sizeof(thrid);
911 } else if (isteq(name, ist("inter"))) {
912 ptr = &inter; size = sizeof(inter);
913 } else if (isteq(name, ist("single"))) {
914 ptr = &single; size = sizeof(single);
915 } else
916 return cli_dynerr(appctx, memprintf(&msg, "Unsupported setting: '%s'.\n", word));
917
918 /* parse the new value . */
919 new = strtoll(end + 1, &endarg, 0);
920 if (end[1] && *endarg) {
921 memprintf(&msg,
922 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
923 msg ? msg : "", end + 1, (int)(end - word), word);
924 continue;
925 }
926
927 /* write the new value */
928 if (size == 8)
929 write_u64(ptr, new);
930 else if (size == 4)
931 write_u32(ptr, new);
932 else if (size == 2)
933 write_u16(ptr, new);
934 else
935 *(uint8_t *)ptr = new;
936 }
937
938 tctx = calloc(sizeof(*tctx), count + 2);
939 if (!tctx)
940 goto fail;
941
942 tctx[0] = (unsigned long)count;
943 tctx[1] = (unsigned long)inter;
944
945 mask &= all_threads_mask;
946 if (!mask)
947 mask = tid_bit;
948
949 tmask = 0;
950 for (i = 0; i < count; i++) {
951 if (single || mode == 0) {
952 /* look for next bit matching a bit in mask or loop back to zero */
953 for (tmask <<= 1; !(mask & tmask); ) {
954 if (!(mask & -tmask))
955 tmask = 1;
956 else
957 tmask <<= 1;
958 }
959 } else {
960 /* multi-threaded task */
961 tmask = mask;
962 }
963
964 /* now, if poly or mask was set, tmask corresponds to the
965 * valid thread mask to use, otherwise it remains zero.
966 */
967 //printf("%lu: mode=%d mask=%#lx\n", i, mode, tmask);
968 if (mode == 0) {
969 struct tasklet *tl = tasklet_new();
970
971 if (!tl)
972 goto fail;
973
974 if (tmask)
975 tl->tid = my_ffsl(tmask) - 1;
976 tl->process = debug_tasklet_handler;
977 tl->context = tctx;
978 tctx[i + 2] = (unsigned long)tl;
979 } else {
980 struct task *task = task_new(tmask ? tmask : tid_bit);
981
982 if (!task)
983 goto fail;
984
985 task->process = debug_task_handler;
986 task->context = tctx;
987 tctx[i + 2] = (unsigned long)task + 1;
988 }
989 }
990
991 /* start the tasks and tasklets */
992 for (i = 0; i < count; i++) {
993 unsigned long ctx = tctx[i + 2];
994
995 if (ctx & 1)
996 task_wakeup((struct task *)(ctx - 1), TASK_WOKEN_INIT);
997 else
998 tasklet_wakeup((struct tasklet *)ctx);
999 }
1000
1001 if (msg && *msg)
1002 return cli_dynmsg(appctx, LOG_INFO, msg);
1003 return 1;
1004
1005 fail:
1006 /* free partially allocated entries */
1007 for (i = 0; tctx && i < count; i++) {
1008 unsigned long ctx = tctx[i + 2];
1009
1010 if (!ctx)
1011 break;
1012
1013 if (ctx & 1)
1014 task_destroy((struct task *)(ctx - 1));
1015 else
1016 tasklet_free((struct tasklet *)ctx);
1017 }
1018
1019 free(tctx);
1020 return cli_err(appctx, "Not enough memory");
1021}
1022
Willy Tarreau5be7c192022-01-24 20:26:09 +01001023/* CLI parser for the "debug dev fd" command. The current FD to restart from is
1024 * stored in i0.
1025 */
1026static int debug_parse_cli_fd(char **args, char *payload, struct appctx *appctx, void *private)
1027{
1028 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1029 return 1;
1030
1031 /* start at fd #0 */
1032 appctx->ctx.cli.i0 = 0;
1033 return 0;
1034}
1035
1036/* CLI I/O handler for the "debug dev fd" command. Dumps all FDs that are
1037 * accessible from the process but not known from fdtab. The FD number to
1038 * restart from is stored in i0.
1039 */
1040static int debug_iohandler_fd(struct appctx *appctx)
1041{
Christopher Faulet908628c2022-03-25 16:43:49 +01001042 struct conn_stream *cs = appctx->owner;
Willy Tarreau5be7c192022-01-24 20:26:09 +01001043 struct sockaddr_storage sa;
1044 struct stat statbuf;
1045 socklen_t salen, vlen;
1046 int ret1, ret2, port;
1047 char *addrstr;
1048 int ret = 1;
1049 int i, fd;
1050
Christopher Faulet908628c2022-03-25 16:43:49 +01001051 if (unlikely(cs_ic(cs)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau5be7c192022-01-24 20:26:09 +01001052 goto end;
1053
1054 chunk_reset(&trash);
1055
1056 thread_isolate();
1057
1058 /* we have two inner loops here, one for the proxy, the other one for
1059 * the buffer.
1060 */
1061 for (fd = appctx->ctx.cli.i0; fd < global.maxsock; fd++) {
1062 /* check for FD's existence */
1063 ret1 = fcntl(fd, F_GETFD, 0);
1064 if (ret1 == -1)
1065 continue; // not known to the process
1066 if (fdtab[fd].owner)
1067 continue; // well-known
1068
1069 /* OK we're seeing an orphan let's try to retrieve as much
1070 * information as possible about it.
1071 */
1072 chunk_printf(&trash, "%5d", fd);
1073
1074 if (fstat(fd, &statbuf) != -1) {
1075 chunk_appendf(&trash, " type=%s mod=%04o dev=%#llx siz=%#llx uid=%lld gid=%lld fs=%#llx ino=%#llx",
1076 isatty(fd) ? "tty.":
1077 S_ISREG(statbuf.st_mode) ? "file":
1078 S_ISDIR(statbuf.st_mode) ? "dir.":
1079 S_ISCHR(statbuf.st_mode) ? "chr.":
1080 S_ISBLK(statbuf.st_mode) ? "blk.":
1081 S_ISFIFO(statbuf.st_mode) ? "pipe":
1082 S_ISLNK(statbuf.st_mode) ? "link":
1083 S_ISSOCK(statbuf.st_mode) ? "sock":
1084#ifdef USE_EPOLL
1085 epoll_wait(fd, NULL, 0, 0) != -1 || errno != EBADF ? "epol":
1086#endif
1087 "????",
1088 (uint)statbuf.st_mode & 07777,
1089
1090 (ullong)statbuf.st_rdev,
1091 (ullong)statbuf.st_size,
1092 (ullong)statbuf.st_uid,
1093 (ullong)statbuf.st_gid,
1094
1095 (ullong)statbuf.st_dev,
1096 (ullong)statbuf.st_ino);
1097 }
1098
1099 chunk_appendf(&trash, " getfd=%s+%#x",
1100 (ret1 & FD_CLOEXEC) ? "cloex" : "",
1101 ret1 &~ FD_CLOEXEC);
1102
1103 /* FD options */
1104 ret2 = fcntl(fd, F_GETFL, 0);
1105 if (ret2) {
1106 chunk_appendf(&trash, " getfl=%s",
1107 (ret1 & 3) >= 2 ? "O_RDWR" :
1108 (ret1 & 1) ? "O_WRONLY" : "O_RDONLY");
1109
1110 for (i = 2; i < 32; i++) {
1111 if (!(ret2 & (1UL << i)))
1112 continue;
1113 switch (1UL << i) {
1114 case O_CREAT: chunk_appendf(&trash, ",O_CREAT"); break;
1115 case O_EXCL: chunk_appendf(&trash, ",O_EXCL"); break;
1116 case O_NOCTTY: chunk_appendf(&trash, ",O_NOCTTY"); break;
1117 case O_TRUNC: chunk_appendf(&trash, ",O_TRUNC"); break;
1118 case O_APPEND: chunk_appendf(&trash, ",O_APPEND"); break;
Willy Tarreau410942b2022-01-25 14:51:53 +01001119#ifdef O_ASYNC
Willy Tarreau5be7c192022-01-24 20:26:09 +01001120 case O_ASYNC: chunk_appendf(&trash, ",O_ASYNC"); break;
Willy Tarreau410942b2022-01-25 14:51:53 +01001121#endif
Willy Tarreau5be7c192022-01-24 20:26:09 +01001122#ifdef O_DIRECT
1123 case O_DIRECT: chunk_appendf(&trash, ",O_DIRECT"); break;
1124#endif
1125#ifdef O_NOATIME
1126 case O_NOATIME: chunk_appendf(&trash, ",O_NOATIME"); break;
1127#endif
1128 }
1129 }
1130 }
1131
1132 vlen = sizeof(ret2);
1133 ret1 = getsockopt(fd, SOL_SOCKET, SO_TYPE, &ret2, &vlen);
1134 if (ret1 != -1)
1135 chunk_appendf(&trash, " so_type=%d", ret2);
1136
1137 vlen = sizeof(ret2);
1138 ret1 = getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ret2, &vlen);
1139 if (ret1 != -1)
1140 chunk_appendf(&trash, " so_accept=%d", ret2);
1141
1142 vlen = sizeof(ret2);
1143 ret1 = getsockopt(fd, SOL_SOCKET, SO_ERROR, &ret2, &vlen);
1144 if (ret1 != -1)
1145 chunk_appendf(&trash, " so_error=%d", ret2);
1146
1147 salen = sizeof(sa);
1148 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1149 if (sa.ss_family == AF_INET)
1150 port = ntohs(((const struct sockaddr_in *)&sa)->sin_port);
1151 else if (sa.ss_family == AF_INET6)
1152 port = ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port);
1153 else
1154 port = 0;
1155 addrstr = sa2str(&sa, port, 0);
1156 chunk_appendf(&trash, " laddr=%s", addrstr);
1157 free(addrstr);
1158 }
1159
1160 salen = sizeof(sa);
1161 if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) {
1162 if (sa.ss_family == AF_INET)
1163 port = ntohs(((const struct sockaddr_in *)&sa)->sin_port);
1164 else if (sa.ss_family == AF_INET6)
1165 port = ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port);
1166 else
1167 port = 0;
1168 addrstr = sa2str(&sa, port, 0);
1169 chunk_appendf(&trash, " raddr=%s", addrstr);
1170 free(addrstr);
1171 }
1172
1173 chunk_appendf(&trash, "\n");
1174
Christopher Faulet908628c2022-03-25 16:43:49 +01001175 if (ci_putchk(cs_ic(cs), &trash) == -1) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02001176 cs_rx_room_blk(cs);
Willy Tarreau5be7c192022-01-24 20:26:09 +01001177 appctx->ctx.cli.i0 = fd;
1178 ret = 0;
1179 break;
1180 }
1181 }
1182
1183 thread_release();
1184 end:
1185 return ret;
1186}
1187
Willy Tarreaua6026a02020-07-02 09:14:48 +02001188#if defined(DEBUG_MEM_STATS)
1189/* CLI parser for the "debug dev memstats" command */
1190static int debug_parse_cli_memstats(char **args, char *payload, struct appctx *appctx, void *private)
1191{
1192 extern __attribute__((__weak__)) struct mem_stats __start_mem_stats;
1193 extern __attribute__((__weak__)) struct mem_stats __stop_mem_stats;
1194
1195 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1196 return 1;
1197
1198 if (strcmp(args[3], "reset") == 0) {
1199 struct mem_stats *ptr;
1200
1201 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1202 return 1;
1203
1204 for (ptr = &__start_mem_stats; ptr < &__stop_mem_stats; ptr++) {
1205 _HA_ATOMIC_STORE(&ptr->calls, 0);
1206 _HA_ATOMIC_STORE(&ptr->size, 0);
1207 }
1208 return 1;
1209 }
1210
1211 if (strcmp(args[3], "all") == 0)
1212 appctx->ctx.cli.i0 = 1;
1213
1214 /* otherwise proceed with the dump from p0 to p1 */
1215 appctx->ctx.cli.p0 = &__start_mem_stats;
1216 appctx->ctx.cli.p1 = &__stop_mem_stats;
1217 return 0;
1218}
1219
1220/* CLI I/O handler for the "debug dev memstats" command. Dumps all mem_stats
1221 * structs referenced by pointers located between p0 and p1. Dumps all entries
1222 * if i0 > 0, otherwise only non-zero calls.
1223 */
1224static int debug_iohandler_memstats(struct appctx *appctx)
1225{
Christopher Faulet908628c2022-03-25 16:43:49 +01001226 struct conn_stream *cs = appctx->owner;
Willy Tarreaua6026a02020-07-02 09:14:48 +02001227 struct mem_stats *ptr = appctx->ctx.cli.p0;
1228 int ret = 1;
1229
Christopher Faulet908628c2022-03-25 16:43:49 +01001230 if (unlikely(cs_ic(cs)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreaua6026a02020-07-02 09:14:48 +02001231 goto end;
1232
1233 chunk_reset(&trash);
1234
1235 /* we have two inner loops here, one for the proxy, the other one for
1236 * the buffer.
1237 */
1238 for (ptr = appctx->ctx.cli.p0; ptr != appctx->ctx.cli.p1; ptr++) {
1239 const char *type;
1240 const char *name;
1241 const char *p;
1242
1243 if (!ptr->size && !ptr->calls && !appctx->ctx.cli.i0)
1244 continue;
1245
1246 /* basename only */
1247 for (p = name = ptr->file; *p; p++) {
1248 if (*p == '/')
1249 name = p + 1;
1250 }
1251
1252 switch (ptr->type) {
1253 case MEM_STATS_TYPE_CALLOC: type = "CALLOC"; break;
1254 case MEM_STATS_TYPE_FREE: type = "FREE"; break;
1255 case MEM_STATS_TYPE_MALLOC: type = "MALLOC"; break;
1256 case MEM_STATS_TYPE_REALLOC: type = "REALLOC"; break;
1257 case MEM_STATS_TYPE_STRDUP: type = "STRDUP"; break;
1258 default: type = "UNSET"; break;
1259 }
1260
1261 //chunk_printf(&trash,
1262 // "%20s:%-5d %7s size: %12lu calls: %9lu size/call: %6lu\n",
1263 // name, ptr->line, type,
1264 // (unsigned long)ptr->size, (unsigned long)ptr->calls,
1265 // (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1266
1267 chunk_printf(&trash, "%s:%d", name, ptr->line);
1268 while (trash.data < 25)
1269 trash.area[trash.data++] = ' ';
1270 chunk_appendf(&trash, "%7s size: %12lu calls: %9lu size/call: %6lu\n",
1271 type,
1272 (unsigned long)ptr->size, (unsigned long)ptr->calls,
1273 (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1274
Christopher Faulet908628c2022-03-25 16:43:49 +01001275 if (ci_putchk(cs_ic(cs), &trash) == -1) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02001276 cs_rx_room_blk(cs);
Willy Tarreaua6026a02020-07-02 09:14:48 +02001277 appctx->ctx.cli.p0 = ptr;
1278 ret = 0;
1279 break;
1280 }
1281 }
1282
1283 end:
1284 return ret;
1285}
1286
1287#endif
1288
Willy Tarreauc7091d82019-05-17 10:08:49 +02001289#ifndef USE_THREAD_DUMP
1290
1291/* This function dumps all threads' state to the trash. This version is the
1292 * most basic one, which doesn't inspect other threads.
1293 */
1294void ha_thread_dump_all_to_trash()
1295{
1296 unsigned int thr;
1297
1298 for (thr = 0; thr < global.nbthread; thr++)
1299 ha_thread_dump(&trash, thr, tid);
1300}
1301
1302#else /* below USE_THREAD_DUMP is set */
1303
Willy Tarreauc7091d82019-05-17 10:08:49 +02001304/* ID of the thread requesting the dump */
1305static unsigned int thread_dump_tid;
1306
1307/* points to the buffer where the dump functions should write. It must
1308 * have already been initialized by the requester. Nothing is done if
1309 * it's NULL.
1310 */
1311struct buffer *thread_dump_buffer = NULL;
1312
1313void ha_thread_dump_all_to_trash()
1314{
Willy Tarreauc7091d82019-05-17 10:08:49 +02001315 unsigned long old;
1316
1317 while (1) {
1318 old = 0;
1319 if (HA_ATOMIC_CAS(&threads_to_dump, &old, all_threads_mask))
1320 break;
1321 ha_thread_relax();
1322 }
1323
1324 thread_dump_buffer = &trash;
1325 thread_dump_tid = tid;
Willy Tarreaufade80d2019-05-22 08:46:59 +02001326 ha_tkillall(DEBUGSIG);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001327}
1328
1329/* handles DEBUGSIG to dump the state of the thread it's working on */
1330void debug_handler(int sig, siginfo_t *si, void *arg)
1331{
Willy Tarreau82aafc42020-03-03 08:31:34 +01001332 /* first, let's check it's really for us and that we didn't just get
1333 * a spurious DEBUGSIG.
1334 */
1335 if (!(threads_to_dump & tid_bit))
1336 return;
1337
Willy Tarreauc7091d82019-05-17 10:08:49 +02001338 /* There are 4 phases in the dump process:
1339 * 1- wait for our turn, i.e. when all lower bits are gone.
1340 * 2- perform the action if our bit is set
1341 * 3- remove our bit to let the next one go, unless we're
Willy Tarreauc0773622019-07-31 19:15:45 +02001342 * the last one and have to put them all as a signal
1343 * 4- wait out bit to re-appear, then clear it and quit.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001344 */
1345
1346 /* wait for all previous threads to finish first */
1347 while (threads_to_dump & (tid_bit - 1))
1348 ha_thread_relax();
1349
1350 /* dump if needed */
1351 if (threads_to_dump & tid_bit) {
1352 if (thread_dump_buffer)
1353 ha_thread_dump(thread_dump_buffer, tid, thread_dump_tid);
1354 if ((threads_to_dump & all_threads_mask) == tid_bit) {
1355 /* last one */
Willy Tarreauc0773622019-07-31 19:15:45 +02001356 HA_ATOMIC_STORE(&threads_to_dump, all_threads_mask);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001357 thread_dump_buffer = NULL;
1358 }
1359 else
1360 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
1361 }
1362
1363 /* now wait for all others to finish dumping. The last one will set all
Willy Tarreauc0773622019-07-31 19:15:45 +02001364 * bits again to broadcast the leaving condition so we'll see ourselves
1365 * present again. This way the threads_to_dump variable never passes to
1366 * zero until all visitors have stopped waiting.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001367 */
Willy Tarreauc0773622019-07-31 19:15:45 +02001368 while (!(threads_to_dump & tid_bit))
1369 ha_thread_relax();
1370 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
Willy Tarreaue6a02fa2019-05-22 07:06:44 +02001371
1372 /* mark the current thread as stuck to detect it upon next invocation
1373 * if it didn't move.
1374 */
1375 if (!((threads_harmless_mask|sleeping_thread_mask) & tid_bit))
Willy Tarreaua0b99532021-09-30 18:48:37 +02001376 th_ctx->flags |= TH_FL_STUCK;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001377}
1378
1379static int init_debug_per_thread()
1380{
1381 sigset_t set;
1382
1383 /* unblock the DEBUGSIG signal we intend to use */
1384 sigemptyset(&set);
1385 sigaddset(&set, DEBUGSIG);
1386 ha_sigmask(SIG_UNBLOCK, &set, NULL);
1387 return 1;
1388}
1389
1390static int init_debug()
1391{
1392 struct sigaction sa;
Willy Tarreau2f1227e2021-01-22 12:12:29 +01001393 void *callers[1];
Willy Tarreauc7091d82019-05-17 10:08:49 +02001394
Willy Tarreau0214b452020-03-04 06:01:40 +01001395 /* calling backtrace() will access libgcc at runtime. We don't want to
1396 * do it after the chroot, so let's perform a first call to have it
1397 * ready in memory for later use.
1398 */
Willy Tarreau13faf162020-03-04 07:44:06 +01001399 my_backtrace(callers, sizeof(callers)/sizeof(*callers));
Willy Tarreauc7091d82019-05-17 10:08:49 +02001400 sa.sa_handler = NULL;
1401 sa.sa_sigaction = debug_handler;
1402 sigemptyset(&sa.sa_mask);
1403 sa.sa_flags = SA_SIGINFO;
1404 sigaction(DEBUGSIG, &sa, NULL);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001405 return ERR_NONE;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001406}
1407
1408REGISTER_POST_CHECK(init_debug);
1409REGISTER_PER_THREAD_INIT(init_debug_per_thread);
1410
1411#endif /* USE_THREAD_DUMP */
1412
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001413/* register cli keywords */
1414static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001415 {{ "debug", "dev", "bug", NULL }, "debug dev bug : call BUG_ON() and crash", debug_parse_cli_bug, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau6d3f1e32022-02-28 11:51:23 +01001416 {{ "debug", "dev", "check", NULL }, "debug dev check : call CHECK_IF() and possibly crash", debug_parse_cli_check, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001417 {{ "debug", "dev", "close", NULL }, "debug dev close <fd> : close this file descriptor", debug_parse_cli_close, NULL, NULL, NULL, ACCESS_EXPERT },
1418 {{ "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 +02001419#if defined(DEBUG_DEV)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001420 {{ "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 +02001421#endif
Willy Tarreau5be7c192022-01-24 20:26:09 +01001422 {{ "debug", "dev", "fd", NULL }, "debug dev fd : scan for rogue/unhandled FDs", debug_parse_cli_fd, debug_iohandler_fd, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001423 {{ "debug", "dev", "exit", NULL }, "debug dev exit [code] : immediately exit the process", debug_parse_cli_exit, NULL, NULL, NULL, ACCESS_EXPERT },
1424 {{ "debug", "dev", "hex", NULL }, "debug dev hex <addr> [len] : dump a memory area", debug_parse_cli_hex, NULL, NULL, NULL, ACCESS_EXPERT },
1425 {{ "debug", "dev", "log", NULL }, "debug dev log [msg] ... : send this msg to global logs", debug_parse_cli_log, NULL, NULL, NULL, ACCESS_EXPERT },
1426 {{ "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 +02001427#if defined(DEBUG_MEM_STATS)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001428 {{ "debug", "dev", "memstats", NULL }, "debug dev memstats [reset|all] : dump/reset memory statistics", debug_parse_cli_memstats, debug_iohandler_memstats, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaua6026a02020-07-02 09:14:48 +02001429#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001430 {{ "debug", "dev", "panic", NULL }, "debug dev panic : immediately trigger a panic", debug_parse_cli_panic, NULL, NULL, NULL, ACCESS_EXPERT },
1431 {{ "debug", "dev", "sched", NULL }, "debug dev sched {task|tasklet} [k=v]* : stress the scheduler", debug_parse_cli_sched, NULL, NULL, NULL, ACCESS_EXPERT },
1432 {{ "debug", "dev", "stream",NULL }, "debug dev stream [k=v]* : show/manipulate stream flags", debug_parse_cli_stream,NULL, NULL, NULL, ACCESS_EXPERT },
1433 {{ "debug", "dev", "sym", NULL }, "debug dev sym <addr> : resolve symbol address", debug_parse_cli_sym, NULL, NULL, NULL, ACCESS_EXPERT },
1434 {{ "debug", "dev", "tkill", NULL }, "debug dev tkill [thr] [sig] : send signal to thread", debug_parse_cli_tkill, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau305cfbd2022-02-25 08:52:39 +01001435 {{ "debug", "dev", "warn", NULL }, "debug dev warn : call WARN_ON() and possibly crash", debug_parse_cli_warn, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001436 {{ "debug", "dev", "write", NULL }, "debug dev write [size] : write that many bytes in return", debug_parse_cli_write, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau6ab7b212021-12-28 09:57:10 +01001437#if defined(HA_HAVE_DUMP_LIBS)
1438 {{ "show", "libs", NULL, NULL }, "show libs : show loaded object files and libraries", debug_parse_cli_show_libs, NULL, NULL },
1439#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001440 {{ "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 +02001441 {{},}
1442}};
1443
1444INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);