]>
git.proxmox.com Git - mirror_frr.git/blob - lib/memory.c
2 * Copyright (c) 2015-16 David Lamparter, for NetDEF, Inc.
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 #ifdef HAVE_MALLOC_MALLOC_H
24 #include <malloc/malloc.h>
30 static struct memgroup
*mg_first
= NULL
;
31 struct memgroup
**mg_insert
= &mg_first
;
33 DEFINE_MGROUP(LIB
, "libfrr")
34 DEFINE_MTYPE(LIB
, TMP
, "Temporary memory")
35 DEFINE_MTYPE(LIB
, PREFIX_FLOWSPEC
, "Prefix Flowspec")
37 static inline void mt_count_alloc(struct memtype
*mt
, size_t size
, void *ptr
)
41 atomic_fetch_add_explicit(&mt
->n_alloc
, 1, memory_order_relaxed
);
43 oldsize
= atomic_load_explicit(&mt
->size
, memory_order_relaxed
);
45 oldsize
= atomic_exchange_explicit(&mt
->size
, size
,
46 memory_order_relaxed
);
47 if (oldsize
!= 0 && oldsize
!= size
&& oldsize
!= SIZE_VAR
)
48 atomic_store_explicit(&mt
->size
, SIZE_VAR
,
49 memory_order_relaxed
);
51 #ifdef HAVE_MALLOC_USABLE_SIZE
52 size_t mallocsz
= malloc_usable_size(ptr
);
54 atomic_fetch_add_explicit(&mt
->total
, mallocsz
, memory_order_relaxed
);
58 static inline void mt_count_free(struct memtype
*mt
, void *ptr
)
61 atomic_fetch_sub_explicit(&mt
->n_alloc
, 1, memory_order_relaxed
);
63 #ifdef HAVE_MALLOC_USABLE_SIZE
64 size_t mallocsz
= malloc_usable_size(ptr
);
66 atomic_fetch_sub_explicit(&mt
->total
, mallocsz
, memory_order_relaxed
);
70 static inline void *mt_checkalloc(struct memtype
*mt
, void *ptr
, size_t size
)
72 if (__builtin_expect(ptr
== NULL
, 0)) {
74 /* malloc(0) is allowed to return NULL */
75 memory_oom(size
, mt
->name
);
79 mt_count_alloc(mt
, size
, ptr
);
83 void *qmalloc(struct memtype
*mt
, size_t size
)
85 return mt_checkalloc(mt
, malloc(size
), size
);
88 void *qcalloc(struct memtype
*mt
, size_t size
)
90 return mt_checkalloc(mt
, calloc(size
, 1), size
);
93 void *qrealloc(struct memtype
*mt
, void *ptr
, size_t size
)
96 mt_count_free(mt
, ptr
);
97 return mt_checkalloc(mt
, ptr
? realloc(ptr
, size
) : malloc(size
), size
);
100 void *qstrdup(struct memtype
*mt
, const char *str
)
102 return str
? mt_checkalloc(mt
, strdup(str
), strlen(str
) + 1) : NULL
;
105 void qfree(struct memtype
*mt
, void *ptr
)
108 mt_count_free(mt
, ptr
);
112 int qmem_walk(qmem_walk_fn
*func
, void *arg
)
118 for (mg
= mg_first
; mg
; mg
= mg
->next
) {
119 if ((rv
= func(arg
, mg
, NULL
)))
121 for (mt
= mg
->types
; mt
; mt
= mt
->next
)
122 if ((rv
= func(arg
, mg
, mt
)))
128 struct exit_dump_args
{
134 static int qmem_exit_walker(void *arg
, struct memgroup
*mg
, struct memtype
*mt
)
136 struct exit_dump_args
*eda
= arg
;
140 "%s: showing active allocations in "
142 eda
->prefix
, mg
->name
);
144 } else if (mt
->n_alloc
) {
147 snprintf(size
, sizeof(size
), "%10zu", mt
->size
);
148 fprintf(eda
->fp
, "%s: memstats: %-30s: %6zu * %s\n",
149 eda
->prefix
, mt
->name
, mt
->n_alloc
,
150 mt
->size
== SIZE_VAR
? "(variably sized)" : size
);
155 int log_memstats(FILE *fp
, const char *prefix
)
157 struct exit_dump_args eda
= {.fp
= fp
, .prefix
= prefix
, .error
= 0};
158 qmem_walk(qmem_exit_walker
, &eda
);