blob: e0d3c07f67f4fe5c77bdd44d1505e76522b5fd02 [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>
Willy Tarreau55542642021-10-08 09:33:24 +020032#include <haproxy/clock.h>
Willy Tarreau2a83d602020-05-27 16:58:08 +020033#include <haproxy/debug.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/fd.h>
35#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +020036#include <haproxy/hlua.h>
Willy Tarreaub7fc4c42021-10-06 18:56:42 +020037#include <haproxy/http_ana.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020038#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/net_helper.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020040#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020041#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020042#include <haproxy/thread.h>
Willy Tarreau55542642021-10-08 09:33:24 +020043#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020044#include <haproxy/tools.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020045#include <import/ist.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020046
Willy Tarreau4e2b6462019-05-16 17:44:30 +020047
Willy Tarreaua37cb182019-07-31 19:20:39 +020048/* mask of threads still having to dump, used to respect ordering. Only used
49 * when USE_THREAD_DUMP is set.
50 */
51volatile unsigned long threads_to_dump = 0;
Willy Tarreau9b013702019-10-24 18:18:02 +020052unsigned int debug_commands_issued = 0;
Willy Tarreaua37cb182019-07-31 19:20:39 +020053
Willy Tarreau123fc972021-01-22 13:52:41 +010054/* dumps a backtrace of the current thread that is appended to buffer <buf>.
55 * Lines are prefixed with the string <prefix> which may be empty (used for
56 * indenting). It is recommended to use this at a function's tail so that
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010057 * the function does not appear in the call stack. The <dump> argument
58 * indicates what dump state to start from, and should usually be zero. It
59 * may be among the following values:
60 * - 0: search usual callers before step 1, or directly jump to 2
61 * - 1: skip usual callers before step 2
62 * - 2: dump until polling loop, scheduler, or main() (excluded)
63 * - 3: end
64 * - 4-7: like 0 but stops *after* main.
Willy Tarreau123fc972021-01-22 13:52:41 +010065 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010066void ha_dump_backtrace(struct buffer *buf, const char *prefix, int dump)
Willy Tarreau123fc972021-01-22 13:52:41 +010067{
68 struct buffer bak;
69 char pfx2[100];
70 void *callers[100];
71 int j, nptrs;
72 const void *addr;
Willy Tarreau123fc972021-01-22 13:52:41 +010073
74 nptrs = my_backtrace(callers, sizeof(callers)/sizeof(*callers));
75 if (!nptrs)
76 return;
77
78 if (snprintf(pfx2, sizeof(pfx2), "%s| ", prefix) > sizeof(pfx2))
79 pfx2[0] = 0;
80
81 /* The call backtrace_symbols_fd(callers, nptrs, STDOUT_FILENO would
82 * produce similar output to the following:
83 */
84 chunk_appendf(buf, "%scall trace(%d):\n", prefix, nptrs);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010085 for (j = 0; (j < nptrs || (dump & 3) < 2); j++) {
86 if (j == nptrs && !(dump & 3)) {
Willy Tarreau123fc972021-01-22 13:52:41 +010087 /* we failed to spot the starting point of the
88 * dump, let's start over dumping everything we
89 * have.
90 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010091 dump += 2;
Willy Tarreau123fc972021-01-22 13:52:41 +010092 j = 0;
93 }
94 bak = *buf;
95 dump_addr_and_bytes(buf, pfx2, callers[j], 8);
96 addr = resolve_sym_name(buf, ": ", callers[j]);
Willy Tarreau2bfce7e2021-01-22 14:48:34 +010097 if ((dump & 3) == 0) {
Willy Tarreau123fc972021-01-22 13:52:41 +010098 /* dump not started, will start *after*
Willy Tarreaua8459b22021-01-22 14:12:27 +010099 * ha_thread_dump_all_to_trash, ha_panic and ha_backtrace_to_stderr
Willy Tarreau123fc972021-01-22 13:52:41 +0100100 */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100101 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
102 addr == ha_backtrace_to_stderr)
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100103 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100104 *buf = bak;
105 continue;
106 }
107
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100108 if ((dump & 3) == 1) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100109 /* starting */
Willy Tarreaua8459b22021-01-22 14:12:27 +0100110 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic ||
111 addr == ha_backtrace_to_stderr) {
Willy Tarreau123fc972021-01-22 13:52:41 +0100112 *buf = bak;
113 continue;
114 }
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100115 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100116 }
117
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100118 if ((dump & 3) == 2) {
119 /* still dumping */
120 if (dump == 6) {
121 /* we only stop *after* main and we must send the LF */
122 if (addr == main) {
123 j = nptrs;
124 dump++;
125 }
126 }
127 else if (addr == run_poll_loop || addr == main || addr == run_tasks_from_lists) {
128 dump++;
Willy Tarreau123fc972021-01-22 13:52:41 +0100129 *buf = bak;
130 break;
131 }
132 }
133 /* OK, line dumped */
134 chunk_appendf(buf, "\n");
135 }
136}
137
Willy Tarreaua8459b22021-01-22 14:12:27 +0100138/* dump a backtrace of current thread's stack to stderr. */
139void ha_backtrace_to_stderr()
140{
141 char area[2048];
142 struct buffer b = b_make(area, sizeof(area), 0, 0);
143
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100144 ha_dump_backtrace(&b, " ", 4);
Willy Tarreaua8459b22021-01-22 14:12:27 +0100145 if (b.data)
Willy Tarreau2cbe2e72021-01-22 15:58:26 +0100146 DISGUISE(write(2, b.area, b.data));
Willy Tarreaua8459b22021-01-22 14:12:27 +0100147}
148
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200149/* Dumps to the buffer some known information for the desired thread, and
150 * optionally extra info for the current thread. The dump will be appended to
151 * the buffer, so the caller is responsible for preliminary initializing it.
152 * The calling thread ID needs to be passed in <calling_tid> to display a star
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200153 * in front of the calling thread's line (usually it's tid). Any stuck thread
154 * is also prefixed with a '>'.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200155 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200156void ha_thread_dump(struct buffer *buf, int thr, int calling_tid)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200157{
158 unsigned long thr_bit = 1UL << thr;
Willy Tarreau45c38e22021-09-30 18:28:49 +0200159 unsigned long long p = ha_thread_ctx[thr].prev_cpu_time;
Willy Tarreau21694982021-10-08 15:09:17 +0200160 unsigned long long n = now_cpu_time_thread(thr);
Willy Tarreaua0b99532021-09-30 18:48:37 +0200161 int stuck = !!(ha_thread_ctx[thr].flags & TH_FL_STUCK);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200162
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200163 chunk_appendf(buf,
Willy Tarreauf0e5da22020-05-01 12:26:03 +0200164 "%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 +0200165 " %2u/%-2u stuck=%d prof=%d",
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200166 (thr == calling_tid) ? '*' : ' ', stuck ? '>' : ' ', thr + 1,
Willy Tarreauff64d3b2020-05-01 11:28:49 +0200167 ha_get_pthread_id(thr),
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200168 thread_has_tasks(),
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200169 !!(global_tasks_mask & thr_bit),
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200170 !eb_is_empty(&ha_thread_ctx[thr].timers),
171 !eb_is_empty(&ha_thread_ctx[thr].rqueue),
172 !(LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_URGENT]) &&
173 LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_NORMAL]) &&
174 LIST_ISEMPTY(&ha_thread_ctx[thr].tasklets[TL_BULK]) &&
175 MT_LIST_ISEMPTY(&ha_thread_ctx[thr].shared_tasklet_list)),
176 ha_thread_ctx[thr].tasks_in_list,
177 ha_thread_ctx[thr].rq_total,
Willy Tarreaua3870b72021-09-13 19:24:47 +0200178 ha_thread_info[thr].tg->tgid, ha_thread_info[thr].ltid + 1,
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200179 stuck,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200180 !!(task_profiling_mask & thr_bit));
181
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200182 chunk_appendf(buf,
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200183 " harmless=%d wantrdv=%d",
184 !!(threads_harmless_mask & thr_bit),
185 !!(threads_want_rdv_mask & thr_bit));
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200186
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200187 chunk_appendf(buf, "\n");
Willy Tarreau9c8800a2019-05-20 20:52:20 +0200188 chunk_appendf(buf, " cpu_ns: poll=%llu now=%llu diff=%llu\n", p, n, n-p);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200189
Willy Tarreaua3870b72021-09-13 19:24:47 +0200190 /* this is the end of what we can dump from outside the current thread */
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200191
192 if (thr != tid)
193 return;
194
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200195 chunk_appendf(buf, " curr_task=");
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200196 ha_task_dump(buf, th_ctx->current, " ");
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100197
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100198 if (stuck) {
199 /* We only emit the backtrace for stuck threads in order not to
200 * waste precious output buffer space with non-interesting data.
Willy Tarreau123fc972021-01-22 13:52:41 +0100201 * Please leave this as the last instruction in this function
202 * so that the compiler uses tail merging and the current
203 * function does not appear in the stack.
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100204 */
Willy Tarreau2bfce7e2021-01-22 14:48:34 +0100205 ha_dump_backtrace(buf, " ", 0);
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100206 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200207}
208
209
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200210/* dumps into the buffer some information related to task <task> (which may
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200211 * either be a task or a tasklet, and prepend each line except the first one
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200212 * with <pfx>. The buffer is only appended and the first output starts by the
213 * pointer itself. The caller is responsible for making sure the task is not
214 * going to vanish during the dump.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200215 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200216void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200217{
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200218 const struct stream *s = NULL;
Willy Tarreaua512b022019-08-21 14:12:19 +0200219 const struct appctx __maybe_unused *appctx = NULL;
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200220 struct hlua __maybe_unused *hlua = NULL;
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200221
Willy Tarreau14a1ab72019-05-17 10:34:25 +0200222 if (!task) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200223 chunk_appendf(buf, "0\n");
Willy Tarreau231ec392019-05-17 10:39:47 +0200224 return;
225 }
226
Willy Tarreau20db9112019-05-17 14:14:35 +0200227 if (TASK_IS_TASKLET(task))
228 chunk_appendf(buf,
229 "%p (tasklet) calls=%u\n",
230 task,
231 task->calls);
232 else
233 chunk_appendf(buf,
234 "%p (task) calls=%u last=%llu%s\n",
235 task,
236 task->calls,
237 task->call_date ? (unsigned long long)(now_mono_time() - task->call_date) : 0,
238 task->call_date ? " ns ago" : "");
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200239
Willy Tarreau2e89b092020-03-03 17:13:02 +0100240 chunk_appendf(buf, "%s fct=%p(", pfx, task->process);
241 resolve_sym_name(buf, NULL, task->process);
242 chunk_appendf(buf,") ctx=%p", task->context);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200243
Willy Tarreaua512b022019-08-21 14:12:19 +0200244 if (task->process == task_run_applet && (appctx = task->context))
245 chunk_appendf(buf, "(%s)\n", appctx->applet->name);
246 else
247 chunk_appendf(buf, "\n");
248
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200249 if (task->process == process_stream && task->context)
250 s = (struct stream *)task->context;
251 else if (task->process == task_run_applet && task->context)
Christopher Faulet86e1c332021-12-20 17:09:39 +0100252 s = si_strm(cs_si(((struct appctx *)task->context)->owner));
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200253 else if (task->process == si_cs_io_cb && task->context)
254 s = si_strm((struct stream_interface *)task->context);
255
256 if (s)
257 stream_dump(buf, s, pfx, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200258
259#ifdef USE_LUA
260 hlua = NULL;
261 if (s && (hlua = s->hlua)) {
262 chunk_appendf(buf, "%sCurrent executing Lua from a stream analyser -- ", pfx);
263 }
264 else if (task->process == hlua_process_task && (hlua = task->context)) {
265 chunk_appendf(buf, "%sCurrent executing a Lua task -- ", pfx);
266 }
267 else if (task->process == task_run_applet && (appctx = task->context) &&
268 (appctx->applet->fct == hlua_applet_tcp_fct && (hlua = appctx->ctx.hlua_apptcp.hlua))) {
269 chunk_appendf(buf, "%sCurrent executing a Lua TCP service -- ", pfx);
270 }
271 else if (task->process == task_run_applet && (appctx = task->context) &&
272 (appctx->applet->fct == hlua_applet_http_fct && (hlua = appctx->ctx.hlua_apphttp.hlua))) {
273 chunk_appendf(buf, "%sCurrent executing a Lua HTTP service -- ", pfx);
274 }
275
Christopher Faulet471425f2020-07-24 19:08:05 +0200276 if (hlua && hlua->T) {
Christopher Fauletcc2c4f82021-03-24 14:52:24 +0100277 chunk_appendf(buf, "stack traceback:\n ");
278 append_prefixed_str(buf, hlua_traceback(hlua->T, "\n "), pfx, '\n', 0);
279 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200280 }
Christopher Faulet471425f2020-07-24 19:08:05 +0200281 else
282 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200283#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200284}
285
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200286/* This function dumps all profiling settings. It returns 0 if the output
287 * buffer is full and it needs to be called again, otherwise non-zero.
288 */
289static int cli_io_handler_show_threads(struct appctx *appctx)
290{
Christopher Faulet86e1c332021-12-20 17:09:39 +0100291 struct stream_interface *si = cs_si(appctx->owner);
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200292 int thr;
293
294 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
295 return 1;
296
297 if (appctx->st0)
298 thr = appctx->st1;
299 else
300 thr = 0;
301
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200302 chunk_reset(&trash);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200303 ha_thread_dump_all_to_trash();
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200304
305 if (ci_putchk(si_ic(si), &trash) == -1) {
306 /* failed, try again */
307 si_rx_room_blk(si);
308 appctx->st1 = thr;
309 return 0;
310 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200311 return 1;
312}
313
Willy Tarreau6ab7b212021-12-28 09:57:10 +0100314#if defined(HA_HAVE_DUMP_LIBS)
315/* parse a "show libs" command. It returns 1 if it emits anything otherwise zero. */
316static int debug_parse_cli_show_libs(char **args, char *payload, struct appctx *appctx, void *private)
317{
318 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
319 return 1;
320
321 chunk_reset(&trash);
322 if (dump_libs(&trash, 1))
323 return cli_msg(appctx, LOG_INFO, trash.area);
324 else
325 return 0;
326}
327#endif
328
Willy Tarreau56131ca2019-05-20 13:48:29 +0200329/* dumps a state of all threads into the trash and on fd #2, then aborts. */
330void ha_panic()
331{
332 chunk_reset(&trash);
Willy Tarreaua9f9fc92019-05-20 17:45:35 +0200333 chunk_appendf(&trash, "Thread %u is about to kill the process.\n", tid + 1);
Willy Tarreau56131ca2019-05-20 13:48:29 +0200334 ha_thread_dump_all_to_trash();
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +0100335 DISGUISE(write(2, trash.area, trash.data));
Willy Tarreau56131ca2019-05-20 13:48:29 +0200336 for (;;)
337 abort();
338}
339
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200340/* parse a "debug dev exit" command. It always returns 1, though it should never return. */
341static int debug_parse_cli_exit(char **args, char *payload, struct appctx *appctx, void *private)
342{
343 int code = atoi(args[3]);
344
345 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
346 return 1;
347
Willy Tarreau4781b152021-04-06 13:53:36 +0200348 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200349 exit(code);
350 return 1;
351}
352
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100353/* parse a "debug dev bug" command. It always returns 1, though it should never return.
354 * Note: we make sure not to make the function static so that it appears in the trace.
355 */
356int debug_parse_cli_bug(char **args, char *payload, struct appctx *appctx, void *private)
357{
358 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
359 return 1;
360
Willy Tarreau4781b152021-04-06 13:53:36 +0200361 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau5baf4fe2021-01-22 14:15:46 +0100362 BUG_ON(one > zero);
363 return 1;
364}
365
Willy Tarreau305cfbd2022-02-25 08:52:39 +0100366/* parse a "debug dev warn" command. It always returns 1.
367 * Note: we make sure not to make the function static so that it appears in the trace.
368 */
369int debug_parse_cli_warn(char **args, char *payload, struct appctx *appctx, void *private)
370{
371 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
372 return 1;
373
374 _HA_ATOMIC_INC(&debug_commands_issued);
375 WARN_ON(one > zero);
376 return 1;
377}
378
Willy Tarreau4e0a8b12022-02-25 08:55:11 +0100379/* parse a "debug dev warn1" command. It always returns 1.
380 * Note: we make sure not to make the function static so that it appears in the trace.
381 */
382int debug_parse_cli_warn1(char **args, char *payload, struct appctx *appctx, void *private)
383{
384 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
385 return 1;
386
387 _HA_ATOMIC_INC(&debug_commands_issued);
388 WARN_ON_ONCE(one > zero);
389 return 1;
390}
391
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200392/* parse a "debug dev close" command. It always returns 1. */
393static int debug_parse_cli_close(char **args, char *payload, struct appctx *appctx, void *private)
394{
395 int fd;
396
397 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
398 return 1;
399
Willy Tarreau9d008692019-08-09 11:21:01 +0200400 if (!*args[3])
401 return cli_err(appctx, "Missing file descriptor number.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200402
403 fd = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +0200404 if (fd < 0 || fd >= global.maxsock)
405 return cli_err(appctx, "File descriptor out of range.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200406
Willy Tarreau9d008692019-08-09 11:21:01 +0200407 if (!fdtab[fd].owner)
408 return cli_msg(appctx, LOG_INFO, "File descriptor was already closed.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200409
Willy Tarreau4781b152021-04-06 13:53:36 +0200410 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200411 fd_delete(fd);
412 return 1;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200413}
414
415/* parse a "debug dev delay" command. It always returns 1. */
416static int debug_parse_cli_delay(char **args, char *payload, struct appctx *appctx, void *private)
417{
418 int delay = atoi(args[3]);
419
420 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
421 return 1;
422
Willy Tarreau4781b152021-04-06 13:53:36 +0200423 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200424 usleep((long)delay * 1000);
425 return 1;
426}
427
428/* parse a "debug dev log" command. It always returns 1. */
429static int debug_parse_cli_log(char **args, char *payload, struct appctx *appctx, void *private)
430{
431 int arg;
432
433 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
434 return 1;
435
Willy Tarreau4781b152021-04-06 13:53:36 +0200436 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200437 chunk_reset(&trash);
438 for (arg = 3; *args[arg]; arg++) {
439 if (arg > 3)
440 chunk_strcat(&trash, " ");
441 chunk_strcat(&trash, args[arg]);
442 }
443
444 send_log(NULL, LOG_INFO, "%s\n", trash.area);
445 return 1;
446}
447
448/* parse a "debug dev loop" command. It always returns 1. */
449static int debug_parse_cli_loop(char **args, char *payload, struct appctx *appctx, void *private)
450{
451 struct timeval deadline, curr;
452 int loop = atoi(args[3]);
453
454 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
455 return 1;
456
Willy Tarreau4781b152021-04-06 13:53:36 +0200457 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200458 gettimeofday(&curr, NULL);
459 tv_ms_add(&deadline, &curr, loop);
460
461 while (tv_ms_cmp(&curr, &deadline) < 0)
462 gettimeofday(&curr, NULL);
463
464 return 1;
465}
466
467/* parse a "debug dev panic" command. It always returns 1, though it should never return. */
468static int debug_parse_cli_panic(char **args, char *payload, struct appctx *appctx, void *private)
469{
470 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
471 return 1;
472
Willy Tarreau4781b152021-04-06 13:53:36 +0200473 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200474 ha_panic();
475 return 1;
476}
477
478/* parse a "debug dev exec" command. It always returns 1. */
Willy Tarreaub24ab222019-10-24 18:03:39 +0200479#if defined(DEBUG_DEV)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200480static int debug_parse_cli_exec(char **args, char *payload, struct appctx *appctx, void *private)
481{
Willy Tarreau368bff42019-12-06 17:18:28 +0100482 int pipefd[2];
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200483 int arg;
Willy Tarreau368bff42019-12-06 17:18:28 +0100484 int pid;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200485
486 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
487 return 1;
488
Willy Tarreau4781b152021-04-06 13:53:36 +0200489 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200490 chunk_reset(&trash);
491 for (arg = 3; *args[arg]; arg++) {
492 if (arg > 3)
493 chunk_strcat(&trash, " ");
494 chunk_strcat(&trash, args[arg]);
495 }
496
Willy Tarreau368bff42019-12-06 17:18:28 +0100497 thread_isolate();
498 if (pipe(pipefd) < 0)
499 goto fail_pipe;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200500
Willy Tarreau368bff42019-12-06 17:18:28 +0100501 if (fcntl(pipefd[0], F_SETFD, fcntl(pipefd[0], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
502 goto fail_fcntl;
503
504 if (fcntl(pipefd[1], F_SETFD, fcntl(pipefd[1], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
505 goto fail_fcntl;
506
507 pid = fork();
508
509 if (pid < 0)
510 goto fail_fork;
511 else if (pid == 0) {
512 /* child */
513 char *cmd[4] = { "/bin/sh", "-c", 0, 0 };
514
515 close(0);
516 dup2(pipefd[1], 1);
517 dup2(pipefd[1], 2);
518
519 cmd[2] = trash.area;
520 execvp(cmd[0], cmd);
521 printf("execvp() failed\n");
522 exit(1);
523 }
524
525 /* parent */
526 thread_release();
527 close(pipefd[1]);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200528 chunk_reset(&trash);
529 while (1) {
Willy Tarreau368bff42019-12-06 17:18:28 +0100530 size_t ret = read(pipefd[0], trash.area + trash.data, trash.size - 20 - trash.data);
531 if (ret <= 0)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200532 break;
533 trash.data += ret;
534 if (trash.data + 20 == trash.size) {
535 chunk_strcat(&trash, "\n[[[TRUNCATED]]]\n");
536 break;
537 }
538 }
Willy Tarreau368bff42019-12-06 17:18:28 +0100539 close(pipefd[0]);
540 waitpid(pid, NULL, WNOHANG);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200541 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200542 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau368bff42019-12-06 17:18:28 +0100543
544 fail_fork:
545 fail_fcntl:
546 close(pipefd[0]);
547 close(pipefd[1]);
548 fail_pipe:
549 thread_release();
550 return cli_err(appctx, "Failed to execute command.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200551}
Willy Tarreaub24ab222019-10-24 18:03:39 +0200552#endif
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200553
554/* parse a "debug dev hex" command. It always returns 1. */
555static int debug_parse_cli_hex(char **args, char *payload, struct appctx *appctx, void *private)
556{
557 unsigned long start, len;
558
559 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
560 return 1;
561
Willy Tarreau9d008692019-08-09 11:21:01 +0200562 if (!*args[3])
563 return cli_err(appctx, "Missing memory address to dump from.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200564
565 start = strtoul(args[3], NULL, 0);
Willy Tarreau9d008692019-08-09 11:21:01 +0200566 if (!start)
567 return cli_err(appctx, "Will not dump from NULL address.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200568
Willy Tarreau4781b152021-04-06 13:53:36 +0200569 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau9b013702019-10-24 18:18:02 +0200570
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200571 /* by default, dump ~128 till next block of 16 */
572 len = strtoul(args[4], NULL, 0);
573 if (!len)
574 len = ((start + 128) & -16) - start;
575
576 chunk_reset(&trash);
Willy Tarreau37101052019-05-20 16:48:20 +0200577 dump_hex(&trash, " ", (const void *)start, len, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200578 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200579 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200580}
581
Willy Tarreau48129be2021-05-04 18:40:50 +0200582/* parse a "debug dev sym <addr>" command. It always returns 1. */
583static int debug_parse_cli_sym(char **args, char *payload, struct appctx *appctx, void *private)
584{
585 unsigned long addr;
586
587 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
588 return 1;
589
590 if (!*args[3])
591 return cli_err(appctx, "Missing memory address to be resolved.\n");
592
593 _HA_ATOMIC_INC(&debug_commands_issued);
594
595 addr = strtoul(args[3], NULL, 0);
596 chunk_printf(&trash, "%#lx resolves to ", addr);
597 resolve_sym_name(&trash, NULL, (const void *)addr);
598 chunk_appendf(&trash, "\n");
599
600 return cli_msg(appctx, LOG_INFO, trash.area);
601}
602
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200603/* parse a "debug dev tkill" command. It always returns 1. */
604static int debug_parse_cli_tkill(char **args, char *payload, struct appctx *appctx, void *private)
605{
606 int thr = 0;
607 int sig = SIGABRT;
608
609 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
610 return 1;
611
612 if (*args[3])
613 thr = atoi(args[3]);
614
Willy Tarreau9d008692019-08-09 11:21:01 +0200615 if (thr < 0 || thr > global.nbthread)
616 return cli_err(appctx, "Thread number out of range (use 0 for current).\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200617
618 if (*args[4])
619 sig = atoi(args[4]);
620
Willy Tarreau4781b152021-04-06 13:53:36 +0200621 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200622 if (thr)
Willy Tarreaufade80d2019-05-22 08:46:59 +0200623 ha_tkill(thr - 1, sig);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200624 else
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200625 raise(sig);
626 return 1;
627}
628
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100629/* parse a "debug dev write" command. It always returns 1. */
630static int debug_parse_cli_write(char **args, char *payload, struct appctx *appctx, void *private)
631{
632 unsigned long len;
633
634 if (!*args[3])
635 return cli_err(appctx, "Missing output size.\n");
636
637 len = strtoul(args[3], NULL, 0);
638 if (len >= trash.size)
639 return cli_err(appctx, "Output too large, must be <tune.bufsize.\n");
640
Willy Tarreau4781b152021-04-06 13:53:36 +0200641 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100642
643 chunk_reset(&trash);
644 trash.data = len;
645 memset(trash.area, '.', trash.data);
646 trash.area[trash.data] = 0;
647 for (len = 64; len < trash.data; len += 64)
648 trash.area[len] = '\n';
649 return cli_msg(appctx, LOG_INFO, trash.area);
650}
651
Willy Tarreau68680bb2019-10-23 17:23:25 +0200652/* parse a "debug dev stream" command */
653/*
654 * debug dev stream [strm=<ptr>] [strm.f[{+-=}<flags>]] [txn.f[{+-=}<flags>]] \
655 * [req.f[{+-=}<flags>]] [res.f[{+-=}<flags>]] \
656 * [sif.f[{+-=<flags>]] [sib.f[{+-=<flags>]] \
657 * [sif.s[=<state>]] [sib.s[=<state>]]
658 */
659static int debug_parse_cli_stream(char **args, char *payload, struct appctx *appctx, void *private)
660{
Christopher Faulet86e1c332021-12-20 17:09:39 +0100661 struct stream *s = si_strm(cs_si(appctx->owner));
Willy Tarreau68680bb2019-10-23 17:23:25 +0200662 int arg;
663 void *ptr;
664 int size;
665 const char *word, *end;
666 struct ist name;
667 char *msg = NULL;
668 char *endarg;
669 unsigned long long old, new;
670
671 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
672 return 1;
673
674 ptr = NULL; size = 0;
675
676 if (!*args[3]) {
677 return cli_err(appctx,
678 "Usage: debug dev stream { <obj> <op> <value> | wake }*\n"
679 " <obj> = {strm | strm.f | sif.f | sif.s | sif.x | sib.f | sib.s | sib.x |\n"
680 " txn.f | req.f | req.r | req.w | res.f | res.r | res.w}\n"
681 " <op> = {'' (show) | '=' (assign) | '^' (xor) | '+' (or) | '-' (andnot)}\n"
682 " <value> = 'now' | 64-bit dec/hex integer (0x prefix supported)\n"
683 " 'wake' wakes the stream asssigned to 'strm' (default: current)\n"
684 );
685 }
686
Willy Tarreau4781b152021-04-06 13:53:36 +0200687 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200688 for (arg = 3; *args[arg]; arg++) {
689 old = 0;
690 end = word = args[arg];
691 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
692 end++;
693 name = ist2(word, end - word);
694 if (isteq(name, ist("strm"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200695 ptr = (!s || !may_access(s)) ? NULL : &s; size = sizeof(s);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200696 } else if (isteq(name, ist("strm.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200697 ptr = (!s || !may_access(s)) ? NULL : &s->flags; size = sizeof(s->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200698 } else if (isteq(name, ist("txn.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200699 ptr = (!s || !may_access(s)) ? NULL : &s->txn->flags; size = sizeof(s->txn->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200700 } else if (isteq(name, ist("req.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200701 ptr = (!s || !may_access(s)) ? NULL : &s->req.flags; size = sizeof(s->req.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200702 } else if (isteq(name, ist("res.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200703 ptr = (!s || !may_access(s)) ? NULL : &s->res.flags; size = sizeof(s->res.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200704 } else if (isteq(name, ist("req.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200705 ptr = (!s || !may_access(s)) ? NULL : &s->req.rex; size = sizeof(s->req.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200706 } else if (isteq(name, ist("res.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200707 ptr = (!s || !may_access(s)) ? NULL : &s->res.rex; size = sizeof(s->res.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200708 } else if (isteq(name, ist("req.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200709 ptr = (!s || !may_access(s)) ? NULL : &s->req.wex; size = sizeof(s->req.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200710 } else if (isteq(name, ist("res.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200711 ptr = (!s || !may_access(s)) ? NULL : &s->res.wex; size = sizeof(s->res.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200712 } else if (isteq(name, ist("sif.f"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100713 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 +0200714 } else if (isteq(name, ist("sib.f"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100715 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csb)->flags; size = sizeof(cs_si(s->csb)->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200716 } else if (isteq(name, ist("sif.x"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100717 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->exp; size = sizeof(cs_si(s->csf)->exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200718 } else if (isteq(name, ist("sib.x"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100719 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csb)->exp; size = sizeof(cs_si(s->csb)->exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200720 } else if (isteq(name, ist("sif.s"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100721 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->state; size = sizeof(cs_si(s->csf)->state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200722 } else if (isteq(name, ist("sib.s"))) {
Christopher Faulet5d3c8aa2021-12-23 13:38:12 +0100723 ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->state; size = sizeof(cs_si(s->csb)->state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200724 } else if (isteq(name, ist("wake"))) {
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200725 if (s && may_access(s) && may_access((void *)s + sizeof(*s) - 1))
Willy Tarreau68680bb2019-10-23 17:23:25 +0200726 task_wakeup(s->task, TASK_WOKEN_TIMER|TASK_WOKEN_IO|TASK_WOKEN_MSG);
727 continue;
728 } else
729 return cli_dynerr(appctx, memprintf(&msg, "Unsupported field name: '%s'.\n", word));
730
731 /* read previous value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200732 if ((s || ptr == &s) && ptr && may_access(ptr) && may_access(ptr + size - 1)) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200733 if (size == 8)
734 old = read_u64(ptr);
735 else if (size == 4)
736 old = read_u32(ptr);
737 else if (size == 2)
738 old = read_u16(ptr);
739 else
740 old = *(const uint8_t *)ptr;
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200741 } else {
742 memprintf(&msg,
743 "%sSkipping inaccessible pointer %p for field '%.*s'.\n",
744 msg ? msg : "", ptr, (int)(end - word), word);
745 continue;
Willy Tarreau68680bb2019-10-23 17:23:25 +0200746 }
747
748 /* parse the new value . */
749 new = strtoll(end + 1, &endarg, 0);
750 if (end[1] && *endarg) {
751 if (strcmp(end + 1, "now") == 0)
752 new = now_ms;
753 else {
754 memprintf(&msg,
755 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
756 msg ? msg : "", end + 1, (int)(end - word), word);
757 continue;
758 }
759 }
760
761 switch (*end) {
762 case '\0': /* show */
763 memprintf(&msg, "%s%.*s=%#llx ", msg ? msg : "", (int)(end - word), word, old);
764 new = old; // do not change the value
765 break;
766
767 case '=': /* set */
768 break;
769
770 case '^': /* XOR */
771 new = old ^ new;
772 break;
773
774 case '+': /* OR */
775 new = old | new;
776 break;
777
778 case '-': /* AND NOT */
779 new = old & ~new;
780 break;
781
782 default:
783 break;
784 }
785
786 /* write the new value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200787 if (new != old) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200788 if (size == 8)
789 write_u64(ptr, new);
790 else if (size == 4)
791 write_u32(ptr, new);
792 else if (size == 2)
793 write_u16(ptr, new);
794 else
795 *(uint8_t *)ptr = new;
796 }
797 }
798
799 if (msg && *msg)
800 return cli_dynmsg(appctx, LOG_INFO, msg);
801 return 1;
802}
803
Willy Tarreau144f84a2021-03-02 16:09:26 +0100804static struct task *debug_task_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100805{
806 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
807 unsigned long inter = tctx[1];
808 unsigned long rnd;
809
810 t->expire = tick_add(now_ms, inter);
811
812 /* half of the calls will wake up another entry */
Willy Tarreau06e69b52021-03-02 14:01:35 +0100813 rnd = statistical_prng();
Willy Tarreaua5a44792020-11-29 17:12:15 +0100814 if (rnd & 1) {
815 rnd >>= 1;
816 rnd %= tctx[0];
817 rnd = tctx[rnd + 2];
818
819 if (rnd & 1)
820 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
821 else
822 tasklet_wakeup((struct tasklet *)rnd);
823 }
824 return t;
825}
826
Willy Tarreau144f84a2021-03-02 16:09:26 +0100827static struct task *debug_tasklet_handler(struct task *t, void *ctx, unsigned int state)
Willy Tarreaua5a44792020-11-29 17:12:15 +0100828{
829 unsigned long *tctx = ctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
830 unsigned long rnd;
831 int i;
832
833 /* wake up two random entries */
834 for (i = 0; i < 2; i++) {
Willy Tarreau06e69b52021-03-02 14:01:35 +0100835 rnd = statistical_prng() % tctx[0];
Willy Tarreaua5a44792020-11-29 17:12:15 +0100836 rnd = tctx[rnd + 2];
837
838 if (rnd & 1)
839 task_wakeup((struct task *)(rnd - 1), TASK_WOKEN_MSG);
840 else
841 tasklet_wakeup((struct tasklet *)rnd);
842 }
843 return t;
844}
845
846/* parse a "debug dev sched" command
847 * debug dev sched {task|tasklet} [count=<count>] [mask=<mask>] [single=<single>] [inter=<inter>]
848 */
849static int debug_parse_cli_sched(char **args, char *payload, struct appctx *appctx, void *private)
850{
851 int arg;
852 void *ptr;
853 int size;
854 const char *word, *end;
855 struct ist name;
856 char *msg = NULL;
857 char *endarg;
858 unsigned long long new;
859 unsigned long count = 0;
860 unsigned long thrid = 0;
861 unsigned int inter = 0;
862 unsigned long mask, tmask;
863 unsigned long i;
864 int mode = 0; // 0 = tasklet; 1 = task
865 int single = 0;
866 unsigned long *tctx; // [0] = #tasks, [1] = inter, [2+] = { tl | (tsk+1) }
867
868 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
869 return 1;
870
871 ptr = NULL; size = 0;
872 mask = all_threads_mask;
873
874 if (strcmp(args[3], "task") != 0 && strcmp(args[3], "tasklet") != 0) {
875 return cli_err(appctx,
876 "Usage: debug dev sched {task|tasklet} { <obj> = <value> }*\n"
877 " <obj> = {count | mask | inter | single }\n"
878 " <value> = 64-bit dec/hex integer (0x prefix supported)\n"
879 );
880 }
881
882 mode = strcmp(args[3], "task") == 0;
883
Willy Tarreau4781b152021-04-06 13:53:36 +0200884 _HA_ATOMIC_INC(&debug_commands_issued);
Willy Tarreaua5a44792020-11-29 17:12:15 +0100885 for (arg = 4; *args[arg]; arg++) {
886 end = word = args[arg];
887 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
888 end++;
889 name = ist2(word, end - word);
890 if (isteq(name, ist("count"))) {
891 ptr = &count; size = sizeof(count);
892 } else if (isteq(name, ist("mask"))) {
893 ptr = &mask; size = sizeof(mask);
894 } else if (isteq(name, ist("tid"))) {
895 ptr = &thrid; size = sizeof(thrid);
896 } else if (isteq(name, ist("inter"))) {
897 ptr = &inter; size = sizeof(inter);
898 } else if (isteq(name, ist("single"))) {
899 ptr = &single; size = sizeof(single);
900 } else
901 return cli_dynerr(appctx, memprintf(&msg, "Unsupported setting: '%s'.\n", word));
902
903 /* parse the new value . */
904 new = strtoll(end + 1, &endarg, 0);
905 if (end[1] && *endarg) {
906 memprintf(&msg,
907 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
908 msg ? msg : "", end + 1, (int)(end - word), word);
909 continue;
910 }
911
912 /* write the new value */
913 if (size == 8)
914 write_u64(ptr, new);
915 else if (size == 4)
916 write_u32(ptr, new);
917 else if (size == 2)
918 write_u16(ptr, new);
919 else
920 *(uint8_t *)ptr = new;
921 }
922
923 tctx = calloc(sizeof(*tctx), count + 2);
924 if (!tctx)
925 goto fail;
926
927 tctx[0] = (unsigned long)count;
928 tctx[1] = (unsigned long)inter;
929
930 mask &= all_threads_mask;
931 if (!mask)
932 mask = tid_bit;
933
934 tmask = 0;
935 for (i = 0; i < count; i++) {
936 if (single || mode == 0) {
937 /* look for next bit matching a bit in mask or loop back to zero */
938 for (tmask <<= 1; !(mask & tmask); ) {
939 if (!(mask & -tmask))
940 tmask = 1;
941 else
942 tmask <<= 1;
943 }
944 } else {
945 /* multi-threaded task */
946 tmask = mask;
947 }
948
949 /* now, if poly or mask was set, tmask corresponds to the
950 * valid thread mask to use, otherwise it remains zero.
951 */
952 //printf("%lu: mode=%d mask=%#lx\n", i, mode, tmask);
953 if (mode == 0) {
954 struct tasklet *tl = tasklet_new();
955
956 if (!tl)
957 goto fail;
958
959 if (tmask)
960 tl->tid = my_ffsl(tmask) - 1;
961 tl->process = debug_tasklet_handler;
962 tl->context = tctx;
963 tctx[i + 2] = (unsigned long)tl;
964 } else {
965 struct task *task = task_new(tmask ? tmask : tid_bit);
966
967 if (!task)
968 goto fail;
969
970 task->process = debug_task_handler;
971 task->context = tctx;
972 tctx[i + 2] = (unsigned long)task + 1;
973 }
974 }
975
976 /* start the tasks and tasklets */
977 for (i = 0; i < count; i++) {
978 unsigned long ctx = tctx[i + 2];
979
980 if (ctx & 1)
981 task_wakeup((struct task *)(ctx - 1), TASK_WOKEN_INIT);
982 else
983 tasklet_wakeup((struct tasklet *)ctx);
984 }
985
986 if (msg && *msg)
987 return cli_dynmsg(appctx, LOG_INFO, msg);
988 return 1;
989
990 fail:
991 /* free partially allocated entries */
992 for (i = 0; tctx && i < count; i++) {
993 unsigned long ctx = tctx[i + 2];
994
995 if (!ctx)
996 break;
997
998 if (ctx & 1)
999 task_destroy((struct task *)(ctx - 1));
1000 else
1001 tasklet_free((struct tasklet *)ctx);
1002 }
1003
1004 free(tctx);
1005 return cli_err(appctx, "Not enough memory");
1006}
1007
Willy Tarreau5be7c192022-01-24 20:26:09 +01001008/* CLI parser for the "debug dev fd" command. The current FD to restart from is
1009 * stored in i0.
1010 */
1011static int debug_parse_cli_fd(char **args, char *payload, struct appctx *appctx, void *private)
1012{
1013 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1014 return 1;
1015
1016 /* start at fd #0 */
1017 appctx->ctx.cli.i0 = 0;
1018 return 0;
1019}
1020
1021/* CLI I/O handler for the "debug dev fd" command. Dumps all FDs that are
1022 * accessible from the process but not known from fdtab. The FD number to
1023 * restart from is stored in i0.
1024 */
1025static int debug_iohandler_fd(struct appctx *appctx)
1026{
1027 struct stream_interface *si = appctx->owner;
1028 struct sockaddr_storage sa;
1029 struct stat statbuf;
1030 socklen_t salen, vlen;
1031 int ret1, ret2, port;
1032 char *addrstr;
1033 int ret = 1;
1034 int i, fd;
1035
1036 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
1037 goto end;
1038
1039 chunk_reset(&trash);
1040
1041 thread_isolate();
1042
1043 /* we have two inner loops here, one for the proxy, the other one for
1044 * the buffer.
1045 */
1046 for (fd = appctx->ctx.cli.i0; fd < global.maxsock; fd++) {
1047 /* check for FD's existence */
1048 ret1 = fcntl(fd, F_GETFD, 0);
1049 if (ret1 == -1)
1050 continue; // not known to the process
1051 if (fdtab[fd].owner)
1052 continue; // well-known
1053
1054 /* OK we're seeing an orphan let's try to retrieve as much
1055 * information as possible about it.
1056 */
1057 chunk_printf(&trash, "%5d", fd);
1058
1059 if (fstat(fd, &statbuf) != -1) {
1060 chunk_appendf(&trash, " type=%s mod=%04o dev=%#llx siz=%#llx uid=%lld gid=%lld fs=%#llx ino=%#llx",
1061 isatty(fd) ? "tty.":
1062 S_ISREG(statbuf.st_mode) ? "file":
1063 S_ISDIR(statbuf.st_mode) ? "dir.":
1064 S_ISCHR(statbuf.st_mode) ? "chr.":
1065 S_ISBLK(statbuf.st_mode) ? "blk.":
1066 S_ISFIFO(statbuf.st_mode) ? "pipe":
1067 S_ISLNK(statbuf.st_mode) ? "link":
1068 S_ISSOCK(statbuf.st_mode) ? "sock":
1069#ifdef USE_EPOLL
1070 epoll_wait(fd, NULL, 0, 0) != -1 || errno != EBADF ? "epol":
1071#endif
1072 "????",
1073 (uint)statbuf.st_mode & 07777,
1074
1075 (ullong)statbuf.st_rdev,
1076 (ullong)statbuf.st_size,
1077 (ullong)statbuf.st_uid,
1078 (ullong)statbuf.st_gid,
1079
1080 (ullong)statbuf.st_dev,
1081 (ullong)statbuf.st_ino);
1082 }
1083
1084 chunk_appendf(&trash, " getfd=%s+%#x",
1085 (ret1 & FD_CLOEXEC) ? "cloex" : "",
1086 ret1 &~ FD_CLOEXEC);
1087
1088 /* FD options */
1089 ret2 = fcntl(fd, F_GETFL, 0);
1090 if (ret2) {
1091 chunk_appendf(&trash, " getfl=%s",
1092 (ret1 & 3) >= 2 ? "O_RDWR" :
1093 (ret1 & 1) ? "O_WRONLY" : "O_RDONLY");
1094
1095 for (i = 2; i < 32; i++) {
1096 if (!(ret2 & (1UL << i)))
1097 continue;
1098 switch (1UL << i) {
1099 case O_CREAT: chunk_appendf(&trash, ",O_CREAT"); break;
1100 case O_EXCL: chunk_appendf(&trash, ",O_EXCL"); break;
1101 case O_NOCTTY: chunk_appendf(&trash, ",O_NOCTTY"); break;
1102 case O_TRUNC: chunk_appendf(&trash, ",O_TRUNC"); break;
1103 case O_APPEND: chunk_appendf(&trash, ",O_APPEND"); break;
Willy Tarreau410942b2022-01-25 14:51:53 +01001104#ifdef O_ASYNC
Willy Tarreau5be7c192022-01-24 20:26:09 +01001105 case O_ASYNC: chunk_appendf(&trash, ",O_ASYNC"); break;
Willy Tarreau410942b2022-01-25 14:51:53 +01001106#endif
Willy Tarreau5be7c192022-01-24 20:26:09 +01001107#ifdef O_DIRECT
1108 case O_DIRECT: chunk_appendf(&trash, ",O_DIRECT"); break;
1109#endif
1110#ifdef O_NOATIME
1111 case O_NOATIME: chunk_appendf(&trash, ",O_NOATIME"); break;
1112#endif
1113 }
1114 }
1115 }
1116
1117 vlen = sizeof(ret2);
1118 ret1 = getsockopt(fd, SOL_SOCKET, SO_TYPE, &ret2, &vlen);
1119 if (ret1 != -1)
1120 chunk_appendf(&trash, " so_type=%d", ret2);
1121
1122 vlen = sizeof(ret2);
1123 ret1 = getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ret2, &vlen);
1124 if (ret1 != -1)
1125 chunk_appendf(&trash, " so_accept=%d", ret2);
1126
1127 vlen = sizeof(ret2);
1128 ret1 = getsockopt(fd, SOL_SOCKET, SO_ERROR, &ret2, &vlen);
1129 if (ret1 != -1)
1130 chunk_appendf(&trash, " so_error=%d", ret2);
1131
1132 salen = sizeof(sa);
1133 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1134 if (sa.ss_family == AF_INET)
1135 port = ntohs(((const struct sockaddr_in *)&sa)->sin_port);
1136 else if (sa.ss_family == AF_INET6)
1137 port = ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port);
1138 else
1139 port = 0;
1140 addrstr = sa2str(&sa, port, 0);
1141 chunk_appendf(&trash, " laddr=%s", addrstr);
1142 free(addrstr);
1143 }
1144
1145 salen = sizeof(sa);
1146 if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) {
1147 if (sa.ss_family == AF_INET)
1148 port = ntohs(((const struct sockaddr_in *)&sa)->sin_port);
1149 else if (sa.ss_family == AF_INET6)
1150 port = ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port);
1151 else
1152 port = 0;
1153 addrstr = sa2str(&sa, port, 0);
1154 chunk_appendf(&trash, " raddr=%s", addrstr);
1155 free(addrstr);
1156 }
1157
1158 chunk_appendf(&trash, "\n");
1159
1160 if (ci_putchk(si_ic(si), &trash) == -1) {
1161 si_rx_room_blk(si);
1162 appctx->ctx.cli.i0 = fd;
1163 ret = 0;
1164 break;
1165 }
1166 }
1167
1168 thread_release();
1169 end:
1170 return ret;
1171}
1172
Willy Tarreaua6026a02020-07-02 09:14:48 +02001173#if defined(DEBUG_MEM_STATS)
1174/* CLI parser for the "debug dev memstats" command */
1175static int debug_parse_cli_memstats(char **args, char *payload, struct appctx *appctx, void *private)
1176{
1177 extern __attribute__((__weak__)) struct mem_stats __start_mem_stats;
1178 extern __attribute__((__weak__)) struct mem_stats __stop_mem_stats;
1179
1180 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1181 return 1;
1182
1183 if (strcmp(args[3], "reset") == 0) {
1184 struct mem_stats *ptr;
1185
1186 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1187 return 1;
1188
1189 for (ptr = &__start_mem_stats; ptr < &__stop_mem_stats; ptr++) {
1190 _HA_ATOMIC_STORE(&ptr->calls, 0);
1191 _HA_ATOMIC_STORE(&ptr->size, 0);
1192 }
1193 return 1;
1194 }
1195
1196 if (strcmp(args[3], "all") == 0)
1197 appctx->ctx.cli.i0 = 1;
1198
1199 /* otherwise proceed with the dump from p0 to p1 */
1200 appctx->ctx.cli.p0 = &__start_mem_stats;
1201 appctx->ctx.cli.p1 = &__stop_mem_stats;
1202 return 0;
1203}
1204
1205/* CLI I/O handler for the "debug dev memstats" command. Dumps all mem_stats
1206 * structs referenced by pointers located between p0 and p1. Dumps all entries
1207 * if i0 > 0, otherwise only non-zero calls.
1208 */
1209static int debug_iohandler_memstats(struct appctx *appctx)
1210{
Christopher Faulet86e1c332021-12-20 17:09:39 +01001211 struct stream_interface *si = cs_si(appctx->owner);
Willy Tarreaua6026a02020-07-02 09:14:48 +02001212 struct mem_stats *ptr = appctx->ctx.cli.p0;
1213 int ret = 1;
1214
1215 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
1216 goto end;
1217
1218 chunk_reset(&trash);
1219
1220 /* we have two inner loops here, one for the proxy, the other one for
1221 * the buffer.
1222 */
1223 for (ptr = appctx->ctx.cli.p0; ptr != appctx->ctx.cli.p1; ptr++) {
1224 const char *type;
1225 const char *name;
1226 const char *p;
1227
1228 if (!ptr->size && !ptr->calls && !appctx->ctx.cli.i0)
1229 continue;
1230
1231 /* basename only */
1232 for (p = name = ptr->file; *p; p++) {
1233 if (*p == '/')
1234 name = p + 1;
1235 }
1236
1237 switch (ptr->type) {
1238 case MEM_STATS_TYPE_CALLOC: type = "CALLOC"; break;
1239 case MEM_STATS_TYPE_FREE: type = "FREE"; break;
1240 case MEM_STATS_TYPE_MALLOC: type = "MALLOC"; break;
1241 case MEM_STATS_TYPE_REALLOC: type = "REALLOC"; break;
1242 case MEM_STATS_TYPE_STRDUP: type = "STRDUP"; break;
1243 default: type = "UNSET"; break;
1244 }
1245
1246 //chunk_printf(&trash,
1247 // "%20s:%-5d %7s size: %12lu calls: %9lu size/call: %6lu\n",
1248 // name, ptr->line, type,
1249 // (unsigned long)ptr->size, (unsigned long)ptr->calls,
1250 // (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1251
1252 chunk_printf(&trash, "%s:%d", name, ptr->line);
1253 while (trash.data < 25)
1254 trash.area[trash.data++] = ' ';
1255 chunk_appendf(&trash, "%7s size: %12lu calls: %9lu size/call: %6lu\n",
1256 type,
1257 (unsigned long)ptr->size, (unsigned long)ptr->calls,
1258 (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
1259
1260 if (ci_putchk(si_ic(si), &trash) == -1) {
1261 si_rx_room_blk(si);
1262 appctx->ctx.cli.p0 = ptr;
1263 ret = 0;
1264 break;
1265 }
1266 }
1267
1268 end:
1269 return ret;
1270}
1271
1272#endif
1273
Willy Tarreauc7091d82019-05-17 10:08:49 +02001274#ifndef USE_THREAD_DUMP
1275
1276/* This function dumps all threads' state to the trash. This version is the
1277 * most basic one, which doesn't inspect other threads.
1278 */
1279void ha_thread_dump_all_to_trash()
1280{
1281 unsigned int thr;
1282
1283 for (thr = 0; thr < global.nbthread; thr++)
1284 ha_thread_dump(&trash, thr, tid);
1285}
1286
1287#else /* below USE_THREAD_DUMP is set */
1288
Willy Tarreauc7091d82019-05-17 10:08:49 +02001289/* ID of the thread requesting the dump */
1290static unsigned int thread_dump_tid;
1291
1292/* points to the buffer where the dump functions should write. It must
1293 * have already been initialized by the requester. Nothing is done if
1294 * it's NULL.
1295 */
1296struct buffer *thread_dump_buffer = NULL;
1297
1298void ha_thread_dump_all_to_trash()
1299{
Willy Tarreauc7091d82019-05-17 10:08:49 +02001300 unsigned long old;
1301
1302 while (1) {
1303 old = 0;
1304 if (HA_ATOMIC_CAS(&threads_to_dump, &old, all_threads_mask))
1305 break;
1306 ha_thread_relax();
1307 }
1308
1309 thread_dump_buffer = &trash;
1310 thread_dump_tid = tid;
Willy Tarreaufade80d2019-05-22 08:46:59 +02001311 ha_tkillall(DEBUGSIG);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001312}
1313
1314/* handles DEBUGSIG to dump the state of the thread it's working on */
1315void debug_handler(int sig, siginfo_t *si, void *arg)
1316{
Willy Tarreau82aafc42020-03-03 08:31:34 +01001317 /* first, let's check it's really for us and that we didn't just get
1318 * a spurious DEBUGSIG.
1319 */
1320 if (!(threads_to_dump & tid_bit))
1321 return;
1322
Willy Tarreauc7091d82019-05-17 10:08:49 +02001323 /* There are 4 phases in the dump process:
1324 * 1- wait for our turn, i.e. when all lower bits are gone.
1325 * 2- perform the action if our bit is set
1326 * 3- remove our bit to let the next one go, unless we're
Willy Tarreauc0773622019-07-31 19:15:45 +02001327 * the last one and have to put them all as a signal
1328 * 4- wait out bit to re-appear, then clear it and quit.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001329 */
1330
1331 /* wait for all previous threads to finish first */
1332 while (threads_to_dump & (tid_bit - 1))
1333 ha_thread_relax();
1334
1335 /* dump if needed */
1336 if (threads_to_dump & tid_bit) {
1337 if (thread_dump_buffer)
1338 ha_thread_dump(thread_dump_buffer, tid, thread_dump_tid);
1339 if ((threads_to_dump & all_threads_mask) == tid_bit) {
1340 /* last one */
Willy Tarreauc0773622019-07-31 19:15:45 +02001341 HA_ATOMIC_STORE(&threads_to_dump, all_threads_mask);
Willy Tarreauc7091d82019-05-17 10:08:49 +02001342 thread_dump_buffer = NULL;
1343 }
1344 else
1345 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
1346 }
1347
1348 /* now wait for all others to finish dumping. The last one will set all
Willy Tarreauc0773622019-07-31 19:15:45 +02001349 * bits again to broadcast the leaving condition so we'll see ourselves
1350 * present again. This way the threads_to_dump variable never passes to
1351 * zero until all visitors have stopped waiting.
Willy Tarreauc7091d82019-05-17 10:08:49 +02001352 */
Willy Tarreauc0773622019-07-31 19:15:45 +02001353 while (!(threads_to_dump & tid_bit))
1354 ha_thread_relax();
1355 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
Willy Tarreaue6a02fa2019-05-22 07:06:44 +02001356
1357 /* mark the current thread as stuck to detect it upon next invocation
1358 * if it didn't move.
1359 */
1360 if (!((threads_harmless_mask|sleeping_thread_mask) & tid_bit))
Willy Tarreaua0b99532021-09-30 18:48:37 +02001361 th_ctx->flags |= TH_FL_STUCK;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001362}
1363
1364static int init_debug_per_thread()
1365{
1366 sigset_t set;
1367
1368 /* unblock the DEBUGSIG signal we intend to use */
1369 sigemptyset(&set);
1370 sigaddset(&set, DEBUGSIG);
1371 ha_sigmask(SIG_UNBLOCK, &set, NULL);
1372 return 1;
1373}
1374
1375static int init_debug()
1376{
1377 struct sigaction sa;
Willy Tarreau2f1227e2021-01-22 12:12:29 +01001378 void *callers[1];
Willy Tarreauc7091d82019-05-17 10:08:49 +02001379
Willy Tarreau0214b452020-03-04 06:01:40 +01001380 /* calling backtrace() will access libgcc at runtime. We don't want to
1381 * do it after the chroot, so let's perform a first call to have it
1382 * ready in memory for later use.
1383 */
Willy Tarreau13faf162020-03-04 07:44:06 +01001384 my_backtrace(callers, sizeof(callers)/sizeof(*callers));
Willy Tarreauc7091d82019-05-17 10:08:49 +02001385 sa.sa_handler = NULL;
1386 sa.sa_sigaction = debug_handler;
1387 sigemptyset(&sa.sa_mask);
1388 sa.sa_flags = SA_SIGINFO;
1389 sigaction(DEBUGSIG, &sa, NULL);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001390 return ERR_NONE;
Willy Tarreauc7091d82019-05-17 10:08:49 +02001391}
1392
1393REGISTER_POST_CHECK(init_debug);
1394REGISTER_PER_THREAD_INIT(init_debug_per_thread);
1395
1396#endif /* USE_THREAD_DUMP */
1397
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001398/* register cli keywords */
1399static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001400 {{ "debug", "dev", "bug", NULL }, "debug dev bug : call BUG_ON() and crash", debug_parse_cli_bug, NULL, NULL, NULL, ACCESS_EXPERT },
1401 {{ "debug", "dev", "close", NULL }, "debug dev close <fd> : close this file descriptor", debug_parse_cli_close, NULL, NULL, NULL, ACCESS_EXPERT },
1402 {{ "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 +02001403#if defined(DEBUG_DEV)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001404 {{ "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 +02001405#endif
Willy Tarreau5be7c192022-01-24 20:26:09 +01001406 {{ "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 +02001407 {{ "debug", "dev", "exit", NULL }, "debug dev exit [code] : immediately exit the process", debug_parse_cli_exit, NULL, NULL, NULL, ACCESS_EXPERT },
1408 {{ "debug", "dev", "hex", NULL }, "debug dev hex <addr> [len] : dump a memory area", debug_parse_cli_hex, NULL, NULL, NULL, ACCESS_EXPERT },
1409 {{ "debug", "dev", "log", NULL }, "debug dev log [msg] ... : send this msg to global logs", debug_parse_cli_log, NULL, NULL, NULL, ACCESS_EXPERT },
1410 {{ "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 +02001411#if defined(DEBUG_MEM_STATS)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001412 {{ "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 +02001413#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001414 {{ "debug", "dev", "panic", NULL }, "debug dev panic : immediately trigger a panic", debug_parse_cli_panic, NULL, NULL, NULL, ACCESS_EXPERT },
1415 {{ "debug", "dev", "sched", NULL }, "debug dev sched {task|tasklet} [k=v]* : stress the scheduler", debug_parse_cli_sched, NULL, NULL, NULL, ACCESS_EXPERT },
1416 {{ "debug", "dev", "stream",NULL }, "debug dev stream [k=v]* : show/manipulate stream flags", debug_parse_cli_stream,NULL, NULL, NULL, ACCESS_EXPERT },
1417 {{ "debug", "dev", "sym", NULL }, "debug dev sym <addr> : resolve symbol address", debug_parse_cli_sym, NULL, NULL, NULL, ACCESS_EXPERT },
1418 {{ "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 +01001419 {{ "debug", "dev", "warn", NULL }, "debug dev warn : call WARN_ON() and possibly crash", debug_parse_cli_warn, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau4e0a8b12022-02-25 08:55:11 +01001420 {{ "debug", "dev", "warn1", NULL }, "debug dev warn1 : call WARN_ON_ONCE() and possibly crash", debug_parse_cli_warn1, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001421 {{ "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 +01001422#if defined(HA_HAVE_DUMP_LIBS)
1423 {{ "show", "libs", NULL, NULL }, "show libs : show loaded object files and libraries", debug_parse_cli_show_libs, NULL, NULL },
1424#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001425 {{ "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 +02001426 {{},}
1427}};
1428
1429INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);