blob: 9b089aee8ec86a1e017a6398bd13e94255817baa [file] [log] [blame]
Dave Barach6a5adc32018-07-04 10:56:23 -04001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/format.h>
17#include <vppinfra/dlmalloc.h>
18#include <vppinfra/os.h>
19#include <vppinfra/lock.h>
20#include <vppinfra/hash.h>
21#include <vppinfra/elf_clib.h>
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +020022#include <vppinfra/sanitizer.h>
Dave Baracha690fdb2020-01-21 12:34:55 -050023#include <numaif.h>
Dave Barach6a5adc32018-07-04 10:56:23 -040024
25void *clib_per_cpu_mheaps[CLIB_MAX_MHEAPS];
Dave Baracha690fdb2020-01-21 12:34:55 -050026void *clib_per_numa_mheaps[CLIB_MAX_NUMAS];
Dave Barach6a5adc32018-07-04 10:56:23 -040027
28typedef struct
29{
30 /* Address of callers: outer first, inner last. */
31 uword callers[12];
32
33 /* Count of allocations with this traceback. */
Dave Barach6a5adc32018-07-04 10:56:23 -040034 u32 n_allocations;
Dave Barach6a5adc32018-07-04 10:56:23 -040035
36 /* Count of bytes allocated with this traceback. */
37 u32 n_bytes;
38
39 /* Offset of this item */
40 uword offset;
41} mheap_trace_t;
42
43typedef struct
44{
45 clib_spinlock_t lock;
46 uword enabled;
47
48 mheap_trace_t *traces;
49
50 /* Indices of free traces. */
51 u32 *trace_free_list;
52
53 /* Hash table mapping callers to trace index. */
54 uword *trace_by_callers;
55
56 /* Hash table mapping mheap offset to trace index. */
57 uword *trace_index_by_offset;
Dave Barachd67a4282019-06-15 12:46:13 -040058
59 /* So we can easily shut off current segment trace, if any */
60 void *current_traced_mheap;
61
Dave Barach6a5adc32018-07-04 10:56:23 -040062} mheap_trace_main_t;
63
64mheap_trace_main_t mheap_trace_main;
65
66void
67mheap_get_trace (uword offset, uword size)
68{
69 mheap_trace_main_t *tm = &mheap_trace_main;
70 mheap_trace_t *t;
71 uword i, n_callers, trace_index, *p;
72 mheap_trace_t trace;
73 uword save_enabled;
74
Dave Barachd67a4282019-06-15 12:46:13 -040075 if (tm->enabled == 0 || (clib_mem_get_heap () != tm->current_traced_mheap))
Dave Barach6a5adc32018-07-04 10:56:23 -040076 return;
77
78 /* Spurious Coverity warnings be gone. */
Dave Barachb7b92992018-10-17 10:38:51 -040079 clib_memset (&trace, 0, sizeof (trace));
Dave Barach6a5adc32018-07-04 10:56:23 -040080
81 /* Skip our frame and mspace_get_aligned's frame */
82 n_callers = clib_backtrace (trace.callers, ARRAY_LEN (trace.callers), 2);
83 if (n_callers == 0)
84 return;
85
Dave Barach6a5adc32018-07-04 10:56:23 -040086 clib_spinlock_lock (&tm->lock);
87
88 /* Turn off tracing to avoid embarrassment... */
89 save_enabled = tm->enabled;
90 tm->enabled = 0;
91
92 if (!tm->trace_by_callers)
93 tm->trace_by_callers =
94 hash_create_shmem (0, sizeof (trace.callers), sizeof (uword));
95
96 p = hash_get_mem (tm->trace_by_callers, &trace.callers);
97 if (p)
98 {
99 trace_index = p[0];
100 t = tm->traces + trace_index;
101 }
102 else
103 {
104 i = vec_len (tm->trace_free_list);
105 if (i > 0)
106 {
107 trace_index = tm->trace_free_list[i - 1];
108 _vec_len (tm->trace_free_list) = i - 1;
109 }
110 else
111 {
112 mheap_trace_t *old_start = tm->traces;
113 mheap_trace_t *old_end = vec_end (tm->traces);
114
115 vec_add2 (tm->traces, t, 1);
116
117 if (tm->traces != old_start)
118 {
119 hash_pair_t *p;
120 mheap_trace_t *q;
121 /* *INDENT-OFF* */
122 hash_foreach_pair (p, tm->trace_by_callers,
123 ({
124 q = uword_to_pointer (p->key, mheap_trace_t *);
125 ASSERT (q >= old_start && q < old_end);
126 p->key = pointer_to_uword (tm->traces + (q - old_start));
127 }));
128 /* *INDENT-ON* */
129 }
130 trace_index = t - tm->traces;
131 }
132
133 t = tm->traces + trace_index;
134 t[0] = trace;
135 t->n_allocations = 0;
136 t->n_bytes = 0;
137 hash_set_mem (tm->trace_by_callers, t->callers, trace_index);
138 }
139
140 t->n_allocations += 1;
141 t->n_bytes += size;
142 t->offset = offset; /* keep a sample to autopsy */
143 hash_set (tm->trace_index_by_offset, offset, t - tm->traces);
144 tm->enabled = save_enabled;
145 clib_spinlock_unlock (&tm->lock);
146}
147
148void
149mheap_put_trace (uword offset, uword size)
150{
151 mheap_trace_t *t;
152 uword trace_index, *p;
153 mheap_trace_main_t *tm = &mheap_trace_main;
154 uword save_enabled;
155
156 if (tm->enabled == 0)
157 return;
158
159 clib_spinlock_lock (&tm->lock);
160
161 /* Turn off tracing for a moment */
162 save_enabled = tm->enabled;
163 tm->enabled = 0;
164
165 p = hash_get (tm->trace_index_by_offset, offset);
166 if (!p)
167 {
168 tm->enabled = save_enabled;
169 clib_spinlock_unlock (&tm->lock);
170 return;
171 }
172
173 trace_index = p[0];
174 hash_unset (tm->trace_index_by_offset, offset);
175 ASSERT (trace_index < vec_len (tm->traces));
176
177 t = tm->traces + trace_index;
178 ASSERT (t->n_allocations > 0);
179 ASSERT (t->n_bytes >= size);
180 t->n_allocations -= 1;
181 t->n_bytes -= size;
182 if (t->n_allocations == 0)
183 {
184 hash_unset_mem (tm->trace_by_callers, t->callers);
185 vec_add1 (tm->trace_free_list, trace_index);
Dave Barachb7b92992018-10-17 10:38:51 -0400186 clib_memset (t, 0, sizeof (t[0]));
Dave Barach6a5adc32018-07-04 10:56:23 -0400187 }
188 tm->enabled = save_enabled;
189 clib_spinlock_unlock (&tm->lock);
190}
191
192always_inline void
193mheap_trace_main_free (mheap_trace_main_t * tm)
194{
195 vec_free (tm->traces);
196 vec_free (tm->trace_free_list);
197 hash_free (tm->trace_by_callers);
198 hash_free (tm->trace_index_by_offset);
199}
200
201/* Initialize CLIB heap based on memory/size given by user.
202 Set memory to 0 and CLIB will try to allocate its own heap. */
Dave Baracha690fdb2020-01-21 12:34:55 -0500203static void *
204clib_mem_init_internal (void *memory, uword memory_size, int set_heap)
Dave Barach6a5adc32018-07-04 10:56:23 -0400205{
206 u8 *heap;
207
208 if (memory)
209 {
210 heap = create_mspace_with_base (memory, memory_size, 1 /* locked */ );
211 mspace_disable_expand (heap);
212 }
213 else
214 heap = create_mspace (memory_size, 1 /* locked */ );
215
BenoƮt Ganneb2f09142019-12-16 15:37:28 +0100216 CLIB_MEM_POISON (mspace_least_addr (heap), mspace_footprint (heap));
217
Dave Baracha690fdb2020-01-21 12:34:55 -0500218 if (set_heap)
219 clib_mem_set_heap (heap);
Dave Barach6a5adc32018-07-04 10:56:23 -0400220
221 if (mheap_trace_main.lock == 0)
222 clib_spinlock_init (&mheap_trace_main.lock);
223
224 return heap;
225}
226
227void *
Dave Baracha690fdb2020-01-21 12:34:55 -0500228clib_mem_init (void *memory, uword memory_size)
229{
230 return clib_mem_init_internal (memory, memory_size,
231 1 /* do clib_mem_set_heap */ );
232}
233
234void *
Dave Barach6a5adc32018-07-04 10:56:23 -0400235clib_mem_init_thread_safe (void *memory, uword memory_size)
236{
Dave Baracha690fdb2020-01-21 12:34:55 -0500237 return clib_mem_init_internal (memory, memory_size,
238 1 /* do clib_mem_set_heap */ );
239}
240
241void *
Florin Coras4c959952020-02-09 18:09:31 +0000242clib_mem_init_thread_safe_numa (void *memory, uword memory_size, u8 numa)
Dave Baracha690fdb2020-01-21 12:34:55 -0500243{
Florin Coras4c959952020-02-09 18:09:31 +0000244 clib_mem_vm_alloc_t alloc = { 0 };
245 clib_error_t *err;
Dave Baracha690fdb2020-01-21 12:34:55 -0500246 void *heap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500247
Florin Coras4c959952020-02-09 18:09:31 +0000248 alloc.size = memory_size;
249 alloc.flags = CLIB_MEM_VM_F_NUMA_FORCE;
250 alloc.numa_node = numa;
251 if ((err = clib_mem_vm_ext_alloc (&alloc)))
252 {
253 clib_error_report (err);
254 return 0;
255 }
256
257 heap = clib_mem_init_internal (memory, memory_size,
258 0 /* do NOT clib_mem_set_heap */ );
Dave Baracha690fdb2020-01-21 12:34:55 -0500259
260 ASSERT (heap);
261
Dave Baracha690fdb2020-01-21 12:34:55 -0500262 return heap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400263}
264
Dave Barach6a5adc32018-07-04 10:56:23 -0400265u8 *
266format_clib_mem_usage (u8 * s, va_list * va)
267{
268 int verbose = va_arg (*va, int);
269 return format (s, "$$$$ heap at %llx verbose %d", clib_mem_get_heap (),
270 verbose);
271}
272
273/*
274 * Magic decoder ring for mallinfo stats (ala dlmalloc):
275 *
276 * size_t arena; / * Non-mmapped space allocated (bytes) * /
277 * size_t ordblks; / * Number of free chunks * /
278 * size_t smblks; / * Number of free fastbin blocks * /
279 * size_t hblks; / * Number of mmapped regions * /
280 * size_t hblkhd; / * Space allocated in mmapped regions (bytes) * /
281 * size_t usmblks; / * Maximum total allocated space (bytes) * /
282 * size_t fsmblks; / * Space in freed fastbin blocks (bytes) * /
283 * size_t uordblks; / * Total allocated space (bytes) * /
284 * size_t fordblks; / * Total free space (bytes) * /
285 * size_t keepcost; / * Top-most, releasable space (bytes) * /
286 *
287 */
288
289u8 *
290format_msize (u8 * s, va_list * va)
291{
292 uword a = va_arg (*va, uword);
293
294 if (a >= 1ULL << 30)
295 s = format (s, "%.2fG", (((f64) a) / ((f64) (1ULL << 30))));
296 else if (a >= 1ULL << 20)
297 s = format (s, "%.2fM", (((f64) a) / ((f64) (1ULL << 20))));
298 else if (a >= 1ULL << 10)
299 s = format (s, "%.2fK", (((f64) a) / ((f64) (1ULL << 10))));
300 else
301 s = format (s, "%lld", a);
302 return s;
303}
304
305static int
306mheap_trace_sort (const void *_t1, const void *_t2)
307{
308 const mheap_trace_t *t1 = _t1;
309 const mheap_trace_t *t2 = _t2;
310 word cmp;
311
312 cmp = (word) t2->n_bytes - (word) t1->n_bytes;
313 if (!cmp)
314 cmp = (word) t2->n_allocations - (word) t1->n_allocations;
315 return cmp;
316}
317
318u8 *
319format_mheap_trace (u8 * s, va_list * va)
320{
321 mheap_trace_main_t *tm = va_arg (*va, mheap_trace_main_t *);
322 int verbose = va_arg (*va, int);
323 int have_traces = 0;
324 int i;
325
326 clib_spinlock_lock (&tm->lock);
Dave Barachd67a4282019-06-15 12:46:13 -0400327 if (vec_len (tm->traces) > 0 &&
328 clib_mem_get_heap () == tm->current_traced_mheap)
Dave Barach6a5adc32018-07-04 10:56:23 -0400329 {
330 have_traces = 1;
331
332 /* Make a copy of traces since we'll be sorting them. */
333 mheap_trace_t *t, *traces_copy;
334 u32 indent, total_objects_traced;
335
336 traces_copy = vec_dup (tm->traces);
337
338 qsort (traces_copy, vec_len (traces_copy), sizeof (traces_copy[0]),
339 mheap_trace_sort);
340
341 total_objects_traced = 0;
342 s = format (s, "\n");
343 vec_foreach (t, traces_copy)
344 {
345 /* Skip over free elements. */
346 if (t->n_allocations == 0)
347 continue;
348
349 total_objects_traced += t->n_allocations;
350
351 /* When not verbose only report allocations of more than 1k. */
352 if (!verbose && t->n_bytes < 1024)
353 continue;
354
355 if (t == traces_copy)
356 s = format (s, "%=9s%=9s %=10s Traceback\n", "Bytes", "Count",
357 "Sample");
358 s = format (s, "%9d%9d %p", t->n_bytes, t->n_allocations, t->offset);
359 indent = format_get_indent (s);
360 for (i = 0; i < ARRAY_LEN (t->callers) && t->callers[i]; i++)
361 {
362 if (i > 0)
363 s = format (s, "%U", format_white_space, indent);
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200364#if defined(CLIB_UNIX) && !defined(__APPLE__)
Dave Barach6a5adc32018-07-04 10:56:23 -0400365 /* $$$$ does this actually work? */
366 s =
367 format (s, " %U\n", format_clib_elf_symbol_with_address,
368 t->callers[i]);
369#else
370 s = format (s, " %p\n", t->callers[i]);
371#endif
372 }
373 }
374
375 s = format (s, "%d total traced objects\n", total_objects_traced);
376
377 vec_free (traces_copy);
378 }
379 clib_spinlock_unlock (&tm->lock);
380 if (have_traces == 0)
381 s = format (s, "no traced allocations\n");
382
383 return s;
384}
385
386
387u8 *
388format_mheap (u8 * s, va_list * va)
389{
390 void *heap = va_arg (*va, u8 *);
391 int verbose = va_arg (*va, int);
Dave Barachaf7dd5b2018-08-23 17:08:44 -0400392 struct dlmallinfo mi;
Dave Barach6a5adc32018-07-04 10:56:23 -0400393 mheap_trace_main_t *tm = &mheap_trace_main;
394
395 mi = mspace_mallinfo (heap);
396
397 s = format (s, "total: %U, used: %U, free: %U, trimmable: %U",
398 format_msize, mi.arena,
399 format_msize, mi.uordblks,
400 format_msize, mi.fordblks, format_msize, mi.keepcost);
401 if (verbose > 0)
402 {
403 s = format (s, "\n free chunks %llu free fastbin blks %llu",
404 mi.ordblks, mi.smblks);
405 s =
406 format (s, "\n max total allocated %U", format_msize, mi.usmblks);
407 }
408
Dave Barachd67a4282019-06-15 12:46:13 -0400409 if (mspace_is_traced (heap))
410 s = format (s, "\n%U", format_mheap_trace, tm, verbose);
Dave Barach6a5adc32018-07-04 10:56:23 -0400411 return s;
412}
413
414void
415clib_mem_usage (clib_mem_usage_t * u)
416{
417 clib_warning ("unimp");
418}
419
Ole Troan92e30822019-06-16 12:33:51 +0200420void
421mheap_usage (void *heap, clib_mem_usage_t * usage)
422{
423 struct dlmallinfo mi = mspace_mallinfo (heap);
424
425 /* TODO: Fill in some more values */
426 usage->object_count = 0;
427 usage->bytes_total = mi.arena;
428 usage->bytes_overhead = 0;
429 usage->bytes_max = 0;
430 usage->bytes_used = mi.uordblks;
431 usage->bytes_free = mi.fordblks;
432 usage->bytes_free_reclaimed = 0;
433}
434
Dave Barach6a5adc32018-07-04 10:56:23 -0400435/* Call serial number for debugger breakpoints. */
436uword clib_mem_validate_serial = 0;
437
438void
439clib_mem_validate (void)
440{
441 clib_warning ("unimp");
442}
443
444void
445mheap_trace (void *v, int enable)
446{
447 (void) mspace_enable_disable_trace (v, enable);
448
449 if (enable == 0)
450 mheap_trace_main_free (&mheap_trace_main);
451}
452
453void
454clib_mem_trace (int enable)
455{
456 mheap_trace_main_t *tm = &mheap_trace_main;
Dave Barachd67a4282019-06-15 12:46:13 -0400457 void *current_heap = clib_mem_get_heap ();
Dave Barach6a5adc32018-07-04 10:56:23 -0400458
459 tm->enabled = enable;
Dave Barachd67a4282019-06-15 12:46:13 -0400460 mheap_trace (current_heap, enable);
461
462 if (enable)
463 tm->current_traced_mheap = current_heap;
464 else
465 tm->current_traced_mheap = 0;
466}
467
468int
469clib_mem_is_traced (void)
470{
471 return mspace_is_traced (clib_mem_get_heap ());
Dave Barach6a5adc32018-07-04 10:56:23 -0400472}
473
474uword
475clib_mem_trace_enable_disable (uword enable)
476{
477 uword rv;
478 mheap_trace_main_t *tm = &mheap_trace_main;
479
480 rv = tm->enabled;
481 tm->enabled = enable;
482 return rv;
483}
484
485/*
486 * These API functions seem like layering violations, but
487 * by introducing them we greatly reduce the number
488 * of code changes required to use dlmalloc spaces
489 */
490void *
491mheap_alloc_with_lock (void *memory, uword size, int locked)
492{
493 void *rv;
494 if (memory == 0)
495 return create_mspace (size, locked);
496 else
497 {
498 rv = create_mspace_with_base (memory, size, locked);
499 if (rv)
500 mspace_disable_expand (rv);
501 return rv;
502 }
503}
504
505/*
506 * fd.io coding-style-patch-verification: ON
507 *
508 * Local Variables:
509 * eval: (c-set-style "gnu")
510 * End:
511 */