]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/mtrace.c
e2fsck: if user declines to fix s_inodes_acount, abort
[thirdparty/e2fsprogs.git] / e2fsck / mtrace.c
CommitLineData
3839e657
TT
1/* More debugging hooks for `malloc'.
2 Copyright (C) 1991, 1992 Free Software Foundation, Inc.
3 Written April 2, 1991 by John Gilmore of Cygnus Support.
4 Based on mcheck.c by Mike Haertel.
5
6This library is free software; you can redistribute it and/or
7modify it under the terms of the GNU Library General Public License as
8published by the Free Software Foundation; either version 2 of the
9License, or (at your option) any later version.
10
11This library is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14Library General Public License for more details.
15
16You should have received a copy of the GNU Library General Public
17License along with this library; see the file COPYING.LIB. If
18not, write to the Free Software Foundation, Inc., 675 Mass Ave,
19Cambridge, MA 02139, USA.
20
21 The author may be reached (Email) at the address mike@ai.mit.edu,
22 or (US mail) as Mike Haertel c/o Free Software Foundation. */
23
d1154eb4
TT
24#include "config.h"
25
3839e657
TT
26#ifndef _MALLOC_INTERNAL
27#define _MALLOC_INTERNAL
c59a704b 28#include "./mtrace.h"
3839e657
TT
29#endif
30
31#include <stdio.h>
32
33#ifndef __GNU_LIBRARY__
34extern char *getenv ();
35#else
36#include <stdlib.h>
37#endif
38
39static FILE *mallstream;
40static char mallenv[]= "MALLOC_TRACE";
41static char mallbuf[BUFSIZ]; /* Buffer for the output. */
42
43/* Address to breakpoint on accesses to... */
44__ptr_t mallwatch;
45
46/* Old hook values. */
47static void (*tr_old_free_hook) __P ((__ptr_t ptr));
48static __ptr_t (*tr_old_malloc_hook) __P ((size_t size));
49static __ptr_t (*tr_old_realloc_hook) __P ((__ptr_t ptr, size_t size));
50
51/*
efc6f628 52 * Added by TYT, 10/10/93 --- so that we can print
3839e657
TT
53 */
54FILE *malloc_get_mallstream()
55{
56 return mallstream;
57}
58
59/* This function is called when the block being alloc'd, realloc'd, or
60 freed has an address matching the variable "mallwatch". In a debugger,
61 set "mallwatch" to the address of interest, then put a breakpoint on
62 tr_break. */
63
64void tr_break __P ((void));
65void
66tr_break ()
67{
68}
69
70static void tr_freehook __P ((__ptr_t));
71static void
72tr_freehook (ptr)
73 __ptr_t ptr;
74{
75 fprintf (mallstream, "- %p\n", ptr); /* Be sure to print it first. */
76 if (ptr == mallwatch)
77 tr_break ();
78 __free_hook = tr_old_free_hook;
79 free (ptr);
80 __free_hook = tr_freehook;
81}
82
83static __ptr_t tr_mallochook __P ((size_t));
84static __ptr_t
85tr_mallochook (size)
86 size_t size;
87{
88 __ptr_t hdr;
89
90 __malloc_hook = tr_old_malloc_hook;
91 hdr = (__ptr_t) malloc (size);
92 __malloc_hook = tr_mallochook;
93
94 /* We could be printing a NULL here; that's OK. */
95 fprintf (mallstream, "+ %p %d\n", hdr, size);
96
97 if (hdr == mallwatch)
98 tr_break ();
99
100 return hdr;
101}
102
103static __ptr_t tr_reallochook __P ((__ptr_t, size_t));
104static __ptr_t
105tr_reallochook (ptr, size)
106 __ptr_t ptr;
107 size_t size;
108{
109 __ptr_t hdr;
110
111 if (ptr == mallwatch)
112 tr_break ();
113
114 __free_hook = tr_old_free_hook;
115 __malloc_hook = tr_old_malloc_hook;
116 __realloc_hook = tr_old_realloc_hook;
117 hdr = (__ptr_t) realloc (ptr, size);
118 __free_hook = tr_freehook;
119 __malloc_hook = tr_mallochook;
120 __realloc_hook = tr_reallochook;
121 if (hdr == NULL)
122 /* Failed realloc. */
123 fprintf (mallstream, "! %p %d\n", ptr, size);
124 else
125 fprintf (mallstream, "< %p\n> %p %d\n", ptr, hdr, size);
126
127 if (hdr == mallwatch)
128 tr_break ();
129
130 return hdr;
131}
132
133/* We enable tracing if either the environment variable MALLOC_TRACE
134 is set, or if the variable mallwatch has been patched to an address
135 that the debugging user wants us to stop on. When patching mallwatch,
136 don't forget to set a breakpoint on tr_break! */
137
138void
139mtrace ()
140{
141 char *mallfile;
142
143 mallfile = getenv (mallenv);
144 if (mallfile != NULL || mallwatch != NULL)
145 {
146 mallstream = fopen (mallfile != NULL ? mallfile : "/dev/null", "w");
147 if (mallstream != NULL)
148 {
149 /* Be sure it doesn't malloc its buffer! */
150 setbuf (mallstream, mallbuf);
151 fprintf (mallstream, "= Start\n");
152 tr_old_free_hook = __free_hook;
153 __free_hook = tr_freehook;
154 tr_old_malloc_hook = __malloc_hook;
155 __malloc_hook = tr_mallochook;
156 tr_old_realloc_hook = __realloc_hook;
157 __realloc_hook = tr_reallochook;
158 }
159 }
160}