blob: 1b0dbb245005e3eb8dafd60023c86872511eabba [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 Barach6a5adc32018-07-04 10:56:23 -040023
24void *clib_per_cpu_mheaps[CLIB_MAX_MHEAPS];
Dave Baracha690fdb2020-01-21 12:34:55 -050025void *clib_per_numa_mheaps[CLIB_MAX_NUMAS];
Dave Barach6a5adc32018-07-04 10:56:23 -040026
27typedef struct
28{
29 /* Address of callers: outer first, inner last. */
30 uword callers[12];
31
32 /* Count of allocations with this traceback. */
Dave Barach6a5adc32018-07-04 10:56:23 -040033 u32 n_allocations;
Dave Barach6a5adc32018-07-04 10:56:23 -040034
35 /* Count of bytes allocated with this traceback. */
36 u32 n_bytes;
37
38 /* Offset of this item */
39 uword offset;
40} mheap_trace_t;
41
42typedef struct
43{
44 clib_spinlock_t lock;
45 uword enabled;
46
47 mheap_trace_t *traces;
48
49 /* Indices of free traces. */
50 u32 *trace_free_list;
51
52 /* Hash table mapping callers to trace index. */
53 uword *trace_by_callers;
54
55 /* Hash table mapping mheap offset to trace index. */
56 uword *trace_index_by_offset;
Dave Barachd67a4282019-06-15 12:46:13 -040057
58 /* So we can easily shut off current segment trace, if any */
59 void *current_traced_mheap;
60
Dave Barach6a5adc32018-07-04 10:56:23 -040061} mheap_trace_main_t;
62
63mheap_trace_main_t mheap_trace_main;
64
65void
66mheap_get_trace (uword offset, uword size)
67{
68 mheap_trace_main_t *tm = &mheap_trace_main;
69 mheap_trace_t *t;
70 uword i, n_callers, trace_index, *p;
71 mheap_trace_t trace;
72 uword save_enabled;
73
Dave Barachd67a4282019-06-15 12:46:13 -040074 if (tm->enabled == 0 || (clib_mem_get_heap () != tm->current_traced_mheap))
Dave Barach6a5adc32018-07-04 10:56:23 -040075 return;
76
77 /* Spurious Coverity warnings be gone. */
Dave Barachb7b92992018-10-17 10:38:51 -040078 clib_memset (&trace, 0, sizeof (trace));
Dave Barach6a5adc32018-07-04 10:56:23 -040079
80 /* Skip our frame and mspace_get_aligned's frame */
81 n_callers = clib_backtrace (trace.callers, ARRAY_LEN (trace.callers), 2);
82 if (n_callers == 0)
83 return;
84
Dave Barach6a5adc32018-07-04 10:56:23 -040085 clib_spinlock_lock (&tm->lock);
86
87 /* Turn off tracing to avoid embarrassment... */
88 save_enabled = tm->enabled;
89 tm->enabled = 0;
90
91 if (!tm->trace_by_callers)
92 tm->trace_by_callers =
93 hash_create_shmem (0, sizeof (trace.callers), sizeof (uword));
94
95 p = hash_get_mem (tm->trace_by_callers, &trace.callers);
96 if (p)
97 {
98 trace_index = p[0];
99 t = tm->traces + trace_index;
100 }
101 else
102 {
103 i = vec_len (tm->trace_free_list);
104 if (i > 0)
105 {
106 trace_index = tm->trace_free_list[i - 1];
107 _vec_len (tm->trace_free_list) = i - 1;
108 }
109 else
110 {
111 mheap_trace_t *old_start = tm->traces;
112 mheap_trace_t *old_end = vec_end (tm->traces);
113
114 vec_add2 (tm->traces, t, 1);
115
116 if (tm->traces != old_start)
117 {
118 hash_pair_t *p;
119 mheap_trace_t *q;
120 /* *INDENT-OFF* */
121 hash_foreach_pair (p, tm->trace_by_callers,
122 ({
123 q = uword_to_pointer (p->key, mheap_trace_t *);
124 ASSERT (q >= old_start && q < old_end);
125 p->key = pointer_to_uword (tm->traces + (q - old_start));
126 }));
127 /* *INDENT-ON* */
128 }
129 trace_index = t - tm->traces;
130 }
131
132 t = tm->traces + trace_index;
133 t[0] = trace;
134 t->n_allocations = 0;
135 t->n_bytes = 0;
136 hash_set_mem (tm->trace_by_callers, t->callers, trace_index);
137 }
138
139 t->n_allocations += 1;
140 t->n_bytes += size;
141 t->offset = offset; /* keep a sample to autopsy */
142 hash_set (tm->trace_index_by_offset, offset, t - tm->traces);
143 tm->enabled = save_enabled;
144 clib_spinlock_unlock (&tm->lock);
145}
146
147void
148mheap_put_trace (uword offset, uword size)
149{
150 mheap_trace_t *t;
151 uword trace_index, *p;
152 mheap_trace_main_t *tm = &mheap_trace_main;
153 uword save_enabled;
154
155 if (tm->enabled == 0)
156 return;
157
158 clib_spinlock_lock (&tm->lock);
159
160 /* Turn off tracing for a moment */
161 save_enabled = tm->enabled;
162 tm->enabled = 0;
163
164 p = hash_get (tm->trace_index_by_offset, offset);
165 if (!p)
166 {
167 tm->enabled = save_enabled;
168 clib_spinlock_unlock (&tm->lock);
169 return;
170 }
171
172 trace_index = p[0];
173 hash_unset (tm->trace_index_by_offset, offset);
174 ASSERT (trace_index < vec_len (tm->traces));
175
176 t = tm->traces + trace_index;
177 ASSERT (t->n_allocations > 0);
178 ASSERT (t->n_bytes >= size);
179 t->n_allocations -= 1;
180 t->n_bytes -= size;
181 if (t->n_allocations == 0)
182 {
183 hash_unset_mem (tm->trace_by_callers, t->callers);
184 vec_add1 (tm->trace_free_list, trace_index);
Dave Barachb7b92992018-10-17 10:38:51 -0400185 clib_memset (t, 0, sizeof (t[0]));
Dave Barach6a5adc32018-07-04 10:56:23 -0400186 }
187 tm->enabled = save_enabled;
188 clib_spinlock_unlock (&tm->lock);
189}
190
191always_inline void
192mheap_trace_main_free (mheap_trace_main_t * tm)
193{
194 vec_free (tm->traces);
195 vec_free (tm->trace_free_list);
196 hash_free (tm->trace_by_callers);
197 hash_free (tm->trace_index_by_offset);
198}
199
200/* Initialize CLIB heap based on memory/size given by user.
201 Set memory to 0 and CLIB will try to allocate its own heap. */
Dave Baracha690fdb2020-01-21 12:34:55 -0500202static void *
203clib_mem_init_internal (void *memory, uword memory_size, int set_heap)
Dave Barach6a5adc32018-07-04 10:56:23 -0400204{
205 u8 *heap;
206
207 if (memory)
208 {
209 heap = create_mspace_with_base (memory, memory_size, 1 /* locked */ );
210 mspace_disable_expand (heap);
211 }
212 else
213 heap = create_mspace (memory_size, 1 /* locked */ );
214
BenoƮt Ganneb2f09142019-12-16 15:37:28 +0100215 CLIB_MEM_POISON (mspace_least_addr (heap), mspace_footprint (heap));
216
Dave Baracha690fdb2020-01-21 12:34:55 -0500217 if (set_heap)
218 clib_mem_set_heap (heap);
Dave Barach6a5adc32018-07-04 10:56:23 -0400219
220 if (mheap_trace_main.lock == 0)
221 clib_spinlock_init (&mheap_trace_main.lock);
222
223 return heap;
224}
225
226void *
Dave Baracha690fdb2020-01-21 12:34:55 -0500227clib_mem_init (void *memory, uword memory_size)
228{
229 return clib_mem_init_internal (memory, memory_size,
230 1 /* do clib_mem_set_heap */ );
231}
232
233void *
Dave Barach6a5adc32018-07-04 10:56:23 -0400234clib_mem_init_thread_safe (void *memory, uword memory_size)
235{
Dave Baracha690fdb2020-01-21 12:34:55 -0500236 return clib_mem_init_internal (memory, memory_size,
237 1 /* do clib_mem_set_heap */ );
238}
239
Dave Barach2b793412020-08-28 10:39:00 -0400240void
241clib_mem_destroy_mspace (void *mspace)
242{
243 mheap_trace_main_t *tm = &mheap_trace_main;
244
245 if (tm->enabled && mspace == tm->current_traced_mheap)
246 tm->enabled = 0;
247
248 destroy_mspace (mspace);
249}
250
251void
252clib_mem_destroy (void)
253{
254 clib_mem_destroy_mspace (clib_mem_get_heap ());
255}
256
Dave Baracha690fdb2020-01-21 12:34:55 -0500257void *
Florin Coras4c959952020-02-09 18:09:31 +0000258clib_mem_init_thread_safe_numa (void *memory, uword memory_size, u8 numa)
Dave Baracha690fdb2020-01-21 12:34:55 -0500259{
Florin Coras4c959952020-02-09 18:09:31 +0000260 clib_mem_vm_alloc_t alloc = { 0 };
261 clib_error_t *err;
Dave Baracha690fdb2020-01-21 12:34:55 -0500262 void *heap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500263
Florin Coras4c959952020-02-09 18:09:31 +0000264 alloc.size = memory_size;
265 alloc.flags = CLIB_MEM_VM_F_NUMA_FORCE;
266 alloc.numa_node = numa;
267 if ((err = clib_mem_vm_ext_alloc (&alloc)))
268 {
269 clib_error_report (err);
270 return 0;
271 }
272
273 heap = clib_mem_init_internal (memory, memory_size,
274 0 /* do NOT clib_mem_set_heap */ );
Dave Baracha690fdb2020-01-21 12:34:55 -0500275
276 ASSERT (heap);
277
Dave Baracha690fdb2020-01-21 12:34:55 -0500278 return heap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400279}
280
Dave Barach6a5adc32018-07-04 10:56:23 -0400281u8 *
282format_clib_mem_usage (u8 * s, va_list * va)
283{
284 int verbose = va_arg (*va, int);
285 return format (s, "$$$$ heap at %llx verbose %d", clib_mem_get_heap (),
286 verbose);
287}
288
289/*
290 * Magic decoder ring for mallinfo stats (ala dlmalloc):
291 *
292 * size_t arena; / * Non-mmapped space allocated (bytes) * /
293 * size_t ordblks; / * Number of free chunks * /
294 * size_t smblks; / * Number of free fastbin blocks * /
295 * size_t hblks; / * Number of mmapped regions * /
296 * size_t hblkhd; / * Space allocated in mmapped regions (bytes) * /
297 * size_t usmblks; / * Maximum total allocated space (bytes) * /
298 * size_t fsmblks; / * Space in freed fastbin blocks (bytes) * /
299 * size_t uordblks; / * Total allocated space (bytes) * /
300 * size_t fordblks; / * Total free space (bytes) * /
301 * size_t keepcost; / * Top-most, releasable space (bytes) * /
302 *
303 */
304
305u8 *
306format_msize (u8 * s, va_list * va)
307{
308 uword a = va_arg (*va, uword);
309
310 if (a >= 1ULL << 30)
311 s = format (s, "%.2fG", (((f64) a) / ((f64) (1ULL << 30))));
312 else if (a >= 1ULL << 20)
313 s = format (s, "%.2fM", (((f64) a) / ((f64) (1ULL << 20))));
314 else if (a >= 1ULL << 10)
315 s = format (s, "%.2fK", (((f64) a) / ((f64) (1ULL << 10))));
316 else
317 s = format (s, "%lld", a);
318 return s;
319}
320
321static int
322mheap_trace_sort (const void *_t1, const void *_t2)
323{
324 const mheap_trace_t *t1 = _t1;
325 const mheap_trace_t *t2 = _t2;
326 word cmp;
327
328 cmp = (word) t2->n_bytes - (word) t1->n_bytes;
329 if (!cmp)
330 cmp = (word) t2->n_allocations - (word) t1->n_allocations;
331 return cmp;
332}
333
334u8 *
335format_mheap_trace (u8 * s, va_list * va)
336{
337 mheap_trace_main_t *tm = va_arg (*va, mheap_trace_main_t *);
338 int verbose = va_arg (*va, int);
339 int have_traces = 0;
340 int i;
341
342 clib_spinlock_lock (&tm->lock);
Dave Barachd67a4282019-06-15 12:46:13 -0400343 if (vec_len (tm->traces) > 0 &&
344 clib_mem_get_heap () == tm->current_traced_mheap)
Dave Barach6a5adc32018-07-04 10:56:23 -0400345 {
346 have_traces = 1;
347
348 /* Make a copy of traces since we'll be sorting them. */
349 mheap_trace_t *t, *traces_copy;
350 u32 indent, total_objects_traced;
351
352 traces_copy = vec_dup (tm->traces);
353
354 qsort (traces_copy, vec_len (traces_copy), sizeof (traces_copy[0]),
355 mheap_trace_sort);
356
357 total_objects_traced = 0;
358 s = format (s, "\n");
359 vec_foreach (t, traces_copy)
360 {
361 /* Skip over free elements. */
362 if (t->n_allocations == 0)
363 continue;
364
365 total_objects_traced += t->n_allocations;
366
367 /* When not verbose only report allocations of more than 1k. */
368 if (!verbose && t->n_bytes < 1024)
369 continue;
370
371 if (t == traces_copy)
372 s = format (s, "%=9s%=9s %=10s Traceback\n", "Bytes", "Count",
373 "Sample");
374 s = format (s, "%9d%9d %p", t->n_bytes, t->n_allocations, t->offset);
375 indent = format_get_indent (s);
376 for (i = 0; i < ARRAY_LEN (t->callers) && t->callers[i]; i++)
377 {
378 if (i > 0)
379 s = format (s, "%U", format_white_space, indent);
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200380#if defined(CLIB_UNIX) && !defined(__APPLE__)
Dave Barach6a5adc32018-07-04 10:56:23 -0400381 /* $$$$ does this actually work? */
382 s =
383 format (s, " %U\n", format_clib_elf_symbol_with_address,
384 t->callers[i]);
385#else
386 s = format (s, " %p\n", t->callers[i]);
387#endif
388 }
389 }
390
391 s = format (s, "%d total traced objects\n", total_objects_traced);
392
393 vec_free (traces_copy);
394 }
395 clib_spinlock_unlock (&tm->lock);
396 if (have_traces == 0)
397 s = format (s, "no traced allocations\n");
398
399 return s;
400}
401
402
403u8 *
404format_mheap (u8 * s, va_list * va)
405{
406 void *heap = va_arg (*va, u8 *);
407 int verbose = va_arg (*va, int);
Dave Barachaf7dd5b2018-08-23 17:08:44 -0400408 struct dlmallinfo mi;
Dave Barach6a5adc32018-07-04 10:56:23 -0400409 mheap_trace_main_t *tm = &mheap_trace_main;
410
411 mi = mspace_mallinfo (heap);
412
413 s = format (s, "total: %U, used: %U, free: %U, trimmable: %U",
414 format_msize, mi.arena,
415 format_msize, mi.uordblks,
416 format_msize, mi.fordblks, format_msize, mi.keepcost);
417 if (verbose > 0)
418 {
419 s = format (s, "\n free chunks %llu free fastbin blks %llu",
420 mi.ordblks, mi.smblks);
421 s =
422 format (s, "\n max total allocated %U", format_msize, mi.usmblks);
423 }
424
Dave Barachd67a4282019-06-15 12:46:13 -0400425 if (mspace_is_traced (heap))
426 s = format (s, "\n%U", format_mheap_trace, tm, verbose);
Dave Barach6a5adc32018-07-04 10:56:23 -0400427 return s;
428}
429
430void
431clib_mem_usage (clib_mem_usage_t * u)
432{
433 clib_warning ("unimp");
434}
435
Ole Troan92e30822019-06-16 12:33:51 +0200436void
437mheap_usage (void *heap, clib_mem_usage_t * usage)
438{
439 struct dlmallinfo mi = mspace_mallinfo (heap);
440
441 /* TODO: Fill in some more values */
442 usage->object_count = 0;
443 usage->bytes_total = mi.arena;
444 usage->bytes_overhead = 0;
445 usage->bytes_max = 0;
446 usage->bytes_used = mi.uordblks;
447 usage->bytes_free = mi.fordblks;
448 usage->bytes_free_reclaimed = 0;
449}
450
Dave Barach6a5adc32018-07-04 10:56:23 -0400451/* Call serial number for debugger breakpoints. */
452uword clib_mem_validate_serial = 0;
453
454void
455clib_mem_validate (void)
456{
457 clib_warning ("unimp");
458}
459
460void
461mheap_trace (void *v, int enable)
462{
463 (void) mspace_enable_disable_trace (v, enable);
464
465 if (enable == 0)
466 mheap_trace_main_free (&mheap_trace_main);
467}
468
469void
470clib_mem_trace (int enable)
471{
472 mheap_trace_main_t *tm = &mheap_trace_main;
Dave Barachd67a4282019-06-15 12:46:13 -0400473 void *current_heap = clib_mem_get_heap ();
Dave Barach6a5adc32018-07-04 10:56:23 -0400474
475 tm->enabled = enable;
Dave Barachd67a4282019-06-15 12:46:13 -0400476 mheap_trace (current_heap, enable);
477
478 if (enable)
479 tm->current_traced_mheap = current_heap;
480 else
481 tm->current_traced_mheap = 0;
482}
483
484int
485clib_mem_is_traced (void)
486{
487 return mspace_is_traced (clib_mem_get_heap ());
Dave Barach6a5adc32018-07-04 10:56:23 -0400488}
489
490uword
491clib_mem_trace_enable_disable (uword enable)
492{
493 uword rv;
494 mheap_trace_main_t *tm = &mheap_trace_main;
495
496 rv = tm->enabled;
497 tm->enabled = enable;
498 return rv;
499}
500
501/*
502 * These API functions seem like layering violations, but
503 * by introducing them we greatly reduce the number
504 * of code changes required to use dlmalloc spaces
505 */
506void *
507mheap_alloc_with_lock (void *memory, uword size, int locked)
508{
509 void *rv;
510 if (memory == 0)
511 return create_mspace (size, locked);
512 else
513 {
514 rv = create_mspace_with_base (memory, size, locked);
515 if (rv)
516 mspace_disable_expand (rv);
517 return rv;
518 }
519}
520
521/*
522 * fd.io coding-style-patch-verification: ON
523 *
524 * Local Variables:
525 * eval: (c-set-style "gnu")
526 * End:
527 */