blob: b2a4c6bacb643f6f3d3ffcb8c3a1af960aa2262a [file] [log] [blame]
Willy Tarreau4e2b6462019-05-16 17:44:30 +02001/*
2 * Process debugging functions.
3 *
4 * Copyright 2000-2019 Willy Tarreau <willy@haproxy.org>.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreauf5b4e062020-03-03 15:40:23 +010013
Willy Tarreau368bff42019-12-06 17:18:28 +010014#include <fcntl.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020015#include <signal.h>
16#include <time.h>
17#include <stdio.h>
Willy Tarreau6bdf3e92019-05-20 14:25:05 +020018#include <stdlib.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020019#include <syslog.h>
Willy Tarreau368bff42019-12-06 17:18:28 +010020#include <sys/types.h>
21#include <sys/wait.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020022
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau8dabda72020-05-27 17:22:10 +020024#include <haproxy/buf.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020025#include <haproxy/cli.h>
Willy Tarreau2a83d602020-05-27 16:58:08 +020026#include <haproxy/debug.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/fd.h>
28#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +020029#include <haproxy/hlua.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020030#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/net_helper.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020032#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020033#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020034#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020035#include <haproxy/tools.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <import/ist.h>
Willy Tarreau4e2b6462019-05-16 17:44:30 +020037
Willy Tarreau4e2b6462019-05-16 17:44:30 +020038
Willy Tarreaua37cb182019-07-31 19:20:39 +020039/* mask of threads still having to dump, used to respect ordering. Only used
40 * when USE_THREAD_DUMP is set.
41 */
42volatile unsigned long threads_to_dump = 0;
Willy Tarreau9b013702019-10-24 18:18:02 +020043unsigned int debug_commands_issued = 0;
Willy Tarreaua37cb182019-07-31 19:20:39 +020044
Willy Tarreau5cf64dd2019-05-17 10:36:08 +020045/* Dumps to the buffer some known information for the desired thread, and
46 * optionally extra info for the current thread. The dump will be appended to
47 * the buffer, so the caller is responsible for preliminary initializing it.
48 * The calling thread ID needs to be passed in <calling_tid> to display a star
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020049 * in front of the calling thread's line (usually it's tid). Any stuck thread
50 * is also prefixed with a '>'.
Willy Tarreau4e2b6462019-05-16 17:44:30 +020051 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +020052void ha_thread_dump(struct buffer *buf, int thr, int calling_tid)
Willy Tarreau4e2b6462019-05-16 17:44:30 +020053{
54 unsigned long thr_bit = 1UL << thr;
David Carliera92c5ce2019-09-13 05:03:12 +010055 unsigned long long p = ha_thread_info[thr].prev_cpu_time;
56 unsigned long long n = now_cpu_time_thread(&ha_thread_info[thr]);
57 int stuck = !!(ha_thread_info[thr].flags & TI_FL_STUCK);
Willy Tarreau4e2b6462019-05-16 17:44:30 +020058
Willy Tarreau5cf64dd2019-05-17 10:36:08 +020059 chunk_appendf(buf,
Willy Tarreauf0e5da22020-05-01 12:26:03 +020060 "%c%cThread %-2u: id=0x%llx act=%d glob=%d wq=%d rq=%d tl=%d tlsz=%d rqsz=%d\n"
Olivier Houchard305d5ab2019-07-24 18:07:06 +020061 " stuck=%d prof=%d",
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020062 (thr == calling_tid) ? '*' : ' ', stuck ? '>' : ' ', thr + 1,
Willy Tarreauff64d3b2020-05-01 11:28:49 +020063 ha_get_pthread_id(thr),
Olivier Houchardcfbb3e62019-05-29 19:22:43 +020064 thread_has_tasks(),
Willy Tarreau4e2b6462019-05-16 17:44:30 +020065 !!(global_tasks_mask & thr_bit),
66 !eb_is_empty(&task_per_thread[thr].timers),
67 !eb_is_empty(&task_per_thread[thr].rqueue),
Willy Tarreaua62917b2020-01-30 18:37:28 +010068 !(LIST_ISEMPTY(&task_per_thread[thr].tasklets[TL_URGENT]) &&
69 LIST_ISEMPTY(&task_per_thread[thr].tasklets[TL_NORMAL]) &&
70 LIST_ISEMPTY(&task_per_thread[thr].tasklets[TL_BULK]) &&
71 MT_LIST_ISEMPTY(&task_per_thread[thr].shared_tasklet_list)),
Willy Tarreau4e2b6462019-05-16 17:44:30 +020072 task_per_thread[thr].task_list_size,
73 task_per_thread[thr].rqueue_size,
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020074 stuck,
Willy Tarreau4e2b6462019-05-16 17:44:30 +020075 !!(task_profiling_mask & thr_bit));
76
Willy Tarreau5cf64dd2019-05-17 10:36:08 +020077 chunk_appendf(buf,
Willy Tarreau4e2b6462019-05-16 17:44:30 +020078 " harmless=%d wantrdv=%d",
79 !!(threads_harmless_mask & thr_bit),
80 !!(threads_want_rdv_mask & thr_bit));
Willy Tarreau4e2b6462019-05-16 17:44:30 +020081
Willy Tarreau5cf64dd2019-05-17 10:36:08 +020082 chunk_appendf(buf, "\n");
Willy Tarreau9c8800a2019-05-20 20:52:20 +020083 chunk_appendf(buf, " cpu_ns: poll=%llu now=%llu diff=%llu\n", p, n, n-p);
Willy Tarreau4e2b6462019-05-16 17:44:30 +020084
85 /* this is the end of what we can dump from outside the thread */
86
87 if (thr != tid)
88 return;
89
Willy Tarreau5cf64dd2019-05-17 10:36:08 +020090 chunk_appendf(buf, " curr_task=");
Willy Tarreaud022e9c2019-09-24 08:25:15 +020091 ha_task_dump(buf, sched->current, " ");
Willy Tarreauf5b4e062020-03-03 15:40:23 +010092
93#ifdef USE_BACKTRACE
94 if (stuck) {
95 /* We only emit the backtrace for stuck threads in order not to
96 * waste precious output buffer space with non-interesting data.
97 */
98 struct buffer bak;
99 void *callers[100];
100 int j, nptrs;
Willy Tarreau0c439d82020-07-05 20:26:04 +0200101 const void *addr;
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100102 int dump = 0;
103
Willy Tarreau13faf162020-03-04 07:44:06 +0100104 nptrs = my_backtrace(callers, sizeof(callers)/sizeof(*callers));
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100105
106 /* The call backtrace_symbols_fd(callers, nptrs, STDOUT_FILENO)
107 would produce similar output to the following: */
108
109 if (nptrs)
Willy Tarreaucdd80742020-03-04 07:38:23 +0100110 chunk_appendf(buf, " call trace(%d):\n", nptrs);
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100111
Willy Tarreaua91b7942020-03-04 07:39:32 +0100112 for (j = 0; j < nptrs || dump < 2; j++) {
113 if (j == nptrs && !dump) {
114 /* we failed to spot the starting point of the
115 * dump, let's start over dumping everything we
116 * have.
117 */
118 dump = 2;
119 j = 0;
120 }
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100121 bak = *buf;
122 dump_addr_and_bytes(buf, " | ", callers[j], 8);
123 addr = resolve_sym_name(buf, ": ", callers[j]);
124 if (dump == 0) {
125 /* dump not started, will start *after*
126 * ha_thread_dump_all_to_trash and ha_panic
127 */
128 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic)
129 dump = 1;
130 *buf = bak;
131 continue;
132 }
133
134 if (dump == 1) {
135 /* starting */
136 if (addr == ha_thread_dump_all_to_trash || addr == ha_panic) {
137 *buf = bak;
138 continue;
139 }
140 dump = 2;
141 }
142
143 if (dump == 2) {
144 /* dumping */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200145 if (addr == run_poll_loop || addr == main || addr == run_tasks_from_lists) {
Willy Tarreauf5b4e062020-03-03 15:40:23 +0100146 dump = 3;
147 *buf = bak;
148 break;
149 }
150 }
151 /* OK, line dumped */
152 chunk_appendf(buf, "\n");
153 }
154 }
155#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200156}
157
158
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200159/* dumps into the buffer some information related to task <task> (which may
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200160 * either be a task or a tasklet, and prepend each line except the first one
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200161 * with <pfx>. The buffer is only appended and the first output starts by the
162 * pointer itself. The caller is responsible for making sure the task is not
163 * going to vanish during the dump.
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200164 */
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200165void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx)
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200166{
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200167 const struct stream *s = NULL;
Willy Tarreaua512b022019-08-21 14:12:19 +0200168 const struct appctx __maybe_unused *appctx = NULL;
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200169 struct hlua __maybe_unused *hlua = NULL;
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200170
Willy Tarreau14a1ab72019-05-17 10:34:25 +0200171 if (!task) {
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200172 chunk_appendf(buf, "0\n");
Willy Tarreau231ec392019-05-17 10:39:47 +0200173 return;
174 }
175
Willy Tarreau20db9112019-05-17 14:14:35 +0200176 if (TASK_IS_TASKLET(task))
177 chunk_appendf(buf,
178 "%p (tasklet) calls=%u\n",
179 task,
180 task->calls);
181 else
182 chunk_appendf(buf,
183 "%p (task) calls=%u last=%llu%s\n",
184 task,
185 task->calls,
186 task->call_date ? (unsigned long long)(now_mono_time() - task->call_date) : 0,
187 task->call_date ? " ns ago" : "");
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200188
Willy Tarreau2e89b092020-03-03 17:13:02 +0100189 chunk_appendf(buf, "%s fct=%p(", pfx, task->process);
190 resolve_sym_name(buf, NULL, task->process);
191 chunk_appendf(buf,") ctx=%p", task->context);
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200192
Willy Tarreaua512b022019-08-21 14:12:19 +0200193 if (task->process == task_run_applet && (appctx = task->context))
194 chunk_appendf(buf, "(%s)\n", appctx->applet->name);
195 else
196 chunk_appendf(buf, "\n");
197
Willy Tarreau578ea8b2019-05-22 09:43:09 +0200198 if (task->process == process_stream && task->context)
199 s = (struct stream *)task->context;
200 else if (task->process == task_run_applet && task->context)
201 s = si_strm(((struct appctx *)task->context)->owner);
202 else if (task->process == si_cs_io_cb && task->context)
203 s = si_strm((struct stream_interface *)task->context);
204
205 if (s)
206 stream_dump(buf, s, pfx, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200207
208#ifdef USE_LUA
209 hlua = NULL;
210 if (s && (hlua = s->hlua)) {
211 chunk_appendf(buf, "%sCurrent executing Lua from a stream analyser -- ", pfx);
212 }
213 else if (task->process == hlua_process_task && (hlua = task->context)) {
214 chunk_appendf(buf, "%sCurrent executing a Lua task -- ", pfx);
215 }
216 else if (task->process == task_run_applet && (appctx = task->context) &&
217 (appctx->applet->fct == hlua_applet_tcp_fct && (hlua = appctx->ctx.hlua_apptcp.hlua))) {
218 chunk_appendf(buf, "%sCurrent executing a Lua TCP service -- ", pfx);
219 }
220 else if (task->process == task_run_applet && (appctx = task->context) &&
221 (appctx->applet->fct == hlua_applet_http_fct && (hlua = appctx->ctx.hlua_apphttp.hlua))) {
222 chunk_appendf(buf, "%sCurrent executing a Lua HTTP service -- ", pfx);
223 }
224
Christopher Faulet471425f2020-07-24 19:08:05 +0200225 if (hlua && hlua->T) {
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200226 luaL_traceback(hlua->T, hlua->T, NULL, 0);
227 if (!append_prefixed_str(buf, lua_tostring(hlua->T, -1), pfx, '\n', 1))
228 b_putchr(buf, '\n');
229 }
Christopher Faulet471425f2020-07-24 19:08:05 +0200230 else
231 b_putchr(buf, '\n');
Willy Tarreau78a7cb62019-08-21 14:16:02 +0200232#endif
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200233}
234
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200235/* This function dumps all profiling settings. It returns 0 if the output
236 * buffer is full and it needs to be called again, otherwise non-zero.
237 */
238static int cli_io_handler_show_threads(struct appctx *appctx)
239{
240 struct stream_interface *si = appctx->owner;
241 int thr;
242
243 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
244 return 1;
245
246 if (appctx->st0)
247 thr = appctx->st1;
248 else
249 thr = 0;
250
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200251 chunk_reset(&trash);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200252 ha_thread_dump_all_to_trash();
Willy Tarreau5cf64dd2019-05-17 10:36:08 +0200253
254 if (ci_putchk(si_ic(si), &trash) == -1) {
255 /* failed, try again */
256 si_rx_room_blk(si);
257 appctx->st1 = thr;
258 return 0;
259 }
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200260 return 1;
261}
262
Willy Tarreau56131ca2019-05-20 13:48:29 +0200263/* dumps a state of all threads into the trash and on fd #2, then aborts. */
264void ha_panic()
265{
266 chunk_reset(&trash);
Willy Tarreaua9f9fc92019-05-20 17:45:35 +0200267 chunk_appendf(&trash, "Thread %u is about to kill the process.\n", tid + 1);
Willy Tarreau56131ca2019-05-20 13:48:29 +0200268 ha_thread_dump_all_to_trash();
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +0100269 DISGUISE(write(2, trash.area, trash.data));
Willy Tarreau56131ca2019-05-20 13:48:29 +0200270 for (;;)
271 abort();
272}
273
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200274/* parse a "debug dev exit" command. It always returns 1, though it should never return. */
275static int debug_parse_cli_exit(char **args, char *payload, struct appctx *appctx, void *private)
276{
277 int code = atoi(args[3]);
278
279 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
280 return 1;
281
Willy Tarreau9b013702019-10-24 18:18:02 +0200282 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200283 exit(code);
284 return 1;
285}
286
287/* parse a "debug dev close" command. It always returns 1. */
288static int debug_parse_cli_close(char **args, char *payload, struct appctx *appctx, void *private)
289{
290 int fd;
291
292 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
293 return 1;
294
Willy Tarreau9d008692019-08-09 11:21:01 +0200295 if (!*args[3])
296 return cli_err(appctx, "Missing file descriptor number.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200297
298 fd = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +0200299 if (fd < 0 || fd >= global.maxsock)
300 return cli_err(appctx, "File descriptor out of range.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200301
Willy Tarreau9d008692019-08-09 11:21:01 +0200302 if (!fdtab[fd].owner)
303 return cli_msg(appctx, LOG_INFO, "File descriptor was already closed.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200304
Willy Tarreau9b013702019-10-24 18:18:02 +0200305 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200306 fd_delete(fd);
307 return 1;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200308}
309
310/* parse a "debug dev delay" command. It always returns 1. */
311static int debug_parse_cli_delay(char **args, char *payload, struct appctx *appctx, void *private)
312{
313 int delay = atoi(args[3]);
314
315 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
316 return 1;
317
Willy Tarreau9b013702019-10-24 18:18:02 +0200318 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200319 usleep((long)delay * 1000);
320 return 1;
321}
322
323/* parse a "debug dev log" command. It always returns 1. */
324static int debug_parse_cli_log(char **args, char *payload, struct appctx *appctx, void *private)
325{
326 int arg;
327
328 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
329 return 1;
330
Willy Tarreau9b013702019-10-24 18:18:02 +0200331 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200332 chunk_reset(&trash);
333 for (arg = 3; *args[arg]; arg++) {
334 if (arg > 3)
335 chunk_strcat(&trash, " ");
336 chunk_strcat(&trash, args[arg]);
337 }
338
339 send_log(NULL, LOG_INFO, "%s\n", trash.area);
340 return 1;
341}
342
343/* parse a "debug dev loop" command. It always returns 1. */
344static int debug_parse_cli_loop(char **args, char *payload, struct appctx *appctx, void *private)
345{
346 struct timeval deadline, curr;
347 int loop = atoi(args[3]);
348
349 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
350 return 1;
351
Willy Tarreau9b013702019-10-24 18:18:02 +0200352 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200353 gettimeofday(&curr, NULL);
354 tv_ms_add(&deadline, &curr, loop);
355
356 while (tv_ms_cmp(&curr, &deadline) < 0)
357 gettimeofday(&curr, NULL);
358
359 return 1;
360}
361
362/* parse a "debug dev panic" command. It always returns 1, though it should never return. */
363static int debug_parse_cli_panic(char **args, char *payload, struct appctx *appctx, void *private)
364{
365 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
366 return 1;
367
Willy Tarreau9b013702019-10-24 18:18:02 +0200368 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200369 ha_panic();
370 return 1;
371}
372
373/* parse a "debug dev exec" command. It always returns 1. */
Willy Tarreaub24ab222019-10-24 18:03:39 +0200374#if defined(DEBUG_DEV)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200375static int debug_parse_cli_exec(char **args, char *payload, struct appctx *appctx, void *private)
376{
Willy Tarreau368bff42019-12-06 17:18:28 +0100377 int pipefd[2];
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200378 int arg;
Willy Tarreau368bff42019-12-06 17:18:28 +0100379 int pid;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200380
381 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
382 return 1;
383
Willy Tarreau9b013702019-10-24 18:18:02 +0200384 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200385 chunk_reset(&trash);
386 for (arg = 3; *args[arg]; arg++) {
387 if (arg > 3)
388 chunk_strcat(&trash, " ");
389 chunk_strcat(&trash, args[arg]);
390 }
391
Willy Tarreau368bff42019-12-06 17:18:28 +0100392 thread_isolate();
393 if (pipe(pipefd) < 0)
394 goto fail_pipe;
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200395
Willy Tarreau368bff42019-12-06 17:18:28 +0100396 if (fcntl(pipefd[0], F_SETFD, fcntl(pipefd[0], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
397 goto fail_fcntl;
398
399 if (fcntl(pipefd[1], F_SETFD, fcntl(pipefd[1], F_GETFD, FD_CLOEXEC) | FD_CLOEXEC) == -1)
400 goto fail_fcntl;
401
402 pid = fork();
403
404 if (pid < 0)
405 goto fail_fork;
406 else if (pid == 0) {
407 /* child */
408 char *cmd[4] = { "/bin/sh", "-c", 0, 0 };
409
410 close(0);
411 dup2(pipefd[1], 1);
412 dup2(pipefd[1], 2);
413
414 cmd[2] = trash.area;
415 execvp(cmd[0], cmd);
416 printf("execvp() failed\n");
417 exit(1);
418 }
419
420 /* parent */
421 thread_release();
422 close(pipefd[1]);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200423 chunk_reset(&trash);
424 while (1) {
Willy Tarreau368bff42019-12-06 17:18:28 +0100425 size_t ret = read(pipefd[0], trash.area + trash.data, trash.size - 20 - trash.data);
426 if (ret <= 0)
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200427 break;
428 trash.data += ret;
429 if (trash.data + 20 == trash.size) {
430 chunk_strcat(&trash, "\n[[[TRUNCATED]]]\n");
431 break;
432 }
433 }
Willy Tarreau368bff42019-12-06 17:18:28 +0100434 close(pipefd[0]);
435 waitpid(pid, NULL, WNOHANG);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200436 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200437 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau368bff42019-12-06 17:18:28 +0100438
439 fail_fork:
440 fail_fcntl:
441 close(pipefd[0]);
442 close(pipefd[1]);
443 fail_pipe:
444 thread_release();
445 return cli_err(appctx, "Failed to execute command.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200446}
Willy Tarreaub24ab222019-10-24 18:03:39 +0200447#endif
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200448
449/* parse a "debug dev hex" command. It always returns 1. */
450static int debug_parse_cli_hex(char **args, char *payload, struct appctx *appctx, void *private)
451{
452 unsigned long start, len;
453
454 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
455 return 1;
456
Willy Tarreau9d008692019-08-09 11:21:01 +0200457 if (!*args[3])
458 return cli_err(appctx, "Missing memory address to dump from.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200459
460 start = strtoul(args[3], NULL, 0);
Willy Tarreau9d008692019-08-09 11:21:01 +0200461 if (!start)
462 return cli_err(appctx, "Will not dump from NULL address.\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200463
Willy Tarreau9b013702019-10-24 18:18:02 +0200464 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
465
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200466 /* by default, dump ~128 till next block of 16 */
467 len = strtoul(args[4], NULL, 0);
468 if (!len)
469 len = ((start + 128) & -16) - start;
470
471 chunk_reset(&trash);
Willy Tarreau37101052019-05-20 16:48:20 +0200472 dump_hex(&trash, " ", (const void *)start, len, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200473 trash.area[trash.data] = 0;
Willy Tarreau9d008692019-08-09 11:21:01 +0200474 return cli_msg(appctx, LOG_INFO, trash.area);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200475}
476
477/* parse a "debug dev tkill" command. It always returns 1. */
478static int debug_parse_cli_tkill(char **args, char *payload, struct appctx *appctx, void *private)
479{
480 int thr = 0;
481 int sig = SIGABRT;
482
483 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
484 return 1;
485
486 if (*args[3])
487 thr = atoi(args[3]);
488
Willy Tarreau9d008692019-08-09 11:21:01 +0200489 if (thr < 0 || thr > global.nbthread)
490 return cli_err(appctx, "Thread number out of range (use 0 for current).\n");
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200491
492 if (*args[4])
493 sig = atoi(args[4]);
494
Willy Tarreau9b013702019-10-24 18:18:02 +0200495 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200496 if (thr)
Willy Tarreaufade80d2019-05-22 08:46:59 +0200497 ha_tkill(thr - 1, sig);
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200498 else
Willy Tarreau6bdf3e92019-05-20 14:25:05 +0200499 raise(sig);
500 return 1;
501}
502
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100503/* parse a "debug dev write" command. It always returns 1. */
504static int debug_parse_cli_write(char **args, char *payload, struct appctx *appctx, void *private)
505{
506 unsigned long len;
507
508 if (!*args[3])
509 return cli_err(appctx, "Missing output size.\n");
510
511 len = strtoul(args[3], NULL, 0);
512 if (len >= trash.size)
513 return cli_err(appctx, "Output too large, must be <tune.bufsize.\n");
514
515 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
516
517 chunk_reset(&trash);
518 trash.data = len;
519 memset(trash.area, '.', trash.data);
520 trash.area[trash.data] = 0;
521 for (len = 64; len < trash.data; len += 64)
522 trash.area[len] = '\n';
523 return cli_msg(appctx, LOG_INFO, trash.area);
524}
525
Willy Tarreau68680bb2019-10-23 17:23:25 +0200526/* parse a "debug dev stream" command */
527/*
528 * debug dev stream [strm=<ptr>] [strm.f[{+-=}<flags>]] [txn.f[{+-=}<flags>]] \
529 * [req.f[{+-=}<flags>]] [res.f[{+-=}<flags>]] \
530 * [sif.f[{+-=<flags>]] [sib.f[{+-=<flags>]] \
531 * [sif.s[=<state>]] [sib.s[=<state>]]
532 */
533static int debug_parse_cli_stream(char **args, char *payload, struct appctx *appctx, void *private)
534{
535 struct stream *s = si_strm(appctx->owner);
536 int arg;
537 void *ptr;
538 int size;
539 const char *word, *end;
540 struct ist name;
541 char *msg = NULL;
542 char *endarg;
543 unsigned long long old, new;
544
545 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
546 return 1;
547
548 ptr = NULL; size = 0;
549
550 if (!*args[3]) {
551 return cli_err(appctx,
552 "Usage: debug dev stream { <obj> <op> <value> | wake }*\n"
553 " <obj> = {strm | strm.f | sif.f | sif.s | sif.x | sib.f | sib.s | sib.x |\n"
554 " txn.f | req.f | req.r | req.w | res.f | res.r | res.w}\n"
555 " <op> = {'' (show) | '=' (assign) | '^' (xor) | '+' (or) | '-' (andnot)}\n"
556 " <value> = 'now' | 64-bit dec/hex integer (0x prefix supported)\n"
557 " 'wake' wakes the stream asssigned to 'strm' (default: current)\n"
558 );
559 }
560
Willy Tarreau9b013702019-10-24 18:18:02 +0200561 _HA_ATOMIC_ADD(&debug_commands_issued, 1);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200562 for (arg = 3; *args[arg]; arg++) {
563 old = 0;
564 end = word = args[arg];
565 while (*end && *end != '=' && *end != '^' && *end != '+' && *end != '-')
566 end++;
567 name = ist2(word, end - word);
568 if (isteq(name, ist("strm"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200569 ptr = (!s || !may_access(s)) ? NULL : &s; size = sizeof(s);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200570 } else if (isteq(name, ist("strm.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200571 ptr = (!s || !may_access(s)) ? NULL : &s->flags; size = sizeof(s->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200572 } else if (isteq(name, ist("txn.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200573 ptr = (!s || !may_access(s)) ? NULL : &s->txn->flags; size = sizeof(s->txn->flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200574 } else if (isteq(name, ist("req.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200575 ptr = (!s || !may_access(s)) ? NULL : &s->req.flags; size = sizeof(s->req.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200576 } else if (isteq(name, ist("res.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200577 ptr = (!s || !may_access(s)) ? NULL : &s->res.flags; size = sizeof(s->res.flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200578 } else if (isteq(name, ist("req.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200579 ptr = (!s || !may_access(s)) ? NULL : &s->req.rex; size = sizeof(s->req.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200580 } else if (isteq(name, ist("res.r"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200581 ptr = (!s || !may_access(s)) ? NULL : &s->res.rex; size = sizeof(s->res.rex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200582 } else if (isteq(name, ist("req.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200583 ptr = (!s || !may_access(s)) ? NULL : &s->req.wex; size = sizeof(s->req.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200584 } else if (isteq(name, ist("res.w"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200585 ptr = (!s || !may_access(s)) ? NULL : &s->res.wex; size = sizeof(s->res.wex);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200586 } else if (isteq(name, ist("sif.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200587 ptr = (!s || !may_access(s)) ? NULL : &s->si[0].flags; size = sizeof(s->si[0].flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200588 } else if (isteq(name, ist("sib.f"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200589 ptr = (!s || !may_access(s)) ? NULL : &s->si[1].flags; size = sizeof(s->si[1].flags);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200590 } else if (isteq(name, ist("sif.x"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200591 ptr = (!s || !may_access(s)) ? NULL : &s->si[0].exp; size = sizeof(s->si[0].exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200592 } else if (isteq(name, ist("sib.x"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200593 ptr = (!s || !may_access(s)) ? NULL : &s->si[1].exp; size = sizeof(s->si[1].exp);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200594 } else if (isteq(name, ist("sif.s"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200595 ptr = (!s || !may_access(s)) ? NULL : &s->si[0].state; size = sizeof(s->si[0].state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200596 } else if (isteq(name, ist("sib.s"))) {
Willy Tarreaub2fee042019-10-25 10:06:55 +0200597 ptr = (!s || !may_access(s)) ? NULL : &s->si[1].state; size = sizeof(s->si[1].state);
Willy Tarreau68680bb2019-10-23 17:23:25 +0200598 } else if (isteq(name, ist("wake"))) {
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200599 if (s && may_access(s) && may_access((void *)s + sizeof(*s) - 1))
Willy Tarreau68680bb2019-10-23 17:23:25 +0200600 task_wakeup(s->task, TASK_WOKEN_TIMER|TASK_WOKEN_IO|TASK_WOKEN_MSG);
601 continue;
602 } else
603 return cli_dynerr(appctx, memprintf(&msg, "Unsupported field name: '%s'.\n", word));
604
605 /* read previous value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200606 if ((s || ptr == &s) && ptr && may_access(ptr) && may_access(ptr + size - 1)) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200607 if (size == 8)
608 old = read_u64(ptr);
609 else if (size == 4)
610 old = read_u32(ptr);
611 else if (size == 2)
612 old = read_u16(ptr);
613 else
614 old = *(const uint8_t *)ptr;
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200615 } else {
616 memprintf(&msg,
617 "%sSkipping inaccessible pointer %p for field '%.*s'.\n",
618 msg ? msg : "", ptr, (int)(end - word), word);
619 continue;
Willy Tarreau68680bb2019-10-23 17:23:25 +0200620 }
621
622 /* parse the new value . */
623 new = strtoll(end + 1, &endarg, 0);
624 if (end[1] && *endarg) {
625 if (strcmp(end + 1, "now") == 0)
626 new = now_ms;
627 else {
628 memprintf(&msg,
629 "%sIgnoring unparsable value '%s' for field '%.*s'.\n",
630 msg ? msg : "", end + 1, (int)(end - word), word);
631 continue;
632 }
633 }
634
635 switch (*end) {
636 case '\0': /* show */
637 memprintf(&msg, "%s%.*s=%#llx ", msg ? msg : "", (int)(end - word), word, old);
638 new = old; // do not change the value
639 break;
640
641 case '=': /* set */
642 break;
643
644 case '^': /* XOR */
645 new = old ^ new;
646 break;
647
648 case '+': /* OR */
649 new = old | new;
650 break;
651
652 case '-': /* AND NOT */
653 new = old & ~new;
654 break;
655
656 default:
657 break;
658 }
659
660 /* write the new value */
Willy Tarreau2b5520d2019-10-24 18:28:23 +0200661 if (new != old) {
Willy Tarreau68680bb2019-10-23 17:23:25 +0200662 if (size == 8)
663 write_u64(ptr, new);
664 else if (size == 4)
665 write_u32(ptr, new);
666 else if (size == 2)
667 write_u16(ptr, new);
668 else
669 *(uint8_t *)ptr = new;
670 }
671 }
672
673 if (msg && *msg)
674 return cli_dynmsg(appctx, LOG_INFO, msg);
675 return 1;
676}
677
Willy Tarreaua6026a02020-07-02 09:14:48 +0200678#if defined(DEBUG_MEM_STATS)
679/* CLI parser for the "debug dev memstats" command */
680static int debug_parse_cli_memstats(char **args, char *payload, struct appctx *appctx, void *private)
681{
682 extern __attribute__((__weak__)) struct mem_stats __start_mem_stats;
683 extern __attribute__((__weak__)) struct mem_stats __stop_mem_stats;
684
685 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
686 return 1;
687
688 if (strcmp(args[3], "reset") == 0) {
689 struct mem_stats *ptr;
690
691 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
692 return 1;
693
694 for (ptr = &__start_mem_stats; ptr < &__stop_mem_stats; ptr++) {
695 _HA_ATOMIC_STORE(&ptr->calls, 0);
696 _HA_ATOMIC_STORE(&ptr->size, 0);
697 }
698 return 1;
699 }
700
701 if (strcmp(args[3], "all") == 0)
702 appctx->ctx.cli.i0 = 1;
703
704 /* otherwise proceed with the dump from p0 to p1 */
705 appctx->ctx.cli.p0 = &__start_mem_stats;
706 appctx->ctx.cli.p1 = &__stop_mem_stats;
707 return 0;
708}
709
710/* CLI I/O handler for the "debug dev memstats" command. Dumps all mem_stats
711 * structs referenced by pointers located between p0 and p1. Dumps all entries
712 * if i0 > 0, otherwise only non-zero calls.
713 */
714static int debug_iohandler_memstats(struct appctx *appctx)
715{
716 struct stream_interface *si = appctx->owner;
717 struct mem_stats *ptr = appctx->ctx.cli.p0;
718 int ret = 1;
719
720 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
721 goto end;
722
723 chunk_reset(&trash);
724
725 /* we have two inner loops here, one for the proxy, the other one for
726 * the buffer.
727 */
728 for (ptr = appctx->ctx.cli.p0; ptr != appctx->ctx.cli.p1; ptr++) {
729 const char *type;
730 const char *name;
731 const char *p;
732
733 if (!ptr->size && !ptr->calls && !appctx->ctx.cli.i0)
734 continue;
735
736 /* basename only */
737 for (p = name = ptr->file; *p; p++) {
738 if (*p == '/')
739 name = p + 1;
740 }
741
742 switch (ptr->type) {
743 case MEM_STATS_TYPE_CALLOC: type = "CALLOC"; break;
744 case MEM_STATS_TYPE_FREE: type = "FREE"; break;
745 case MEM_STATS_TYPE_MALLOC: type = "MALLOC"; break;
746 case MEM_STATS_TYPE_REALLOC: type = "REALLOC"; break;
747 case MEM_STATS_TYPE_STRDUP: type = "STRDUP"; break;
748 default: type = "UNSET"; break;
749 }
750
751 //chunk_printf(&trash,
752 // "%20s:%-5d %7s size: %12lu calls: %9lu size/call: %6lu\n",
753 // name, ptr->line, type,
754 // (unsigned long)ptr->size, (unsigned long)ptr->calls,
755 // (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
756
757 chunk_printf(&trash, "%s:%d", name, ptr->line);
758 while (trash.data < 25)
759 trash.area[trash.data++] = ' ';
760 chunk_appendf(&trash, "%7s size: %12lu calls: %9lu size/call: %6lu\n",
761 type,
762 (unsigned long)ptr->size, (unsigned long)ptr->calls,
763 (unsigned long)(ptr->calls ? (ptr->size / ptr->calls) : 0));
764
765 if (ci_putchk(si_ic(si), &trash) == -1) {
766 si_rx_room_blk(si);
767 appctx->ctx.cli.p0 = ptr;
768 ret = 0;
769 break;
770 }
771 }
772
773 end:
774 return ret;
775}
776
777#endif
778
Willy Tarreauc7091d82019-05-17 10:08:49 +0200779#ifndef USE_THREAD_DUMP
780
781/* This function dumps all threads' state to the trash. This version is the
782 * most basic one, which doesn't inspect other threads.
783 */
784void ha_thread_dump_all_to_trash()
785{
786 unsigned int thr;
787
788 for (thr = 0; thr < global.nbthread; thr++)
789 ha_thread_dump(&trash, thr, tid);
790}
791
792#else /* below USE_THREAD_DUMP is set */
793
Willy Tarreauc7091d82019-05-17 10:08:49 +0200794/* ID of the thread requesting the dump */
795static unsigned int thread_dump_tid;
796
797/* points to the buffer where the dump functions should write. It must
798 * have already been initialized by the requester. Nothing is done if
799 * it's NULL.
800 */
801struct buffer *thread_dump_buffer = NULL;
802
803void ha_thread_dump_all_to_trash()
804{
Willy Tarreauc7091d82019-05-17 10:08:49 +0200805 unsigned long old;
806
807 while (1) {
808 old = 0;
809 if (HA_ATOMIC_CAS(&threads_to_dump, &old, all_threads_mask))
810 break;
811 ha_thread_relax();
812 }
813
814 thread_dump_buffer = &trash;
815 thread_dump_tid = tid;
Willy Tarreaufade80d2019-05-22 08:46:59 +0200816 ha_tkillall(DEBUGSIG);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200817}
818
819/* handles DEBUGSIG to dump the state of the thread it's working on */
820void debug_handler(int sig, siginfo_t *si, void *arg)
821{
Willy Tarreau82aafc42020-03-03 08:31:34 +0100822 /* first, let's check it's really for us and that we didn't just get
823 * a spurious DEBUGSIG.
824 */
825 if (!(threads_to_dump & tid_bit))
826 return;
827
Willy Tarreauc7091d82019-05-17 10:08:49 +0200828 /* There are 4 phases in the dump process:
829 * 1- wait for our turn, i.e. when all lower bits are gone.
830 * 2- perform the action if our bit is set
831 * 3- remove our bit to let the next one go, unless we're
Willy Tarreauc0773622019-07-31 19:15:45 +0200832 * the last one and have to put them all as a signal
833 * 4- wait out bit to re-appear, then clear it and quit.
Willy Tarreauc7091d82019-05-17 10:08:49 +0200834 */
835
836 /* wait for all previous threads to finish first */
837 while (threads_to_dump & (tid_bit - 1))
838 ha_thread_relax();
839
840 /* dump if needed */
841 if (threads_to_dump & tid_bit) {
842 if (thread_dump_buffer)
843 ha_thread_dump(thread_dump_buffer, tid, thread_dump_tid);
844 if ((threads_to_dump & all_threads_mask) == tid_bit) {
845 /* last one */
Willy Tarreauc0773622019-07-31 19:15:45 +0200846 HA_ATOMIC_STORE(&threads_to_dump, all_threads_mask);
Willy Tarreauc7091d82019-05-17 10:08:49 +0200847 thread_dump_buffer = NULL;
848 }
849 else
850 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
851 }
852
853 /* now wait for all others to finish dumping. The last one will set all
Willy Tarreauc0773622019-07-31 19:15:45 +0200854 * bits again to broadcast the leaving condition so we'll see ourselves
855 * present again. This way the threads_to_dump variable never passes to
856 * zero until all visitors have stopped waiting.
Willy Tarreauc7091d82019-05-17 10:08:49 +0200857 */
Willy Tarreauc0773622019-07-31 19:15:45 +0200858 while (!(threads_to_dump & tid_bit))
859 ha_thread_relax();
860 HA_ATOMIC_AND(&threads_to_dump, ~tid_bit);
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200861
862 /* mark the current thread as stuck to detect it upon next invocation
863 * if it didn't move.
864 */
865 if (!((threads_harmless_mask|sleeping_thread_mask) & tid_bit))
866 ti->flags |= TI_FL_STUCK;
Willy Tarreauc7091d82019-05-17 10:08:49 +0200867}
868
869static int init_debug_per_thread()
870{
871 sigset_t set;
872
873 /* unblock the DEBUGSIG signal we intend to use */
874 sigemptyset(&set);
875 sigaddset(&set, DEBUGSIG);
876 ha_sigmask(SIG_UNBLOCK, &set, NULL);
877 return 1;
878}
879
880static int init_debug()
881{
882 struct sigaction sa;
883
Willy Tarreau0214b452020-03-04 06:01:40 +0100884#ifdef USE_BACKTRACE
885 /* calling backtrace() will access libgcc at runtime. We don't want to
886 * do it after the chroot, so let's perform a first call to have it
887 * ready in memory for later use.
888 */
889 void *callers[1];
Willy Tarreau13faf162020-03-04 07:44:06 +0100890 my_backtrace(callers, sizeof(callers)/sizeof(*callers));
Willy Tarreau0214b452020-03-04 06:01:40 +0100891#endif
Willy Tarreauc7091d82019-05-17 10:08:49 +0200892 sa.sa_handler = NULL;
893 sa.sa_sigaction = debug_handler;
894 sigemptyset(&sa.sa_mask);
895 sa.sa_flags = SA_SIGINFO;
896 sigaction(DEBUGSIG, &sa, NULL);
897 return 0;
898}
899
900REGISTER_POST_CHECK(init_debug);
901REGISTER_PER_THREAD_INIT(init_debug_per_thread);
902
903#endif /* USE_THREAD_DUMP */
904
Willy Tarreau4e2b6462019-05-16 17:44:30 +0200905/* register cli keywords */
906static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub24ab222019-10-24 18:03:39 +0200907 {{ "debug", "dev", "close", NULL }, "debug dev close <fd> : close this file descriptor", debug_parse_cli_close, NULL, NULL, NULL, ACCESS_EXPERT },
908 {{ "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 +0200909#if defined(DEBUG_DEV)
Willy Tarreaub24ab222019-10-24 18:03:39 +0200910 {{ "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 +0200911#endif
Willy Tarreaub24ab222019-10-24 18:03:39 +0200912 {{ "debug", "dev", "exit", NULL }, "debug dev exit [code] : immediately exit the process", debug_parse_cli_exit, NULL, NULL, NULL, ACCESS_EXPERT },
913 {{ "debug", "dev", "hex", NULL }, "debug dev hex <addr> [len]: dump a memory area", debug_parse_cli_hex, NULL, NULL, NULL, ACCESS_EXPERT },
914 {{ "debug", "dev", "log", NULL }, "debug dev log [msg] ... : send this msg to global logs", debug_parse_cli_log, NULL, NULL, NULL, ACCESS_EXPERT },
915 {{ "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 +0200916#if defined(DEBUG_MEM_STATS)
917 {{ "debug", "dev", "memstats", NULL }, "debug dev memstats [reset|all] : dump/reset memory statistics", debug_parse_cli_memstats, debug_iohandler_memstats, NULL, NULL, ACCESS_EXPERT },
918#endif
Willy Tarreaub24ab222019-10-24 18:03:39 +0200919 {{ "debug", "dev", "panic", NULL }, "debug dev panic : immediately trigger a panic", debug_parse_cli_panic, NULL, NULL, NULL, ACCESS_EXPERT },
920 {{ "debug", "dev", "stream",NULL }, "debug dev stream ... : show/manipulate stream flags", debug_parse_cli_stream,NULL, NULL, NULL, ACCESS_EXPERT },
921 {{ "debug", "dev", "tkill", NULL }, "debug dev tkill [thr] [sig] : send signal to thread", debug_parse_cli_tkill, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreau6cbe62b2020-03-05 17:16:24 +0100922 {{ "debug", "dev", "write", NULL }, "debug dev write [size] : write that many bytes", debug_parse_cli_write, NULL, NULL, NULL, ACCESS_EXPERT },
Willy Tarreaub24ab222019-10-24 18:03:39 +0200923 {{ "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 +0200924 {{},}
925}};
926
927INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);