-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
error.c
464 lines (397 loc) · 11 KB
/
error.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
* Error and message routines
*
* Copyright 2000 by Gray Watson
*
* This file is part of the dmalloc package.
*
* Permission to use, copy, modify, and distribute this software for
* any purpose and without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all
* copies, and that the name of Gray Watson not be used in advertising
* or publicity pertaining to distribution of the document or software
* without specific, written prior permission.
*
* Gray Watson makes no representations about the suitability of the
* software described herein for any purpose. It is provided "as is"
* without express or implied warranty.
*
* The author may be contacted via http://dmalloc.com/
*
* $Id: error.c,v 1.99 2002/02/14 22:55:42 gray Exp $
*/
/*
* This file contains the routines needed for processing error codes
* produced by the library.
*/
#include <fcntl.h> /* for O_WRONLY, etc. */
#include <stdio.h> /* for sprintf */
#if HAVE_STDARG_H
# include <stdarg.h> /* for message vsprintf */
#endif
#if HAVE_STDLIB_H
# include <stdlib.h> /* for abort */
#endif
#if HAVE_STRING_H
# include <string.h> /* for strlen */
#endif
#if HAVE_UNISTD_H
# include <unistd.h> /* for write */
#endif
#include "conf.h" /* up here for _INCLUDE */
/* for KILL_PROCESS define */
#if USE_ABORT == 0
#ifdef KILL_INCLUDE
#include KILL_INCLUDE /* for kill signals */
#endif
#endif
#if STORE_TIMEVAL
# ifdef TIMEVAL_INCLUDE
# include TIMEVAL_INCLUDE
# endif
#else
# if HAVE_TIME
# ifdef TIME_INCLUDE
# include TIME_INCLUDE
# endif
# endif
#endif
#define DMALLOC_DISABLE
#include "dmalloc.h"
#include "compat.h"
#include "debug_val.h"
#include "env.h" /* for LOGPATH_INIT */
#include "error.h"
#include "error_val.h"
#include "dmalloc_loc.h"
#include "version.h"
#if INCLUDE_RCS_IDS
#if IDENT_WORKS
#ident "$Id: error.c,v 1.99 2002/02/14 22:55:42 gray Exp $"
#else
static char *rcs_id =
"$Id: error.c,v 1.99 2002/02/14 22:55:42 gray Exp $";
#endif
#endif
#if LOCK_THREADS
#if IDENT_WORKS
#ident "@(#) $Information: lock-threads is enabled $"
#else
static char *information = "@(#) $Information: lock-threads is enabled $"
#endif
#endif
#define SECS_IN_HOUR (MINS_IN_HOUR * SECS_IN_MIN)
#define MINS_IN_HOUR 60
#define SECS_IN_MIN 60
/* external routines */
extern char *_dmalloc_strerror(const int errnum);
/*
* exported variables
*/
/* logfile for dumping dmalloc info, DMALLOC_LOGFILE env var overrides this */
char *dmalloc_logpath = NULL;
/* address to look for. when discovered call dmalloc_error() */
DMALLOC_PNT _dmalloc_address = NULL;
/* when to stop at an address */
unsigned long _dmalloc_address_seen_n = 0;
/* global debug flags that are set my DMALLOC_DEBUG environ variable */
unsigned int _dmalloc_flags = 0;
/* global iteration counter for activities */
unsigned long _dmalloc_iter_c = 0;
/* how often to check the heap */
unsigned long _dmalloc_check_interval = 0;
#if STORE_TIMEVAL
/* overhead information storing when the library started up for elapsed time */
TIMEVAL_TYPE _dmalloc_start;
#endif
/* NOTE: we do the ifdef this way for fillproto */
#if STORE_TIMEVAL == 0
#if HAVE_TIME
TIME_TYPE _dmalloc_start = 0;
#endif
#endif
/* when we are going to startup our locking subsystem */
int _dmalloc_lock_on = 0;
/* global flag which indicates when we are aborting */
int _dmalloc_aborting_b = 0;
/* local variables */
static int outfile_fd = -1; /* output file descriptor */
/*
* Open up our log file and write some version of settings
* information.
*/
void _dmalloc_open_log(void)
{
char str[1024];
/* if it's already open or if we don't have a log file configured */
if (outfile_fd >= 0
|| dmalloc_logpath == NULL) {
return;
}
/* open our logfile */
outfile_fd = open(dmalloc_logpath, O_WRONLY | O_CREAT | O_TRUNC, 0666);
if (outfile_fd < 0) {
(void)loc_snprintf(str, sizeof(str),
"debug-malloc library: could not open '%s'\r\n",
dmalloc_logpath);
(void)write(STDERR, str, strlen(str));
/* disable log_path */
dmalloc_logpath = NULL;
return;
}
/*
* NOTE: this makes it go recursive here, but it will never enter
* this section of code.
*/
_dmalloc_message("Dmalloc version '%s' from '%s'",
dmalloc_version, DMALLOC_HOME);
_dmalloc_message("flags = %#x, logfile '%s'",
_dmalloc_flags, dmalloc_logpath);
_dmalloc_message("interval = %lu, addr = %#lx, seen # = %ld",
_dmalloc_check_interval,
(unsigned long)_dmalloc_address,
_dmalloc_address_seen_n);
#if LOCK_THREADS
_dmalloc_message("threads enabled, lock-on = %d, lock-init = %d",
_dmalloc_lock_on, THREAD_INIT_LOCK);
#endif
#if STORE_TIMEVAL
{
char time_buf[64];
_dmalloc_message("starting time = %s",
_dmalloc_ptimeval(&_dmalloc_start, time_buf,
sizeof(time_buf), 0));
}
#else
#if HAVE_TIME /* NOT STORE_TIME */
{
char time_buf[64];
_dmalloc_message("starting time = %s",
_dmalloc_ptime(&_dmalloc_start, time_buf,
sizeof(time_buf), 0));
}
#endif
#endif
}
#if STORE_TIMEVAL
/*
* print the time into local buffer which is returned
*/
char *_dmalloc_ptimeval(const TIMEVAL_TYPE *timeval_p, char *buf,
const int buf_size, const int elapsed_b)
{
unsigned long hrs, mins, secs, usecs;
secs = timeval_p->tv_sec;
usecs = timeval_p->tv_usec;
if (elapsed_b) {
if (usecs >= _dmalloc_start.tv_usec) {
usecs -= _dmalloc_start.tv_usec;
}
else {
usecs = _dmalloc_start.tv_usec - usecs;
secs--;
}
secs -= _dmalloc_start.tv_sec;
hrs = secs / SECS_IN_HOUR;
mins = (secs / SECS_IN_MIN) % MINS_IN_HOUR;
secs %= SECS_IN_MIN;
(void)loc_snprintf(buf, buf_size, "%lu:%02lu:%02lu.%06lu",
hrs, mins, secs, usecs);
}
else {
(void)loc_snprintf(buf, buf_size, "%lu.%06lu",
secs, usecs);
}
return buf;
}
#endif
/*
* Re-open our log file which basically calls close() on the
* logfile-fd. If we change the name of the log-file then we will
* re-open the file.
*/
void _dmalloc_reopen_log(void)
{
/* if it's already open or if we don't have a log file configured */
if (outfile_fd >= 0) {
_dmalloc_message("Closing logfile to be reopened as '%s'",
(dmalloc_logpath == NULL ? "none" : dmalloc_logpath));
(void)close(outfile_fd);
outfile_fd = -1;
/* we don't call open here, we'll let the next message do it */
}
/* if we aren't open yet then don't open it */
}
/* NOTE: we do the ifdef this way for fillproto */
#if STORE_TIMEVAL == 0 && HAVE_TIME
/*
* print the time into local buffer which is returned
*/
char *_dmalloc_ptime(const TIME_TYPE *time_p, char *buf, const int buf_size,
const int elapsed_b)
{
unsigned long hrs, mins, secs;
secs = *time_p;
if (elapsed_b) {
secs -= _dmalloc_start;
hrs = secs / SECS_IN_HOUR;
mins = (secs / SECS_IN_MIN) % MINS_IN_HOUR;
secs %= SECS_IN_MIN;
(void)loc_snprintf(buf, buf_size, "%lu:%02lu:%02lu", hrs, mins, secs);
}
else {
(void)loc_snprintf(buf, buf_size, "%lu", secs);
}
return buf;
}
#endif
/*
* message writer with vprintf like arguments
*/
void _dmalloc_vmessage(const char *format, va_list args)
{
char str[1024], *str_p, *bounds_p;
int len;
str_p = str;
bounds_p = str_p + sizeof(str);
/* no logpath and no print then no workie */
if (dmalloc_logpath == NULL
&& ! BIT_IS_SET(_dmalloc_flags, DEBUG_PRINT_MESSAGES)) {
return;
}
/* do we need to open the logfile? */
if (dmalloc_logpath != NULL && outfile_fd < 0) {
_dmalloc_open_log();
}
#if HAVE_TIME
#if LOG_TIME_NUMBER
str_p += loc_snprintf(str_p, bounds_p - str_p, "%lu: ",
(unsigned long)time(NULL));
#endif /* LOG_TIME_NUMBER */
#if HAVE_CTIME
#if LOG_CTIME_STRING
{
TIME_TYPE now;
now = time(NULL);
str_p += loc_snprintf(str_p, bounds_p - str_p, "%.24s: ", ctime(&now));
}
#endif /* LOG_CTIME_STRING */
#endif /* HAVE_CTIME */
#endif /* HAVE_TIME */
#if LOG_ITERATION_COUNT
/* add the iteration number */
str_p += loc_snprintf(str_p, bounds_p - str_p, "%lu: ", _dmalloc_iter_c);
#endif
/*
* NOTE: the following code, as well as the function definition
* above, would need to be altered to conform to non-ANSI-C
* specifications if necessary.
*/
/* write the format + info into str */
len = loc_vsnprintf(str_p, bounds_p - str_p, format, args);
/* was it an empty format? */
if (len == 0) {
return;
}
str_p += len;
/* tack on a '\n' if necessary */
if (*(str_p - 1) != '\n') {
*str_p++ = '\n';
*str_p = '\0';
}
len = str_p - str;
/* do we need to write the message to the logfile */
if (dmalloc_logpath != NULL) {
(void)write(outfile_fd, str, len);
}
/* do we need to print the message? */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_PRINT_MESSAGES)) {
(void)write(STDERR, str, len);
}
}
/*
* message writer with printf like arguments
*/
void _dmalloc_message(const char *format, ...)
/* __attribute__ ((format (printf, 1, 2))) */
{
va_list args;
va_start(args, format);
_dmalloc_vmessage(format, args);
va_end(args);
}
/*
* kill the program because of an internal malloc error
*/
void _dmalloc_die(const int silent_b)
{
char str[1024], *stop_str;
if (! silent_b) {
if (BIT_IS_SET(_dmalloc_flags, DEBUG_ERROR_ABORT)) {
stop_str = "dumping";
}
else {
stop_str = "halting";
}
/* print a message that we are going down */
(void)loc_snprintf(str, sizeof(str),
"debug-malloc library: %s program, fatal error\r\n",
stop_str);
(void)write(STDERR, str, strlen(str));
if (dmalloc_errno != ERROR_NONE) {
(void)loc_snprintf(str, sizeof(str), " Error: %s (err %d)\r\n",
_dmalloc_strerror(dmalloc_errno), dmalloc_errno);
(void)write(STDERR, str, strlen(str));
}
}
/*
* set this in case the following generates a recursive call for
* some dumb reason
*/
_dmalloc_aborting_b = 1;
/* do I need to drop core? */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_ERROR_ABORT)
|| BIT_IS_SET(_dmalloc_flags, DEBUG_ERROR_DUMP)) {
#if USE_ABORT
abort();
#else
#ifdef KILL_PROCESS
KILL_PROCESS;
#endif
#endif
}
/*
* NOTE: this should not be exit() because fclose will free, etc
*/
_exit(1);
}
/*
* handler of error codes from procedure FUNC. the procedure should
* have set the errno already.
*/
void dmalloc_error(const char *func)
{
/* do we need to log or print the error? */
if (dmalloc_logpath != NULL
|| BIT_IS_SET(_dmalloc_flags, DEBUG_PRINT_MESSAGES)) {
/* default str value */
if (func == NULL) {
func = "_malloc_error";
}
/* print the malloc error message */
_dmalloc_message("ERROR: %s: %s (err %d)",
func, _dmalloc_strerror(dmalloc_errno), dmalloc_errno);
}
/* do I need to abort? */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_ERROR_ABORT)) {
_dmalloc_die(0);
}
#if HAVE_FORK
/* how about just drop core? */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_ERROR_DUMP)) {
if (fork() == 0) {
_dmalloc_die(1);
}
}
#endif
}