2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Kevin P. Fleming <kpfleming@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \brief Debugging support for thread-local-storage objects
23 * \author Kevin P. Fleming <kpfleming@digium.com>
28 #if defined(DEBUG_THREADLOCALS)
30 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
36 #include "asterisk/logger.h"
37 #include "asterisk/strings.h"
38 #include "asterisk/utils.h"
39 #include "asterisk/threadstorage.h"
40 #include "asterisk/linkedlists.h"
41 #include "asterisk/cli.h"
50 AST_LIST_ENTRY(tls_object) entry;
53 static AST_RWLIST_HEAD_STATIC(tls_objects, tls_object);
55 void __ast_threadstorage_object_add(void *key, size_t len, const char *file, const char *function, unsigned int line)
57 struct tls_object *to;
59 if (!(to = ast_calloc(1, sizeof(*to))))
65 to->function = function;
67 to->thread = pthread_self();
69 AST_RWLIST_WRLOCK(&tls_objects);
70 AST_LIST_INSERT_TAIL(&tls_objects, to, entry);
71 AST_RWLIST_UNLOCK(&tls_objects);
74 void __ast_threadstorage_object_remove(void *key)
76 struct tls_object *to;
78 AST_RWLIST_WRLOCK(&tls_objects);
79 AST_LIST_TRAVERSE_SAFE_BEGIN(&tls_objects, to, entry) {
81 AST_LIST_REMOVE_CURRENT(&tls_objects, entry);
85 AST_LIST_TRAVERSE_SAFE_END;
86 AST_RWLIST_UNLOCK(&tls_objects);
91 void __ast_threadstorage_object_replace(void *key_old, void *key_new, size_t len)
93 struct tls_object *to;
95 AST_RWLIST_WRLOCK(&tls_objects);
96 AST_LIST_TRAVERSE_SAFE_BEGIN(&tls_objects, to, entry) {
97 if (to->key == key_old) {
103 AST_LIST_TRAVERSE_SAFE_END;
104 AST_RWLIST_UNLOCK(&tls_objects);
107 static char *handle_cli_threadstorage_show_allocations(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
111 unsigned int count = 0;
112 struct tls_object *to;
116 e->command = "threadstorage show allocations";
118 "Usage: threadstorage show allocations [<file>]\n"
119 " Dumps a list of all thread-specific memory allocations,\n"
120 " optionally limited to those from a specific file\n";
127 return CLI_SHOWUSAGE;
132 AST_RWLIST_RDLOCK(&tls_objects);
134 AST_LIST_TRAVERSE(&tls_objects, to, entry) {
135 if (fn && strcasecmp(to->file, fn))
138 ast_cli(a->fd, "%10d bytes allocated in %20s at line %5d of %25s (thread %p)\n",
139 (int) to->size, to->function, to->line, to->file, (void *) to->thread);
144 AST_RWLIST_UNLOCK(&tls_objects);
146 ast_cli(a->fd, "%10d bytes allocated in %d allocation%s\n", (int) len, count, count > 1 ? "s" : "");
151 static char *handle_cli_threadstorage_show_summary(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
155 unsigned int count = 0;
156 struct tls_object *to;
161 AST_LIST_ENTRY(file) entry;
166 e->command = "threadstorage show summary";
168 "Usage: threadstorage show summary [<file>]\n"
169 " Summarizes thread-specific memory allocations by file, or optionally\n"
170 " by function, if a file is specified\n";
177 return CLI_SHOWUSAGE;
179 AST_LIST_HEAD_NOLOCK_STATIC(file_summary, file);
184 AST_RWLIST_RDLOCK(&tls_objects);
186 AST_LIST_TRAVERSE(&tls_objects, to, entry) {
187 if (fn && strcasecmp(to->file, fn))
190 AST_LIST_TRAVERSE(&file_summary, file, entry) {
191 if ((!fn && (file->name == to->file)) || (fn && (file->name == to->function)))
196 file = alloca(sizeof(*file));
197 memset(file, 0, sizeof(*file));
198 file->name = fn ? to->function : to->file;
199 AST_LIST_INSERT_TAIL(&file_summary, file, entry);
202 file->len += to->size;
206 AST_RWLIST_UNLOCK(&tls_objects);
208 AST_LIST_TRAVERSE(&file_summary, file, entry) {
210 count += file->count;
212 ast_cli(a->fd, "%10d bytes in %d allocation%ss in function %s\n",
213 (int) file->len, file->count, file->count > 1 ? "s" : "", file->name);
215 ast_cli(a->fd, "%10d bytes in %d allocation%s in file %s\n",
216 (int) file->len, file->count, file->count > 1 ? "s" : "", file->name);
220 ast_cli(a->fd, "%10d bytes allocated in %d allocation%s\n", (int) len, count, count > 1 ? "s" : "");
225 static struct ast_cli_entry cli[] = {
226 NEW_CLI(handle_cli_threadstorage_show_allocations, "Display outstanding thread local storage allocations"),
227 NEW_CLI(handle_cli_threadstorage_show_summary, "Summarize outstanding memory allocations")
230 void threadstorage_init(void)
232 ast_cli_register_multiple(cli, sizeof(cli) / sizeof(cli[0]));
235 #else /* !defined(DEBUG_THREADLOCALS) */
237 void threadstorage_init(void)
241 #endif /* !defined(DEBUG_THREADLOCALS) */