Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | f5b4e06 | 2020-03-03 15:40:23 +0100 | [diff] [blame] | 13 | |
Willy Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 14 | #include <errno.h> |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 15 | #include <fcntl.h> |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 16 | #include <signal.h> |
| 17 | #include <time.h> |
| 18 | #include <stdio.h> |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 19 | #include <stdlib.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 20 | #include <syslog.h> |
Willy Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 21 | #include <sys/stat.h> |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 22 | #include <sys/types.h> |
| 23 | #include <sys/wait.h> |
Willy Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 24 | #include <unistd.h> |
| 25 | #ifdef USE_EPOLL |
| 26 | #include <sys/epoll.h> |
| 27 | #endif |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 28 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 29 | #include <haproxy/api.h> |
Willy Tarreau | 8dabda7 | 2020-05-27 17:22:10 +0200 | [diff] [blame] | 30 | #include <haproxy/buf.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 31 | #include <haproxy/cli.h> |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 32 | #include <haproxy/clock.h> |
Willy Tarreau | 2a83d60 | 2020-05-27 16:58:08 +0200 | [diff] [blame] | 33 | #include <haproxy/debug.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 34 | #include <haproxy/fd.h> |
| 35 | #include <haproxy/global.h> |
Willy Tarreau | 8641605 | 2020-06-04 09:20:54 +0200 | [diff] [blame] | 36 | #include <haproxy/hlua.h> |
Willy Tarreau | b7fc4c4 | 2021-10-06 18:56:42 +0200 | [diff] [blame] | 37 | #include <haproxy/http_ana.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 38 | #include <haproxy/log.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 39 | #include <haproxy/net_helper.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 40 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 41 | #include <haproxy/task.h> |
Willy Tarreau | 3f567e4 | 2020-05-28 15:29:19 +0200 | [diff] [blame] | 42 | #include <haproxy/thread.h> |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 43 | #include <haproxy/time.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 44 | #include <haproxy/tools.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 45 | #include <import/ist.h> |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 46 | |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 47 | |
Willy Tarreau | a37cb18 | 2019-07-31 19:20:39 +0200 | [diff] [blame] | 48 | /* mask of threads still having to dump, used to respect ordering. Only used |
| 49 | * when USE_THREAD_DUMP is set. |
| 50 | */ |
| 51 | volatile unsigned long threads_to_dump = 0; |
Willy Tarreau | 9b01370 | 2019-10-24 18:18:02 +0200 | [diff] [blame] | 52 | unsigned int debug_commands_issued = 0; |
Willy Tarreau | a37cb18 | 2019-07-31 19:20:39 +0200 | [diff] [blame] | 53 | |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 54 | /* 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 Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 57 | * 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 Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 65 | */ |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 66 | void ha_dump_backtrace(struct buffer *buf, const char *prefix, int dump) |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 67 | { |
| 68 | struct buffer bak; |
| 69 | char pfx2[100]; |
| 70 | void *callers[100]; |
| 71 | int j, nptrs; |
| 72 | const void *addr; |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 73 | |
| 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 Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 85 | for (j = 0; (j < nptrs || (dump & 3) < 2); j++) { |
| 86 | if (j == nptrs && !(dump & 3)) { |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 87 | /* we failed to spot the starting point of the |
| 88 | * dump, let's start over dumping everything we |
| 89 | * have. |
| 90 | */ |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 91 | dump += 2; |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 92 | 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 Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 97 | if ((dump & 3) == 0) { |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 98 | /* dump not started, will start *after* |
Willy Tarreau | a8459b2 | 2021-01-22 14:12:27 +0100 | [diff] [blame] | 99 | * ha_thread_dump_all_to_trash, ha_panic and ha_backtrace_to_stderr |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 100 | */ |
Willy Tarreau | a8459b2 | 2021-01-22 14:12:27 +0100 | [diff] [blame] | 101 | if (addr == ha_thread_dump_all_to_trash || addr == ha_panic || |
| 102 | addr == ha_backtrace_to_stderr) |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 103 | dump++; |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 104 | *buf = bak; |
| 105 | continue; |
| 106 | } |
| 107 | |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 108 | if ((dump & 3) == 1) { |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 109 | /* starting */ |
Willy Tarreau | a8459b2 | 2021-01-22 14:12:27 +0100 | [diff] [blame] | 110 | if (addr == ha_thread_dump_all_to_trash || addr == ha_panic || |
| 111 | addr == ha_backtrace_to_stderr) { |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 112 | *buf = bak; |
| 113 | continue; |
| 114 | } |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 115 | dump++; |
Willy Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 116 | } |
| 117 | |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 118 | 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 Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 129 | *buf = bak; |
| 130 | break; |
| 131 | } |
| 132 | } |
| 133 | /* OK, line dumped */ |
| 134 | chunk_appendf(buf, "\n"); |
| 135 | } |
| 136 | } |
| 137 | |
Willy Tarreau | a8459b2 | 2021-01-22 14:12:27 +0100 | [diff] [blame] | 138 | /* dump a backtrace of current thread's stack to stderr. */ |
| 139 | void ha_backtrace_to_stderr() |
| 140 | { |
| 141 | char area[2048]; |
| 142 | struct buffer b = b_make(area, sizeof(area), 0, 0); |
| 143 | |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 144 | ha_dump_backtrace(&b, " ", 4); |
Willy Tarreau | a8459b2 | 2021-01-22 14:12:27 +0100 | [diff] [blame] | 145 | if (b.data) |
Willy Tarreau | 2cbe2e7 | 2021-01-22 15:58:26 +0100 | [diff] [blame] | 146 | DISGUISE(write(2, b.area, b.data)); |
Willy Tarreau | a8459b2 | 2021-01-22 14:12:27 +0100 | [diff] [blame] | 147 | } |
| 148 | |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 149 | /* 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 Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 153 | * in front of the calling thread's line (usually it's tid). Any stuck thread |
| 154 | * is also prefixed with a '>'. |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 155 | */ |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 156 | void ha_thread_dump(struct buffer *buf, int thr, int calling_tid) |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 157 | { |
| 158 | unsigned long thr_bit = 1UL << thr; |
Willy Tarreau | 45c38e2 | 2021-09-30 18:28:49 +0200 | [diff] [blame] | 159 | unsigned long long p = ha_thread_ctx[thr].prev_cpu_time; |
Willy Tarreau | 2169498 | 2021-10-08 15:09:17 +0200 | [diff] [blame] | 160 | unsigned long long n = now_cpu_time_thread(thr); |
Willy Tarreau | a0b9953 | 2021-09-30 18:48:37 +0200 | [diff] [blame] | 161 | int stuck = !!(ha_thread_ctx[thr].flags & TH_FL_STUCK); |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 162 | |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 163 | chunk_appendf(buf, |
Willy Tarreau | f0e5da2 | 2020-05-01 12:26:03 +0200 | [diff] [blame] | 164 | "%c%cThread %-2u: id=0x%llx act=%d glob=%d wq=%d rq=%d tl=%d tlsz=%d rqsz=%d\n" |
Willy Tarreau | a3870b7 | 2021-09-13 19:24:47 +0200 | [diff] [blame] | 165 | " %2u/%-2u stuck=%d prof=%d", |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 166 | (thr == calling_tid) ? '*' : ' ', stuck ? '>' : ' ', thr + 1, |
Willy Tarreau | ff64d3b | 2020-05-01 11:28:49 +0200 | [diff] [blame] | 167 | ha_get_pthread_id(thr), |
Olivier Houchard | cfbb3e6 | 2019-05-29 19:22:43 +0200 | [diff] [blame] | 168 | thread_has_tasks(), |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 169 | !!(global_tasks_mask & thr_bit), |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 170 | !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 Tarreau | a3870b7 | 2021-09-13 19:24:47 +0200 | [diff] [blame] | 178 | ha_thread_info[thr].tg->tgid, ha_thread_info[thr].ltid + 1, |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 179 | stuck, |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 180 | !!(task_profiling_mask & thr_bit)); |
| 181 | |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 182 | chunk_appendf(buf, |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 183 | " harmless=%d wantrdv=%d", |
| 184 | !!(threads_harmless_mask & thr_bit), |
| 185 | !!(threads_want_rdv_mask & thr_bit)); |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 186 | |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 187 | chunk_appendf(buf, "\n"); |
Willy Tarreau | 9c8800a | 2019-05-20 20:52:20 +0200 | [diff] [blame] | 188 | chunk_appendf(buf, " cpu_ns: poll=%llu now=%llu diff=%llu\n", p, n, n-p); |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 189 | |
Willy Tarreau | a3870b7 | 2021-09-13 19:24:47 +0200 | [diff] [blame] | 190 | /* this is the end of what we can dump from outside the current thread */ |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 191 | |
| 192 | if (thr != tid) |
| 193 | return; |
| 194 | |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 195 | chunk_appendf(buf, " curr_task="); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 196 | ha_task_dump(buf, th_ctx->current, " "); |
Willy Tarreau | f5b4e06 | 2020-03-03 15:40:23 +0100 | [diff] [blame] | 197 | |
Willy Tarreau | f5b4e06 | 2020-03-03 15:40:23 +0100 | [diff] [blame] | 198 | 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 Tarreau | 123fc97 | 2021-01-22 13:52:41 +0100 | [diff] [blame] | 201 | * 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 Tarreau | f5b4e06 | 2020-03-03 15:40:23 +0100 | [diff] [blame] | 204 | */ |
Willy Tarreau | 2bfce7e | 2021-01-22 14:48:34 +0100 | [diff] [blame] | 205 | ha_dump_backtrace(buf, " ", 0); |
Willy Tarreau | f5b4e06 | 2020-03-03 15:40:23 +0100 | [diff] [blame] | 206 | } |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 210 | /* dumps into the buffer some information related to task <task> (which may |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 211 | * either be a task or a tasklet, and prepend each line except the first one |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 212 | * 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 Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 215 | */ |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 216 | void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx) |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 217 | { |
Willy Tarreau | 578ea8b | 2019-05-22 09:43:09 +0200 | [diff] [blame] | 218 | const struct stream *s = NULL; |
Willy Tarreau | a512b02 | 2019-08-21 14:12:19 +0200 | [diff] [blame] | 219 | const struct appctx __maybe_unused *appctx = NULL; |
Willy Tarreau | 78a7cb6 | 2019-08-21 14:16:02 +0200 | [diff] [blame] | 220 | struct hlua __maybe_unused *hlua = NULL; |
Willy Tarreau | 578ea8b | 2019-05-22 09:43:09 +0200 | [diff] [blame] | 221 | |
Willy Tarreau | 14a1ab7 | 2019-05-17 10:34:25 +0200 | [diff] [blame] | 222 | if (!task) { |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 223 | chunk_appendf(buf, "0\n"); |
Willy Tarreau | 231ec39 | 2019-05-17 10:39:47 +0200 | [diff] [blame] | 224 | return; |
| 225 | } |
| 226 | |
Willy Tarreau | 20db911 | 2019-05-17 14:14:35 +0200 | [diff] [blame] | 227 | 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 Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 239 | |
Willy Tarreau | 2e89b09 | 2020-03-03 17:13:02 +0100 | [diff] [blame] | 240 | 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 Tarreau | 578ea8b | 2019-05-22 09:43:09 +0200 | [diff] [blame] | 243 | |
Willy Tarreau | a512b02 | 2019-08-21 14:12:19 +0200 | [diff] [blame] | 244 | 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 Tarreau | 578ea8b | 2019-05-22 09:43:09 +0200 | [diff] [blame] | 249 | if (task->process == process_stream && task->context) |
| 250 | s = (struct stream *)task->context; |
| 251 | else if (task->process == task_run_applet && task->context) |
Christopher Faulet | 86e1c33 | 2021-12-20 17:09:39 +0100 | [diff] [blame] | 252 | s = si_strm(cs_si(((struct appctx *)task->context)->owner)); |
Willy Tarreau | 578ea8b | 2019-05-22 09:43:09 +0200 | [diff] [blame] | 253 | 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 Tarreau | 78a7cb6 | 2019-08-21 14:16:02 +0200 | [diff] [blame] | 258 | |
| 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 Faulet | 471425f | 2020-07-24 19:08:05 +0200 | [diff] [blame] | 276 | if (hlua && hlua->T) { |
Christopher Faulet | cc2c4f8 | 2021-03-24 14:52:24 +0100 | [diff] [blame] | 277 | 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 Tarreau | 78a7cb6 | 2019-08-21 14:16:02 +0200 | [diff] [blame] | 280 | } |
Christopher Faulet | 471425f | 2020-07-24 19:08:05 +0200 | [diff] [blame] | 281 | else |
| 282 | b_putchr(buf, '\n'); |
Willy Tarreau | 78a7cb6 | 2019-08-21 14:16:02 +0200 | [diff] [blame] | 283 | #endif |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 284 | } |
| 285 | |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 286 | /* 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 | */ |
| 289 | static int cli_io_handler_show_threads(struct appctx *appctx) |
| 290 | { |
Christopher Faulet | 86e1c33 | 2021-12-20 17:09:39 +0100 | [diff] [blame] | 291 | struct stream_interface *si = cs_si(appctx->owner); |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 292 | 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 Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 302 | chunk_reset(&trash); |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 303 | ha_thread_dump_all_to_trash(); |
Willy Tarreau | 5cf64dd | 2019-05-17 10:36:08 +0200 | [diff] [blame] | 304 | |
| 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 Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 311 | return 1; |
| 312 | } |
| 313 | |
Willy Tarreau | 6ab7b21 | 2021-12-28 09:57:10 +0100 | [diff] [blame] | 314 | #if defined(HA_HAVE_DUMP_LIBS) |
| 315 | /* parse a "show libs" command. It returns 1 if it emits anything otherwise zero. */ |
| 316 | static 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 Tarreau | 56131ca | 2019-05-20 13:48:29 +0200 | [diff] [blame] | 329 | /* dumps a state of all threads into the trash and on fd #2, then aborts. */ |
| 330 | void ha_panic() |
| 331 | { |
| 332 | chunk_reset(&trash); |
Willy Tarreau | a9f9fc9 | 2019-05-20 17:45:35 +0200 | [diff] [blame] | 333 | chunk_appendf(&trash, "Thread %u is about to kill the process.\n", tid + 1); |
Willy Tarreau | 56131ca | 2019-05-20 13:48:29 +0200 | [diff] [blame] | 334 | ha_thread_dump_all_to_trash(); |
Willy Tarreau | 2e8ab6b | 2020-03-14 11:03:20 +0100 | [diff] [blame] | 335 | DISGUISE(write(2, trash.area, trash.data)); |
Willy Tarreau | 56131ca | 2019-05-20 13:48:29 +0200 | [diff] [blame] | 336 | for (;;) |
| 337 | abort(); |
| 338 | } |
| 339 | |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 340 | /* parse a "debug dev exit" command. It always returns 1, though it should never return. */ |
| 341 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 348 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 349 | exit(code); |
| 350 | return 1; |
| 351 | } |
| 352 | |
Willy Tarreau | 5baf4fe | 2021-01-22 14:15:46 +0100 | [diff] [blame] | 353 | /* 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 | */ |
| 356 | int 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 361 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 5baf4fe | 2021-01-22 14:15:46 +0100 | [diff] [blame] | 362 | BUG_ON(one > zero); |
| 363 | return 1; |
| 364 | } |
| 365 | |
Willy Tarreau | 305cfbd | 2022-02-25 08:52:39 +0100 | [diff] [blame] | 366 | /* 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 | */ |
| 369 | int 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 Tarreau | 4e0a8b1 | 2022-02-25 08:55:11 +0100 | [diff] [blame^] | 379 | /* 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 | */ |
| 382 | int 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 Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 392 | /* parse a "debug dev close" command. It always returns 1. */ |
| 393 | static 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 Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 400 | if (!*args[3]) |
| 401 | return cli_err(appctx, "Missing file descriptor number.\n"); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 402 | |
| 403 | fd = atoi(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 404 | if (fd < 0 || fd >= global.maxsock) |
| 405 | return cli_err(appctx, "File descriptor out of range.\n"); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 406 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 407 | if (!fdtab[fd].owner) |
| 408 | return cli_msg(appctx, LOG_INFO, "File descriptor was already closed.\n"); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 409 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 410 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 411 | fd_delete(fd); |
| 412 | return 1; |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | /* parse a "debug dev delay" command. It always returns 1. */ |
| 416 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 423 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 424 | usleep((long)delay * 1000); |
| 425 | return 1; |
| 426 | } |
| 427 | |
| 428 | /* parse a "debug dev log" command. It always returns 1. */ |
| 429 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 436 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 437 | 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. */ |
| 449 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 457 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 458 | 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. */ |
| 468 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 473 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 474 | ha_panic(); |
| 475 | return 1; |
| 476 | } |
| 477 | |
| 478 | /* parse a "debug dev exec" command. It always returns 1. */ |
Willy Tarreau | b24ab22 | 2019-10-24 18:03:39 +0200 | [diff] [blame] | 479 | #if defined(DEBUG_DEV) |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 480 | static int debug_parse_cli_exec(char **args, char *payload, struct appctx *appctx, void *private) |
| 481 | { |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 482 | int pipefd[2]; |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 483 | int arg; |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 484 | int pid; |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 485 | |
| 486 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 487 | return 1; |
| 488 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 489 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 490 | 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 Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 497 | thread_isolate(); |
| 498 | if (pipe(pipefd) < 0) |
| 499 | goto fail_pipe; |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 500 | |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 501 | 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 Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 528 | chunk_reset(&trash); |
| 529 | while (1) { |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 530 | size_t ret = read(pipefd[0], trash.area + trash.data, trash.size - 20 - trash.data); |
| 531 | if (ret <= 0) |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 532 | break; |
| 533 | trash.data += ret; |
| 534 | if (trash.data + 20 == trash.size) { |
| 535 | chunk_strcat(&trash, "\n[[[TRUNCATED]]]\n"); |
| 536 | break; |
| 537 | } |
| 538 | } |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 539 | close(pipefd[0]); |
| 540 | waitpid(pid, NULL, WNOHANG); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 541 | trash.area[trash.data] = 0; |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 542 | return cli_msg(appctx, LOG_INFO, trash.area); |
Willy Tarreau | 368bff4 | 2019-12-06 17:18:28 +0100 | [diff] [blame] | 543 | |
| 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 Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 551 | } |
Willy Tarreau | b24ab22 | 2019-10-24 18:03:39 +0200 | [diff] [blame] | 552 | #endif |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 553 | |
| 554 | /* parse a "debug dev hex" command. It always returns 1. */ |
| 555 | static 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 Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 562 | if (!*args[3]) |
| 563 | return cli_err(appctx, "Missing memory address to dump from.\n"); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 564 | |
| 565 | start = strtoul(args[3], NULL, 0); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 566 | if (!start) |
| 567 | return cli_err(appctx, "Will not dump from NULL address.\n"); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 568 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 569 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 9b01370 | 2019-10-24 18:18:02 +0200 | [diff] [blame] | 570 | |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 571 | /* 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 Tarreau | 3710105 | 2019-05-20 16:48:20 +0200 | [diff] [blame] | 577 | dump_hex(&trash, " ", (const void *)start, len, 1); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 578 | trash.area[trash.data] = 0; |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 579 | return cli_msg(appctx, LOG_INFO, trash.area); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 580 | } |
| 581 | |
Willy Tarreau | 48129be | 2021-05-04 18:40:50 +0200 | [diff] [blame] | 582 | /* parse a "debug dev sym <addr>" command. It always returns 1. */ |
| 583 | static 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 Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 603 | /* parse a "debug dev tkill" command. It always returns 1. */ |
| 604 | static 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 Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 615 | if (thr < 0 || thr > global.nbthread) |
| 616 | return cli_err(appctx, "Thread number out of range (use 0 for current).\n"); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 617 | |
| 618 | if (*args[4]) |
| 619 | sig = atoi(args[4]); |
| 620 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 621 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 622 | if (thr) |
Willy Tarreau | fade80d | 2019-05-22 08:46:59 +0200 | [diff] [blame] | 623 | ha_tkill(thr - 1, sig); |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 624 | else |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 625 | raise(sig); |
| 626 | return 1; |
| 627 | } |
| 628 | |
Willy Tarreau | 6cbe62b | 2020-03-05 17:16:24 +0100 | [diff] [blame] | 629 | /* parse a "debug dev write" command. It always returns 1. */ |
| 630 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 641 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 6cbe62b | 2020-03-05 17:16:24 +0100 | [diff] [blame] | 642 | |
| 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 Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 652 | /* 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 | */ |
| 659 | static int debug_parse_cli_stream(char **args, char *payload, struct appctx *appctx, void *private) |
| 660 | { |
Christopher Faulet | 86e1c33 | 2021-12-20 17:09:39 +0100 | [diff] [blame] | 661 | struct stream *s = si_strm(cs_si(appctx->owner)); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 662 | 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 687 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 688 | 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 Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 695 | ptr = (!s || !may_access(s)) ? NULL : &s; size = sizeof(s); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 696 | } else if (isteq(name, ist("strm.f"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 697 | ptr = (!s || !may_access(s)) ? NULL : &s->flags; size = sizeof(s->flags); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 698 | } else if (isteq(name, ist("txn.f"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 699 | ptr = (!s || !may_access(s)) ? NULL : &s->txn->flags; size = sizeof(s->txn->flags); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 700 | } else if (isteq(name, ist("req.f"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 701 | ptr = (!s || !may_access(s)) ? NULL : &s->req.flags; size = sizeof(s->req.flags); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 702 | } else if (isteq(name, ist("res.f"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 703 | ptr = (!s || !may_access(s)) ? NULL : &s->res.flags; size = sizeof(s->res.flags); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 704 | } else if (isteq(name, ist("req.r"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 705 | ptr = (!s || !may_access(s)) ? NULL : &s->req.rex; size = sizeof(s->req.rex); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 706 | } else if (isteq(name, ist("res.r"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 707 | ptr = (!s || !may_access(s)) ? NULL : &s->res.rex; size = sizeof(s->res.rex); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 708 | } else if (isteq(name, ist("req.w"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 709 | ptr = (!s || !may_access(s)) ? NULL : &s->req.wex; size = sizeof(s->req.wex); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 710 | } else if (isteq(name, ist("res.w"))) { |
Willy Tarreau | b2fee04 | 2019-10-25 10:06:55 +0200 | [diff] [blame] | 711 | ptr = (!s || !may_access(s)) ? NULL : &s->res.wex; size = sizeof(s->res.wex); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 712 | } else if (isteq(name, ist("sif.f"))) { |
Christopher Faulet | 5d3c8aa | 2021-12-23 13:38:12 +0100 | [diff] [blame] | 713 | ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->flags; size = sizeof(cs_si(s->csf)->flags); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 714 | } else if (isteq(name, ist("sib.f"))) { |
Christopher Faulet | 5d3c8aa | 2021-12-23 13:38:12 +0100 | [diff] [blame] | 715 | ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csb)->flags; size = sizeof(cs_si(s->csb)->flags); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 716 | } else if (isteq(name, ist("sif.x"))) { |
Christopher Faulet | 5d3c8aa | 2021-12-23 13:38:12 +0100 | [diff] [blame] | 717 | ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->exp; size = sizeof(cs_si(s->csf)->exp); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 718 | } else if (isteq(name, ist("sib.x"))) { |
Christopher Faulet | 5d3c8aa | 2021-12-23 13:38:12 +0100 | [diff] [blame] | 719 | ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csb)->exp; size = sizeof(cs_si(s->csb)->exp); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 720 | } else if (isteq(name, ist("sif.s"))) { |
Christopher Faulet | 5d3c8aa | 2021-12-23 13:38:12 +0100 | [diff] [blame] | 721 | ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->state; size = sizeof(cs_si(s->csf)->state); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 722 | } else if (isteq(name, ist("sib.s"))) { |
Christopher Faulet | 5d3c8aa | 2021-12-23 13:38:12 +0100 | [diff] [blame] | 723 | ptr = (!s || !may_access(s)) ? NULL : &cs_si(s->csf)->state; size = sizeof(cs_si(s->csb)->state); |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 724 | } else if (isteq(name, ist("wake"))) { |
Willy Tarreau | 2b5520d | 2019-10-24 18:28:23 +0200 | [diff] [blame] | 725 | if (s && may_access(s) && may_access((void *)s + sizeof(*s) - 1)) |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 726 | 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 Tarreau | 2b5520d | 2019-10-24 18:28:23 +0200 | [diff] [blame] | 732 | if ((s || ptr == &s) && ptr && may_access(ptr) && may_access(ptr + size - 1)) { |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 733 | 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 Tarreau | 2b5520d | 2019-10-24 18:28:23 +0200 | [diff] [blame] | 741 | } else { |
| 742 | memprintf(&msg, |
| 743 | "%sSkipping inaccessible pointer %p for field '%.*s'.\n", |
| 744 | msg ? msg : "", ptr, (int)(end - word), word); |
| 745 | continue; |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 746 | } |
| 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 Tarreau | 2b5520d | 2019-10-24 18:28:23 +0200 | [diff] [blame] | 787 | if (new != old) { |
Willy Tarreau | 68680bb | 2019-10-23 17:23:25 +0200 | [diff] [blame] | 788 | 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 Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 804 | static struct task *debug_task_handler(struct task *t, void *ctx, unsigned int state) |
Willy Tarreau | a5a4479 | 2020-11-29 17:12:15 +0100 | [diff] [blame] | 805 | { |
| 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 Tarreau | 06e69b5 | 2021-03-02 14:01:35 +0100 | [diff] [blame] | 813 | rnd = statistical_prng(); |
Willy Tarreau | a5a4479 | 2020-11-29 17:12:15 +0100 | [diff] [blame] | 814 | 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 Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 827 | static struct task *debug_tasklet_handler(struct task *t, void *ctx, unsigned int state) |
Willy Tarreau | a5a4479 | 2020-11-29 17:12:15 +0100 | [diff] [blame] | 828 | { |
| 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 Tarreau | 06e69b5 | 2021-03-02 14:01:35 +0100 | [diff] [blame] | 835 | rnd = statistical_prng() % tctx[0]; |
Willy Tarreau | a5a4479 | 2020-11-29 17:12:15 +0100 | [diff] [blame] | 836 | 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 | */ |
| 849 | static 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 884 | _HA_ATOMIC_INC(&debug_commands_issued); |
Willy Tarreau | a5a4479 | 2020-11-29 17:12:15 +0100 | [diff] [blame] | 885 | 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 Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 1008 | /* CLI parser for the "debug dev fd" command. The current FD to restart from is |
| 1009 | * stored in i0. |
| 1010 | */ |
| 1011 | static 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 | */ |
| 1025 | static 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 Tarreau | 410942b | 2022-01-25 14:51:53 +0100 | [diff] [blame] | 1104 | #ifdef O_ASYNC |
Willy Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 1105 | case O_ASYNC: chunk_appendf(&trash, ",O_ASYNC"); break; |
Willy Tarreau | 410942b | 2022-01-25 14:51:53 +0100 | [diff] [blame] | 1106 | #endif |
Willy Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 1107 | #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 Tarreau | a6026a0 | 2020-07-02 09:14:48 +0200 | [diff] [blame] | 1173 | #if defined(DEBUG_MEM_STATS) |
| 1174 | /* CLI parser for the "debug dev memstats" command */ |
| 1175 | static 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 | */ |
| 1209 | static int debug_iohandler_memstats(struct appctx *appctx) |
| 1210 | { |
Christopher Faulet | 86e1c33 | 2021-12-20 17:09:39 +0100 | [diff] [blame] | 1211 | struct stream_interface *si = cs_si(appctx->owner); |
Willy Tarreau | a6026a0 | 2020-07-02 09:14:48 +0200 | [diff] [blame] | 1212 | 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 Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1274 | #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 | */ |
| 1279 | void 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 Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1289 | /* ID of the thread requesting the dump */ |
| 1290 | static 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 | */ |
| 1296 | struct buffer *thread_dump_buffer = NULL; |
| 1297 | |
| 1298 | void ha_thread_dump_all_to_trash() |
| 1299 | { |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1300 | 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 Tarreau | fade80d | 2019-05-22 08:46:59 +0200 | [diff] [blame] | 1311 | ha_tkillall(DEBUGSIG); |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1312 | } |
| 1313 | |
| 1314 | /* handles DEBUGSIG to dump the state of the thread it's working on */ |
| 1315 | void debug_handler(int sig, siginfo_t *si, void *arg) |
| 1316 | { |
Willy Tarreau | 82aafc4 | 2020-03-03 08:31:34 +0100 | [diff] [blame] | 1317 | /* 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 Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1323 | /* 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 Tarreau | c077362 | 2019-07-31 19:15:45 +0200 | [diff] [blame] | 1327 | * 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 Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1329 | */ |
| 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 Tarreau | c077362 | 2019-07-31 19:15:45 +0200 | [diff] [blame] | 1341 | HA_ATOMIC_STORE(&threads_to_dump, all_threads_mask); |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1342 | 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 Tarreau | c077362 | 2019-07-31 19:15:45 +0200 | [diff] [blame] | 1349 | * 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 Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1352 | */ |
Willy Tarreau | c077362 | 2019-07-31 19:15:45 +0200 | [diff] [blame] | 1353 | while (!(threads_to_dump & tid_bit)) |
| 1354 | ha_thread_relax(); |
| 1355 | HA_ATOMIC_AND(&threads_to_dump, ~tid_bit); |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 1356 | |
| 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 Tarreau | a0b9953 | 2021-09-30 18:48:37 +0200 | [diff] [blame] | 1361 | th_ctx->flags |= TH_FL_STUCK; |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | static 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 | |
| 1375 | static int init_debug() |
| 1376 | { |
| 1377 | struct sigaction sa; |
Willy Tarreau | 2f1227e | 2021-01-22 12:12:29 +0100 | [diff] [blame] | 1378 | void *callers[1]; |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1379 | |
Willy Tarreau | 0214b45 | 2020-03-04 06:01:40 +0100 | [diff] [blame] | 1380 | /* 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 Tarreau | 13faf16 | 2020-03-04 07:44:06 +0100 | [diff] [blame] | 1384 | my_backtrace(callers, sizeof(callers)/sizeof(*callers)); |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1385 | 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 Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1390 | return ERR_NONE; |
Willy Tarreau | c7091d8 | 2019-05-17 10:08:49 +0200 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | REGISTER_POST_CHECK(init_debug); |
| 1394 | REGISTER_PER_THREAD_INIT(init_debug_per_thread); |
| 1395 | |
| 1396 | #endif /* USE_THREAD_DUMP */ |
| 1397 | |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 1398 | /* register cli keywords */ |
| 1399 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1400 | {{ "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 Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 1403 | #if defined(DEBUG_DEV) |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1404 | {{ "debug", "dev", "exec", NULL }, "debug dev exec [cmd] ... : show this command's output", debug_parse_cli_exec, NULL, NULL, NULL, ACCESS_EXPERT }, |
Willy Tarreau | 6bdf3e9 | 2019-05-20 14:25:05 +0200 | [diff] [blame] | 1405 | #endif |
Willy Tarreau | 5be7c19 | 2022-01-24 20:26:09 +0100 | [diff] [blame] | 1406 | {{ "debug", "dev", "fd", NULL }, "debug dev fd : scan for rogue/unhandled FDs", debug_parse_cli_fd, debug_iohandler_fd, NULL, NULL, ACCESS_EXPERT }, |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1407 | {{ "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 Tarreau | a6026a0 | 2020-07-02 09:14:48 +0200 | [diff] [blame] | 1411 | #if defined(DEBUG_MEM_STATS) |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1412 | {{ "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 Tarreau | a6026a0 | 2020-07-02 09:14:48 +0200 | [diff] [blame] | 1413 | #endif |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1414 | {{ "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 Tarreau | 305cfbd | 2022-02-25 08:52:39 +0100 | [diff] [blame] | 1419 | {{ "debug", "dev", "warn", NULL }, "debug dev warn : call WARN_ON() and possibly crash", debug_parse_cli_warn, NULL, NULL, NULL, ACCESS_EXPERT }, |
Willy Tarreau | 4e0a8b1 | 2022-02-25 08:55:11 +0100 | [diff] [blame^] | 1420 | {{ "debug", "dev", "warn1", NULL }, "debug dev warn1 : call WARN_ON_ONCE() and possibly crash", debug_parse_cli_warn1, NULL, NULL, NULL, ACCESS_EXPERT }, |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1421 | {{ "debug", "dev", "write", NULL }, "debug dev write [size] : write that many bytes in return", debug_parse_cli_write, NULL, NULL, NULL, ACCESS_EXPERT }, |
Willy Tarreau | 6ab7b21 | 2021-12-28 09:57:10 +0100 | [diff] [blame] | 1422 | #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 Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1425 | {{ "show", "threads", NULL, NULL }, "show threads : show some threads debugging information", NULL, cli_io_handler_show_threads, NULL }, |
Willy Tarreau | 4e2b646 | 2019-05-16 17:44:30 +0200 | [diff] [blame] | 1426 | {{},} |
| 1427 | }}; |
| 1428 | |
| 1429 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |