blob: 6f482d2b13a95525e10c144ee8cd8864a1f6dcb6 [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 Tarreau5e539c92020-06-04 20:45:39 +020042#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020043#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020044#include <haproxy/thread.h>
Willy Tarreau55542642021-10-08 09:33:24 +020045#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020046#include <haproxy/tools.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020047#include <import/ist.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020048
Willy Tarreau4e2b6462019-05-16 17:44:30 +020049
Willy Tarreaua37cb182019-07-31 19:20:39 +020050/* mask of threads still having to dump, used to respect ordering. Only used
51 * when USE_THREAD_DUMP is set.
52 */
53volatile unsigned long threads_to_dump = 0;
Willy Tarreau9b013702019-10-24 18:18:02 +020054unsigned int debug_commands_issued = 0;
Willy Tarreaua37cb182019-07-31 19:20:39 +020055
Willy Tarreau123fc972021-01-22 13:52:41 +010056/* dumps a backtrace of the current thread that is appended to buffer <buf>.
57 * Lines are prefixed with the string <prefix> which may be empty (used for
58 * indenting). It is recommended to use this at a function's tail so that
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010059 * the function does not appear in the call stack. The <dump> argument
60 * indicates what dump state to start from, and should usually be zero. It
61 * may be among the following values:
62 * - 0: search usual callers before step 1, or directly jump to 2
63 * - 1: skip usual callers before step 2
64 * - 2: dump until polling loop, scheduler, or main() (excluded)
65 * - 3: end
66 * - 4-7: like 0 but stops *after* main.
Willy Tarreau123fc972021-01-22 13:52:41 +010067 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010068void ha_dump_backtrace(struct buffer *buf, const char *prefix, int dump)
Willy Tarreau123fc972021-01-22 13:52:41 +010069{
70 struct buffer bak;
71 char pfx2[100];
72 void *callers[100];
73 int j, nptrs;
74 const void *addr;
Willy Tarreau123fc972021-01-22 13:52:41 +010075
76 nptrs = my_backtrace(callers, sizeof(callers)/sizeof(*callers));
77 if (!nptrs)
78 return;
79
80 if (snprintf(pfx2, sizeof(pfx2), "%s| ", prefix) > sizeof(pfx2))
81 pfx2[0] = 0;
82
83 /* The call backtrace_symbols_fd(callers, nptrs, STDOUT_FILENO would
84 * produce similar output to the following:
85 */
86 chunk_appendf(buf, "%scall trace(%d):\n", prefix, nptrs);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010087 for (j = 0; (j < nptrs || (dump & 3) < 2); j++) {
88 if (j == nptrs && !(dump & 3)) {
Willy Tarreau123fc972021-01-22 13:52:41 +010089 /* we failed to spot the starting point of the
90 * dump, let's start over dumping everything we
91 * have.
92 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010093 dump += 2;
Willy Tarreau123fc972021-01-22 13:52:41 +010094 j = 0;
95 }
96 bak = *buf;
97 dump_addr_and_bytes(buf, pfx2, callers[j], 8);
98 addr = resolve_sym_name(buf, ": ", callers[j]);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010099 if ((dump & 3) == 0) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100100 /* dump not started, will start *after*
Willy Tarreaua8459b22021-01-22 14:12:27 +0100101 * ha_thread_dump_all_to_trash, ha_panic and ha_backtrace_to_stderr
Willy Tarreau123fc972021-01-22 13:52:41 +0100102 */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100103 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
104 addr == ha_backtrace_to_stderr)
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100105 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100106 *buf = bak;
107 continue;
108 }
109
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100110 if ((dump & 3) == 1) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100111 /* starting */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100112 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
113 addr == ha_backtrace_to_stderr) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100114 *buf = bak;
115 continue;
116 }
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100117 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100118 }
119
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100120 if ((dump & 3) == 2) {
121 /* still dumping */
122 if (dump == 6) {
123 /* we only stop *after* main and we must send the LF */
124 if (addr == main) {
125 j = nptrs;
126 dump++;
127 }
128 }
129 else if (addr == run_poll_loop || addr == main || addr == run_tasks_from_lists) {
130 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100131 *buf = bak;
132 break;
133 }
134 }
135 /* OK, line dumped */
136 chunk_appendf(buf, "\n");
137 }
138}
139
Willy Tarreaua8459b22021-01-22 14:12:27 +0100140/* dump a backtrace of current thread's stack to stderr. */
141void ha_backtrace_to_stderr()
142{
143 char area[2048];
144 struct buffer b = b_make(area, sizeof(area), 0, 0);
145
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100146 ha_dump_backtrace(&b, " ", 4);
Willy Tarreaua8459b22021-01-22 14:12:27 +0100147 if (b.data)
Willy Tarreau2cbe2e72021-01-22 15:58:26 +0100148 DISGUISE(write(2, b.area, b.data));
Willy Tarreaua8459b22021-01-22 14:12:27 +0100149}
150
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200151/* Dumps to the buffer some known information for the desired thread, and
152 * optionally extra info for the current thread. The dump will be appended to
153 * the buffer, so the caller is responsible for preliminary initializing it.
154 * The calling thread ID needs to be passed in <calling_tid> to display a star
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200155 * in front of the calling thread's line (usually it's tid). Any stuck thread
156 * is also prefixed with a '>'.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200157 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200158void ha_thread_dump(struct buffer *buf, int thr, int calling_tid)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200159{
160 unsigned long thr_bit = 1UL << thr;
Willy Tarreau45c38e22021-09-30 18:28:49 +0200161 unsigned long long p = ha_thread_ctx[thr].prev_cpu_time;
Willy Tarreau21694982021-10-08 15:09:17 +0200162 unsigned long long n = now_cpu_time_thread(thr);
Willy Tarreaua0b99532021-09-30 18:48:37 +0200163 int stuck = !!(ha_thread_ctx[thr].flags & TH_FL_STUCK);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200164
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200165 chunk_appendf(buf,
Willy Tarreauf0e5da22020-05-01 12:26:03 +0200166 "%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 +0200167 " %2u/%-2u stuck=%d prof=%d",
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200168 (thr == calling_tid) ? '*' : ' ', stuck ? '>' : ' ', thr + 1,
Willy Tarreauff64d3b2020-05-01 11:28:49 +0200169 ha_get_pthread_id(thr),
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200170 thread_has_tasks(),
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200171 !!(global_tasks_mask & thr_bit),
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200172 !eb_is_empty(&ha_thread_ctx[thr].timers),
173 !eb_is_empty(&ha_thread_ctx[thr].rqueue),
174 !(LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_URGENT]) &&
175 LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_NORMAL]) &&
176 LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_BULK]) &&
177 MT_LIST_ISEMPTY(&ha_thread_ctx[thr].shared_tasklet_list)),
178 ha_thread_ctx[thr].tasks_in_list,
179 ha_thread_ctx[thr].rq_total,
Willy Tarreaua3870b72021-09-13 19:24:47 +0200180 ha_thread_info[thr].tg->tgid, ha_thread_info[thr].ltid + 1,
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200181 stuck,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200182 !!(task_profiling_mask & thr_bit));
183
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200184 chunk_appendf(buf,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200185 " harmless=%d wantrdv=%d",
186 !!(threads_harmless_mask & thr_bit),
187 !!(threads_want_rdv_mask & thr_bit));
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200188
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200189 chunk_appendf(buf, "\n");
Willy Tarreau9c8800a2019-05-20 20:52:20 +0200190 chunk_appendf(buf, " cpu_ns: poll=%llu now=%llu diff=%llu\n", p, n, n-p);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200191
Willy Tarreaua3870b72021-09-13 19:24:47 +0200192 /* this is the end of what we can dump from outside the current thread */
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200193
194 if (thr != tid)
195 return;
196
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200197 chunk_appendf(buf, " curr_task=");
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200198 ha_task_dump(buf, th_ctx->current, " ");
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100199
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100200 if (stuck) {
201 /* We only emit the backtrace for stuck threads in order not to
202 * waste precious output buffer space with non-interesting data.
Willy Tarreau123fc972021-01-22 13:52:41 +0100203 * Please leave this as the last instruction in this function
204 * so that the compiler uses tail merging and the current
205 * function does not appear in the stack.
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100206 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100207 ha_dump_backtrace(buf, " ", 0);
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100208 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200209}
210
211
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200212/* dumps into the buffer some information related to task <task> (which may
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200213 * either be a task or a tasklet, and prepend each line except the first one
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200214 * with <pfx>. The buffer is only appended and the first output starts by the
215 * pointer itself. The caller is responsible for making sure the task is not
216 * going to vanish during the dump.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200217 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200218void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200219{
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200220 const struct stream *s = NULL;
Willy Tarreaua512b022019-08-21 14:12:19 +0200221 const struct appctx __maybe_unused *appctx = NULL;
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200222 struct hlua __maybe_unused *hlua = NULL;
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200223
Willy Tarreau14a1ab72019-05-17 10:34:25 +0200224 if (!task) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200225 chunk_appendf(buf, "0\n");
Willy Tarreau231ec392019-05-17 10:39:47 +0200226 return;
227 }
228
Willy Tarreau20db9112019-05-17 14:14:35 +0200229 if (TASK_IS_TASKLET(task))
230 chunk_appendf(buf,
231 "%p (tasklet) calls=%u\n",
232 task,
233 task->calls);
234 else
235 chunk_appendf(buf,
236 "%p (task) calls=%u last=%llu%s\n",
237 task,
238 task->calls,
239 task->call_date ? (unsigned long long)(now_mono_time() - task->call_date) : 0,
240 task->call_date ? " ns ago" : "");
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200241
Willy Tarreau2e89b092020-03-03 17:13:02 +0100242 chunk_appendf(buf, "%s fct=%p(", pfx, task->process);
243 resolve_sym_name(buf, NULL, task->process);
244 chunk_appendf(buf,") ctx=%p", task->context);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200245
Willy Tarreaua512b022019-08-21 14:12:19 +0200246 if (task->process == task_run_applet && (appctx = task->context))
247 chunk_appendf(buf, "(%s)\n", appctx->applet->name);
248 else
249 chunk_appendf(buf, "\n");
250
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200251 if (task->process == process_stream && task->context)
252 s = (struct stream *)task->context;
253 else if (task->process == task_run_applet && task->context)
Christopher Faulet908628c2022-03-25 16:43:49 +0100254 s = cs_strm(((struct appctx *)task->context)->owner);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200255 else if (task->process == si_cs_io_cb && task->context)
Christopher Faulet908628c2022-03-25 16:43:49 +0100256 s = cs_strm(((struct stream_interface *)task->context)->cs);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200257
258 if (s)
259 stream_dump(buf, s, pfx, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200260
261#ifdef USE_LUA
262 hlua = NULL;
263 if (s && (hlua = s->hlua)) {
264 chunk_appendf(buf, "%sCurrent executing Lua from a stream analyser -- ", pfx);
265 }
266 else if (task->process == hlua_process_task && (hlua = task->context)) {
267 chunk_appendf(buf, "%sCurrent executing a Lua task -- ", pfx);
268 }
269 else if (task->process == task_run_applet && (appctx = task->context) &&
270 (appctx->applet->fct == hlua_applet_tcp_fct && (hlua = appctx->ctx.hlua_apptcp.hlua))) {
271 chunk_appendf(buf, "%sCurrent executing a Lua TCP service -- ", pfx);
272 }
273 else if (task->process == task_run_applet && (appctx = task->context) &&
274 (appctx->applet->fct == hlua_applet_http_fct && (hlua = appctx->ctx.hlua_apphttp.hlua))) {
275 chunk_appendf(buf, "%sCurrent executing a Lua HTTP service -- ", pfx);
276 }
277
Christopher Faulet471425f2020-07-24 19:08:05 +0200278 if (hlua && hlua->T) {
Christopher Fauletcc2c4f82021-03-24 14:52:24 +0100279 chunk_appendf(buf, "stack traceback:\n ");
280 append_prefixed_str(buf, hlua_traceback(hlua->T, "\n "), pfx, '\n', 0);
281 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200282 }
Christopher Faulet471425f2020-07-24 19:08:05 +0200283 else
284 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200285#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200286}
287
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200288/* This function dumps all profiling settings. It returns 0 if the output
289 * buffer is full and it needs to be called again, otherwise non-zero.
290 */
291static int cli_io_handler_show_threads(struct appctx *appctx)
292{
Christopher Faulet908628c2022-03-25 16:43:49 +0100293 struct conn_stream *cs = appctx->owner;
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200294 int thr;
295
Christopher Faulet908628c2022-03-25 16:43:49 +0100296 if (unlikely(cs_ic(cs)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200297 return 1;
298
299 if (appctx->st0)
300 thr = appctx->st1;
301 else
302 thr = 0;
303
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200304 chunk_reset(&trash);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200305 ha_thread_dump_all_to_trash();
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200306
Christopher Faulet908628c2022-03-25 16:43:49 +0100307 if (ci_putchk(cs_ic(cs), &trash) == -1) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200308 /* failed, try again */
Christopher Faulet908628c2022-03-25 16:43:49 +0100309 si_rx_room_blk(cs->si);
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200310 appctx->st1 = thr;
311 return 0;
312 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200313 return 1;
314}
315
Willy Tarreau6ab7b212021-12-28 09:57:10 +0100316#if defined(HA_HAVE_DUMP_LIBS)
317/* parse a "show libs" command. It returns 1 if it emits anything otherwise zero. */
318static int debug_parse_cli_show_libs(char **args, char *payload, struct appctx *appctx, void *private)
319{
320 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
321 return 1;
322
323 chunk_reset(&trash);
324 if (dump_libs(&trash, 1))
325 return cli_msg(appctx, LOG_INFO, trash.area);
326 else
327 return 0;
328}
329#endif
330
Willy Tarreau56131ca2019-05-20 13:48:29 +0200331/* dumps a state of all threads into the trash and on fd #2, then aborts. */
332void ha_panic()
333{
334 chunk_reset(&trash);
Willy Tarreaua9f9fc92019-05-20 17:45:35 +0200335 chunk_appendf(&trash, "Thread %u is about to kill the process.\n", tid + 1);
Willy Tarreau56131ca2019-05-20 13:48:29 +0200336 ha_thread_dump_all_to_trash();
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +0100337 DISGUISE(write(2, trash.area, trash.data));
Willy Tarreau56131ca2019-05-20 13:48:29 +0200338 for (;;)
339 abort();
340}
341
Willy Tarreau06e66c82022-03-02 15:52:03 +0100342/* Complain with message <msg> on stderr. If <counter> is not NULL, it is
343 * atomically incremented, and the message is only printed when the counter
344 * was zero, so that the message is only printed once. <taint> is only checked
345 * on bit 1, and will taint the process either for a bug (2) or warn (0).
346 */
347void complain(int *counter, const char *msg, int taint)
348{
349 if (counter && _HA_ATOMIC_FETCH_ADD(counter, 1))
350 return;
351 DISGUISE(write(2, msg, strlen(msg)));
352 if (taint & 2)
353 mark_tainted(TAINTED_BUG);
354 else
355 mark_tainted(TAINTED_WARN);
356}
357
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200358/* parse a "debug dev exit" command. It always returns 1, though it should never return. */
359static int debug_parse_cli_exit(char **args, char *payload, struct appctx *appctx, void *private)
360{
361 int code = atoi(args[3]);
362
363 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
364 return 1;
365
Willy Tarreau4781b152021-04-06 13:53:36 +0200366 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200367 exit(code);
368 return 1;
369}
370
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100371/* parse a "debug dev bug" command. It always returns 1, though it should never return.
372 * Note: we make sure not to make the function static so that it appears in the trace.
373 */
374int debug_parse_cli_bug(char **args, char *payload, struct appctx *appctx, void *private)
375{
376 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
377 return 1;
378
Willy Tarreau4781b152021-04-06 13:53:36 +0200379 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100380 BUG_ON(one > zero);
381 return 1;
382}
383
Willy Tarreau305cfbd2022-02-25 08:52:39 +0100384/* parse a "debug dev warn" command. It always returns 1.
385 * Note: we make sure not to make the function static so that it appears in the trace.
386 */
387int debug_parse_cli_warn(char **args, char *payload, struct appctx *appctx, void *private)
388{
389 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
390 return 1;
391
392 _HA_ATOMIC_INC(&debug_commands_issued);
393 WARN_ON(one > zero);
394 return 1;
395}
396
Willy Tarreau6d3f1e32022-02-28 11:51:23 +0100397/* parse a "debug dev check" command. It always returns 1.
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100398 * Note: we make sure not to make the function static so that it appears in the trace.
399 */
Willy Tarreau6d3f1e32022-02-28 11:51:23 +0100400int debug_parse_cli_check(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100401{
402 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
403 return 1;
404
405 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6d3f1e32022-02-28 11:51:23 +0100406 CHECK_IF(one > zero);
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100407 return 1;
408}
409
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200410/* parse a "debug dev close" command. It always returns 1. */
411static int debug_parse_cli_close(char **args, char *payload, struct appctx *appctx, void *private)
412{
413 int fd;
414
415 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
416 return 1;
417
Willy Tarreau9d008692019-08-09 11:21:01 +0200418 if (!*args[3])
419 return cli_err(appctx, "Missing file descriptor number.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200420
421 fd = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +0200422 if (fd < 0 || fd >= global.maxsock)
423 return cli_err(appctx, "File descriptor out of range.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200424
Willy Tarreau9d008692019-08-09 11:21:01 +0200425 if (!fdtab[fd].owner)
426 return cli_msg(appctx, LOG_INFO, "File descriptor was already closed.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200427
Willy Tarreau4781b152021-04-06 13:53:36 +0200428 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200429 fd_delete(fd);
430 return 1;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200431}
432
433/* parse a "debug dev delay" command. It always returns 1. */
434static int debug_parse_cli_delay(char **args, char *payload, struct appctx *appctx, void *private)
435{
436 int delay = atoi(args[3]);
437
438 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
439 return 1;
440
Willy Tarreau4781b152021-04-06 13:53:36 +0200441 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200442 usleep((long)delay * 1000);
443 return 1;
444}
445
446/* parse a "debug dev log" command. It always returns 1. */
447static int debug_parse_cli_log(char **args, char *payload, struct appctx *appctx, void *private)
448{
449 int arg;
450
451 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
452 return 1;
453
Willy Tarreau4781b152021-04-06 13:53:36 +0200454 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200455 chunk_reset(&trash);
456 for (arg = 3; *args[arg]; arg++) {
457 if (arg > 3)
458 chunk_strcat(&trash, " ");
459 chunk_strcat(&trash, args[arg]);
460 }
461
462 send_log(NULL, LOG_INFO, "%s\n", trash.area);
463 return 1;
464}
465
466/* parse a "debug dev loop" command. It always returns 1. */
467static int debug_parse_cli_loop(char **args, char *payload, struct appctx *appctx, void *private)
468{
469 struct timeval deadline, curr;
470 int loop = atoi(args[3]);
471
472 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
473 return 1;
474
Willy Tarreau4781b152021-04-06 13:53:36 +0200475 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200476 gettimeofday(&curr, NULL);
477 tv_ms_add(&deadline, &curr, loop);
478
479 while (tv_ms_cmp(&curr, &deadline) < 0)
480 gettimeofday(&curr, NULL);
481
482 return 1;
483}
484
485/* parse a "debug dev panic" command. It always returns 1, though it should never return. */
486static int debug_parse_cli_panic(char **args, char *payload, struct appctx *appctx, void *private)
487{
488 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
489 return 1;
490
Willy Tarreau4781b152021-04-06 13:53:36 +0200491 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200492 ha_panic();
493 return 1;
494}
495
496/* parse a "debug dev exec" command. It always returns 1. */
Willy Tarreaub24ab222019-10-24 18:03:39 +0200497#if defined(DEBUG_DEV)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200498static int debug_parse_cli_exec(char **args, char *payload, struct appctx *appctx, void *private)
499{
Willy Tarreau368bff42019-12-06 17:18:28 +0100500 int pipefd[2];
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200501 int arg;
Willy Tarreau368bff42019-12-06 17:18:28 +0100502 int pid;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200503
504 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
505 return 1;
506
Willy Tarreau4781b152021-04-06 13:53:36 +0200507 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200508 chunk_reset(&trash);
509 for (arg = 3; *args[arg]; arg++) {
510 if (arg > 3)
511 chunk_strcat(&trash, " ");
512 chunk_strcat(&trash, args[arg]);
513 }
514
Willy Tarreau368bff42019-12-06 17:18:28 +0100515 thread_isolate();
516 if (pipe(pipefd) < 0)
517 goto fail_pipe;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200518
Willy Tarreau368bff42019-12-06 17:18:28 +0100519 if (fcntl(pipefd[0], F_SETFD, fcntl(pipefd[0], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
520 goto fail_fcntl;
521
522 if (fcntl(pipefd[1], F_SETFD, fcntl(pipefd[1], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
523 goto fail_fcntl;
524
525 pid = fork();
526
527 if (pid < 0)
528 goto fail_fork;
529 else if (pid == 0) {
530 /* child */
531 char *cmd[4] = { "/bin/sh", "-c", 0, 0 };
532
533 close(0);
534 dup2(pipefd[1], 1);
535 dup2(pipefd[1], 2);
536
537 cmd[2] = trash.area;
538 execvp(cmd[0], cmd);
539 printf("execvp() failed\n");
540 exit(1);
541 }
542
543 /* parent */
544 thread_release();
545 close(pipefd[1]);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200546 chunk_reset(&trash);
547 while (1) {
Willy Tarreau368bff42019-12-06 17:18:28 +0100548 size_t ret = read(pipefd[0], trash.area + trash.data, trash.size - 20 - trash.data);
549 if (ret <= 0)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200550 break;
551 trash.data += ret;
552 if (trash.data + 20 == trash.size) {
553 chunk_strcat(&trash, "\n[[[TRUNCATED]]]\n");
554 break;
555 }
556 }
Willy Tarreau368bff42019-12-06 17:18:28 +0100557 close(pipefd[0]);
558 waitpid(pid, NULL, WNOHANG);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200559 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200560 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau368bff42019-12-06 17:18:28 +0100561
562 fail_fork:
563 fail_fcntl:
564 close(pipefd[0]);
565 close(pipefd[1]);
566 fail_pipe:
567 thread_release();
568 return cli_err(appctx, "Failed to execute command.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200569}
Willy Tarreaub24ab222019-10-24 18:03:39 +0200570#endif
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200571
572/* parse a "debug dev hex" command. It always returns 1. */
573static int debug_parse_cli_hex(char **args, char *payload, struct appctx *appctx, void *private)
574{
575 unsigned long start, len;
576
577 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
578 return 1;
579
Willy Tarreau9d008692019-08-09 11:21:01 +0200580 if (!*args[3])
581 return cli_err(appctx, "Missing memory address to dump from.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200582
583 start = strtoul(args[3], NULL, 0);
Willy Tarreau9d008692019-08-09 11:21:01 +0200584 if (!start)
585 return cli_err(appctx, "Will not dump from NULL address.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200586
Willy Tarreau4781b152021-04-06 13:53:36 +0200587 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau9b013702019-10-24 18:18:02 +0200588
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200589 /* by default, dump ~128 till next block of 16 */
590 len = strtoul(args[4], NULL, 0);
591 if (!len)
592 len = ((start + 128) & -16) - start;
593
594 chunk_reset(&trash);
Willy Tarreau37101052019-05-20 16:48:20 +0200595 dump_hex(&trash, " ", (const void *)start, len, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200596 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200597 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200598}
599
Willy Tarreau48129be2021-05-04 18:40:50 +0200600/* parse a "debug dev sym <addr>" command. It always returns 1. */
601static int debug_parse_cli_sym(char **args, char *payload, struct appctx *appctx, void *private)
602{
603 unsigned long addr;
604
605 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
606 return 1;
607
608 if (!*args[3])
609 return cli_err(appctx, "Missing memory address to be resolved.\n");
610
611 _HA_ATOMIC_INC(&debug_commands_issued);
612
613 addr = strtoul(args[3], NULL, 0);
614 chunk_printf(&trash, "%#lx resolves to ", addr);
615 resolve_sym_name(&trash, NULL, (const void *)addr);
616 chunk_appendf(&trash, "\n");
617
618 return cli_msg(appctx, LOG_INFO, trash.area);
619}
620
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200621/* parse a "debug dev tkill" command. It always returns 1. */
622static int debug_parse_cli_tkill(char **args, char *payload, struct appctx *appctx, void *private)
623{
624 int thr = 0;
625 int sig = SIGABRT;
626
627 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
628 return 1;
629
630 if (*args[3])
631 thr = atoi(args[3]);
632
Willy Tarreau9d008692019-08-09 11:21:01 +0200633 if (thr < 0 || thr > global.nbthread)
634 return cli_err(appctx, "Thread number out of range (use 0 for current).\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200635
636 if (*args[4])
637 sig = atoi(args[4]);
638
Willy Tarreau4781b152021-04-06 13:53:36 +0200639 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200640 if (thr)
Willy Tarreaufade80d2019-05-22 08:46:59 +0200641 ha_tkill(thr - 1, sig);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200642 else
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200643 raise(sig);
644 return 1;
645}
646
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100647/* parse a "debug dev write" command. It always returns 1. */
648static int debug_parse_cli_write(char **args, char *payload, struct appctx *appctx, void *private)
649{
650 unsigned long len;
651
652 if (!*args[3])
653 return cli_err(appctx, "Missing output size.\n");
654
655 len = strtoul(args[3], NULL, 0);
656 if (len >= trash.size)
657 return cli_err(appctx, "Output too large, must be <tune.bufsize.\n");
658
Willy Tarreau4781b152021-04-06 13:53:36 +0200659 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100660
661 chunk_reset(&trash);
662 trash.data = len;
663 memset(trash.area, '.', trash.data);
664 trash.area[trash.data] = 0;
665 for (len = 64; len < trash.data; len += 64)
666 trash.area[len] = '\n';
667 return cli_msg(appctx, LOG_INFO, trash.area);
668}
669
Willy Tarreau68680bb2019-10-23 17:23:25 +0200670/* parse a "debug dev stream" command */
671/*
672 * debug dev stream [strm=<ptr>] [strm.f[{+-=}<flags>]] [txn.f[{+-=}<flags>]] \
673 * [req.f[{+-=}<flags>]] [res.f[{+-=}<flags>]] \
674 * [sif.f[{+-=<flags>]] [sib.f[{+-=<flags>]] \
675 * [sif.s[=<state>]] [sib.s[=<state>]]
676 */
677static int debug_parse_cli_stream(char **args, char *payload, struct appctx *appctx, void *private)
678{
Christopher Faulet908628c2022-03-25 16:43:49 +0100679 struct stream *s = __cs_strm(appctx->owner);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200680 int arg;
681 void *ptr;
682 int size;
683 const char *word, *end;
684 struct ist name;
685 char *msg = NULL;
686 char *endarg;
687 unsigned long long old, new;
688
689 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
690 return 1;
691
692 ptr = NULL; size = 0;
693
694 if (!*args[3]) {
695 return cli_err(appctx,
696 "Usage: debug dev stream { <obj> <op> <value> | wake }*\n"
Christopher Faulet62e75742022-03-31 09:16:34 +0200697 " <obj> = {strm | strm.f | strm.x | sif.f | csf.s | sib.f | csb.s |\n"
Willy Tarreau68680bb2019-10-23 17:23:25 +0200698 " txn.f | req.f | req.r | req.w | res.f | res.r | res.w}\n"
699 " <op> = {'' (show) | '=' (assign) | '^' (xor) | '+' (or) | '-' (andnot)}\n"
700 " <value> = 'now' | 64-bit dec/hex integer (0x prefix supported)\n"
701 " 'wake' wakes the stream asssigned to 'strm' (default: current)\n"
702 );
703 }
704
Willy Tarreau4781b152021-04-06 13:53:36 +0200705 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200706 for (arg = 3; *args[arg]; arg++) {
707 old = 0;
708 end = word = args[arg];
709 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
710 end++;
711 name = ist2(word, end - word);
712 if (isteq(name, ist("strm"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200713 ptr = (!s || !may_access(s)) ? NULL : &s; size = sizeof(s);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200714 } else if (isteq(name, ist("strm.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200715 ptr = (!s || !may_access(s)) ? NULL : &s->flags; size = sizeof(s->flags);
Christopher Fauletae024ce2022-03-29 19:02:31 +0200716 } else if (isteq(name, ist("strm.x"))) {
717 ptr = (!s || !may_access(s)) ? NULL : &s->conn_exp; size = sizeof(s->conn_exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200718 } else if (isteq(name, ist("txn.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200719 ptr = (!s || !may_access(s)) ? NULL : &s->txn->flags; size = sizeof(s->txn->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200720 } else if (isteq(name, ist("req.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200721 ptr = (!s || !may_access(s)) ? NULL : &s->req.flags; size = sizeof(s->req.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200722 } else if (isteq(name, ist("res.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200723 ptr = (!s || !may_access(s)) ? NULL : &s->res.flags; size = sizeof(s->res.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200724 } else if (isteq(name, ist("req.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200725 ptr = (!s || !may_access(s)) ? NULL : &s->req.rex; size = sizeof(s->req.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200726 } else if (isteq(name, ist("res.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200727 ptr = (!s || !may_access(s)) ? NULL : &s->res.rex; size = sizeof(s->res.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200728 } else if (isteq(name, ist("req.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200729 ptr = (!s || !may_access(s)) ? NULL : &s->req.wex; size = sizeof(s->req.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200730 } else if (isteq(name, ist("res.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200731 ptr = (!s || !may_access(s)) ? NULL : &s->res.wex; size = sizeof(s->res.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200732 } else if (isteq(name, ist("sif.f"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100733 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 +0200734 } else if (isteq(name, ist("sib.f"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100735 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 +0200736 } else if (isteq(name, ist("csf.s"))) {
737 ptr = (!s || !may_access(s)) ? NULL : &s->csf->state; size = sizeof(s->csf->state);
738 } else if (isteq(name, ist("csb.s"))) {
739 ptr = (!s || !may_access(s)) ? NULL : &s->csf->state; size = sizeof(s->csb->state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200740 } else if (isteq(name, ist("wake"))) {
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200741 if (s && may_access(s) && may_access((void *)s + sizeof(*s) - 1))
Willy Tarreau68680bb2019-10-23 17:23:25 +0200742 task_wakeup(s->task, TASK_WOKEN_TIMER|TASK_WOKEN_IO|TASK_WOKEN_MSG);
743 continue;
744 } else
745 return cli_dynerr(appctx, memprintf(&msg, "Unsupported field name: '%s'.\n", word));
746
747 /* read previous value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200748 if ((s || ptr == &s) && ptr && may_access(ptr) && may_access(ptr + size - 1)) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200749 if (size == 8)
750 old = read_u64(ptr);
751 else if (size == 4)
752 old = read_u32(ptr);
753 else if (size == 2)
754 old = read_u16(ptr);
755 else
756 old = *(const uint8_t *)ptr;
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200757 } else {
758 memprintf(&msg,
759 "%sSkipping inaccessible pointer %p for field '%.*s'.\n",
760 msg ? msg : "", ptr, (int)(end - word), word);
761 continue;
Willy Tarreau68680bb2019-10-23 17:23:25 +0200762 }
763
764 /* parse the new value . */
765 new = strtoll(end + 1, &endarg, 0);
766 if (end[1] && *endarg) {
767 if (strcmp(end + 1, "now") == 0)
768 new = now_ms;
769 else {
770 memprintf(&msg,
771 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
772 msg ? msg : "", end + 1, (int)(end - word), word);
773 continue;
774 }
775 }
776
777 switch (*end) {
778 case '\0': /* show */
779 memprintf(&msg, "%s%.*s=%#llx ", msg ? msg : "", (int)(end - word), word, old);
780 new = old; // do not change the value
781 break;
782
783 case '=': /* set */
784 break;
785
786 case '^': /* XOR */
787 new = old ^ new;
788 break;
789
790 case '+': /* OR */
791 new = old | new;
792 break;
793
794 case '-': /* AND NOT */
795 new = old & ~new;
796 break;
797
798 default:
799 break;
800 }
801
802 /* write the new value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200803 if (new != old) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200804 if (size == 8)
805 write_u64(ptr, new);
806 else if (size == 4)
807 write_u32(ptr, new);
808 else if (size == 2)
809 write_u16(ptr, new);
810 else
811 *(uint8_t *)ptr = new;
812 }
813 }
814
815 if (msg && *msg)
816 return cli_dynmsg(appctx, LOG_INFO, msg);
817 return 1;
818}
819
Willy Tarreau144f84a2021-03-02 16:09:26 +0100820static struct task *debug_task_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100821{
822 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
823 unsigned long inter = tctx[1];
824 unsigned long rnd;
825
826 t->expire = tick_add(now_ms, inter);
827
828 /* half of the calls will wake up another entry */
Willy Tarreau06e69b52021-03-02 14:01:35 +0100829 rnd = statistical_prng();
Willy Tarreaua5a44792020-11-29 17:12:15 +0100830 if (rnd & 1) {
831 rnd >>= 1;
832 rnd %= tctx[0];
833 rnd = tctx[rnd + 2];
834
835 if (rnd & 1)
836 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
837 else
838 tasklet_wakeup((struct tasklet *)rnd);
839 }
840 return t;
841}
842
Willy Tarreau144f84a2021-03-02 16:09:26 +0100843static struct task *debug_tasklet_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100844{
845 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
846 unsigned long rnd;
847 int i;
848
849 /* wake up two random entries */
850 for (i = 0; i < 2; i++) {
Willy Tarreau06e69b52021-03-02 14:01:35 +0100851 rnd = statistical_prng() % tctx[0];
Willy Tarreaua5a44792020-11-29 17:12:15 +0100852 rnd = tctx[rnd + 2];
853
854 if (rnd & 1)
855 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
856 else
857 tasklet_wakeup((struct tasklet *)rnd);
858 }
859 return t;
860}
861
862/* parse a "debug dev sched" command
863 * debug dev sched {task|tasklet} [count=<count>] [mask=<mask>] [single=<single>] [inter=<inter>]
864 */
865static int debug_parse_cli_sched(char **args, char *payload, struct appctx *appctx, void *private)
866{
867 int arg;
868 void *ptr;
869 int size;
870 const char *word, *end;
871 struct ist name;
872 char *msg = NULL;
873 char *endarg;
874 unsigned long long new;
875 unsigned long count = 0;
876 unsigned long thrid = 0;
877 unsigned int inter = 0;
878 unsigned long mask, tmask;
879 unsigned long i;
880 int mode = 0; // 0 = tasklet; 1 = task
881 int single = 0;
882 unsigned long *tctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
883
884 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
885 return 1;
886
887 ptr = NULL; size = 0;
888 mask = all_threads_mask;
889
890 if (strcmp(args[3], "task") != 0 && strcmp(args[3], "tasklet") != 0) {
891 return cli_err(appctx,
892 "Usage: debug dev sched {task|tasklet} { <obj> = <value> }*\n"
893 " <obj> = {count | mask | inter | single }\n"
894 " <value> = 64-bit dec/hex integer (0x prefix supported)\n"
895 );
896 }
897
898 mode = strcmp(args[3], "task") == 0;
899
Willy Tarreau4781b152021-04-06 13:53:36 +0200900 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreaua5a44792020-11-29 17:12:15 +0100901 for (arg = 4; *args[arg]; arg++) {
902 end = word = args[arg];
903 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
904 end++;
905 name = ist2(word, end - word);
906 if (isteq(name, ist("count"))) {
907 ptr = &count; size = sizeof(count);
908 } else if (isteq(name, ist("mask"))) {
909 ptr = &mask; size = sizeof(mask);
910 } else if (isteq(name, ist("tid"))) {
911 ptr = &thrid; size = sizeof(thrid);
912 } else if (isteq(name, ist("inter"))) {
913 ptr = &inter; size = sizeof(inter);
914 } else if (isteq(name, ist("single"))) {
915 ptr = &single; size = sizeof(single);
916 } else
917 return cli_dynerr(appctx, memprintf(&msg, "Unsupported setting: '%s'.\n", word));
918
919 /* parse the new value . */
920 new = strtoll(end + 1, &endarg, 0);
921 if (end[1] && *endarg) {
922 memprintf(&msg,
923 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
924 msg ? msg : "", end + 1, (int)(end - word), word);
925 continue;
926 }
927
928 /* write the new value */
929 if (size == 8)
930 write_u64(ptr, new);
931 else if (size == 4)
932 write_u32(ptr, new);
933 else if (size == 2)
934 write_u16(ptr, new);
935 else
936 *(uint8_t *)ptr = new;
937 }
938
939 tctx = calloc(sizeof(*tctx), count + 2);
940 if (!tctx)
941 goto fail;
942
943 tctx[0] = (unsigned long)count;
944 tctx[1] = (unsigned long)inter;
945
946 mask &= all_threads_mask;
947 if (!mask)
948 mask = tid_bit;
949
950 tmask = 0;
951 for (i = 0; i < count; i++) {
952 if (single || mode == 0) {
953 /* look for next bit matching a bit in mask or loop back to zero */
954 for (tmask <<= 1; !(mask & tmask); ) {
955 if (!(mask & -tmask))
956 tmask = 1;
957 else
958 tmask <<= 1;
959 }
960 } else {
961 /* multi-threaded task */
962 tmask = mask;
963 }
964
965 /* now, if poly or mask was set, tmask corresponds to the
966 * valid thread mask to use, otherwise it remains zero.
967 */
968 //printf("%lu: mode=%d mask=%#lx\n", i, mode, tmask);
969 if (mode == 0) {
970 struct tasklet *tl = tasklet_new();
971
972 if (!tl)
973 goto fail;
974
975 if (tmask)
976 tl->tid = my_ffsl(tmask) - 1;
977 tl->process = debug_tasklet_handler;
978 tl->context = tctx;
979 tctx[i + 2] = (unsigned long)tl;
980 } else {
981 struct task *task = task_new(tmask ? tmask : tid_bit);
982
983 if (!task)
984 goto fail;
985
986 task->process = debug_task_handler;
987 task->context = tctx;
988 tctx[i + 2] = (unsigned long)task + 1;
989 }
990 }
991
992 /* start the tasks and tasklets */
993 for (i = 0; i < count; i++) {
994 unsigned long ctx = tctx[i + 2];
995
996 if (ctx & 1)
997 task_wakeup((struct task *)(ctx - 1), TASK_WOKEN_INIT);
998 else
999 tasklet_wakeup((struct tasklet *)ctx);
1000 }
1001
1002 if (msg && *msg)
1003 return cli_dynmsg(appctx, LOG_INFO, msg);
1004 return 1;
1005
1006 fail:
1007 /* free partially allocated entries */
1008 for (i = 0; tctx && i < count; i++) {
1009 unsigned long ctx = tctx[i + 2];
1010
1011 if (!ctx)
1012 break;
1013
1014 if (ctx & 1)
1015 task_destroy((struct task *)(ctx - 1));
1016 else
1017 tasklet_free((struct tasklet *)ctx);
1018 }
1019
1020 free(tctx);
1021 return cli_err(appctx, "Not enough memory");
1022}
1023
Willy Tarreau5be7c192022-01-24 20:26:09 +01001024/* CLI parser for the "debug dev fd" command. The current FD to restart from is
1025 * stored in i0.
1026 */
1027static int debug_parse_cli_fd(char **args, char *payload, struct appctx *appctx, void *private)
1028{
1029 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1030 return 1;
1031
1032 /* start at fd #0 */
1033 appctx->ctx.cli.i0 = 0;
1034 return 0;
1035}
1036
1037/* CLI I/O handler for the "debug dev fd" command. Dumps all FDs that are
1038 * accessible from the process but not known from fdtab. The FD number to
1039 * restart from is stored in i0.
1040 */
1041static int debug_iohandler_fd(struct appctx *appctx)
1042{
Christopher Faulet908628c2022-03-25 16:43:49 +01001043 struct conn_stream *cs = appctx->owner;
Willy Tarreau5be7c192022-01-24 20:26:09 +01001044 struct sockaddr_storage sa;
1045 struct stat statbuf;
1046 socklen_t salen, vlen;
1047 int ret1, ret2, port;
1048 char *addrstr;
1049 int ret = 1;
1050 int i, fd;
1051
Christopher Faulet908628c2022-03-25 16:43:49 +01001052 if (unlikely(cs_ic(cs)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau5be7c192022-01-24 20:26:09 +01001053 goto end;
1054
1055 chunk_reset(&trash);
1056
1057 thread_isolate();
1058
1059 /* we have two inner loops here, one for the proxy, the other one for
1060 * the buffer.
1061 */
1062 for (fd = appctx->ctx.cli.i0; fd < global.maxsock; fd++) {
1063 /* check for FD's existence */
1064 ret1 = fcntl(fd, F_GETFD, 0);
1065 if (ret1 == -1)
1066 continue; // not known to the process
1067 if (fdtab[fd].owner)
1068 continue; // well-known
1069
1070 /* OK we're seeing an orphan let's try to retrieve as much
1071 * information as possible about it.
1072 */
1073 chunk_printf(&trash, "%5d", fd);
1074
1075 if (fstat(fd, &statbuf) != -1) {
1076 chunk_appendf(&trash, " type=%s mod=%04o dev=%#llx siz=%#llx uid=%lld gid=%lld fs=%#llx ino=%#llx",
1077 isatty(fd) ? "tty.":
1078 S_ISREG(statbuf.st_mode) ? "file":
1079 S_ISDIR(statbuf.st_mode) ? "dir.":
1080 S_ISCHR(statbuf.st_mode) ? "chr.":
1081 S_ISBLK(statbuf.st_mode) ? "blk.":
1082 S_ISFIFO(statbuf.st_mode) ? "pipe":
1083 S_ISLNK(statbuf.st_mode) ? "link":
1084 S_ISSOCK(statbuf.st_mode) ? "sock":
1085#ifdef USE_EPOLL
1086 epoll_wait(fd, NULL, 0, 0) != -1 || errno != EBADF ? "epol":
1087#endif
1088 "????",
1089 (uint)statbuf.st_mode & 07777,
1090
1091 (ullong)statbuf.st_rdev,
1092 (ullong)statbuf.st_size,
1093 (ullong)statbuf.st_uid,
1094 (ullong)statbuf.st_gid,
1095
1096 (ullong)statbuf.st_dev,
1097 (ullong)statbuf.st_ino);
1098 }
1099
1100 chunk_appendf(&trash, " getfd=%s+%#x",
1101 (ret1 & FD_CLOEXEC) ? "cloex" : "",
1102 ret1 &~ FD_CLOEXEC);
1103
1104 /* FD options */
1105 ret2 = fcntl(fd, F_GETFL, 0);
1106 if (ret2) {
1107 chunk_appendf(&trash, " getfl=%s",
1108 (ret1 & 3) >= 2 ? "O_RDWR" :
1109 (ret1 & 1) ? "O_WRONLY" : "O_RDONLY");
1110
1111 for (i = 2; i < 32; i++) {
1112 if (!(ret2 & (1UL << i)))
1113 continue;
1114 switch (1UL << i) {
1115 case O_CREAT: chunk_appendf(&trash, ",O_CREAT"); break;
1116 case O_EXCL: chunk_appendf(&trash, ",O_EXCL"); break;
1117 case O_NOCTTY: chunk_appendf(&trash, ",O_NOCTTY"); break;
1118 case O_TRUNC: chunk_appendf(&trash, ",O_TRUNC"); break;
1119 case O_APPEND: chunk_appendf(&trash, ",O_APPEND"); break;
Willy Tarreau410942b2022-01-25 14:51:53 +01001120#ifdef O_ASYNC
Willy Tarreau5be7c192022-01-24 20:26:09 +01001121 case O_ASYNC: chunk_appendf(&trash, ",O_ASYNC"); break;
Willy Tarreau410942b2022-01-25 14:51:53 +01001122#endif
Willy Tarreau5be7c192022-01-24 20:26:09 +01001123#ifdef O_DIRECT
1124 case O_DIRECT: chunk_appendf(&trash, ",O_DIRECT"); break;
1125#endif
1126#ifdef O_NOATIME
1127 case O_NOATIME: chunk_appendf(&trash, ",O_NOATIME"); break;
1128#endif
1129 }
1130 }
1131 }
1132
1133 vlen = sizeof(ret2);
1134 ret1 = getsockopt(fd, SOL_SOCKET, SO_TYPE, &ret2, &vlen);
1135 if (ret1 != -1)
1136 chunk_appendf(&trash, " so_type=%d", ret2);
1137
1138 vlen = sizeof(ret2);
1139 ret1 = getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ret2, &vlen);
1140 if (ret1 != -1)
1141 chunk_appendf(&trash, " so_accept=%d", ret2);
1142
1143 vlen = sizeof(ret2);
1144 ret1 = getsockopt(fd, SOL_SOCKET, SO_ERROR, &ret2, &vlen);
1145 if (ret1 != -1)
1146 chunk_appendf(&trash, " so_error=%d", ret2);
1147
1148 salen = sizeof(sa);
1149 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1150 if (sa.ss_family == AF_INET)
1151 port = ntohs(((const struct sockaddr_in *)&sa)->sin_port);
1152 else if (sa.ss_family == AF_INET6)
1153 port = ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port);
1154 else
1155 port = 0;
1156 addrstr = sa2str(&sa, port, 0);
1157 chunk_appendf(&trash, " laddr=%s", addrstr);
1158 free(addrstr);
1159 }
1160
1161 salen = sizeof(sa);
1162 if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) {
1163 if (sa.ss_family == AF_INET)
1164 port = ntohs(((const struct sockaddr_in *)&sa)->sin_port);
1165 else if (sa.ss_family == AF_INET6)
1166 port = ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port);
1167 else
1168 port = 0;
1169 addrstr = sa2str(&sa, port, 0);
1170 chunk_appendf(&trash, " raddr=%s", addrstr);
1171 free(addrstr);
1172 }
1173
1174 chunk_appendf(&trash, "\n");
1175
Christopher Faulet908628c2022-03-25 16:43:49 +01001176 if (ci_putchk(cs_ic(cs), &trash) == -1) {
1177 si_rx_room_blk(cs->si);
Willy Tarreau5be7c192022-01-24 20:26:09 +01001178 appctx->ctx.cli.i0 = fd;
1179 ret = 0;
1180 break;
1181 }
1182 }
1183
1184 thread_release();
1185 end:
1186 return ret;
1187}
1188
Willy Tarreaua6026a02020-07-02 09:14:48 +02001189#if defined(DEBUG_MEM_STATS)
1190/* CLI parser for the "debug dev memstats" command */
1191static int debug_parse_cli_memstats(char **args, char *payload, struct appctx *appctx, void *private)
1192{
1193 extern __attribute__((__weak__)) struct mem_stats __start_mem_stats;
1194 extern __attribute__((__weak__)) struct mem_stats __stop_mem_stats;
1195
1196 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1197 return 1;
1198
1199 if (strcmp(args[3], "reset") == 0) {
1200 struct mem_stats *ptr;
1201
1202 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1203 return 1;
1204
1205 for (ptr = &__start_mem_stats; ptr < &__stop_mem_stats; ptr++) {
1206 _HA_ATOMIC_STORE(&ptr->calls, 0);
1207 _HA_ATOMIC_STORE(&ptr->size, 0);
1208 }
1209 return 1;
1210 }
1211
1212 if (strcmp(args[3], "all") == 0)
1213 appctx->ctx.cli.i0 = 1;
1214
1215 /* otherwise proceed with the dump from p0 to p1 */
1216 appctx->ctx.cli.p0 = &__start_mem_stats;
1217 appctx->ctx.cli.p1 = &__stop_mem_stats;
1218 return 0;
1219}
1220
1221/* CLI I/O handler for the "debug dev memstats" command. Dumps all mem_stats
1222 * structs referenced by pointers located between p0 and p1. Dumps all entries
1223 * if i0 > 0, otherwise only non-zero calls.
1224 */
1225static int debug_iohandler_memstats(struct appctx *appctx)
1226{
Christopher Faulet908628c2022-03-25 16:43:49 +01001227 struct conn_stream *cs = appctx->owner;
Willy Tarreaua6026a02020-07-02 09:14:48 +02001228 struct mem_stats *ptr = appctx->ctx.cli.p0;
1229 int ret = 1;
1230
Christopher Faulet908628c2022-03-25 16:43:49 +01001231 if (unlikely(cs_ic(cs)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreaua6026a02020-07-02 09:14:48 +02001232 goto end;
1233
1234 chunk_reset(&trash);
1235
1236 /* we have two inner loops here, one for the proxy, the other one for
1237 * the buffer.
1238 */
1239 for (ptr = appctx->ctx.cli.p0; ptr != appctx->ctx.cli.p1; ptr++) {
1240 const char *type;
1241 const char *name;
1242 const char *p;
1243
1244 if (!ptr->size && !ptr->calls && !appctx->ctx.cli.i0)
1245 continue;
1246
1247 /* basename only */
1248 for (p = name = ptr->file; *p; p++) {
1249 if (*p == '/')
1250 name = p + 1;
1251 }
1252
1253 switch (ptr->type) {
1254 case MEM_STATS_TYPE_CALLOC: type = "CALLOC"; break;
1255 case MEM_STATS_TYPE_FREE: type = "FREE"; break;
1256 case MEM_STATS_TYPE_MALLOC: type = "MALLOC"; break;
1257 case MEM_STATS_TYPE_REALLOC: type = "REALLOC"; break;
1258 case MEM_STATS_TYPE_STRDUP: type = "STRDUP"; break;
1259 default: type = "UNSET"; break;
1260 }
1261
1262 //chunk_printf(&trash,
1263 // "%20s:%-5d %7s size: %12lu calls: %9lu size/call: %6lu\n",
1264 // name, ptr->line, type,
1265 // (unsigned long)ptr->size, (unsigned long)ptr->calls,
1266 // (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1267
1268 chunk_printf(&trash, "%s:%d", name, ptr->line);
1269 while (trash.data < 25)
1270 trash.area[trash.data++] = ' ';
1271 chunk_appendf(&trash, "%7s size: %12lu calls: %9lu size/call: %6lu\n",
1272 type,
1273 (unsigned long)ptr->size, (unsigned long)ptr->calls,
1274 (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1275
Christopher Faulet908628c2022-03-25 16:43:49 +01001276 if (ci_putchk(cs_ic(cs), &trash) == -1) {
1277 si_rx_room_blk(cs->si);
Willy Tarreaua6026a02020-07-02 09:14:48 +02001278 appctx->ctx.cli.p0 = ptr;
1279 ret = 0;
1280 break;
1281 }
1282 }
1283
1284 end:
1285 return ret;
1286}
1287
1288#endif
1289
Willy Tarreauc7091d82019-05-17 10:08:49 +02001290#ifndef USE_THREAD_DUMP
1291
1292/* This function dumps all threads' state to the trash. This version is the
1293 * most basic one, which doesn't inspect other threads.
1294 */
1295void ha_thread_dump_all_to_trash()
1296{
1297 unsigned int thr;
1298
1299 for (thr = 0; thr < global.nbthread; thr++)
1300 ha_thread_dump(&trash, thr, tid);
1301}
1302
1303#else /* below USE_THREAD_DUMP is set */
1304
Willy Tarreauc7091d82019-05-17 10:08:49 +02001305/* ID of the thread requesting the dump */
1306static unsigned int thread_dump_tid;
1307
1308/* points to the buffer where the dump functions should write. It must
1309 * have already been initialized by the requester. Nothing is done if
1310 * it's NULL.
1311 */
1312struct buffer *thread_dump_buffer = NULL;
1313
1314void ha_thread_dump_all_to_trash()
1315{
Willy Tarreauc7091d82019-05-17 10:08:49 +02001316 unsigned long old;
1317
1318 while (1) {
1319 old = 0;
1320 if (HA_ATOMIC_CAS(&threads_to_dump, &old, all_threads_mask))
1321 break;
1322 ha_thread_relax();
1323 }
1324
1325 thread_dump_buffer = &trash;
1326 thread_dump_tid = tid;
Willy Tarreaufade80d2019-05-22 08:46:59 +02001327 ha_tkillall(DEBUGSIG);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001328}
1329
1330/* handles DEBUGSIG to dump the state of the thread it's working on */
1331void debug_handler(int sig, siginfo_t *si, void *arg)
1332{
Willy Tarreau82aafc42020-03-03 08:31:34 +01001333 /* first, let's check it's really for us and that we didn't just get
1334 * a spurious DEBUGSIG.
1335 */
1336 if (!(threads_to_dump & tid_bit))
1337 return;
1338
Willy Tarreauc7091d82019-05-17 10:08:49 +02001339 /* There are 4 phases in the dump process:
1340 * 1- wait for our turn, i.e. when all lower bits are gone.
1341 * 2- perform the action if our bit is set
1342 * 3- remove our bit to let the next one go, unless we're
Willy Tarreauc0773622019-07-31 19:15:45 +02001343 * the last one and have to put them all as a signal
1344 * 4- wait out bit to re-appear, then clear it and quit.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001345 */
1346
1347 /* wait for all previous threads to finish first */
1348 while (threads_to_dump & (tid_bit - 1))
1349 ha_thread_relax();
1350
1351 /* dump if needed */
1352 if (threads_to_dump & tid_bit) {
1353 if (thread_dump_buffer)
1354 ha_thread_dump(thread_dump_buffer, tid, thread_dump_tid);
1355 if ((threads_to_dump & all_threads_mask) == tid_bit) {
1356 /* last one */
Willy Tarreauc0773622019-07-31 19:15:45 +02001357 HA_ATOMIC_STORE(&threads_to_dump, all_threads_mask);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001358 thread_dump_buffer = NULL;
1359 }
1360 else
1361 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
1362 }
1363
1364 /* now wait for all others to finish dumping. The last one will set all
Willy Tarreauc0773622019-07-31 19:15:45 +02001365 * bits again to broadcast the leaving condition so we'll see ourselves
1366 * present again. This way the threads_to_dump variable never passes to
1367 * zero until all visitors have stopped waiting.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001368 */
Willy Tarreauc0773622019-07-31 19:15:45 +02001369 while (!(threads_to_dump & tid_bit))
1370 ha_thread_relax();
1371 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
Willy Tarreaue6a02fa2019-05-22 07:06:44 +02001372
1373 /* mark the current thread as stuck to detect it upon next invocation
1374 * if it didn't move.
1375 */
1376 if (!((threads_harmless_mask|sleeping_thread_mask) & tid_bit))
Willy Tarreaua0b99532021-09-30 18:48:37 +02001377 th_ctx->flags |= TH_FL_STUCK;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001378}
1379
1380static int init_debug_per_thread()
1381{
1382 sigset_t set;
1383
1384 /* unblock the DEBUGSIG signal we intend to use */
1385 sigemptyset(&set);
1386 sigaddset(&set, DEBUGSIG);
1387 ha_sigmask(SIG_UNBLOCK, &set, NULL);
1388 return 1;
1389}
1390
1391static int init_debug()
1392{
1393 struct sigaction sa;
Willy Tarreau2f1227e2021-01-22 12:12:29 +01001394 void *callers[1];
Willy Tarreauc7091d82019-05-17 10:08:49 +02001395
Willy Tarreau0214b452020-03-04 06:01:40 +01001396 /* calling backtrace() will access libgcc at runtime. We don't want to
1397 * do it after the chroot, so let's perform a first call to have it
1398 * ready in memory for later use.
1399 */
Willy Tarreau13faf162020-03-04 07:44:06 +01001400 my_backtrace(callers, sizeof(callers)/sizeof(*callers));
Willy Tarreauc7091d82019-05-17 10:08:49 +02001401 sa.sa_handler = NULL;
1402 sa.sa_sigaction = debug_handler;
1403 sigemptyset(&sa.sa_mask);
1404 sa.sa_flags = SA_SIGINFO;
1405 sigaction(DEBUGSIG, &sa, NULL);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001406 return ERR_NONE;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001407}
1408
1409REGISTER_POST_CHECK(init_debug);
1410REGISTER_PER_THREAD_INIT(init_debug_per_thread);
1411
1412#endif /* USE_THREAD_DUMP */
1413
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001414/* register cli keywords */
1415static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001416 {{ "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 +01001417 {{ "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 +02001418 {{ "debug", "dev", "close", NULL }, "debug dev close <fd> : close this file descriptor", debug_parse_cli_close, NULL, NULL, NULL, ACCESS_EXPERT },
1419 {{ "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 +02001420#if defined(DEBUG_DEV)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001421 {{ "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 +02001422#endif
Willy Tarreau5be7c192022-01-24 20:26:09 +01001423 {{ "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 +02001424 {{ "debug", "dev", "exit", NULL }, "debug dev exit [code] : immediately exit the process", debug_parse_cli_exit, NULL, NULL, NULL, ACCESS_EXPERT },
1425 {{ "debug", "dev", "hex", NULL }, "debug dev hex <addr> [len] : dump a memory area", debug_parse_cli_hex, NULL, NULL, NULL, ACCESS_EXPERT },
1426 {{ "debug", "dev", "log", NULL }, "debug dev log [msg] ... : send this msg to global logs", debug_parse_cli_log, NULL, NULL, NULL, ACCESS_EXPERT },
1427 {{ "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 +02001428#if defined(DEBUG_MEM_STATS)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001429 {{ "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 +02001430#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001431 {{ "debug", "dev", "panic", NULL }, "debug dev panic : immediately trigger a panic", debug_parse_cli_panic, NULL, NULL, NULL, ACCESS_EXPERT },
1432 {{ "debug", "dev", "sched", NULL }, "debug dev sched {task|tasklet} [k=v]* : stress the scheduler", debug_parse_cli_sched, NULL, NULL, NULL, ACCESS_EXPERT },
1433 {{ "debug", "dev", "stream",NULL }, "debug dev stream [k=v]* : show/manipulate stream flags", debug_parse_cli_stream,NULL, NULL, NULL, ACCESS_EXPERT },
1434 {{ "debug", "dev", "sym", NULL }, "debug dev sym <addr> : resolve symbol address", debug_parse_cli_sym, NULL, NULL, NULL, ACCESS_EXPERT },
1435 {{ "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 +01001436 {{ "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 +02001437 {{ "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 +01001438#if defined(HA_HAVE_DUMP_LIBS)
1439 {{ "show", "libs", NULL, NULL }, "show libs : show loaded object files and libraries", debug_parse_cli_show_libs, NULL, NULL },
1440#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001441 {{ "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 +02001442 {{},}
1443}};
1444
1445INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);