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
|
/* Retrieve ELF descriptor used for DWARF access.
Copyright (C) 2002, 2003, 2004, 2005 Red Hat, Inc.
Written by Ulrich Drepper <drepper@redhat.com>, 2002.
This program is Open Source software; you can redistribute it and/or
modify it under the terms of the Open Software License version 1.0 as
published by the Open Source Initiative.
You should have received a copy of the Open Software License along
with this program; if not, you may obtain a copy of the Open Software
License version 1.0 from http://www.opensource.org/licenses/osl.php or
by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
3001 King Ranch Road, Ukiah, CA 95482. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <assert.h>
#include <stddef.h>
#include "libdwP.h"
#ifdef USE_TLS
/* The error number. */
static __thread int global_error;
#else
/* This is the key for the thread specific memory. */
static tls_key_t key;
/* The error number. Used in non-threaded programs. */
static int global_error;
static bool threaded;
/* We need to initialize the thread-specific data. */
once_define (static, once);
/* The initialization and destruction functions. */
static void init (void);
static void free_key_mem (void *mem);
#endif /* TLS */
int
dwarf_errno (void)
{
int result;
#ifndef USE_TLS
/* If we have not yet initialized the buffer do it now. */
once_execute (once, init);
if (threaded)
{
/* We do not allocate memory for the data. It is only a word.
We can store it in place of the pointer. */
result = (intptr_t) getspecific (key);
setspecific (key, (void *) (intptr_t) DWARF_E_NOERROR);
return result;
}
#endif /* TLS */
result = global_error;
global_error = DWARF_E_NOERROR;
return result;
}
INTDEF(dwarf_errno)
/* XXX For now we use string pointers. Once the table stablelizes
make it more DSO-friendly. */
static const char *errmsgs[] =
{
[DWARF_E_NOERROR] = N_("no error"),
[DWARF_E_UNKNOWN_ERROR] = N_("unknown error"),
[DWARF_E_INVALID_ACCESS] = N_("invalid access"),
[DWARF_E_NO_REGFILE] = N_("no regular file"),
[DWARF_E_IO_ERROR] = N_("I/O error"),
[DWARF_E_INVALID_ELF] = N_("invalid ELF file"),
[DWARF_E_NO_DWARF] = N_("no DWARF information"),
[DWARF_E_NOELF] = N_("no ELF file"),
[DWARF_E_GETEHDR_ERROR] = N_("cannot get ELF header"),
[DWARF_E_NOMEM] = N_("out of memory"),
[DWARF_E_UNIMPL] = N_("not implemented"),
[DWARF_E_INVALID_CMD] = N_("invalid command"),
[DWARF_E_INVALID_VERSION] = N_("invalid version"),
[DWARF_E_INVALID_FILE] = N_("invalid file"),
[DWARF_E_NO_ENTRY] = N_("no entries found"),
[DWARF_E_INVALID_DWARF] = N_("invalid DWARF"),
[DWARF_E_NO_STRING] = N_("no string data"),
[DWARF_E_NO_ADDR] = N_("no address value"),
[DWARF_E_NO_CONSTANT] = N_("no constant value"),
[DWARF_E_NO_REFERENCE] = N_("no reference value"),
[DWARF_E_INVALID_REFERENCE] = N_("invalid reference value"),
[DWARF_E_NO_DEBUG_LINE] = N_(".debug_line section missing"),
[DWARF_E_INVALID_DEBUG_LINE] = N_("invalid .debug_line section"),
[DWARF_E_TOO_BIG] = N_("debug information too big"),
[DWARF_E_VERSION] = N_("invalid DWARF version"),
[DWARF_E_INVALID_DIR_IDX] = N_("invalid directory index"),
[DWARF_E_ADDR_OUTOFRANGE] = N_("address out of range"),
[DWARF_E_NO_LOCLIST] = N_("no location list value"),
[DWARF_E_NO_BLOCK] = N_("no block data"),
[DWARF_E_INVALID_LINE_IDX] = N_("invalid line index"),
[DWARF_E_INVALID_ARANGE_IDX] = N_("invalid address range index"),
[DWARF_E_NO_MATCH] = N_("no matching address range"),
[DWARF_E_NO_FLAG] = N_("no flag value"),
[DWARF_E_INVALID_OFFSET] = N_("invalid offset"),
[DWARF_E_NO_DEBUG_RANGES] = N_(".debug_ranges section missing"),
};
#define nerrmsgs (sizeof (errmsgs) / sizeof (errmsgs[0]))
void
__libdw_seterrno (value)
int value;
{
#ifndef USE_TLS
/* If we have not yet initialized the buffer do it now. */
once_execute (once, init);
if (threaded)
/* We do not allocate memory for the data. It is only a word.
We can store it in place of the pointer. */
setspecific (key, (void *) (intptr_t) value);
#endif /* TLS */
global_error = (value >= 0 && value < (int) nerrmsgs
? value : DWARF_E_UNKNOWN_ERROR);
}
const char *
dwarf_errmsg (error)
int error;
{
int last_error;
#ifndef USE_TLS
/* If we have not yet initialized the buffer do it now. */
once_execute (once, init);
if ((error == 0 || error == -1) && threaded)
/* We do not allocate memory for the data. It is only a word.
We can store it in place of the pointer. */
last_error = (intptr_t) getspecific (key);
else
#endif /* TLS */
last_error = global_error;
if (error == 0)
return last_error != 0 ? _(errmsgs[last_error]) : NULL;
else if (error < -1 || error >= (int) nerrmsgs)
return _(errmsgs[DWARF_E_UNKNOWN_ERROR]);
return _(errmsgs[error == -1 ? last_error : error]);
}
INTDEF(dwarf_errmsg)
#ifndef USE_TLS
/* Free the thread specific data, this is done if a thread terminates. */
static void
free_key_mem (void *mem __attribute__ ((unused)))
{
setspecific (key, NULL);
}
/* Initialize the key for the global variable. */
static void
init (void)
{
// XXX Screw you, gcc4, the unused function attribute does not work.
__asm ("" :: "r" (free_key_mem));
if (key_create (&key, free_key_mem) == 0)
/* Creating the key succeeded. */
threaded = true;
}
#endif /* TLS */
|