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