Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 1 | /* |
| 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 Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 13 | #include <haproxy/activity-t.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 14 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 15 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 16 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 17 | #include <haproxy/cli.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 18 | #include <haproxy/freq_ctr.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 19 | #include <haproxy/stream_interface.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 20 | #include <haproxy/tools.h> |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 21 | |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 22 | #if defined(DEBUG_MEM_STATS) |
| 23 | /* these ones are macros in bug.h when DEBUG_MEM_STATS is set, and will |
| 24 | * prevent the new ones from being redefined. |
| 25 | */ |
| 26 | #undef calloc |
| 27 | #undef malloc |
| 28 | #undef realloc |
| 29 | #endif |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 30 | |
| 31 | /* bit field of profiling options. Beware, may be modified at runtime! */ |
Willy Tarreau | ef7380f | 2021-05-05 16:28:31 +0200 | [diff] [blame] | 32 | unsigned int profiling __read_mostly = HA_PROF_TASKS_AOFF; |
| 33 | unsigned long task_profiling_mask __read_mostly = 0; |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 34 | |
| 35 | /* One struct per thread containing all collected measurements */ |
| 36 | struct activity activity[MAX_THREADS] __attribute__((aligned(64))) = { }; |
| 37 | |
Willy Tarreau | 3fb6a7b | 2021-01-28 19:19:26 +0100 | [diff] [blame] | 38 | /* One struct per function pointer hash entry (256 values, 0=collision) */ |
| 39 | struct sched_activity sched_activity[256] __attribute__((aligned(64))) = { }; |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 40 | |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 41 | |
| 42 | #if USE_MEMORY_PROFILING |
| 43 | /* determine the number of buckets to store stats */ |
| 44 | #define MEMPROF_HASH_BITS 10 |
| 45 | #define MEMPROF_HASH_BUCKETS (1U << MEMPROF_HASH_BITS) |
| 46 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 47 | enum memprof_method { |
| 48 | MEMPROF_METH_UNKNOWN = 0, |
| 49 | MEMPROF_METH_MALLOC, |
| 50 | MEMPROF_METH_CALLOC, |
| 51 | MEMPROF_METH_REALLOC, |
| 52 | MEMPROF_METH_FREE, |
| 53 | MEMPROF_METH_METHODS /* count, must be last */ |
| 54 | }; |
| 55 | |
| 56 | static const char *const memprof_methods[MEMPROF_METH_METHODS] = { |
| 57 | "unknown", "malloc", "calloc", "realloc", "free", |
| 58 | }; |
| 59 | |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 60 | /* stats: |
| 61 | * - malloc increases alloc |
| 62 | * - free increases free (if non null) |
| 63 | * - realloc increases either depending on the size change. |
| 64 | * when the real size is known (malloc_usable_size()), it's used in free_tot |
| 65 | * and alloc_tot, otherwise the requested size is reported in alloc_tot and |
| 66 | * zero in free_tot. |
| 67 | */ |
| 68 | struct memprof_stats { |
| 69 | const void *caller; |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 70 | enum memprof_method method; |
| 71 | /* 4-7 bytes hole here */ |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 72 | unsigned long long alloc_calls; |
| 73 | unsigned long long free_calls; |
| 74 | unsigned long long alloc_tot; |
| 75 | unsigned long long free_tot; |
| 76 | }; |
| 77 | |
| 78 | /* last one is for hash collisions ("others") and has no caller address */ |
| 79 | struct memprof_stats memprof_stats[MEMPROF_HASH_BUCKETS + 1] = { }; |
| 80 | |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 81 | /* used to detect recursive calls */ |
| 82 | static THREAD_LOCAL int in_memprof = 0; |
| 83 | |
| 84 | /* perform a pointer hash by scrambling its bits and retrieving the most |
| 85 | * mixed ones (topmost ones in 32-bit, middle ones in 64-bit). |
| 86 | */ |
| 87 | static unsigned int memprof_hash_ptr(const void *p) |
| 88 | { |
| 89 | unsigned long long x = (unsigned long)p; |
| 90 | |
| 91 | x = 0xcbda9653U * x; |
| 92 | if (sizeof(long) == 4) |
| 93 | x >>= 32; |
| 94 | else |
| 95 | x >>= 33 - MEMPROF_HASH_BITS / 2; |
| 96 | return x & (MEMPROF_HASH_BUCKETS - 1); |
| 97 | } |
| 98 | |
| 99 | /* These ones are used by glibc and will be called early. They are in charge of |
| 100 | * initializing the handlers with the original functions. |
| 101 | */ |
| 102 | static void *memprof_malloc_initial_handler(size_t size); |
| 103 | static void *memprof_calloc_initial_handler(size_t nmemb, size_t size); |
| 104 | static void *memprof_realloc_initial_handler(void *ptr, size_t size); |
| 105 | static void memprof_free_initial_handler(void *ptr); |
| 106 | |
| 107 | /* Fallback handlers for the main alloc/free functions. They are preset to |
| 108 | * the initializer in order to save a test in the functions's critical path. |
| 109 | */ |
| 110 | static void *(*memprof_malloc_handler)(size_t size) = memprof_malloc_initial_handler; |
| 111 | static void *(*memprof_calloc_handler)(size_t nmemb, size_t size) = memprof_calloc_initial_handler; |
| 112 | static void *(*memprof_realloc_handler)(void *ptr, size_t size) = memprof_realloc_initial_handler; |
| 113 | static void (*memprof_free_handler)(void *ptr) = memprof_free_initial_handler; |
| 114 | |
| 115 | /* Used to force to die if it's not possible to retrieve the allocation |
| 116 | * functions. We cannot even use stdio in this case. |
| 117 | */ |
| 118 | static __attribute__((noreturn)) void memprof_die(const char *msg) |
| 119 | { |
| 120 | DISGUISE(write(2, msg, strlen(msg))); |
| 121 | exit(1); |
| 122 | } |
| 123 | |
| 124 | /* Resolve original allocation functions and initialize all handlers. |
| 125 | * This must be called very early at boot, before the very first malloc() |
| 126 | * call, and is not thread-safe! It's not even possible to use stdio there. |
| 127 | * Worse, we have to account for the risk of reentrance from dlsym() when |
| 128 | * it tries to prepare its error messages. Here its ahndled by in_memprof |
| 129 | * that makes allocators return NULL. dlsym() handles it gracefully. An |
Ilya Shipitsin | 3df5989 | 2021-05-10 12:50:00 +0500 | [diff] [blame] | 130 | * alternate approach consists in calling aligned_alloc() from these places |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 131 | * but that would mean not being able to intercept it later if considered |
| 132 | * useful to do so. |
| 133 | */ |
| 134 | static void memprof_init() |
| 135 | { |
| 136 | in_memprof++; |
| 137 | memprof_malloc_handler = get_sym_next_addr("malloc"); |
| 138 | if (!memprof_malloc_handler) |
| 139 | memprof_die("FATAL: malloc() function not found.\n"); |
| 140 | |
| 141 | memprof_calloc_handler = get_sym_next_addr("calloc"); |
| 142 | if (!memprof_calloc_handler) |
| 143 | memprof_die("FATAL: calloc() function not found.\n"); |
| 144 | |
| 145 | memprof_realloc_handler = get_sym_next_addr("realloc"); |
| 146 | if (!memprof_realloc_handler) |
| 147 | memprof_die("FATAL: realloc() function not found.\n"); |
| 148 | |
| 149 | memprof_free_handler = get_sym_next_addr("free"); |
| 150 | if (!memprof_free_handler) |
| 151 | memprof_die("FATAL: free() function not found.\n"); |
| 152 | in_memprof--; |
| 153 | } |
| 154 | |
| 155 | /* the initial handlers will initialize all regular handlers and will call the |
| 156 | * one they correspond to. A single one of these functions will typically be |
| 157 | * called, though it's unknown which one (as any might be called before main). |
| 158 | */ |
| 159 | static void *memprof_malloc_initial_handler(size_t size) |
| 160 | { |
| 161 | if (in_memprof) { |
| 162 | /* it's likely that dlsym() needs malloc(), let's fail */ |
| 163 | return NULL; |
| 164 | } |
| 165 | |
| 166 | memprof_init(); |
| 167 | return memprof_malloc_handler(size); |
| 168 | } |
| 169 | |
| 170 | static void *memprof_calloc_initial_handler(size_t nmemb, size_t size) |
| 171 | { |
| 172 | if (in_memprof) { |
| 173 | /* it's likely that dlsym() needs calloc(), let's fail */ |
| 174 | return NULL; |
| 175 | } |
| 176 | memprof_init(); |
| 177 | return memprof_calloc_handler(nmemb, size); |
| 178 | } |
| 179 | |
| 180 | static void *memprof_realloc_initial_handler(void *ptr, size_t size) |
| 181 | { |
| 182 | if (in_memprof) { |
| 183 | /* it's likely that dlsym() needs realloc(), let's fail */ |
| 184 | return NULL; |
| 185 | } |
| 186 | |
| 187 | memprof_init(); |
| 188 | return memprof_realloc_handler(ptr, size); |
| 189 | } |
| 190 | |
| 191 | static void memprof_free_initial_handler(void *ptr) |
| 192 | { |
| 193 | memprof_init(); |
| 194 | memprof_free_handler(ptr); |
| 195 | } |
| 196 | |
| 197 | /* Assign a bin for the memprof_stats to the return address. May perform a few |
| 198 | * attempts before finding the right one, but always succeeds (in the worst |
| 199 | * case, returns a default bin). The caller address is atomically set except |
| 200 | * for the default one which is never set. |
| 201 | */ |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 202 | static struct memprof_stats *memprof_get_bin(const void *ra, enum memprof_method meth) |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 203 | { |
| 204 | int retries = 16; // up to 16 consecutive entries may be tested. |
Willy Tarreau | 4a75328 | 2021-05-09 23:18:50 +0200 | [diff] [blame] | 205 | const void *old; |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 206 | unsigned int bin; |
| 207 | |
| 208 | bin = memprof_hash_ptr(ra); |
| 209 | for (; memprof_stats[bin].caller != ra; bin = (bin + 1) & (MEMPROF_HASH_BUCKETS - 1)) { |
| 210 | if (!--retries) { |
| 211 | bin = MEMPROF_HASH_BUCKETS; |
| 212 | break; |
| 213 | } |
| 214 | |
| 215 | old = NULL; |
| 216 | if (!memprof_stats[bin].caller && |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 217 | HA_ATOMIC_CAS(&memprof_stats[bin].caller, &old, ra)) { |
| 218 | memprof_stats[bin].method = meth; |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 219 | break; |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 220 | } |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 221 | } |
| 222 | return &memprof_stats[bin]; |
| 223 | } |
| 224 | |
| 225 | /* This is the new global malloc() function. It must optimize for the normal |
| 226 | * case (i.e. profiling disabled) hence the first test to permit a direct jump. |
| 227 | * It must remain simple to guarantee the lack of reentrance. stdio is not |
| 228 | * possible there even for debugging. The reported size is the really allocated |
| 229 | * one as returned by malloc_usable_size(), because this will allow it to be |
| 230 | * compared to the one before realloc() or free(). This is a GNU and jemalloc |
| 231 | * extension but other systems may also store this size in ptr[-1]. |
| 232 | */ |
| 233 | void *malloc(size_t size) |
| 234 | { |
| 235 | struct memprof_stats *bin; |
| 236 | void *ret; |
| 237 | |
| 238 | if (likely(!(profiling & HA_PROF_MEMORY))) |
| 239 | return memprof_malloc_handler(size); |
| 240 | |
| 241 | ret = memprof_malloc_handler(size); |
| 242 | size = malloc_usable_size(ret); |
| 243 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 244 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_MALLOC); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 245 | _HA_ATOMIC_ADD(&bin->alloc_calls, 1); |
| 246 | _HA_ATOMIC_ADD(&bin->alloc_tot, size); |
| 247 | return ret; |
| 248 | } |
| 249 | |
| 250 | /* This is the new global calloc() function. It must optimize for the normal |
| 251 | * case (i.e. profiling disabled) hence the first test to permit a direct jump. |
| 252 | * It must remain simple to guarantee the lack of reentrance. stdio is not |
| 253 | * possible there even for debugging. The reported size is the really allocated |
| 254 | * one as returned by malloc_usable_size(), because this will allow it to be |
| 255 | * compared to the one before realloc() or free(). This is a GNU and jemalloc |
| 256 | * extension but other systems may also store this size in ptr[-1]. |
| 257 | */ |
| 258 | void *calloc(size_t nmemb, size_t size) |
| 259 | { |
| 260 | struct memprof_stats *bin; |
| 261 | void *ret; |
| 262 | |
| 263 | if (likely(!(profiling & HA_PROF_MEMORY))) |
| 264 | return memprof_calloc_handler(nmemb, size); |
| 265 | |
| 266 | ret = memprof_calloc_handler(nmemb, size); |
| 267 | size = malloc_usable_size(ret); |
| 268 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 269 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_CALLOC); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 270 | _HA_ATOMIC_ADD(&bin->alloc_calls, 1); |
| 271 | _HA_ATOMIC_ADD(&bin->alloc_tot, size); |
| 272 | return ret; |
| 273 | } |
| 274 | |
| 275 | /* This is the new global realloc() function. It must optimize for the normal |
| 276 | * case (i.e. profiling disabled) hence the first test to permit a direct jump. |
| 277 | * It must remain simple to guarantee the lack of reentrance. stdio is not |
| 278 | * possible there even for debugging. The reported size is the really allocated |
| 279 | * one as returned by malloc_usable_size(), because this will allow it to be |
| 280 | * compared to the one before realloc() or free(). This is a GNU and jemalloc |
| 281 | * extension but other systems may also store this size in ptr[-1]. |
| 282 | * Depending on the old vs new size, it's considered as an allocation or a free |
| 283 | * (or neither if the size remains the same). |
| 284 | */ |
| 285 | void *realloc(void *ptr, size_t size) |
| 286 | { |
| 287 | struct memprof_stats *bin; |
| 288 | size_t size_before; |
| 289 | void *ret; |
| 290 | |
| 291 | if (likely(!(profiling & HA_PROF_MEMORY))) |
| 292 | return memprof_realloc_handler(ptr, size); |
| 293 | |
| 294 | size_before = malloc_usable_size(ptr); |
| 295 | ret = memprof_realloc_handler(ptr, size); |
Willy Tarreau | 2639e2e | 2021-05-07 08:01:35 +0200 | [diff] [blame] | 296 | size = malloc_usable_size(ret); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 297 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 298 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_REALLOC); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 299 | if (size > size_before) { |
| 300 | _HA_ATOMIC_ADD(&bin->alloc_calls, 1); |
Willy Tarreau | 79acefa | 2021-05-11 09:12:56 +0200 | [diff] [blame] | 301 | _HA_ATOMIC_ADD(&bin->alloc_tot, size - size_before); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 302 | } else if (size < size_before) { |
| 303 | _HA_ATOMIC_ADD(&bin->free_calls, 1); |
Willy Tarreau | 79acefa | 2021-05-11 09:12:56 +0200 | [diff] [blame] | 304 | _HA_ATOMIC_ADD(&bin->free_tot, size_before - size); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 305 | } |
| 306 | return ret; |
| 307 | } |
| 308 | |
| 309 | /* This is the new global free() function. It must optimize for the normal |
| 310 | * case (i.e. profiling disabled) hence the first test to permit a direct jump. |
| 311 | * It must remain simple to guarantee the lack of reentrance. stdio is not |
| 312 | * possible there even for debugging. The reported size is the really allocated |
| 313 | * one as returned by malloc_usable_size(), because this will allow it to be |
| 314 | * compared to the one before realloc() or free(). This is a GNU and jemalloc |
| 315 | * extension but other systems may also store this size in ptr[-1]. Since |
| 316 | * free() is often called on NULL pointers to collect garbage at the end of |
| 317 | * many functions or during config parsing, as a special case free(NULL) |
| 318 | * doesn't update any stats. |
| 319 | */ |
| 320 | void free(void *ptr) |
| 321 | { |
| 322 | struct memprof_stats *bin; |
| 323 | size_t size_before; |
| 324 | |
| 325 | if (likely(!(profiling & HA_PROF_MEMORY) || !ptr)) { |
| 326 | memprof_free_handler(ptr); |
| 327 | return; |
| 328 | } |
| 329 | |
| 330 | size_before = malloc_usable_size(ptr); |
| 331 | memprof_free_handler(ptr); |
| 332 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 333 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_FREE); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 334 | _HA_ATOMIC_ADD(&bin->free_calls, 1); |
| 335 | _HA_ATOMIC_ADD(&bin->free_tot, size_before); |
| 336 | } |
| 337 | |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 338 | #endif // USE_MEMORY_PROFILING |
| 339 | |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 340 | /* Updates the current thread's statistics about stolen CPU time. The unit for |
| 341 | * <stolen> is half-milliseconds. |
| 342 | */ |
| 343 | void report_stolen_time(uint64_t stolen) |
| 344 | { |
| 345 | activity[tid].cpust_total += stolen; |
| 346 | update_freq_ctr(&activity[tid].cpust_1s, stolen); |
| 347 | update_freq_ctr_period(&activity[tid].cpust_15s, 15000, stolen); |
| 348 | } |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 349 | |
Willy Tarreau | ca3afc2 | 2021-05-05 18:33:19 +0200 | [diff] [blame] | 350 | #ifdef USE_MEMORY_PROFILING |
| 351 | /* config parser for global "profiling.memory", accepts "on" or "off" */ |
| 352 | static int cfg_parse_prof_memory(char **args, int section_type, struct proxy *curpx, |
| 353 | const struct proxy *defpx, const char *file, int line, |
| 354 | char **err) |
| 355 | { |
| 356 | if (too_many_args(1, args, err, NULL)) |
| 357 | return -1; |
| 358 | |
| 359 | if (strcmp(args[1], "on") == 0) |
| 360 | profiling |= HA_PROF_MEMORY; |
| 361 | else if (strcmp(args[1], "off") == 0) |
| 362 | profiling &= ~HA_PROF_MEMORY; |
| 363 | else { |
| 364 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 365 | return -1; |
| 366 | } |
| 367 | return 0; |
| 368 | } |
| 369 | #endif // USE_MEMORY_PROFILING |
| 370 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 371 | /* config parser for global "profiling.tasks", accepts "on" or "off" */ |
| 372 | static int cfg_parse_prof_tasks(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 373 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 374 | char **err) |
| 375 | { |
| 376 | if (too_many_args(1, args, err, NULL)) |
| 377 | return -1; |
| 378 | |
| 379 | if (strcmp(args[1], "on") == 0) |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 380 | profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_ON; |
| 381 | else if (strcmp(args[1], "auto") == 0) |
Willy Tarreau | aa622b8 | 2021-01-28 21:44:22 +0100 | [diff] [blame] | 382 | profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AOFF; |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 383 | else if (strcmp(args[1], "off") == 0) |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 384 | profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_OFF; |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 385 | else { |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 386 | memprintf(err, "'%s' expects either 'on', 'auto', or 'off' but got '%s'.", args[0], args[1]); |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 387 | return -1; |
| 388 | } |
| 389 | return 0; |
| 390 | } |
| 391 | |
| 392 | /* parse a "set profiling" command. It always returns 1. */ |
| 393 | static int cli_parse_set_profiling(char **args, char *payload, struct appctx *appctx, void *private) |
| 394 | { |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 395 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 396 | return 1; |
| 397 | |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 398 | if (strcmp(args[2], "memory") == 0) { |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 399 | #ifdef USE_MEMORY_PROFILING |
| 400 | if (strcmp(args[3], "on") == 0) { |
| 401 | unsigned int old = profiling; |
| 402 | int i; |
| 403 | |
| 404 | while (!_HA_ATOMIC_CAS(&profiling, &old, old | HA_PROF_MEMORY)) |
| 405 | ; |
| 406 | |
| 407 | /* also flush current profiling stats */ |
| 408 | for (i = 0; i < sizeof(memprof_stats) / sizeof(memprof_stats[0]); i++) { |
| 409 | HA_ATOMIC_STORE(&memprof_stats[i].alloc_calls, 0); |
| 410 | HA_ATOMIC_STORE(&memprof_stats[i].free_calls, 0); |
| 411 | HA_ATOMIC_STORE(&memprof_stats[i].alloc_tot, 0); |
| 412 | HA_ATOMIC_STORE(&memprof_stats[i].free_tot, 0); |
| 413 | HA_ATOMIC_STORE(&memprof_stats[i].caller, NULL); |
| 414 | } |
| 415 | } |
| 416 | else if (strcmp(args[3], "off") == 0) { |
| 417 | unsigned int old = profiling; |
| 418 | |
| 419 | while (!_HA_ATOMIC_CAS(&profiling, &old, old & ~HA_PROF_MEMORY)) |
| 420 | ; |
| 421 | } |
| 422 | else |
| 423 | return cli_err(appctx, "Expects either 'on' or 'off'.\n"); |
| 424 | return 1; |
| 425 | #else |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 426 | return cli_err(appctx, "Memory profiling not compiled in.\n"); |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 427 | #endif |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 428 | } |
| 429 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 430 | if (strcmp(args[2], "tasks") != 0) |
Ilya Shipitsin | 3df5989 | 2021-05-10 12:50:00 +0500 | [diff] [blame] | 431 | return cli_err(appctx, "Expects either 'tasks' or 'memory'.\n"); |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 432 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 433 | if (strcmp(args[3], "on") == 0) { |
| 434 | unsigned int old = profiling; |
Willy Tarreau | cfa7101 | 2021-01-29 11:56:21 +0100 | [diff] [blame] | 435 | int i; |
| 436 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 437 | while (!_HA_ATOMIC_CAS(&profiling, &old, (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_ON)) |
| 438 | ; |
Willy Tarreau | cfa7101 | 2021-01-29 11:56:21 +0100 | [diff] [blame] | 439 | /* also flush current profiling stats */ |
| 440 | for (i = 0; i < 256; i++) { |
| 441 | HA_ATOMIC_STORE(&sched_activity[i].calls, 0); |
| 442 | HA_ATOMIC_STORE(&sched_activity[i].cpu_time, 0); |
| 443 | HA_ATOMIC_STORE(&sched_activity[i].lat_time, 0); |
| 444 | HA_ATOMIC_STORE(&sched_activity[i].func, NULL); |
| 445 | } |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 446 | } |
| 447 | else if (strcmp(args[3], "auto") == 0) { |
| 448 | unsigned int old = profiling; |
Willy Tarreau | aa622b8 | 2021-01-28 21:44:22 +0100 | [diff] [blame] | 449 | unsigned int new; |
| 450 | |
| 451 | do { |
| 452 | if ((old & HA_PROF_TASKS_MASK) >= HA_PROF_TASKS_AON) |
| 453 | new = (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AON; |
| 454 | else |
| 455 | new = (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AOFF; |
| 456 | } while (!_HA_ATOMIC_CAS(&profiling, &old, new)); |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 457 | } |
| 458 | else if (strcmp(args[3], "off") == 0) { |
| 459 | unsigned int old = profiling; |
| 460 | while (!_HA_ATOMIC_CAS(&profiling, &old, (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_OFF)) |
| 461 | ; |
| 462 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 463 | else |
| 464 | return cli_err(appctx, "Expects 'on', 'auto', or 'off'.\n"); |
| 465 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 466 | return 1; |
| 467 | } |
| 468 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 469 | static int cmp_sched_activity_calls(const void *a, const void *b) |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 470 | { |
| 471 | const struct sched_activity *l = (const struct sched_activity *)a; |
| 472 | const struct sched_activity *r = (const struct sched_activity *)b; |
| 473 | |
| 474 | if (l->calls > r->calls) |
| 475 | return -1; |
| 476 | else if (l->calls < r->calls) |
| 477 | return 1; |
| 478 | else |
| 479 | return 0; |
| 480 | } |
| 481 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 482 | static int cmp_sched_activity_addr(const void *a, const void *b) |
| 483 | { |
| 484 | const struct sched_activity *l = (const struct sched_activity *)a; |
| 485 | const struct sched_activity *r = (const struct sched_activity *)b; |
| 486 | |
| 487 | if (l->func > r->func) |
| 488 | return -1; |
| 489 | else if (l->func < r->func) |
| 490 | return 1; |
| 491 | else |
| 492 | return 0; |
| 493 | } |
| 494 | |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 495 | #if USE_MEMORY_PROFILING |
| 496 | /* used by qsort below */ |
| 497 | static int cmp_memprof_stats(const void *a, const void *b) |
| 498 | { |
| 499 | const struct memprof_stats *l = (const struct memprof_stats *)a; |
| 500 | const struct memprof_stats *r = (const struct memprof_stats *)b; |
| 501 | |
| 502 | if (l->alloc_tot + l->free_tot > r->alloc_tot + r->free_tot) |
| 503 | return -1; |
| 504 | else if (l->alloc_tot + l->free_tot < r->alloc_tot + r->free_tot) |
| 505 | return 1; |
| 506 | else |
| 507 | return 0; |
| 508 | } |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 509 | |
| 510 | static int cmp_memprof_addr(const void *a, const void *b) |
| 511 | { |
| 512 | const struct memprof_stats *l = (const struct memprof_stats *)a; |
| 513 | const struct memprof_stats *r = (const struct memprof_stats *)b; |
| 514 | |
| 515 | if (l->caller > r->caller) |
| 516 | return -1; |
| 517 | else if (l->caller < r->caller) |
| 518 | return 1; |
| 519 | else |
| 520 | return 0; |
| 521 | } |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 522 | #endif // USE_MEMORY_PROFILING |
| 523 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 524 | /* This function dumps all profiling settings. It returns 0 if the output |
| 525 | * buffer is full and it needs to be called again, otherwise non-zero. |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 526 | * It dumps some parts depending on the following states: |
| 527 | * ctx.cli.i0: |
| 528 | * 0, 4: dump status, then jump to 1 if 0 |
| 529 | * 1, 5: dump tasks, then jump to 2 if 1 |
| 530 | * 2, 6: dump memory, then stop |
| 531 | * ctx.cli.i1: |
| 532 | * restart line for each step (starts at zero) |
| 533 | * ctx.cli.o0: |
| 534 | * may contain a configured max line count for each step (0=not set) |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 535 | * ctx.cli.o1: |
| 536 | * 0: sort by usage |
| 537 | * 1: sort by address |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 538 | */ |
| 539 | static int cli_io_handler_show_profiling(struct appctx *appctx) |
| 540 | { |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 541 | struct sched_activity tmp_activity[256] __attribute__((aligned(64))); |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 542 | #if USE_MEMORY_PROFILING |
| 543 | struct memprof_stats tmp_memstats[MEMPROF_HASH_BUCKETS + 1]; |
Willy Tarreau | f5fb858 | 2021-05-11 14:06:24 +0200 | [diff] [blame] | 544 | unsigned long long tot_alloc_calls, tot_free_calls; |
| 545 | unsigned long long tot_alloc_bytes, tot_free_bytes; |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 546 | #endif |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 547 | struct stream_interface *si = appctx->owner; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 548 | struct buffer *name_buffer = get_trash_chunk(); |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 549 | const char *str; |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 550 | int max_lines; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 551 | int i, max; |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 552 | |
| 553 | if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 554 | return 1; |
| 555 | |
| 556 | chunk_reset(&trash); |
| 557 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 558 | switch (profiling & HA_PROF_TASKS_MASK) { |
Willy Tarreau | aa622b8 | 2021-01-28 21:44:22 +0100 | [diff] [blame] | 559 | case HA_PROF_TASKS_AOFF: str="auto-off"; break; |
| 560 | case HA_PROF_TASKS_AON: str="auto-on"; break; |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 561 | case HA_PROF_TASKS_ON: str="on"; break; |
| 562 | default: str="off"; break; |
| 563 | } |
| 564 | |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 565 | if ((appctx->ctx.cli.i0 & 3) != 0) |
| 566 | goto skip_status; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 567 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 568 | chunk_printf(&trash, |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 569 | "Per-task CPU profiling : %-8s # set profiling tasks {on|auto|off}\n" |
| 570 | "Memory usage profiling : %-8s # set profiling memory {on|off}\n", |
| 571 | str, (profiling & HA_PROF_MEMORY) ? "on" : "off"); |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 572 | |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 573 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 574 | /* failed, try again */ |
| 575 | si_rx_room_blk(si); |
| 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | appctx->ctx.cli.i1 = 0; // reset first line to dump |
| 580 | if ((appctx->ctx.cli.i0 & 4) == 0) |
| 581 | appctx->ctx.cli.i0++; // next step |
| 582 | |
| 583 | skip_status: |
| 584 | if ((appctx->ctx.cli.i0 & 3) != 1) |
| 585 | goto skip_tasks; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 586 | |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 587 | memcpy(tmp_activity, sched_activity, sizeof(tmp_activity)); |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 588 | if (appctx->ctx.cli.o1) |
| 589 | qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_addr); |
| 590 | else |
| 591 | qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_calls); |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 592 | |
| 593 | if (!appctx->ctx.cli.i1) |
| 594 | chunk_appendf(&trash, "Tasks activity:\n" |
| 595 | " function calls cpu_tot cpu_avg lat_tot lat_avg\n"); |
| 596 | |
| 597 | max_lines = appctx->ctx.cli.o0; |
| 598 | if (!max_lines) |
| 599 | max_lines = 256; |
| 600 | |
| 601 | for (i = appctx->ctx.cli.i1; i < max_lines && tmp_activity[i].calls; i++) { |
| 602 | appctx->ctx.cli.i1 = i; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 603 | chunk_reset(name_buffer); |
| 604 | |
| 605 | if (!tmp_activity[i].func) |
| 606 | chunk_printf(name_buffer, "other"); |
| 607 | else |
| 608 | resolve_sym_name(name_buffer, "", tmp_activity[i].func); |
| 609 | |
| 610 | /* reserve 35 chars for name+' '+#calls, knowing that longer names |
| 611 | * are often used for less often called functions. |
| 612 | */ |
| 613 | max = 35 - name_buffer->data; |
| 614 | if (max < 1) |
| 615 | max = 1; |
| 616 | chunk_appendf(&trash, " %s%*llu", name_buffer->area, max, (unsigned long long)tmp_activity[i].calls); |
| 617 | |
| 618 | print_time_short(&trash, " ", tmp_activity[i].cpu_time, ""); |
| 619 | print_time_short(&trash, " ", tmp_activity[i].cpu_time / tmp_activity[i].calls, ""); |
| 620 | print_time_short(&trash, " ", tmp_activity[i].lat_time, ""); |
| 621 | print_time_short(&trash, " ", tmp_activity[i].lat_time / tmp_activity[i].calls, "\n"); |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 622 | |
| 623 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 624 | /* failed, try again */ |
| 625 | si_rx_room_blk(si); |
| 626 | return 0; |
| 627 | } |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 628 | } |
| 629 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 630 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 631 | /* failed, try again */ |
| 632 | si_rx_room_blk(si); |
| 633 | return 0; |
| 634 | } |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 635 | |
| 636 | appctx->ctx.cli.i1 = 0; // reset first line to dump |
| 637 | if ((appctx->ctx.cli.i0 & 4) == 0) |
| 638 | appctx->ctx.cli.i0++; // next step |
| 639 | |
| 640 | skip_tasks: |
| 641 | |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 642 | #if USE_MEMORY_PROFILING |
| 643 | if ((appctx->ctx.cli.i0 & 3) != 2) |
| 644 | goto skip_mem; |
| 645 | |
| 646 | memcpy(tmp_memstats, memprof_stats, sizeof(tmp_memstats)); |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 647 | if (appctx->ctx.cli.o1) |
| 648 | qsort(tmp_memstats, MEMPROF_HASH_BUCKETS+1, sizeof(tmp_memstats[0]), cmp_memprof_addr); |
| 649 | else |
| 650 | qsort(tmp_memstats, MEMPROF_HASH_BUCKETS+1, sizeof(tmp_memstats[0]), cmp_memprof_stats); |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 651 | |
| 652 | if (!appctx->ctx.cli.i1) |
| 653 | chunk_appendf(&trash, |
| 654 | "Alloc/Free statistics by call place:\n" |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 655 | " Calls | Tot Bytes | Caller and method\n" |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 656 | "<- alloc -> <- free ->|<-- alloc ---> <-- free ---->|\n"); |
| 657 | |
| 658 | max_lines = appctx->ctx.cli.o0; |
| 659 | if (!max_lines) |
| 660 | max_lines = MEMPROF_HASH_BUCKETS + 1; |
| 661 | |
| 662 | for (i = appctx->ctx.cli.i1; i < max_lines; i++) { |
| 663 | struct memprof_stats *entry = &tmp_memstats[i]; |
| 664 | |
| 665 | appctx->ctx.cli.i1 = i; |
| 666 | if (!entry->alloc_calls && !entry->free_calls) |
| 667 | continue; |
| 668 | chunk_appendf(&trash, "%11llu %11llu %14llu %14llu| %16p ", |
| 669 | entry->alloc_calls, entry->free_calls, |
| 670 | entry->alloc_tot, entry->free_tot, |
| 671 | entry->caller); |
| 672 | |
| 673 | if (entry->caller) |
| 674 | resolve_sym_name(&trash, NULL, entry->caller); |
| 675 | else |
| 676 | chunk_appendf(&trash, "[other]"); |
| 677 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 678 | chunk_appendf(&trash," %s(%lld)\n", memprof_methods[entry->method], |
| 679 | (long long)(entry->alloc_tot - entry->free_tot) / (long long)(entry->alloc_calls + entry->free_calls)); |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 680 | |
| 681 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 682 | si_rx_room_blk(si); |
| 683 | return 0; |
| 684 | } |
| 685 | } |
| 686 | |
| 687 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 688 | si_rx_room_blk(si); |
| 689 | return 0; |
| 690 | } |
| 691 | |
Willy Tarreau | f5fb858 | 2021-05-11 14:06:24 +0200 | [diff] [blame] | 692 | tot_alloc_calls = tot_free_calls = tot_alloc_bytes = tot_free_bytes = 0; |
| 693 | for (i = 0; i < max_lines; i++) { |
| 694 | tot_alloc_calls += tmp_memstats[i].alloc_calls; |
| 695 | tot_free_calls += tmp_memstats[i].free_calls; |
| 696 | tot_alloc_bytes += tmp_memstats[i].alloc_tot; |
| 697 | tot_free_bytes += tmp_memstats[i].free_tot; |
| 698 | } |
| 699 | |
| 700 | chunk_appendf(&trash, |
| 701 | "-----------------------|-----------------------------|\n" |
| 702 | "%11llu %11llu %14llu %14llu| <- Total; Delta_calls=%lld; Delta_bytes=%lld\n", |
| 703 | tot_alloc_calls, tot_free_calls, |
| 704 | tot_alloc_bytes, tot_free_bytes, |
| 705 | tot_alloc_calls - tot_free_calls, |
| 706 | tot_alloc_bytes - tot_free_bytes); |
| 707 | |
| 708 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 709 | si_rx_room_blk(si); |
| 710 | return 0; |
| 711 | } |
| 712 | |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 713 | appctx->ctx.cli.i1 = 0; // reset first line to dump |
| 714 | if ((appctx->ctx.cli.i0 & 4) == 0) |
| 715 | appctx->ctx.cli.i0++; // next step |
| 716 | |
| 717 | skip_mem: |
| 718 | #endif // USE_MEMORY_PROFILING |
| 719 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 720 | return 1; |
| 721 | } |
| 722 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 723 | /* parse a "show profiling" command. It returns 1 on failure, 0 if it starts to dump. |
| 724 | * - cli.i0 is set to the first state (0=all, 4=status, 5=tasks, 6=memory) |
| 725 | * - cli.o1 is set to 1 if the output must be sorted by addr instead of usage |
| 726 | * - cli.o0 is set to the number of lines of output |
| 727 | */ |
Willy Tarreau | 42712cb | 2021-05-05 17:48:13 +0200 | [diff] [blame] | 728 | static int cli_parse_show_profiling(char **args, char *payload, struct appctx *appctx, void *private) |
| 729 | { |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 730 | int arg; |
| 731 | |
Willy Tarreau | 42712cb | 2021-05-05 17:48:13 +0200 | [diff] [blame] | 732 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 733 | return 1; |
| 734 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 735 | for (arg = 2; *args[arg]; arg++) { |
| 736 | if (strcmp(args[arg], "all") == 0) { |
| 737 | appctx->ctx.cli.i0 = 0; // will cycle through 0,1,2; default |
| 738 | } |
| 739 | else if (strcmp(args[arg], "status") == 0) { |
| 740 | appctx->ctx.cli.i0 = 4; // will visit status only |
| 741 | } |
| 742 | else if (strcmp(args[arg], "tasks") == 0) { |
| 743 | appctx->ctx.cli.i0 = 5; // will visit tasks only |
| 744 | } |
| 745 | else if (strcmp(args[arg], "memory") == 0) { |
| 746 | appctx->ctx.cli.i0 = 6; // will visit memory only |
| 747 | } |
| 748 | else if (strcmp(args[arg], "byaddr") == 0) { |
| 749 | appctx->ctx.cli.o1 = 1; // sort output by address instead of usage |
| 750 | } |
| 751 | else if (isdigit((unsigned char)*args[arg])) { |
| 752 | appctx->ctx.cli.o0 = atoi(args[arg]); // number of entries to dump |
| 753 | } |
| 754 | else |
| 755 | return cli_err(appctx, "Expects either 'all', 'status', 'tasks', 'memory', 'byaddr' or a max number of output lines.\n"); |
Willy Tarreau | 42712cb | 2021-05-05 17:48:13 +0200 | [diff] [blame] | 756 | } |
| 757 | return 0; |
| 758 | } |
| 759 | |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 760 | /* This function scans all threads' run queues and collects statistics about |
| 761 | * running tasks. It returns 0 if the output buffer is full and it needs to be |
| 762 | * called again, otherwise non-zero. |
| 763 | */ |
| 764 | static int cli_io_handler_show_tasks(struct appctx *appctx) |
| 765 | { |
| 766 | struct sched_activity tmp_activity[256] __attribute__((aligned(64))); |
| 767 | struct stream_interface *si = appctx->owner; |
| 768 | struct buffer *name_buffer = get_trash_chunk(); |
| 769 | struct sched_activity *entry; |
| 770 | const struct tasklet *tl; |
| 771 | const struct task *t; |
| 772 | uint64_t now_ns, lat; |
| 773 | struct eb32sc_node *rqnode; |
| 774 | uint64_t tot_calls; |
| 775 | int thr, queue; |
| 776 | int i, max; |
| 777 | |
| 778 | if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 779 | return 1; |
| 780 | |
| 781 | /* It's not possible to scan queues in small chunks and yield in the |
| 782 | * middle of the dump and come back again. So what we're doing instead |
| 783 | * is to freeze all threads and inspect their queues at once as fast as |
| 784 | * possible, using a sched_activity array to collect metrics with |
| 785 | * limited collision, then we'll report statistics only. The tasks' |
| 786 | * #calls will reflect the number of occurrences, and the lat_time will |
Willy Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 787 | * reflect the latency when set. We prefer to take the time before |
| 788 | * calling thread_isolate() so that the wait time doesn't impact the |
| 789 | * measurement accuracy. However this requires to take care of negative |
| 790 | * times since tasks might be queued after we retrieve it. |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 791 | */ |
| 792 | |
| 793 | now_ns = now_mono_time(); |
| 794 | memset(tmp_activity, 0, sizeof(tmp_activity)); |
| 795 | |
| 796 | thread_isolate(); |
| 797 | |
| 798 | /* 1. global run queue */ |
| 799 | |
| 800 | #ifdef USE_THREAD |
| 801 | rqnode = eb32sc_first(&rqueue, ~0UL); |
| 802 | while (rqnode) { |
| 803 | t = eb32sc_entry(rqnode, struct task, rq); |
| 804 | entry = sched_activity_entry(tmp_activity, t->process); |
| 805 | if (t->call_date) { |
| 806 | lat = now_ns - t->call_date; |
Willy Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 807 | if ((int64_t)lat > 0) |
| 808 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 809 | } |
| 810 | entry->calls++; |
| 811 | rqnode = eb32sc_next(rqnode, ~0UL); |
| 812 | } |
| 813 | #endif |
| 814 | /* 2. all threads's local run queues */ |
| 815 | for (thr = 0; thr < global.nbthread; thr++) { |
| 816 | /* task run queue */ |
| 817 | rqnode = eb32sc_first(&task_per_thread[thr].rqueue, ~0UL); |
| 818 | while (rqnode) { |
| 819 | t = eb32sc_entry(rqnode, struct task, rq); |
| 820 | entry = sched_activity_entry(tmp_activity, t->process); |
| 821 | if (t->call_date) { |
| 822 | lat = now_ns - t->call_date; |
Willy Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 823 | if ((int64_t)lat > 0) |
| 824 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 825 | } |
| 826 | entry->calls++; |
| 827 | rqnode = eb32sc_next(rqnode, ~0UL); |
| 828 | } |
| 829 | |
| 830 | /* shared tasklet list */ |
| 831 | list_for_each_entry(tl, mt_list_to_list(&task_per_thread[thr].shared_tasklet_list), list) { |
| 832 | t = (const struct task *)tl; |
| 833 | entry = sched_activity_entry(tmp_activity, t->process); |
| 834 | if (!TASK_IS_TASKLET(t) && t->call_date) { |
| 835 | lat = now_ns - t->call_date; |
Willy Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 836 | if ((int64_t)lat > 0) |
| 837 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 838 | } |
| 839 | entry->calls++; |
| 840 | } |
| 841 | |
| 842 | /* classful tasklets */ |
| 843 | for (queue = 0; queue < TL_CLASSES; queue++) { |
| 844 | list_for_each_entry(tl, &task_per_thread[thr].tasklets[queue], list) { |
| 845 | t = (const struct task *)tl; |
| 846 | entry = sched_activity_entry(tmp_activity, t->process); |
| 847 | if (!TASK_IS_TASKLET(t) && t->call_date) { |
| 848 | lat = now_ns - t->call_date; |
Willy Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 849 | if ((int64_t)lat > 0) |
| 850 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 851 | } |
| 852 | entry->calls++; |
| 853 | } |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | /* hopefully we're done */ |
| 858 | thread_release(); |
| 859 | |
| 860 | chunk_reset(&trash); |
| 861 | |
| 862 | tot_calls = 0; |
| 863 | for (i = 0; i < 256; i++) |
| 864 | tot_calls += tmp_activity[i].calls; |
| 865 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 866 | qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_calls); |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 867 | |
| 868 | chunk_appendf(&trash, "Running tasks: %d (%d threads)\n" |
| 869 | " function places %% lat_tot lat_avg\n", |
| 870 | (int)tot_calls, global.nbthread); |
| 871 | |
| 872 | for (i = 0; i < 256 && tmp_activity[i].calls; i++) { |
| 873 | chunk_reset(name_buffer); |
| 874 | |
| 875 | if (!tmp_activity[i].func) |
| 876 | chunk_printf(name_buffer, "other"); |
| 877 | else |
| 878 | resolve_sym_name(name_buffer, "", tmp_activity[i].func); |
| 879 | |
| 880 | /* reserve 35 chars for name+' '+#calls, knowing that longer names |
| 881 | * are often used for less often called functions. |
| 882 | */ |
| 883 | max = 35 - name_buffer->data; |
| 884 | if (max < 1) |
| 885 | max = 1; |
| 886 | chunk_appendf(&trash, " %s%*llu %3d.%1d", |
| 887 | name_buffer->area, max, (unsigned long long)tmp_activity[i].calls, |
| 888 | (int)(100ULL * tmp_activity[i].calls / tot_calls), |
| 889 | (int)((1000ULL * tmp_activity[i].calls / tot_calls)%10)); |
| 890 | print_time_short(&trash, " ", tmp_activity[i].lat_time, ""); |
| 891 | print_time_short(&trash, " ", tmp_activity[i].lat_time / tmp_activity[i].calls, "\n"); |
| 892 | } |
| 893 | |
| 894 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 895 | /* failed, try again */ |
| 896 | si_rx_room_blk(si); |
| 897 | return 0; |
| 898 | } |
| 899 | return 1; |
| 900 | } |
| 901 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 902 | /* config keyword parsers */ |
| 903 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | ca3afc2 | 2021-05-05 18:33:19 +0200 | [diff] [blame] | 904 | #ifdef USE_MEMORY_PROFILING |
| 905 | { CFG_GLOBAL, "profiling.memory", cfg_parse_prof_memory }, |
| 906 | #endif |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 907 | { CFG_GLOBAL, "profiling.tasks", cfg_parse_prof_tasks }, |
| 908 | { 0, NULL, NULL } |
| 909 | }}; |
| 910 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 911 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 912 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 913 | /* register cli keywords */ |
| 914 | static struct cli_kw_list cli_kws = {{ },{ |
Daniel Corbett | 67b3cef | 2021-05-10 14:08:40 -0400 | [diff] [blame] | 915 | { { "set", "profiling", NULL }, "set profiling <what> {auto|on|off} : enable/disable resource profiling (tasks,memory)", cli_parse_set_profiling, NULL }, |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 916 | { { "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 Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 917 | { { "show", "tasks", NULL }, "show tasks : show running tasks", NULL, cli_io_handler_show_tasks, NULL }, |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 918 | {{},} |
| 919 | }}; |
| 920 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 921 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |