blob: 8afb0507092a3d823462f461bfef5577945d6704 [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>
22
23void *clib_per_cpu_mheaps[CLIB_MAX_MHEAPS];
24
25typedef struct
26{
27 /* Address of callers: outer first, inner last. */
28 uword callers[12];
29
30 /* Count of allocations with this traceback. */
31#if CLIB_VEC64 > 0
32 u64 n_allocations;
33#else
34 u32 n_allocations;
35#endif
36
37 /* Count of bytes allocated with this traceback. */
38 u32 n_bytes;
39
40 /* Offset of this item */
41 uword offset;
42} mheap_trace_t;
43
44typedef struct
45{
46 clib_spinlock_t lock;
47 uword enabled;
48
49 mheap_trace_t *traces;
50
51 /* Indices of free traces. */
52 u32 *trace_free_list;
53
54 /* Hash table mapping callers to trace index. */
55 uword *trace_by_callers;
56
57 /* Hash table mapping mheap offset to trace index. */
58 uword *trace_index_by_offset;
59} mheap_trace_main_t;
60
61mheap_trace_main_t mheap_trace_main;
62
63void
64mheap_get_trace (uword offset, uword size)
65{
66 mheap_trace_main_t *tm = &mheap_trace_main;
67 mheap_trace_t *t;
68 uword i, n_callers, trace_index, *p;
69 mheap_trace_t trace;
70 uword save_enabled;
71
72 if (tm->enabled == 0)
73 return;
74
75 /* Spurious Coverity warnings be gone. */
76 memset (&trace, 0, sizeof (trace));
77
78 /* Skip our frame and mspace_get_aligned's frame */
79 n_callers = clib_backtrace (trace.callers, ARRAY_LEN (trace.callers), 2);
80 if (n_callers == 0)
81 return;
82
83 /* $$$ This looks like dreck to remove... */
84 if (0)
85 for (i = n_callers; i < ARRAY_LEN (trace.callers); i++)
86 trace.callers[i] = 0;
87
88 clib_spinlock_lock (&tm->lock);
89
90 /* Turn off tracing to avoid embarrassment... */
91 save_enabled = tm->enabled;
92 tm->enabled = 0;
93
94 if (!tm->trace_by_callers)
95 tm->trace_by_callers =
96 hash_create_shmem (0, sizeof (trace.callers), sizeof (uword));
97
98 p = hash_get_mem (tm->trace_by_callers, &trace.callers);
99 if (p)
100 {
101 trace_index = p[0];
102 t = tm->traces + trace_index;
103 }
104 else
105 {
106 i = vec_len (tm->trace_free_list);
107 if (i > 0)
108 {
109 trace_index = tm->trace_free_list[i - 1];
110 _vec_len (tm->trace_free_list) = i - 1;
111 }
112 else
113 {
114 mheap_trace_t *old_start = tm->traces;
115 mheap_trace_t *old_end = vec_end (tm->traces);
116
117 vec_add2 (tm->traces, t, 1);
118
119 if (tm->traces != old_start)
120 {
121 hash_pair_t *p;
122 mheap_trace_t *q;
123 /* *INDENT-OFF* */
124 hash_foreach_pair (p, tm->trace_by_callers,
125 ({
126 q = uword_to_pointer (p->key, mheap_trace_t *);
127 ASSERT (q >= old_start && q < old_end);
128 p->key = pointer_to_uword (tm->traces + (q - old_start));
129 }));
130 /* *INDENT-ON* */
131 }
132 trace_index = t - tm->traces;
133 }
134
135 t = tm->traces + trace_index;
136 t[0] = trace;
137 t->n_allocations = 0;
138 t->n_bytes = 0;
139 hash_set_mem (tm->trace_by_callers, t->callers, trace_index);
140 }
141
142 t->n_allocations += 1;
143 t->n_bytes += size;
144 t->offset = offset; /* keep a sample to autopsy */
145 hash_set (tm->trace_index_by_offset, offset, t - tm->traces);
146 tm->enabled = save_enabled;
147 clib_spinlock_unlock (&tm->lock);
148}
149
150void
151mheap_put_trace (uword offset, uword size)
152{
153 mheap_trace_t *t;
154 uword trace_index, *p;
155 mheap_trace_main_t *tm = &mheap_trace_main;
156 uword save_enabled;
157
158 if (tm->enabled == 0)
159 return;
160
161 clib_spinlock_lock (&tm->lock);
162
163 /* Turn off tracing for a moment */
164 save_enabled = tm->enabled;
165 tm->enabled = 0;
166
167 p = hash_get (tm->trace_index_by_offset, offset);
168 if (!p)
169 {
170 tm->enabled = save_enabled;
171 clib_spinlock_unlock (&tm->lock);
172 return;
173 }
174
175 trace_index = p[0];
176 hash_unset (tm->trace_index_by_offset, offset);
177 ASSERT (trace_index < vec_len (tm->traces));
178
179 t = tm->traces + trace_index;
180 ASSERT (t->n_allocations > 0);
181 ASSERT (t->n_bytes >= size);
182 t->n_allocations -= 1;
183 t->n_bytes -= size;
184 if (t->n_allocations == 0)
185 {
186 hash_unset_mem (tm->trace_by_callers, t->callers);
187 vec_add1 (tm->trace_free_list, trace_index);
188 memset (t, 0, sizeof (t[0]));
189 }
190 tm->enabled = save_enabled;
191 clib_spinlock_unlock (&tm->lock);
192}
193
194always_inline void
195mheap_trace_main_free (mheap_trace_main_t * tm)
196{
197 vec_free (tm->traces);
198 vec_free (tm->trace_free_list);
199 hash_free (tm->trace_by_callers);
200 hash_free (tm->trace_index_by_offset);
201}
202
203/* Initialize CLIB heap based on memory/size given by user.
204 Set memory to 0 and CLIB will try to allocate its own heap. */
205void *
206clib_mem_init (void *memory, uword memory_size)
207{
208 u8 *heap;
209
210 if (memory)
211 {
212 heap = create_mspace_with_base (memory, memory_size, 1 /* locked */ );
213 mspace_disable_expand (heap);
214 }
215 else
216 heap = create_mspace (memory_size, 1 /* locked */ );
217
218 clib_mem_set_heap (heap);
219
220 if (mheap_trace_main.lock == 0)
221 clib_spinlock_init (&mheap_trace_main.lock);
222
223 return heap;
224}
225
226void *
227clib_mem_init_thread_safe (void *memory, uword memory_size)
228{
229 return clib_mem_init (memory, memory_size);
230}
231
232#ifdef CLIB_LINUX_KERNEL
233#include <asm/page.h>
234
235uword
236clib_mem_get_page_size (void)
237{
238 return PAGE_SIZE;
239}
240#endif
241
242#ifdef CLIB_UNIX
243uword
244clib_mem_get_page_size (void)
245{
246 return getpagesize ();
247}
248#endif
249
250/* Make a guess for standalone. */
251#ifdef CLIB_STANDALONE
252uword
253clib_mem_get_page_size (void)
254{
255 return 4096;
256}
257#endif
258
259u8 *
260format_clib_mem_usage (u8 * s, va_list * va)
261{
262 int verbose = va_arg (*va, int);
263 return format (s, "$$$$ heap at %llx verbose %d", clib_mem_get_heap (),
264 verbose);
265}
266
267/*
268 * Magic decoder ring for mallinfo stats (ala dlmalloc):
269 *
270 * size_t arena; / * Non-mmapped space allocated (bytes) * /
271 * size_t ordblks; / * Number of free chunks * /
272 * size_t smblks; / * Number of free fastbin blocks * /
273 * size_t hblks; / * Number of mmapped regions * /
274 * size_t hblkhd; / * Space allocated in mmapped regions (bytes) * /
275 * size_t usmblks; / * Maximum total allocated space (bytes) * /
276 * size_t fsmblks; / * Space in freed fastbin blocks (bytes) * /
277 * size_t uordblks; / * Total allocated space (bytes) * /
278 * size_t fordblks; / * Total free space (bytes) * /
279 * size_t keepcost; / * Top-most, releasable space (bytes) * /
280 *
281 */
282
283u8 *
284format_msize (u8 * s, va_list * va)
285{
286 uword a = va_arg (*va, uword);
287
288 if (a >= 1ULL << 30)
289 s = format (s, "%.2fG", (((f64) a) / ((f64) (1ULL << 30))));
290 else if (a >= 1ULL << 20)
291 s = format (s, "%.2fM", (((f64) a) / ((f64) (1ULL << 20))));
292 else if (a >= 1ULL << 10)
293 s = format (s, "%.2fK", (((f64) a) / ((f64) (1ULL << 10))));
294 else
295 s = format (s, "%lld", a);
296 return s;
297}
298
299static int
300mheap_trace_sort (const void *_t1, const void *_t2)
301{
302 const mheap_trace_t *t1 = _t1;
303 const mheap_trace_t *t2 = _t2;
304 word cmp;
305
306 cmp = (word) t2->n_bytes - (word) t1->n_bytes;
307 if (!cmp)
308 cmp = (word) t2->n_allocations - (word) t1->n_allocations;
309 return cmp;
310}
311
312u8 *
313format_mheap_trace (u8 * s, va_list * va)
314{
315 mheap_trace_main_t *tm = va_arg (*va, mheap_trace_main_t *);
316 int verbose = va_arg (*va, int);
317 int have_traces = 0;
318 int i;
319
320 clib_spinlock_lock (&tm->lock);
321 if (vec_len (tm->traces) > 0)
322 {
323 have_traces = 1;
324
325 /* Make a copy of traces since we'll be sorting them. */
326 mheap_trace_t *t, *traces_copy;
327 u32 indent, total_objects_traced;
328
329 traces_copy = vec_dup (tm->traces);
330
331 qsort (traces_copy, vec_len (traces_copy), sizeof (traces_copy[0]),
332 mheap_trace_sort);
333
334 total_objects_traced = 0;
335 s = format (s, "\n");
336 vec_foreach (t, traces_copy)
337 {
338 /* Skip over free elements. */
339 if (t->n_allocations == 0)
340 continue;
341
342 total_objects_traced += t->n_allocations;
343
344 /* When not verbose only report allocations of more than 1k. */
345 if (!verbose && t->n_bytes < 1024)
346 continue;
347
348 if (t == traces_copy)
349 s = format (s, "%=9s%=9s %=10s Traceback\n", "Bytes", "Count",
350 "Sample");
351 s = format (s, "%9d%9d %p", t->n_bytes, t->n_allocations, t->offset);
352 indent = format_get_indent (s);
353 for (i = 0; i < ARRAY_LEN (t->callers) && t->callers[i]; i++)
354 {
355 if (i > 0)
356 s = format (s, "%U", format_white_space, indent);
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200357#if defined(CLIB_UNIX) && !defined(__APPLE__)
Dave Barach6a5adc32018-07-04 10:56:23 -0400358 /* $$$$ does this actually work? */
359 s =
360 format (s, " %U\n", format_clib_elf_symbol_with_address,
361 t->callers[i]);
362#else
363 s = format (s, " %p\n", t->callers[i]);
364#endif
365 }
366 }
367
368 s = format (s, "%d total traced objects\n", total_objects_traced);
369
370 vec_free (traces_copy);
371 }
372 clib_spinlock_unlock (&tm->lock);
373 if (have_traces == 0)
374 s = format (s, "no traced allocations\n");
375
376 return s;
377}
378
379
380u8 *
381format_mheap (u8 * s, va_list * va)
382{
383 void *heap = va_arg (*va, u8 *);
384 int verbose = va_arg (*va, int);
Dave Barachaf7dd5b2018-08-23 17:08:44 -0400385 struct dlmallinfo mi;
Dave Barach6a5adc32018-07-04 10:56:23 -0400386 mheap_trace_main_t *tm = &mheap_trace_main;
387
388 mi = mspace_mallinfo (heap);
389
390 s = format (s, "total: %U, used: %U, free: %U, trimmable: %U",
391 format_msize, mi.arena,
392 format_msize, mi.uordblks,
393 format_msize, mi.fordblks, format_msize, mi.keepcost);
394 if (verbose > 0)
395 {
396 s = format (s, "\n free chunks %llu free fastbin blks %llu",
397 mi.ordblks, mi.smblks);
398 s =
399 format (s, "\n max total allocated %U", format_msize, mi.usmblks);
400 }
401
402 s = format (s, "\n%U", format_mheap_trace, tm, verbose);
403 return s;
404}
405
406void
407clib_mem_usage (clib_mem_usage_t * u)
408{
409 clib_warning ("unimp");
410}
411
412/* Call serial number for debugger breakpoints. */
413uword clib_mem_validate_serial = 0;
414
415void
416clib_mem_validate (void)
417{
418 clib_warning ("unimp");
419}
420
421void
422mheap_trace (void *v, int enable)
423{
424 (void) mspace_enable_disable_trace (v, enable);
425
426 if (enable == 0)
427 mheap_trace_main_free (&mheap_trace_main);
428}
429
430void
431clib_mem_trace (int enable)
432{
433 mheap_trace_main_t *tm = &mheap_trace_main;
434
435 tm->enabled = enable;
436 mheap_trace (clib_mem_get_heap (), enable);
437}
438
439uword
440clib_mem_trace_enable_disable (uword enable)
441{
442 uword rv;
443 mheap_trace_main_t *tm = &mheap_trace_main;
444
445 rv = tm->enabled;
446 tm->enabled = enable;
447 return rv;
448}
449
450/*
451 * These API functions seem like layering violations, but
452 * by introducing them we greatly reduce the number
453 * of code changes required to use dlmalloc spaces
454 */
455void *
456mheap_alloc_with_lock (void *memory, uword size, int locked)
457{
458 void *rv;
459 if (memory == 0)
460 return create_mspace (size, locked);
461 else
462 {
463 rv = create_mspace_with_base (memory, size, locked);
464 if (rv)
465 mspace_disable_expand (rv);
466 return rv;
467 }
468}
469
470/*
471 * fd.io coding-style-patch-verification: ON
472 *
473 * Local Variables:
474 * eval: (c-set-style "gnu")
475 * End:
476 */