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 | e065022 | 2021-10-06 16:22:09 +0200 | [diff] [blame] | 20 | #include <haproxy/time.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 21 | #include <haproxy/tools.h> |
Willy Tarreau | a26be37 | 2021-10-06 16:26:33 +0200 | [diff] [blame^] | 22 | #include <haproxy/xxhash.h> |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 23 | |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 24 | #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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 32 | |
| 33 | /* bit field of profiling options. Beware, may be modified at runtime! */ |
Willy Tarreau | ef7380f | 2021-05-05 16:28:31 +0200 | [diff] [blame] | 34 | unsigned int profiling __read_mostly = HA_PROF_TASKS_AOFF; |
| 35 | unsigned long task_profiling_mask __read_mostly = 0; |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 36 | |
| 37 | /* One struct per thread containing all collected measurements */ |
| 38 | struct activity activity[MAX_THREADS] __attribute__((aligned(64))) = { }; |
| 39 | |
Willy Tarreau | 3fb6a7b | 2021-01-28 19:19:26 +0100 | [diff] [blame] | 40 | /* One struct per function pointer hash entry (256 values, 0=collision) */ |
| 41 | struct sched_activity sched_activity[256] __attribute__((aligned(64))) = { }; |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 42 | |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 43 | |
Willy Tarreau | e15615c | 2021-08-28 12:04:25 +0200 | [diff] [blame] | 44 | #ifdef USE_MEMORY_PROFILING |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 45 | /* 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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 49 | enum 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 | |
| 58 | static const char *const memprof_methods[MEMPROF_METH_METHODS] = { |
| 59 | "unknown", "malloc", "calloc", "realloc", "free", |
| 60 | }; |
| 61 | |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 62 | /* 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 | */ |
| 70 | struct memprof_stats { |
| 71 | const void *caller; |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 72 | enum memprof_method method; |
| 73 | /* 4-7 bytes hole here */ |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 74 | 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 */ |
| 81 | struct memprof_stats memprof_stats[MEMPROF_HASH_BUCKETS + 1] = { }; |
| 82 | |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 83 | /* used to detect recursive calls */ |
| 84 | static 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 | */ |
| 89 | static 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 | */ |
| 104 | static void *memprof_malloc_initial_handler(size_t size); |
| 105 | static void *memprof_calloc_initial_handler(size_t nmemb, size_t size); |
| 106 | static void *memprof_realloc_initial_handler(void *ptr, size_t size); |
| 107 | static 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 | */ |
| 112 | static void *(*memprof_malloc_handler)(size_t size) = memprof_malloc_initial_handler; |
| 113 | static void *(*memprof_calloc_handler)(size_t nmemb, size_t size) = memprof_calloc_initial_handler; |
| 114 | static void *(*memprof_realloc_handler)(void *ptr, size_t size) = memprof_realloc_initial_handler; |
| 115 | static 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 | */ |
| 120 | static __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 Shipitsin | 3df5989 | 2021-05-10 12:50:00 +0500 | [diff] [blame] | 132 | * alternate approach consists in calling aligned_alloc() from these places |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 133 | * but that would mean not being able to intercept it later if considered |
| 134 | * useful to do so. |
| 135 | */ |
| 136 | static 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 | */ |
| 161 | static 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 | |
| 172 | static 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 | |
| 182 | static 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 | |
| 193 | static 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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 204 | 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] | 205 | { |
| 206 | int retries = 16; // up to 16 consecutive entries may be tested. |
Willy Tarreau | 4a75328 | 2021-05-09 23:18:50 +0200 | [diff] [blame] | 207 | const void *old; |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 208 | 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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 219 | HA_ATOMIC_CAS(&memprof_stats[bin].caller, &old, ra)) { |
| 220 | memprof_stats[bin].method = meth; |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 221 | break; |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 222 | } |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 223 | } |
| 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 | */ |
| 235 | void *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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 246 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_MALLOC); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 247 | _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 | */ |
| 260 | void *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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 271 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_CALLOC); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 272 | _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 | */ |
| 287 | void *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 Tarreau | 2639e2e | 2021-05-07 08:01:35 +0200 | [diff] [blame] | 298 | size = malloc_usable_size(ret); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 299 | |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 300 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_REALLOC); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 301 | if (size > size_before) { |
| 302 | _HA_ATOMIC_ADD(&bin->alloc_calls, 1); |
Willy Tarreau | 79acefa | 2021-05-11 09:12:56 +0200 | [diff] [blame] | 303 | _HA_ATOMIC_ADD(&bin->alloc_tot, size - size_before); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 304 | } else if (size < size_before) { |
| 305 | _HA_ATOMIC_ADD(&bin->free_calls, 1); |
Willy Tarreau | 79acefa | 2021-05-11 09:12:56 +0200 | [diff] [blame] | 306 | _HA_ATOMIC_ADD(&bin->free_tot, size_before - size); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 307 | } |
| 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 | */ |
| 322 | void 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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 335 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_FREE); |
Willy Tarreau | f93c7be | 2021-05-05 17:07:09 +0200 | [diff] [blame] | 336 | _HA_ATOMIC_ADD(&bin->free_calls, 1); |
| 337 | _HA_ATOMIC_ADD(&bin->free_tot, size_before); |
| 338 | } |
| 339 | |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 340 | #endif // USE_MEMORY_PROFILING |
| 341 | |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 342 | /* Updates the current thread's statistics about stolen CPU time. The unit for |
| 343 | * <stolen> is half-milliseconds. |
| 344 | */ |
| 345 | void 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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 351 | |
Willy Tarreau | e065022 | 2021-10-06 16:22:09 +0200 | [diff] [blame] | 352 | /* 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 | */ |
| 357 | void 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 Tarreau | ca3afc2 | 2021-05-05 18:33:19 +0200 | [diff] [blame] | 388 | #ifdef USE_MEMORY_PROFILING |
| 389 | /* config parser for global "profiling.memory", accepts "on" or "off" */ |
| 390 | static 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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 409 | /* config parser for global "profiling.tasks", accepts "on" or "off" */ |
| 410 | 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] | 411 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 412 | char **err) |
| 413 | { |
| 414 | if (too_many_args(1, args, err, NULL)) |
| 415 | return -1; |
| 416 | |
| 417 | if (strcmp(args[1], "on") == 0) |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 418 | profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_ON; |
| 419 | else if (strcmp(args[1], "auto") == 0) |
Willy Tarreau | aa622b8 | 2021-01-28 21:44:22 +0100 | [diff] [blame] | 420 | profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_AOFF; |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 421 | else if (strcmp(args[1], "off") == 0) |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 422 | profiling = (profiling & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_OFF; |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 423 | else { |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 424 | 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] | 425 | return -1; |
| 426 | } |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | /* parse a "set profiling" command. It always returns 1. */ |
| 431 | static int cli_parse_set_profiling(char **args, char *payload, struct appctx *appctx, void *private) |
| 432 | { |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 433 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 434 | return 1; |
| 435 | |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 436 | if (strcmp(args[2], "memory") == 0) { |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 437 | #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 Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 464 | return cli_err(appctx, "Memory profiling not compiled in.\n"); |
Willy Tarreau | db87fc7 | 2021-05-05 16:50:40 +0200 | [diff] [blame] | 465 | #endif |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 466 | } |
| 467 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 468 | if (strcmp(args[2], "tasks") != 0) |
Ilya Shipitsin | 3df5989 | 2021-05-10 12:50:00 +0500 | [diff] [blame] | 469 | return cli_err(appctx, "Expects either 'tasks' or 'memory'.\n"); |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 470 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 471 | if (strcmp(args[3], "on") == 0) { |
| 472 | unsigned int old = profiling; |
Willy Tarreau | cfa7101 | 2021-01-29 11:56:21 +0100 | [diff] [blame] | 473 | int i; |
| 474 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 475 | while (!_HA_ATOMIC_CAS(&profiling, &old, (old & ~HA_PROF_TASKS_MASK) | HA_PROF_TASKS_ON)) |
| 476 | ; |
Willy Tarreau | cfa7101 | 2021-01-29 11:56:21 +0100 | [diff] [blame] | 477 | /* 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 Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 484 | } |
| 485 | else if (strcmp(args[3], "auto") == 0) { |
| 486 | unsigned int old = profiling; |
Willy Tarreau | aa622b8 | 2021-01-28 21:44:22 +0100 | [diff] [blame] | 487 | 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 Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 495 | } |
| 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 Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 501 | else |
| 502 | return cli_err(appctx, "Expects 'on', 'auto', or 'off'.\n"); |
| 503 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 504 | return 1; |
| 505 | } |
| 506 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 507 | static int cmp_sched_activity_calls(const void *a, const void *b) |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 508 | { |
| 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 Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 520 | static 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 Tarreau | e15615c | 2021-08-28 12:04:25 +0200 | [diff] [blame] | 533 | #ifdef USE_MEMORY_PROFILING |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 534 | /* used by qsort below */ |
| 535 | static 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 Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 547 | |
| 548 | static 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 Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 560 | #endif // USE_MEMORY_PROFILING |
| 561 | |
Willy Tarreau | a26be37 | 2021-10-06 16:26:33 +0200 | [diff] [blame^] | 562 | /* 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 | */ |
| 567 | struct 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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 588 | /* 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 Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 590 | * 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 Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 599 | * ctx.cli.o1: |
| 600 | * 0: sort by usage |
| 601 | * 1: sort by address |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 602 | */ |
| 603 | static int cli_io_handler_show_profiling(struct appctx *appctx) |
| 604 | { |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 605 | struct sched_activity tmp_activity[256] __attribute__((aligned(64))); |
Willy Tarreau | e15615c | 2021-08-28 12:04:25 +0200 | [diff] [blame] | 606 | #ifdef USE_MEMORY_PROFILING |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 607 | struct memprof_stats tmp_memstats[MEMPROF_HASH_BUCKETS + 1]; |
Willy Tarreau | f5fb858 | 2021-05-11 14:06:24 +0200 | [diff] [blame] | 608 | unsigned long long tot_alloc_calls, tot_free_calls; |
| 609 | unsigned long long tot_alloc_bytes, tot_free_bytes; |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 610 | #endif |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 611 | struct stream_interface *si = appctx->owner; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 612 | struct buffer *name_buffer = get_trash_chunk(); |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 613 | const char *str; |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 614 | int max_lines; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 615 | int i, max; |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 616 | |
| 617 | if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 618 | return 1; |
| 619 | |
| 620 | chunk_reset(&trash); |
| 621 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 622 | switch (profiling & HA_PROF_TASKS_MASK) { |
Willy Tarreau | aa622b8 | 2021-01-28 21:44:22 +0100 | [diff] [blame] | 623 | case HA_PROF_TASKS_AOFF: str="auto-off"; break; |
| 624 | case HA_PROF_TASKS_AON: str="auto-on"; break; |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 625 | case HA_PROF_TASKS_ON: str="on"; break; |
| 626 | default: str="off"; break; |
| 627 | } |
| 628 | |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 629 | if ((appctx->ctx.cli.i0 & 3) != 0) |
| 630 | goto skip_status; |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 631 | |
Willy Tarreau | d2d3348 | 2019-04-25 17:09:07 +0200 | [diff] [blame] | 632 | chunk_printf(&trash, |
Willy Tarreau | 00dd44f | 2021-05-05 16:44:23 +0200 | [diff] [blame] | 633 | "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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 636 | |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 637 | 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 Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 650 | |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 651 | memcpy(tmp_activity, sched_activity, sizeof(tmp_activity)); |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 652 | 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 Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 656 | |
| 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 Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 667 | 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 Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 686 | |
| 687 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 688 | /* failed, try again */ |
| 689 | si_rx_room_blk(si); |
| 690 | return 0; |
| 691 | } |
Willy Tarreau | 1bd67e9 | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 692 | } |
| 693 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 694 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 695 | /* failed, try again */ |
| 696 | si_rx_room_blk(si); |
| 697 | return 0; |
| 698 | } |
Willy Tarreau | 637d85a | 2021-05-05 17:33:27 +0200 | [diff] [blame] | 699 | |
| 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 Tarreau | e15615c | 2021-08-28 12:04:25 +0200 | [diff] [blame] | 706 | #ifdef USE_MEMORY_PROFILING |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 707 | if ((appctx->ctx.cli.i0 & 3) != 2) |
| 708 | goto skip_mem; |
| 709 | |
| 710 | memcpy(tmp_memstats, memprof_stats, sizeof(tmp_memstats)); |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 711 | 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 Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 715 | |
| 716 | if (!appctx->ctx.cli.i1) |
| 717 | chunk_appendf(&trash, |
| 718 | "Alloc/Free statistics by call place:\n" |
Willy Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 719 | " Calls | Tot Bytes | Caller and method\n" |
Willy Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 720 | "<- 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 Tarreau | 616491b | 2021-05-11 09:26:23 +0200 | [diff] [blame] | 742 | 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 Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 744 | |
| 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 Tarreau | f5fb858 | 2021-05-11 14:06:24 +0200 | [diff] [blame] | 756 | 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 Tarreau | 993d44d | 2021-05-05 18:07:02 +0200 | [diff] [blame] | 777 | 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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 784 | return 1; |
| 785 | } |
| 786 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 787 | /* 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 Tarreau | 42712cb | 2021-05-05 17:48:13 +0200 | [diff] [blame] | 792 | static int cli_parse_show_profiling(char **args, char *payload, struct appctx *appctx, void *private) |
| 793 | { |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 794 | int arg; |
| 795 | |
Willy Tarreau | 42712cb | 2021-05-05 17:48:13 +0200 | [diff] [blame] | 796 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 797 | return 1; |
| 798 | |
Willy Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 799 | 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 Tarreau | 42712cb | 2021-05-05 17:48:13 +0200 | [diff] [blame] | 820 | } |
| 821 | return 0; |
| 822 | } |
| 823 | |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 824 | /* 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 | */ |
| 828 | static 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 Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 851 | * 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 Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 855 | */ |
| 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 Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 871 | if ((int64_t)lat > 0) |
| 872 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 873 | } |
| 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 Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 887 | if ((int64_t)lat > 0) |
| 888 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 889 | } |
| 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 Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 900 | if ((int64_t)lat > 0) |
| 901 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 902 | } |
| 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 Tarreau | 75f7233 | 2021-01-29 15:04:16 +0100 | [diff] [blame] | 913 | if ((int64_t)lat > 0) |
| 914 | entry->lat_time += lat; |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 915 | } |
| 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 Tarreau | f1c8a38 | 2021-05-13 10:00:17 +0200 | [diff] [blame] | 930 | qsort(tmp_activity, 256, sizeof(tmp_activity[0]), cmp_sched_activity_calls); |
Willy Tarreau | 7eff06e | 2021-01-29 11:32:55 +0100 | [diff] [blame] | 931 | |
| 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 Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 966 | /* config keyword parsers */ |
| 967 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | ca3afc2 | 2021-05-05 18:33:19 +0200 | [diff] [blame] | 968 | #ifdef USE_MEMORY_PROFILING |
| 969 | { CFG_GLOBAL, "profiling.memory", cfg_parse_prof_memory }, |
| 970 | #endif |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 971 | { CFG_GLOBAL, "profiling.tasks", cfg_parse_prof_tasks }, |
| 972 | { 0, NULL, NULL } |
| 973 | }}; |
| 974 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 975 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 976 | |
Willy Tarreau | 75c62c2 | 2018-11-22 11:02:09 +0100 | [diff] [blame] | 977 | /* register cli keywords */ |
| 978 | static struct cli_kw_list cli_kws = {{ },{ |
Daniel Corbett | 67b3cef | 2021-05-10 14:08:40 -0400 | [diff] [blame] | 979 | { { "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] | 980 | { { "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] | 981 | { { "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] | 982 | {{},} |
| 983 | }}; |
| 984 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 985 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |