riscv: Fix feenvupdate with FE_DFL_ENV (BZ 31022)
[glibc.git] / malloc / mtrace-impl.c
blob8a195d1614ef32982eb9514730d98b5a2e6fe55a
1 /* mtrace implementation for `malloc'.
2 Copyright (C) 1991-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
20 #include <malloc.h>
21 #include <mcheck.h>
23 #include <dlfcn.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <stdlib.h>
28 #include <inttypes.h>
30 #include <libc-internal.h>
31 #include <dso_handle.h>
33 #include <kernel-features.h>
35 static FILE *mallstream;
36 static const char mallenv[] = "MALLOC_TRACE";
38 static void
39 tr_where (const void *caller, Dl_info *info)
41 if (caller != NULL)
43 if (info != NULL)
45 char *buf = (char *) "";
46 if (info->dli_sname != NULL)
48 size_t len = strlen (info->dli_sname);
49 buf = alloca (len + 6 + 2 * sizeof (void *));
50 char sign;
51 ptrdiff_t offset =
52 (ptrdiff_t) info->dli_saddr - (ptrdiff_t) caller;
54 if (caller >= (const void *) info->dli_saddr)
56 sign = '+';
57 offset = -offset;
59 else
60 sign = '-';
62 sprintf (buf, "(%s%c%" PRIxPTR ")", info->dli_sname, sign,
63 offset);
66 fprintf (mallstream, "@ %s%s%s[0x%" PRIxPTR "] ",
67 info->dli_fname ? : "", info->dli_fname ? ":" : "", buf,
68 caller - info->dli_fbase);
70 else
71 fprintf (mallstream, "@ [%p] ", caller);
75 static Dl_info *
76 lock_and_info (const void *caller, Dl_info *mem)
78 if (caller == NULL)
79 return NULL;
81 Dl_info *res = dladdr (caller, mem) ? mem : NULL;
83 flockfile (mallstream);
85 return res;
88 static void
89 free_mtrace (void *ptr, const void *caller)
91 if (ptr == NULL)
92 return;
94 Dl_info mem;
95 Dl_info *info = lock_and_info (caller, &mem);
96 tr_where (caller, info);
97 /* Be sure to print it first. */
98 fprintf (mallstream, "- %p\n", ptr);
99 funlockfile (mallstream);
102 static void
103 malloc_mtrace_after (void *block, size_t size, const void *caller)
105 Dl_info mem;
106 Dl_info *info = lock_and_info (caller, &mem);
108 tr_where (caller, info);
109 /* We could be printing a NULL here; that's OK. */
110 fprintf (mallstream, "+ %p %#lx\n", block, (unsigned long int) size);
112 funlockfile (mallstream);
115 static void
116 realloc_mtrace_after (void *block, const void *oldptr, size_t size,
117 const void *caller)
119 Dl_info mem;
120 Dl_info *info = lock_and_info (caller, &mem);
122 tr_where (caller, info);
123 if (block == NULL)
125 if (size != 0)
126 /* Failed realloc. */
127 fprintf (mallstream, "! %p %#lx\n", oldptr, (unsigned long int) size);
128 else
129 fprintf (mallstream, "- %p\n", oldptr);
131 else if (oldptr == NULL)
132 fprintf (mallstream, "+ %p %#lx\n", block, (unsigned long int) size);
133 else
135 fprintf (mallstream, "< %p\n", oldptr);
136 tr_where (caller, info);
137 fprintf (mallstream, "> %p %#lx\n", block, (unsigned long int) size);
140 funlockfile (mallstream);
143 static void
144 memalign_mtrace_after (void *block, size_t size, const void *caller)
146 Dl_info mem;
147 Dl_info *info = lock_and_info (caller, &mem);
149 tr_where (caller, info);
150 /* We could be printing a NULL here; that's OK. */
151 fprintf (mallstream, "+ %p %#lx\n", block, (unsigned long int) size);
153 funlockfile (mallstream);
156 /* This function gets called to make sure all memory the library
157 allocates get freed and so does not irritate the user when studying
158 the mtrace output. */
159 static void
160 release_libc_mem (void)
162 /* Only call the free function if we still are running in mtrace mode. */
163 if (mallstream != NULL)
164 __libc_freeres ();
167 /* We enable tracing if the environment variable MALLOC_TRACE is set. */
169 static void
170 do_mtrace (void)
172 static int added_atexit_handler;
173 char *mallfile;
175 /* Don't panic if we're called more than once. */
176 if (mallstream != NULL)
177 return;
179 mallfile = secure_getenv (mallenv);
180 if (mallfile != NULL)
182 mallstream = fopen (mallfile != NULL ? mallfile : "/dev/null", "wce");
183 if (mallstream != NULL)
185 /* Be sure it doesn't malloc its buffer! */
186 static char tracebuf [512];
188 setvbuf (mallstream, tracebuf, _IOFBF, sizeof (tracebuf));
189 fprintf (mallstream, "= Start\n");
190 if (!added_atexit_handler)
192 added_atexit_handler = 1;
193 __cxa_atexit ((void (*)(void *))release_libc_mem, NULL,
194 __dso_handle);
196 __malloc_debug_enable (MALLOC_MTRACE_HOOK);
201 static void
202 do_muntrace (void)
204 __malloc_debug_disable (MALLOC_MTRACE_HOOK);
205 if (mallstream == NULL)
206 return;
208 /* Do the reverse of what done in mtrace: first reset the hooks and
209 MALLSTREAM, and only after that write the trailer and close the
210 file. */
211 FILE *f = mallstream;
212 mallstream = NULL;
214 fprintf (f, "= End\n");
215 fclose (f);