blob: c3010c5f3a5bcde472572ec788664839f3ff2fdd [file] [log] [blame]
Willy Tarreau609aad92018-11-22 08:31:09 +01001/*
2 * activity measurement functions.
3 *
4 * Copyright 2000-2018 Willy Tarreau <w@1wt.eu>
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 Tarreaub2551052020-06-09 09:07:15 +020013#include <haproxy/activity-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020016#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020017#include <haproxy/cli.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020018#include <haproxy/freq_ctr.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020019#include <haproxy/stream_interface.h>
Willy Tarreaue0650222021-10-06 16:22:09 +020020#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020021#include <haproxy/tools.h>
Willy Tarreaua26be372021-10-06 16:26:33 +020022#include <haproxy/xxhash.h>
Willy Tarreau75c62c22018-11-22 11:02:09 +010023
Willy Tarreauf93c7be2021-05-05 17:07:09 +020024#if defined(DEBUG_MEM_STATS)
25/* these ones are macros in bug.h when DEBUG_MEM_STATS is set, and will
26 * prevent the new ones from being redefined.
27 */
28#undef calloc
29#undef malloc
30#undef realloc
31#endif
Willy Tarreau75c62c22018-11-22 11:02:09 +010032
33/* bit field of profiling options. Beware, may be modified at runtime! */
Willy Tarreauef7380f2021-05-05 16:28:31 +020034unsigned int profiling __read_mostly = HA_PROF_TASKS_AOFF;
35unsigned long task_profiling_mask __read_mostly = 0;
Willy Tarreau609aad92018-11-22 08:31:09 +010036
37/* One struct per thread containing all collected measurements */
38struct activity activity[MAX_THREADS] __attribute__((aligned(64))) = { };
39
Willy Tarreau3fb6a7b2021-01-28 19:19:26 +010040/* One struct per function pointer hash entry (256 values, 0=collision) */
41struct sched_activity sched_activity[256] __attribute__((aligned(64))) = { };
Willy Tarreau609aad92018-11-22 08:31:09 +010042
Willy Tarreaudb87fc72021-05-05 16:50:40 +020043
Willy Tarreaue15615c2021-08-28 12:04:25 +020044#ifdef USE_MEMORY_PROFILING
Willy Tarreaudb87fc72021-05-05 16:50:40 +020045/* determine the number of buckets to store stats */
46#define MEMPROF_HASH_BITS 10
47#define MEMPROF_HASH_BUCKETS (1U << MEMPROF_HASH_BITS)
48
Willy Tarreau616491b2021-05-11 09:26:23 +020049enum memprof_method {
50 MEMPROF_METH_UNKNOWN = 0,
51 MEMPROF_METH_MALLOC,
52 MEMPROF_METH_CALLOC,
53 MEMPROF_METH_REALLOC,
54 MEMPROF_METH_FREE,
55 MEMPROF_METH_METHODS /* count, must be last */
56};
57
58static const char *const memprof_methods[MEMPROF_METH_METHODS] = {
59 "unknown", "malloc", "calloc", "realloc", "free",
60};
61
Willy Tarreaudb87fc72021-05-05 16:50:40 +020062/* stats:
63 * - malloc increases alloc
64 * - free increases free (if non null)
65 * - realloc increases either depending on the size change.
66 * when the real size is known (malloc_usable_size()), it's used in free_tot
67 * and alloc_tot, otherwise the requested size is reported in alloc_tot and
68 * zero in free_tot.
69 */
70struct memprof_stats {
71 const void *caller;
Willy Tarreau616491b2021-05-11 09:26:23 +020072 enum memprof_method method;
73 /* 4-7 bytes hole here */
Willy Tarreaudb87fc72021-05-05 16:50:40 +020074 unsigned long long alloc_calls;
75 unsigned long long free_calls;
76 unsigned long long alloc_tot;
77 unsigned long long free_tot;
78};
79
80/* last one is for hash collisions ("others") and has no caller address */
81struct memprof_stats memprof_stats[MEMPROF_HASH_BUCKETS + 1] = { };
82
Willy Tarreauf93c7be2021-05-05 17:07:09 +020083/* used to detect recursive calls */
84static THREAD_LOCAL int in_memprof = 0;
85
86/* perform a pointer hash by scrambling its bits and retrieving the most
87 * mixed ones (topmost ones in 32-bit, middle ones in 64-bit).
88 */
89static unsigned int memprof_hash_ptr(const void *p)
90{
91 unsigned long long x = (unsigned long)p;
92
93 x = 0xcbda9653U * x;
94 if (sizeof(long) == 4)
95 x >>= 32;
96 else
97 x >>= 33 - MEMPROF_HASH_BITS / 2;
98 return x & (MEMPROF_HASH_BUCKETS - 1);
99}
100
101/* These ones are used by glibc and will be called early. They are in charge of
102 * initializing the handlers with the original functions.
103 */
104static void *memprof_malloc_initial_handler(size_t size);
105static void *memprof_calloc_initial_handler(size_t nmemb, size_t size);
106static void *memprof_realloc_initial_handler(void *ptr, size_t size);
107static void memprof_free_initial_handler(void *ptr);
108
109/* Fallback handlers for the main alloc/free functions. They are preset to
110 * the initializer in order to save a test in the functions's critical path.
111 */
112static void *(*memprof_malloc_handler)(size_t size) = memprof_malloc_initial_handler;
113static void *(*memprof_calloc_handler)(size_t nmemb, size_t size) = memprof_calloc_initial_handler;
114static void *(*memprof_realloc_handler)(void *ptr, size_t size) = memprof_realloc_initial_handler;
115static void (*memprof_free_handler)(void *ptr) = memprof_free_initial_handler;
116
117/* Used to force to die if it's not possible to retrieve the allocation
118 * functions. We cannot even use stdio in this case.
119 */
120static __attribute__((noreturn)) void memprof_die(const char *msg)
121{
122 DISGUISE(write(2, msg, strlen(msg)));
123 exit(1);
124}
125
126/* Resolve original allocation functions and initialize all handlers.
127 * This must be called very early at boot, before the very first malloc()
128 * call, and is not thread-safe! It's not even possible to use stdio there.
129 * Worse, we have to account for the risk of reentrance from dlsym() when
130 * it tries to prepare its error messages. Here its ahndled by in_memprof
131 * that makes allocators return NULL. dlsym() handles it gracefully. An
Ilya Shipitsin3df59892021-05-10 12:50:00 +0500132 * alternate approach consists in calling aligned_alloc() from these places
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200133 * but that would mean not being able to intercept it later if considered
134 * useful to do so.
135 */
136static void memprof_init()
137{
138 in_memprof++;
139 memprof_malloc_handler = get_sym_next_addr("malloc");
140 if (!memprof_malloc_handler)
141 memprof_die("FATAL: malloc() function not found.\n");
142
143 memprof_calloc_handler = get_sym_next_addr("calloc");
144 if (!memprof_calloc_handler)
145 memprof_die("FATAL: calloc() function not found.\n");
146
147 memprof_realloc_handler = get_sym_next_addr("realloc");
148 if (!memprof_realloc_handler)
149 memprof_die("FATAL: realloc() function not found.\n");
150
151 memprof_free_handler = get_sym_next_addr("free");
152 if (!memprof_free_handler)
153 memprof_die("FATAL: free() function not found.\n");
154 in_memprof--;
155}
156
157/* the initial handlers will initialize all regular handlers and will call the
158 * one they correspond to. A single one of these functions will typically be
159 * called, though it's unknown which one (as any might be called before main).
160 */
161static void *memprof_malloc_initial_handler(size_t size)
162{
163 if (in_memprof) {
164 /* it's likely that dlsym() needs malloc(), let's fail */
165 return NULL;
166 }
167
168 memprof_init();
169 return memprof_malloc_handler(size);
170}
171
172static void *memprof_calloc_initial_handler(size_t nmemb, size_t size)
173{
174 if (in_memprof) {
175 /* it's likely that dlsym() needs calloc(), let's fail */
176 return NULL;
177 }
178 memprof_init();
179 return memprof_calloc_handler(nmemb, size);
180}
181
182static void *memprof_realloc_initial_handler(void *ptr, size_t size)
183{
184 if (in_memprof) {
185 /* it's likely that dlsym() needs realloc(), let's fail */
186 return NULL;
187 }
188
189 memprof_init();
190 return memprof_realloc_handler(ptr, size);
191}
192
193static void memprof_free_initial_handler(void *ptr)
194{
195 memprof_init();
196 memprof_free_handler(ptr);
197}
198
199/* Assign a bin for the memprof_stats to the return address. May perform a few
200 * attempts before finding the right one, but always succeeds (in the worst
201 * case, returns a default bin). The caller address is atomically set except
202 * for the default one which is never set.
203 */
Willy Tarreau616491b2021-05-11 09:26:23 +0200204static struct memprof_stats *memprof_get_bin(const void *ra, enum memprof_method meth)
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200205{
206 int retries = 16; // up to 16 consecutive entries may be tested.
Willy Tarreau4a753282021-05-09 23:18:50 +0200207 const void *old;
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200208 unsigned int bin;
209
210 bin = memprof_hash_ptr(ra);
211 for (; memprof_stats[bin].caller != ra; bin = (bin + 1) & (MEMPROF_HASH_BUCKETS - 1)) {
212 if (!--retries) {
213 bin = MEMPROF_HASH_BUCKETS;
214 break;
215 }
216
217 old = NULL;
218 if (!memprof_stats[bin].caller &&
Willy Tarreau616491b2021-05-11 09:26:23 +0200219 HA_ATOMIC_CAS(&memprof_stats[bin].caller, &old, ra)) {
220 memprof_stats[bin].method = meth;
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200221 break;
Willy Tarreau616491b2021-05-11 09:26:23 +0200222 }
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200223 }
224 return &memprof_stats[bin];
225}
226
227/* This is the new global malloc() function. It must optimize for the normal
228 * case (i.e. profiling disabled) hence the first test to permit a direct jump.
229 * It must remain simple to guarantee the lack of reentrance. stdio is not
230 * possible there even for debugging. The reported size is the really allocated
231 * one as returned by malloc_usable_size(), because this will allow it to be
232 * compared to the one before realloc() or free(). This is a GNU and jemalloc
233 * extension but other systems may also store this size in ptr[-1].
234 */
235void *malloc(size_t size)
236{
237 struct memprof_stats *bin;
238 void *ret;
239
240 if (likely(!(profiling & HA_PROF_MEMORY)))
241 return memprof_malloc_handler(size);
242
243 ret = memprof_malloc_handler(size);
244 size = malloc_usable_size(ret);
245
Willy Tarreau616491b2021-05-11 09:26:23 +0200246 bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_MALLOC);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200247 _HA_ATOMIC_ADD(&bin->alloc_calls, 1);
248 _HA_ATOMIC_ADD(&bin->alloc_tot, size);
249 return ret;
250}
251
252/* This is the new global calloc() function. It must optimize for the normal
253 * case (i.e. profiling disabled) hence the first test to permit a direct jump.
254 * It must remain simple to guarantee the lack of reentrance. stdio is not
255 * possible there even for debugging. The reported size is the really allocated
256 * one as returned by malloc_usable_size(), because this will allow it to be
257 * compared to the one before realloc() or free(). This is a GNU and jemalloc
258 * extension but other systems may also store this size in ptr[-1].
259 */
260void *calloc(size_t nmemb, size_t size)
261{
262 struct memprof_stats *bin;
263 void *ret;
264
265 if (likely(!(profiling & HA_PROF_MEMORY)))
266 return memprof_calloc_handler(nmemb, size);
267
268 ret = memprof_calloc_handler(nmemb, size);
269 size = malloc_usable_size(ret);
270
Willy Tarreau616491b2021-05-11 09:26:23 +0200271 bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_CALLOC);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200272 _HA_ATOMIC_ADD(&bin->alloc_calls, 1);
273 _HA_ATOMIC_ADD(&bin->alloc_tot, size);
274 return ret;
275}
276
277/* This is the new global realloc() function. It must optimize for the normal
278 * case (i.e. profiling disabled) hence the first test to permit a direct jump.
279 * It must remain simple to guarantee the lack of reentrance. stdio is not
280 * possible there even for debugging. The reported size is the really allocated
281 * one as returned by malloc_usable_size(), because this will allow it to be
282 * compared to the one before realloc() or free(). This is a GNU and jemalloc
283 * extension but other systems may also store this size in ptr[-1].
284 * Depending on the old vs new size, it's considered as an allocation or a free
285 * (or neither if the size remains the same).
286 */
287void *realloc(void *ptr, size_t size)
288{
289 struct memprof_stats *bin;
290 size_t size_before;
291 void *ret;
292
293 if (likely(!(profiling & HA_PROF_MEMORY)))
294 return memprof_realloc_handler(ptr, size);
295
296 size_before = malloc_usable_size(ptr);
297 ret = memprof_realloc_handler(ptr, size);
Willy Tarreau2639e2e2021-05-07 08:01:35 +0200298 size = malloc_usable_size(ret);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200299
Willy Tarreau616491b2021-05-11 09:26:23 +0200300 bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_REALLOC);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200301 if (size > size_before) {
302 _HA_ATOMIC_ADD(&bin->alloc_calls, 1);
Willy Tarreau79acefa2021-05-11 09:12:56 +0200303 _HA_ATOMIC_ADD(&bin->alloc_tot, size - size_before);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200304 } else if (size < size_before) {
305 _HA_ATOMIC_ADD(&bin->free_calls, 1);
Willy Tarreau79acefa2021-05-11 09:12:56 +0200306 _HA_ATOMIC_ADD(&bin->free_tot, size_before - size);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200307 }
308 return ret;
309}
310
311/* This is the new global free() function. It must optimize for the normal
312 * case (i.e. profiling disabled) hence the first test to permit a direct jump.
313 * It must remain simple to guarantee the lack of reentrance. stdio is not
314 * possible there even for debugging. The reported size is the really allocated
315 * one as returned by malloc_usable_size(), because this will allow it to be
316 * compared to the one before realloc() or free(). This is a GNU and jemalloc
317 * extension but other systems may also store this size in ptr[-1]. Since
318 * free() is often called on NULL pointers to collect garbage at the end of
319 * many functions or during config parsing, as a special case free(NULL)
320 * doesn't update any stats.
321 */
322void free(void *ptr)
323{
324 struct memprof_stats *bin;
325 size_t size_before;
326
327 if (likely(!(profiling & HA_PROF_MEMORY) || !ptr)) {
328 memprof_free_handler(ptr);
329 return;
330 }
331
332 size_before = malloc_usable_size(ptr);
333 memprof_free_handler(ptr);
334
Willy Tarreau616491b2021-05-11 09:26:23 +0200335 bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_FREE);
Willy Tarreauf93c7be2021-05-05 17:07:09 +0200336 _HA_ATOMIC_ADD(&bin->free_calls, 1);
337 _HA_ATOMIC_ADD(&bin->free_tot, size_before);
338}
339
Willy Tarreaudb87fc72021-05-05 16:50:40 +0200340#endif // USE_MEMORY_PROFILING
341
Willy Tarreau609aad92018-11-22 08:31:09 +0100342/* Updates the current thread's statistics about stolen CPU time. The unit for
343 * <stolen> is half-milliseconds.
344 */
345void report_stolen_time(uint64_t stolen)
346{
347 activity[tid].cpust_total += stolen;
348 update_freq_ctr(&activity[tid].cpust_1s, stolen);
349 update_freq_ctr_period(&activity[tid].cpust_15s, 15000, stolen);
350}
Willy Tarreau75c62c22018-11-22 11:02:09 +0100351
Willy Tarreaue0650222021-10-06 16:22:09 +0200352/* Collect date and time information before calling poll(). This will be used
353 * to count the run time of the past loop and the sleep time of the next poll.
354 * It also makes use of the just updated before_poll timer to count the loop's
355 * run time and feed the average loop time metric (in microseconds).
356 */
357void activity_count_runtime()
358{
359 uint32_t run_time;
360 uint32_t up, down;
361
362 /* 1 millisecond per loop on average over last 1024 iterations is
363 * enough to turn on profiling.
364 */
365 up = 1000;
366 down = up * 99 / 100;
367
368 run_time = (before_poll.tv_sec - after_poll.tv_sec) * 1000000U + (before_poll.tv_usec - after_poll.tv_usec);
369 run_time = swrate_add(&activity[tid].avg_loop_us, TIME_STATS_SAMPLES, run_time);
370
371 /* In automatic mode, reaching the "up" threshold on average switches
372 * profiling to "on" when automatic, and going back below the "down"
373 * threshold switches to off. The forced modes don't check the load.
374 */
375 if (!(task_profiling_mask & tid_bit)) {
376 if (unlikely((profiling & HA_PROF_TASKS_MASK) == HA_PROF_TASKS_ON ||
377 ((profiling & HA_PROF_TASKS_MASK) == HA_PROF_TASKS_AON &&
378 swrate_avg(run_time, TIME_STATS_SAMPLES) >= up)))
379 _HA_ATOMIC_OR(&task_profiling_mask, tid_bit);
380 } else {
381 if (unlikely((profiling & HA_PROF_TASKS_MASK) == HA_PROF_TASKS_OFF ||
382 ((profiling & HA_PROF_TASKS_MASK) == HA_PROF_TASKS_AOFF &&
383 swrate_avg(run_time, TIME_STATS_SAMPLES) <= down)))
384 _HA_ATOMIC_AND(&task_profiling_mask, ~tid_bit);
385 }
386}
387
Willy Tarreauca3afc22021-05-05 18:33:19 +0200388#ifdef USE_MEMORY_PROFILING
389/* config parser for global "profiling.memory", accepts "on" or "off" */
390static int cfg_parse_prof_memory(char **args, int section_type, struct proxy *curpx,
391 const struct proxy *defpx, const char *file, int line,
392 char **err)
393{
394 if (too_many_args(1, args, err, NULL))
395 return -1;
396
397 if (strcmp(args[1], "on") == 0)
398 profiling |= HA_PROF_MEMORY;
399 else if (strcmp(args[1], "off") == 0)
400 profiling &= ~HA_PROF_MEMORY;
401 else {
402 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
403 return -1;
404 }
405 return 0;
406}
407#endif // USE_MEMORY_PROFILING
408
Willy Tarreau75c62c22018-11-22 11:02:09 +0100409/* config parser for global "profiling.tasks", accepts "on" or "off" */
410static int cfg_parse_prof_tasks(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100411 const struct proxy *defpx, const char *file, int line,
Willy Tarreau75c62c22018-11-22 11:02:09 +0100412 char **err)
413{
414 if (too_many_args(1, args, err, NULL))
415 return -1;
416
417 if (strcmp(args[1], "on") == 0)
Willy Tarreaud2d33482019-04-25 17:09:07 +0200418 profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_ON;
419 else if (strcmp(args[1], "auto") == 0)
Willy Tarreauaa622b82021-01-28 21:44:22 +0100420 profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AOFF;
Willy Tarreau75c62c22018-11-22 11:02:09 +0100421 else if (strcmp(args[1], "off") == 0)
Willy Tarreaud2d33482019-04-25 17:09:07 +0200422 profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_OFF;
Willy Tarreau75c62c22018-11-22 11:02:09 +0100423 else {
Willy Tarreaud2d33482019-04-25 17:09:07 +0200424 memprintf(err, "'%s' expects either 'on', 'auto', or 'off' but got '%s'.", args[0], args[1]);
Willy Tarreau75c62c22018-11-22 11:02:09 +0100425 return -1;
426 }
427 return 0;
428}
429
430/* parse a "set profiling" command. It always returns 1. */
431static int cli_parse_set_profiling(char **args, char *payload, struct appctx *appctx, void *private)
432{
Willy Tarreau75c62c22018-11-22 11:02:09 +0100433 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
434 return 1;
435
Willy Tarreau00dd44f2021-05-05 16:44:23 +0200436 if (strcmp(args[2], "memory") == 0) {
Willy Tarreaudb87fc72021-05-05 16:50:40 +0200437#ifdef USE_MEMORY_PROFILING
438 if (strcmp(args[3], "on") == 0) {
439 unsigned int old = profiling;
440 int i;
441
442 while (!_HA_ATOMIC_CAS(&profiling, &old, old | HA_PROF_MEMORY))
443 ;
444
445 /* also flush current profiling stats */
446 for (i = 0; i < sizeof(memprof_stats) / sizeof(memprof_stats[0]); i++) {
447 HA_ATOMIC_STORE(&memprof_stats[i].alloc_calls, 0);
448 HA_ATOMIC_STORE(&memprof_stats[i].free_calls, 0);
449 HA_ATOMIC_STORE(&memprof_stats[i].alloc_tot, 0);
450 HA_ATOMIC_STORE(&memprof_stats[i].free_tot, 0);
451 HA_ATOMIC_STORE(&memprof_stats[i].caller, NULL);
452 }
453 }
454 else if (strcmp(args[3], "off") == 0) {
455 unsigned int old = profiling;
456
457 while (!_HA_ATOMIC_CAS(&profiling, &old, old & ~HA_PROF_MEMORY))
458 ;
459 }
460 else
461 return cli_err(appctx, "Expects either 'on' or 'off'.\n");
462 return 1;
463#else
Willy Tarreau00dd44f2021-05-05 16:44:23 +0200464 return cli_err(appctx, "Memory profiling not compiled in.\n");
Willy Tarreaudb87fc72021-05-05 16:50:40 +0200465#endif
Willy Tarreau00dd44f2021-05-05 16:44:23 +0200466 }
467
Willy Tarreau9d008692019-08-09 11:21:01 +0200468 if (strcmp(args[2], "tasks") != 0)
Ilya Shipitsin3df59892021-05-10 12:50:00 +0500469 return cli_err(appctx, "Expects either 'tasks' or 'memory'.\n");
Willy Tarreau75c62c22018-11-22 11:02:09 +0100470
Willy Tarreaud2d33482019-04-25 17:09:07 +0200471 if (strcmp(args[3], "on") == 0) {
472 unsigned int old = profiling;
Willy Tarreaucfa71012021-01-29 11:56:21 +0100473 int i;
474
Willy Tarreaud2d33482019-04-25 17:09:07 +0200475 while (!_HA_ATOMIC_CAS(&profiling, &old, (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_ON))
476 ;
Willy Tarreaucfa71012021-01-29 11:56:21 +0100477 /* also flush current profiling stats */
478 for (i = 0; i < 256; i++) {
479 HA_ATOMIC_STORE(&sched_activity[i].calls, 0);
480 HA_ATOMIC_STORE(&sched_activity[i].cpu_time, 0);
481 HA_ATOMIC_STORE(&sched_activity[i].lat_time, 0);
482 HA_ATOMIC_STORE(&sched_activity[i].func, NULL);
483 }
Willy Tarreaud2d33482019-04-25 17:09:07 +0200484 }
485 else if (strcmp(args[3], "auto") == 0) {
486 unsigned int old = profiling;
Willy Tarreauaa622b82021-01-28 21:44:22 +0100487 unsigned int new;
488
489 do {
490 if ((old & HA_PROF_TASKS_MASK) >= HA_PROF_TASKS_AON)
491 new = (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AON;
492 else
493 new = (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AOFF;
494 } while (!_HA_ATOMIC_CAS(&profiling, &old, new));
Willy Tarreaud2d33482019-04-25 17:09:07 +0200495 }
496 else if (strcmp(args[3], "off") == 0) {
497 unsigned int old = profiling;
498 while (!_HA_ATOMIC_CAS(&profiling, &old, (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_OFF))
499 ;
500 }
Willy Tarreau9d008692019-08-09 11:21:01 +0200501 else
502 return cli_err(appctx, "Expects 'on', 'auto', or 'off'.\n");
503
Willy Tarreau75c62c22018-11-22 11:02:09 +0100504 return 1;
505}
506
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200507static int cmp_sched_activity_calls(const void *a, const void *b)
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100508{
509 const struct sched_activity *l = (const struct sched_activity *)a;
510 const struct sched_activity *r = (const struct sched_activity *)b;
511
512 if (l->calls > r->calls)
513 return -1;
514 else if (l->calls < r->calls)
515 return 1;
516 else
517 return 0;
518}
519
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200520static int cmp_sched_activity_addr(const void *a, const void *b)
521{
522 const struct sched_activity *l = (const struct sched_activity *)a;
523 const struct sched_activity *r = (const struct sched_activity *)b;
524
525 if (l->func > r->func)
526 return -1;
527 else if (l->func < r->func)
528 return 1;
529 else
530 return 0;
531}
532
Willy Tarreaue15615c2021-08-28 12:04:25 +0200533#ifdef USE_MEMORY_PROFILING
Willy Tarreau993d44d2021-05-05 18:07:02 +0200534/* used by qsort below */
535static int cmp_memprof_stats(const void *a, const void *b)
536{
537 const struct memprof_stats *l = (const struct memprof_stats *)a;
538 const struct memprof_stats *r = (const struct memprof_stats *)b;
539
540 if (l->alloc_tot + l->free_tot > r->alloc_tot + r->free_tot)
541 return -1;
542 else if (l->alloc_tot + l->free_tot < r->alloc_tot + r->free_tot)
543 return 1;
544 else
545 return 0;
546}
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200547
548static int cmp_memprof_addr(const void *a, const void *b)
549{
550 const struct memprof_stats *l = (const struct memprof_stats *)a;
551 const struct memprof_stats *r = (const struct memprof_stats *)b;
552
553 if (l->caller > r->caller)
554 return -1;
555 else if (l->caller < r->caller)
556 return 1;
557 else
558 return 0;
559}
Willy Tarreau993d44d2021-05-05 18:07:02 +0200560#endif // USE_MEMORY_PROFILING
561
Willy Tarreaua26be372021-10-06 16:26:33 +0200562/* Computes the index of function pointer <func> for use with sched_activity[]
563 * or any other similar array passed in <array>, and returns a pointer to the
564 * entry after having atomically assigned it to this function pointer. Note
565 * that in case of collision, the first entry is returned instead ("other").
566 */
567struct sched_activity *sched_activity_entry(struct sched_activity *array, const void *func)
568{
569 uint64_t hash = XXH64_avalanche(XXH64_mergeRound((size_t)func, (size_t)func));
570 struct sched_activity *ret;
571 const void *old = NULL;
572
573 hash ^= (hash >> 32);
574 hash ^= (hash >> 16);
575 hash ^= (hash >> 8);
576 hash &= 0xff;
577 ret = &array[hash];
578
579 if (likely(ret->func == func))
580 return ret;
581
582 if (HA_ATOMIC_CAS(&ret->func, &old, func))
583 return ret;
584
585 return array;
586}
587
Willy Tarreau75c62c22018-11-22 11:02:09 +0100588/* This function dumps all profiling settings. It returns 0 if the output
589 * buffer is full and it needs to be called again, otherwise non-zero.
Willy Tarreau637d85a2021-05-05 17:33:27 +0200590 * It dumps some parts depending on the following states:
591 * ctx.cli.i0:
592 * 0, 4: dump status, then jump to 1 if 0
593 * 1, 5: dump tasks, then jump to 2 if 1
594 * 2, 6: dump memory, then stop
595 * ctx.cli.i1:
596 * restart line for each step (starts at zero)
597 * ctx.cli.o0:
598 * may contain a configured max line count for each step (0=not set)
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200599 * ctx.cli.o1:
600 * 0: sort by usage
601 * 1: sort by address
Willy Tarreau75c62c22018-11-22 11:02:09 +0100602 */
603static int cli_io_handler_show_profiling(struct appctx *appctx)
604{
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100605 struct sched_activity tmp_activity[256] __attribute__((aligned(64)));
Willy Tarreaue15615c2021-08-28 12:04:25 +0200606#ifdef USE_MEMORY_PROFILING
Willy Tarreau993d44d2021-05-05 18:07:02 +0200607 struct memprof_stats tmp_memstats[MEMPROF_HASH_BUCKETS + 1];
Willy Tarreauf5fb8582021-05-11 14:06:24 +0200608 unsigned long long tot_alloc_calls, tot_free_calls;
609 unsigned long long tot_alloc_bytes, tot_free_bytes;
Willy Tarreau993d44d2021-05-05 18:07:02 +0200610#endif
Willy Tarreau75c62c22018-11-22 11:02:09 +0100611 struct stream_interface *si = appctx->owner;
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100612 struct buffer *name_buffer = get_trash_chunk();
Willy Tarreaud2d33482019-04-25 17:09:07 +0200613 const char *str;
Willy Tarreau637d85a2021-05-05 17:33:27 +0200614 int max_lines;
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100615 int i, max;
Willy Tarreau75c62c22018-11-22 11:02:09 +0100616
617 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
618 return 1;
619
620 chunk_reset(&trash);
621
Willy Tarreaud2d33482019-04-25 17:09:07 +0200622 switch (profiling & HA_PROF_TASKS_MASK) {
Willy Tarreauaa622b82021-01-28 21:44:22 +0100623 case HA_PROF_TASKS_AOFF: str="auto-off"; break;
624 case HA_PROF_TASKS_AON: str="auto-on"; break;
Willy Tarreaud2d33482019-04-25 17:09:07 +0200625 case HA_PROF_TASKS_ON: str="on"; break;
626 default: str="off"; break;
627 }
628
Willy Tarreau637d85a2021-05-05 17:33:27 +0200629 if ((appctx->ctx.cli.i0 & 3) != 0)
630 goto skip_status;
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100631
Willy Tarreaud2d33482019-04-25 17:09:07 +0200632 chunk_printf(&trash,
Willy Tarreau00dd44f2021-05-05 16:44:23 +0200633 "Per-task CPU profiling : %-8s # set profiling tasks {on|auto|off}\n"
634 "Memory usage profiling : %-8s # set profiling memory {on|off}\n",
635 str, (profiling & HA_PROF_MEMORY) ? "on" : "off");
Willy Tarreau75c62c22018-11-22 11:02:09 +0100636
Willy Tarreau637d85a2021-05-05 17:33:27 +0200637 if (ci_putchk(si_ic(si), &trash) == -1) {
638 /* failed, try again */
639 si_rx_room_blk(si);
640 return 0;
641 }
642
643 appctx->ctx.cli.i1 = 0; // reset first line to dump
644 if ((appctx->ctx.cli.i0 & 4) == 0)
645 appctx->ctx.cli.i0++; // next step
646
647 skip_status:
648 if ((appctx->ctx.cli.i0 & 3) != 1)
649 goto skip_tasks;
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100650
Willy Tarreau637d85a2021-05-05 17:33:27 +0200651 memcpy(tmp_activity, sched_activity, sizeof(tmp_activity));
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200652 if (appctx->ctx.cli.o1)
653 qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_addr);
654 else
655 qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_calls);
Willy Tarreau637d85a2021-05-05 17:33:27 +0200656
657 if (!appctx->ctx.cli.i1)
658 chunk_appendf(&trash, "Tasks activity:\n"
659 " function calls cpu_tot cpu_avg lat_tot lat_avg\n");
660
661 max_lines = appctx->ctx.cli.o0;
662 if (!max_lines)
663 max_lines = 256;
664
665 for (i = appctx->ctx.cli.i1; i < max_lines && tmp_activity[i].calls; i++) {
666 appctx->ctx.cli.i1 = i;
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100667 chunk_reset(name_buffer);
668
669 if (!tmp_activity[i].func)
670 chunk_printf(name_buffer, "other");
671 else
672 resolve_sym_name(name_buffer, "", tmp_activity[i].func);
673
674 /* reserve 35 chars for name+' '+#calls, knowing that longer names
675 * are often used for less often called functions.
676 */
677 max = 35 - name_buffer->data;
678 if (max < 1)
679 max = 1;
680 chunk_appendf(&trash, " %s%*llu", name_buffer->area, max, (unsigned long long)tmp_activity[i].calls);
681
682 print_time_short(&trash, " ", tmp_activity[i].cpu_time, "");
683 print_time_short(&trash, " ", tmp_activity[i].cpu_time / tmp_activity[i].calls, "");
684 print_time_short(&trash, " ", tmp_activity[i].lat_time, "");
685 print_time_short(&trash, " ", tmp_activity[i].lat_time / tmp_activity[i].calls, "\n");
Willy Tarreau637d85a2021-05-05 17:33:27 +0200686
687 if (ci_putchk(si_ic(si), &trash) == -1) {
688 /* failed, try again */
689 si_rx_room_blk(si);
690 return 0;
691 }
Willy Tarreau1bd67e92021-01-29 00:07:40 +0100692 }
693
Willy Tarreau75c62c22018-11-22 11:02:09 +0100694 if (ci_putchk(si_ic(si), &trash) == -1) {
695 /* failed, try again */
696 si_rx_room_blk(si);
697 return 0;
698 }
Willy Tarreau637d85a2021-05-05 17:33:27 +0200699
700 appctx->ctx.cli.i1 = 0; // reset first line to dump
701 if ((appctx->ctx.cli.i0 & 4) == 0)
702 appctx->ctx.cli.i0++; // next step
703
704 skip_tasks:
705
Willy Tarreaue15615c2021-08-28 12:04:25 +0200706#ifdef USE_MEMORY_PROFILING
Willy Tarreau993d44d2021-05-05 18:07:02 +0200707 if ((appctx->ctx.cli.i0 & 3) != 2)
708 goto skip_mem;
709
710 memcpy(tmp_memstats, memprof_stats, sizeof(tmp_memstats));
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200711 if (appctx->ctx.cli.o1)
712 qsort(tmp_memstats, MEMPROF_HASH_BUCKETS+1, sizeof(tmp_memstats[0]), cmp_memprof_addr);
713 else
714 qsort(tmp_memstats, MEMPROF_HASH_BUCKETS+1, sizeof(tmp_memstats[0]), cmp_memprof_stats);
Willy Tarreau993d44d2021-05-05 18:07:02 +0200715
716 if (!appctx->ctx.cli.i1)
717 chunk_appendf(&trash,
718 "Alloc/Free statistics by call place:\n"
Willy Tarreau616491b2021-05-11 09:26:23 +0200719 " Calls | Tot Bytes | Caller and method\n"
Willy Tarreau993d44d2021-05-05 18:07:02 +0200720 "<- alloc -> <- free ->|<-- alloc ---> <-- free ---->|\n");
721
722 max_lines = appctx->ctx.cli.o0;
723 if (!max_lines)
724 max_lines = MEMPROF_HASH_BUCKETS + 1;
725
726 for (i = appctx->ctx.cli.i1; i < max_lines; i++) {
727 struct memprof_stats *entry = &tmp_memstats[i];
728
729 appctx->ctx.cli.i1 = i;
730 if (!entry->alloc_calls && !entry->free_calls)
731 continue;
732 chunk_appendf(&trash, "%11llu %11llu %14llu %14llu| %16p ",
733 entry->alloc_calls, entry->free_calls,
734 entry->alloc_tot, entry->free_tot,
735 entry->caller);
736
737 if (entry->caller)
738 resolve_sym_name(&trash, NULL, entry->caller);
739 else
740 chunk_appendf(&trash, "[other]");
741
Willy Tarreau616491b2021-05-11 09:26:23 +0200742 chunk_appendf(&trash," %s(%lld)\n", memprof_methods[entry->method],
743 (long long)(entry->alloc_tot - entry->free_tot) / (long long)(entry->alloc_calls + entry->free_calls));
Willy Tarreau993d44d2021-05-05 18:07:02 +0200744
745 if (ci_putchk(si_ic(si), &trash) == -1) {
746 si_rx_room_blk(si);
747 return 0;
748 }
749 }
750
751 if (ci_putchk(si_ic(si), &trash) == -1) {
752 si_rx_room_blk(si);
753 return 0;
754 }
755
Willy Tarreauf5fb8582021-05-11 14:06:24 +0200756 tot_alloc_calls = tot_free_calls = tot_alloc_bytes = tot_free_bytes = 0;
757 for (i = 0; i < max_lines; i++) {
758 tot_alloc_calls += tmp_memstats[i].alloc_calls;
759 tot_free_calls += tmp_memstats[i].free_calls;
760 tot_alloc_bytes += tmp_memstats[i].alloc_tot;
761 tot_free_bytes += tmp_memstats[i].free_tot;
762 }
763
764 chunk_appendf(&trash,
765 "-----------------------|-----------------------------|\n"
766 "%11llu %11llu %14llu %14llu| <- Total; Delta_calls=%lld; Delta_bytes=%lld\n",
767 tot_alloc_calls, tot_free_calls,
768 tot_alloc_bytes, tot_free_bytes,
769 tot_alloc_calls - tot_free_calls,
770 tot_alloc_bytes - tot_free_bytes);
771
772 if (ci_putchk(si_ic(si), &trash) == -1) {
773 si_rx_room_blk(si);
774 return 0;
775 }
776
Willy Tarreau993d44d2021-05-05 18:07:02 +0200777 appctx->ctx.cli.i1 = 0; // reset first line to dump
778 if ((appctx->ctx.cli.i0 & 4) == 0)
779 appctx->ctx.cli.i0++; // next step
780
781 skip_mem:
782#endif // USE_MEMORY_PROFILING
783
Willy Tarreau75c62c22018-11-22 11:02:09 +0100784 return 1;
785}
786
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200787/* parse a "show profiling" command. It returns 1 on failure, 0 if it starts to dump.
788 * - cli.i0 is set to the first state (0=all, 4=status, 5=tasks, 6=memory)
789 * - cli.o1 is set to 1 if the output must be sorted by addr instead of usage
790 * - cli.o0 is set to the number of lines of output
791 */
Willy Tarreau42712cb2021-05-05 17:48:13 +0200792static int cli_parse_show_profiling(char **args, char *payload, struct appctx *appctx, void *private)
793{
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200794 int arg;
795
Willy Tarreau42712cb2021-05-05 17:48:13 +0200796 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
797 return 1;
798
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200799 for (arg = 2; *args[arg]; arg++) {
800 if (strcmp(args[arg], "all") == 0) {
801 appctx->ctx.cli.i0 = 0; // will cycle through 0,1,2; default
802 }
803 else if (strcmp(args[arg], "status") == 0) {
804 appctx->ctx.cli.i0 = 4; // will visit status only
805 }
806 else if (strcmp(args[arg], "tasks") == 0) {
807 appctx->ctx.cli.i0 = 5; // will visit tasks only
808 }
809 else if (strcmp(args[arg], "memory") == 0) {
810 appctx->ctx.cli.i0 = 6; // will visit memory only
811 }
812 else if (strcmp(args[arg], "byaddr") == 0) {
813 appctx->ctx.cli.o1 = 1; // sort output by address instead of usage
814 }
815 else if (isdigit((unsigned char)*args[arg])) {
816 appctx->ctx.cli.o0 = atoi(args[arg]); // number of entries to dump
817 }
818 else
819 return cli_err(appctx, "Expects either 'all', 'status', 'tasks', 'memory', 'byaddr' or a max number of output lines.\n");
Willy Tarreau42712cb2021-05-05 17:48:13 +0200820 }
821 return 0;
822}
823
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100824/* This function scans all threads' run queues and collects statistics about
825 * running tasks. It returns 0 if the output buffer is full and it needs to be
826 * called again, otherwise non-zero.
827 */
828static int cli_io_handler_show_tasks(struct appctx *appctx)
829{
830 struct sched_activity tmp_activity[256] __attribute__((aligned(64)));
831 struct stream_interface *si = appctx->owner;
832 struct buffer *name_buffer = get_trash_chunk();
833 struct sched_activity *entry;
834 const struct tasklet *tl;
835 const struct task *t;
836 uint64_t now_ns, lat;
837 struct eb32sc_node *rqnode;
838 uint64_t tot_calls;
839 int thr, queue;
840 int i, max;
841
842 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
843 return 1;
844
845 /* It's not possible to scan queues in small chunks and yield in the
846 * middle of the dump and come back again. So what we're doing instead
847 * is to freeze all threads and inspect their queues at once as fast as
848 * possible, using a sched_activity array to collect metrics with
849 * limited collision, then we'll report statistics only. The tasks'
850 * #calls will reflect the number of occurrences, and the lat_time will
Willy Tarreau75f72332021-01-29 15:04:16 +0100851 * reflect the latency when set. We prefer to take the time before
852 * calling thread_isolate() so that the wait time doesn't impact the
853 * measurement accuracy. However this requires to take care of negative
854 * times since tasks might be queued after we retrieve it.
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100855 */
856
857 now_ns = now_mono_time();
858 memset(tmp_activity, 0, sizeof(tmp_activity));
859
860 thread_isolate();
861
862 /* 1. global run queue */
863
864#ifdef USE_THREAD
865 rqnode = eb32sc_first(&rqueue, ~0UL);
866 while (rqnode) {
867 t = eb32sc_entry(rqnode, struct task, rq);
868 entry = sched_activity_entry(tmp_activity, t->process);
869 if (t->call_date) {
870 lat = now_ns - t->call_date;
Willy Tarreau75f72332021-01-29 15:04:16 +0100871 if ((int64_t)lat > 0)
872 entry->lat_time += lat;
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100873 }
874 entry->calls++;
875 rqnode = eb32sc_next(rqnode, ~0UL);
876 }
877#endif
878 /* 2. all threads's local run queues */
879 for (thr = 0; thr < global.nbthread; thr++) {
880 /* task run queue */
881 rqnode = eb32sc_first(&task_per_thread[thr].rqueue, ~0UL);
882 while (rqnode) {
883 t = eb32sc_entry(rqnode, struct task, rq);
884 entry = sched_activity_entry(tmp_activity, t->process);
885 if (t->call_date) {
886 lat = now_ns - t->call_date;
Willy Tarreau75f72332021-01-29 15:04:16 +0100887 if ((int64_t)lat > 0)
888 entry->lat_time += lat;
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100889 }
890 entry->calls++;
891 rqnode = eb32sc_next(rqnode, ~0UL);
892 }
893
894 /* shared tasklet list */
895 list_for_each_entry(tl, mt_list_to_list(&task_per_thread[thr].shared_tasklet_list), list) {
896 t = (const struct task *)tl;
897 entry = sched_activity_entry(tmp_activity, t->process);
898 if (!TASK_IS_TASKLET(t) && t->call_date) {
899 lat = now_ns - t->call_date;
Willy Tarreau75f72332021-01-29 15:04:16 +0100900 if ((int64_t)lat > 0)
901 entry->lat_time += lat;
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100902 }
903 entry->calls++;
904 }
905
906 /* classful tasklets */
907 for (queue = 0; queue < TL_CLASSES; queue++) {
908 list_for_each_entry(tl, &task_per_thread[thr].tasklets[queue], list) {
909 t = (const struct task *)tl;
910 entry = sched_activity_entry(tmp_activity, t->process);
911 if (!TASK_IS_TASKLET(t) && t->call_date) {
912 lat = now_ns - t->call_date;
Willy Tarreau75f72332021-01-29 15:04:16 +0100913 if ((int64_t)lat > 0)
914 entry->lat_time += lat;
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100915 }
916 entry->calls++;
917 }
918 }
919 }
920
921 /* hopefully we're done */
922 thread_release();
923
924 chunk_reset(&trash);
925
926 tot_calls = 0;
927 for (i = 0; i < 256; i++)
928 tot_calls += tmp_activity[i].calls;
929
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200930 qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_calls);
Willy Tarreau7eff06e2021-01-29 11:32:55 +0100931
932 chunk_appendf(&trash, "Running tasks: %d (%d threads)\n"
933 " function places %% lat_tot lat_avg\n",
934 (int)tot_calls, global.nbthread);
935
936 for (i = 0; i < 256 && tmp_activity[i].calls; i++) {
937 chunk_reset(name_buffer);
938
939 if (!tmp_activity[i].func)
940 chunk_printf(name_buffer, "other");
941 else
942 resolve_sym_name(name_buffer, "", tmp_activity[i].func);
943
944 /* reserve 35 chars for name+' '+#calls, knowing that longer names
945 * are often used for less often called functions.
946 */
947 max = 35 - name_buffer->data;
948 if (max < 1)
949 max = 1;
950 chunk_appendf(&trash, " %s%*llu %3d.%1d",
951 name_buffer->area, max, (unsigned long long)tmp_activity[i].calls,
952 (int)(100ULL * tmp_activity[i].calls / tot_calls),
953 (int)((1000ULL * tmp_activity[i].calls / tot_calls)%10));
954 print_time_short(&trash, " ", tmp_activity[i].lat_time, "");
955 print_time_short(&trash, " ", tmp_activity[i].lat_time / tmp_activity[i].calls, "\n");
956 }
957
958 if (ci_putchk(si_ic(si), &trash) == -1) {
959 /* failed, try again */
960 si_rx_room_blk(si);
961 return 0;
962 }
963 return 1;
964}
965
Willy Tarreau75c62c22018-11-22 11:02:09 +0100966/* config keyword parsers */
967static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreauca3afc22021-05-05 18:33:19 +0200968#ifdef USE_MEMORY_PROFILING
969 { CFG_GLOBAL, "profiling.memory", cfg_parse_prof_memory },
970#endif
Willy Tarreau75c62c22018-11-22 11:02:09 +0100971 { CFG_GLOBAL, "profiling.tasks", cfg_parse_prof_tasks },
972 { 0, NULL, NULL }
973}};
974
Willy Tarreau0108d902018-11-25 19:14:37 +0100975INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
976
Willy Tarreau75c62c22018-11-22 11:02:09 +0100977/* register cli keywords */
978static struct cli_kw_list cli_kws = {{ },{
Daniel Corbett67b3cef2021-05-10 14:08:40 -0400979 { { "set", "profiling", NULL }, "set profiling <what> {auto|on|off} : enable/disable resource profiling (tasks,memory)", cli_parse_set_profiling, NULL },
Willy Tarreauf1c8a382021-05-13 10:00:17 +0200980 { { "show", "profiling", NULL }, "show profiling [<what>|<#lines>|byaddr]*: show profiling state (all,status,tasks,memory)", cli_parse_show_profiling, cli_io_handler_show_profiling, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200981 { { "show", "tasks", NULL }, "show tasks : show running tasks", NULL, cli_io_handler_show_tasks, NULL },
Willy Tarreau75c62c22018-11-22 11:02:09 +0100982 {{},}
983}};
984
Willy Tarreau0108d902018-11-25 19:14:37 +0100985INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);