blob: 966f8f0bd38854e8a5f554b1b9746c91c371e3fe [file] [log] [blame]
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001/*
2 * File stabs.c - read stabs information from the wine executable itself.
3 *
4 * Copyright (C) 1996, Eric Youngdale.
5 */
6
Marcus Meissner592ba101999-01-20 14:18:55 +00007#include "config.h"
8
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00009#include <sys/types.h>
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000010#include <fcntl.h>
11#include <sys/stat.h>
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +000012#include <sys/mman.h>
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000013#include <limits.h>
14#include <stdio.h>
Alexandre Julliardc6c09441997-01-12 18:32:19 +000015#include <stdlib.h>
16#include <string.h>
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000017#include <unistd.h>
Alexandre Julliard349a9531997-02-02 19:01:52 +000018#ifndef PATH_MAX
19#define PATH_MAX _MAX_PATH
20#endif
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000021
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000022#include "debugger.h"
Alexandre Julliardc6c09441997-01-12 18:32:19 +000023#include "xmalloc.h"
24
25#ifdef __svr4__
26#define __ELF__
27#endif
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000028
29#ifdef __ELF__
Marcus Meissner592ba101999-01-20 14:18:55 +000030#ifdef HAVE_ELF_H
31# include <elf.h>
32#endif
Alexandre Julliardc6c09441997-01-12 18:32:19 +000033#include <link.h>
Alexandre Julliard349a9531997-02-02 19:01:52 +000034#include <sys/mman.h>
35#elif defined(__EMX__)
36#include <a_out.h>
Alexandre Julliardc6c09441997-01-12 18:32:19 +000037#else
38#include <a.out.h>
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000039#endif
40
Alexandre Julliardc6c09441997-01-12 18:32:19 +000041#ifndef N_UNDF
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000042#define N_UNDF 0x00
Alexandre Julliardc6c09441997-01-12 18:32:19 +000043#endif
44
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000045#define N_GSYM 0x20
46#define N_FUN 0x24
47#define N_STSYM 0x26
48#define N_LCSYM 0x28
49#define N_MAIN 0x2a
50#define N_ROSYM 0x2c
51#define N_OPT 0x3c
52#define N_RSYM 0x40
53#define N_SLINE 0x44
54#define N_SO 0x64
55#define N_LSYM 0x80
56#define N_BINCL 0x82
57#define N_SOL 0x84
58#define N_PSYM 0xa0
59#define N_EINCL 0xa2
60#define N_LBRAC 0xc0
61#define N_RBRAC 0xe0
62
63
64/*
Alexandre Julliardc6c09441997-01-12 18:32:19 +000065 * This is how we translate stab types into our internal representations
66 * of datatypes.
67 */
68static struct datatype ** stab_types = NULL;
69static int num_stab_types = 0;
70
71/*
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +000072 * Set so that we know the main executable name and path.
73 */
74char * DEBUG_argv0;
75
76struct stab_nlist {
77 union {
78 char *n_name;
79 struct stab_nlist *n_next;
80 long n_strx;
81 } n_un;
82 unsigned char n_type;
83 char n_other;
84 short n_desc;
85 unsigned long n_value;
86};
87
Alexandre Julliard01d63461997-01-20 19:43:45 +000088/*
89 * This is used to keep track of known datatypes so that we don't redefine
90 * them over and over again. It sucks up lots of memory otherwise.
91 */
92struct known_typedef
93{
94 struct known_typedef * next;
95 char * name;
96 int ndefs;
97 struct datatype * types[0];
98};
99
100#define NR_STAB_HASH 521
101
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000102struct known_typedef * ktd_head[NR_STAB_HASH] = {NULL,};
Alexandre Julliard01d63461997-01-20 19:43:45 +0000103
104static unsigned int stab_hash( const char * name )
105{
106 unsigned int hash = 0;
107 unsigned int tmp;
108 const char * p;
109
110 p = name;
111
112 while (*p)
113 {
114 hash = (hash << 4) + *p++;
115
116 if( (tmp = (hash & 0xf0000000)) )
117 {
118 hash ^= tmp >> 24;
119 }
120 hash &= ~tmp;
121 }
122 return hash % NR_STAB_HASH;
123}
124
125
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000126static void stab_strcpy(char * dest, const char * source)
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000127{
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000128 /*
129 * A strcpy routine that stops when we hit the ':' character.
130 * Faster than copying the whole thing, and then nuking the
131 * ':'.
132 */
133 while(*source != '\0' && *source != ':')
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000134 *dest++ = *source++;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000135 *dest++ = '\0';
136}
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000137
Alexandre Julliard01d63461997-01-20 19:43:45 +0000138#define MAX_TD_NESTING 128
139
Alexandre Julliarda845b881998-06-01 10:44:35 +0000140static int **typenums;
141static int *nroftypenums=NULL;
142static int nrofnroftypenums=0;
143static int curtypenum = 0;
144
145static
146int
147DEBUG_FileSubNr2StabEnum(int filenr,int subnr) {
148 if (nrofnroftypenums<=filenr) {
149 nroftypenums = xrealloc(nroftypenums,sizeof(nroftypenums[0])*(filenr+1));
150 memset(nroftypenums+nrofnroftypenums,0,(filenr+1-nrofnroftypenums)*sizeof(nroftypenums[0]));
151 typenums = xrealloc(typenums,sizeof(typenums[0])*(filenr+1));
152 memset(typenums+nrofnroftypenums,0,sizeof(typenums[0])*(filenr+1-nrofnroftypenums));
153 nrofnroftypenums=filenr+1;
154 }
155 if (nroftypenums[filenr]<=subnr) {
156 typenums[filenr] = xrealloc(typenums[filenr],sizeof(typenums[0][0])*(subnr+1));
157 memset(typenums[filenr]+nroftypenums[filenr],0,sizeof(typenums[0][0])*(subnr+1-nroftypenums[filenr]));
158 nroftypenums[filenr] = subnr+1;
159 }
160 if (!typenums[filenr][subnr])
161 typenums[filenr][subnr]=++curtypenum;
162
163 if( num_stab_types <= curtypenum ) {
164 num_stab_types = curtypenum + 256;
165 stab_types = (struct datatype **) xrealloc(stab_types,
166 num_stab_types * sizeof(struct datatype *)
167 );
Ove Kaaven7e5b3b31998-10-11 12:13:42 +0000168 memset( stab_types + curtypenum, 0, sizeof(struct datatype *) * (num_stab_types - curtypenum) );
Alexandre Julliarda845b881998-06-01 10:44:35 +0000169 }
Marcus Meissner73458b01998-12-26 12:54:29 +0000170 /*fprintf(stderr,"(%d,%d) is %d\n",filenr,subnr,typenums[filenr][subnr]); */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000171 return typenums[filenr][subnr];
172}
173
174static
175int
176DEBUG_ReadTypeEnumBackwards(char*x) {
177 int filenr,subnr;
178
179 if (*x==')') {
180 while (*x!='(')
181 x--;
182 x++; /* '(' */
183 filenr=strtol(x,&x,10); /* <int> */
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000184 x++; /* ',' */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000185 subnr=strtol(x,&x,10); /* <int> */
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000186 x++; /* ')' */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000187 } else {
188 while ((*x>='0') && (*x<='9'))
189 x--;
190 filenr = 0;
191 subnr = atol(x+1);
192 }
193 return DEBUG_FileSubNr2StabEnum(filenr,subnr);
194}
195
196static
197int
198DEBUG_ReadTypeEnum(char **x) {
199 int filenr,subnr;
200
201 if (**x=='(') {
202 (*x)++; /* '(' */
203 filenr=strtol(*x,x,10); /* <int> */
204 (*x)++; /* ',' */
205 subnr=strtol(*x,x,10); /* <int> */
206 (*x)++; /* ')' */
207 } else {
208 filenr = 0;
209 subnr = strtol(*x,x,10); /* <int> */
210 }
211 return DEBUG_FileSubNr2StabEnum(filenr,subnr);
212}
213
Alexandre Julliard01d63461997-01-20 19:43:45 +0000214static
215int
216DEBUG_RegisterTypedef(const char * name, struct datatype ** types, int ndef)
217{
218 int hash;
219 struct known_typedef * ktd;
220
221 if( ndef == 1 )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000222 return TRUE;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000223
Alexandre Julliarda845b881998-06-01 10:44:35 +0000224 ktd = (struct known_typedef *) xmalloc(sizeof(struct known_typedef)
225 + ndef * sizeof(struct datatype *));
Alexandre Julliard01d63461997-01-20 19:43:45 +0000226
227 hash = stab_hash(name);
228
229 ktd->name = xstrdup(name);
230 ktd->ndefs = ndef;
231 memcpy(&ktd->types[0], types, ndef * sizeof(struct datatype *));
232 ktd->next = ktd_head[hash];
233 ktd_head[hash] = ktd;
234
235 return TRUE;
236}
237
238static
239int
240DEBUG_HandlePreviousTypedef(const char * name, const char * stab)
241{
242 int count;
243 enum debug_type expect;
244 int hash;
245 struct known_typedef * ktd;
246 char * ptr;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000247
248 hash = stab_hash(name);
249
250 for(ktd = ktd_head[hash]; ktd; ktd = ktd->next)
Alexandre Julliarda845b881998-06-01 10:44:35 +0000251 if ((ktd->name[0] == name[0]) && (strcmp(name, ktd->name) == 0) )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000252 break;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000253
254 /*
255 * Didn't find it. This must be a new one.
256 */
257 if( ktd == NULL )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000258 return FALSE;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000259
260 /*
261 * Examine the stab to make sure it has the same number of definitions.
262 */
263 count = 0;
264 for(ptr = strchr(stab, '='); ptr; ptr = strchr(ptr+1, '='))
265 {
266 if( count >= ktd->ndefs )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000267 return FALSE;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000268
269 /*
270 * Make sure the types of all of the objects is consistent with
271 * what we have already parsed.
272 */
273 switch(ptr[1])
274 {
275 case '*':
François Gouget241c7301998-10-28 10:47:09 +0000276 expect = DT_POINTER;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000277 break;
278 case 's':
279 case 'u':
François Gouget241c7301998-10-28 10:47:09 +0000280 expect = DT_STRUCT;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000281 break;
282 case 'a':
François Gouget241c7301998-10-28 10:47:09 +0000283 expect = DT_ARRAY;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000284 break;
285 case '1':
Alexandre Julliarda845b881998-06-01 10:44:35 +0000286 case '(':
Alexandre Julliard01d63461997-01-20 19:43:45 +0000287 case 'r':
François Gouget241c7301998-10-28 10:47:09 +0000288 expect = DT_BASIC;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000289 break;
290 case 'x':
François Gouget241c7301998-10-28 10:47:09 +0000291 expect = DT_STRUCT;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000292 break;
293 case 'e':
François Gouget241c7301998-10-28 10:47:09 +0000294 expect = DT_ENUM;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000295 break;
296 case 'f':
François Gouget241c7301998-10-28 10:47:09 +0000297 expect = DT_FUNC;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000298 break;
299 default:
Alexandre Julliarda845b881998-06-01 10:44:35 +0000300 fprintf(stderr, "Unknown type (%c).\n",ptr[1]);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000301 return FALSE;
302 }
303 if( expect != DEBUG_GetType(ktd->types[count]) )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000304 return FALSE;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000305 count++;
306 }
307
308 if( ktd->ndefs != count )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000309 return FALSE;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000310
311 /*
Alexandre Julliarda845b881998-06-01 10:44:35 +0000312 * Go through, dig out all of the type numbers, and substitute the
313 * appropriate things.
Alexandre Julliard01d63461997-01-20 19:43:45 +0000314 */
315 count = 0;
316 for(ptr = strchr(stab, '='); ptr; ptr = strchr(ptr+1, '='))
Alexandre Julliarda845b881998-06-01 10:44:35 +0000317 stab_types[DEBUG_ReadTypeEnumBackwards(ptr-1)] = ktd->types[count++];
Alexandre Julliard01d63461997-01-20 19:43:45 +0000318
319 return TRUE;
320}
321
322static int DEBUG_FreeRegisteredTypedefs()
323{
324 int count;
325 int j;
326 struct known_typedef * ktd;
327 struct known_typedef * next;
328
329 count = 0;
330 for(j=0; j < NR_STAB_HASH; j++ )
331 {
332 for(ktd = ktd_head[j]; ktd; ktd = next)
333 {
334 count++;
335 next = ktd->next;
336 free(ktd->name);
337 free(ktd);
338 }
339 ktd_head[j] = NULL;
340 }
341
342 return TRUE;
343
344}
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000345
346static
347int
348DEBUG_ParseTypedefStab(char * ptr, const char * typename)
349{
350 int arrmax;
351 int arrmin;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000352 char * c;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000353 struct datatype * curr_type;
354 struct datatype * datatype;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000355 struct datatype * curr_types[MAX_TD_NESTING];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000356 char element_name[1024];
Alexandre Julliard01d63461997-01-20 19:43:45 +0000357 int ntypes = 0;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000358 int offset;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000359 const char * orig_typename;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000360 int size;
361 char * tc;
362 char * tc2;
363 int typenum;
364
Alexandre Julliard01d63461997-01-20 19:43:45 +0000365 orig_typename = typename;
366
Alexandre Julliarda845b881998-06-01 10:44:35 +0000367 if( DEBUG_HandlePreviousTypedef(typename, ptr) )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000368 return TRUE;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000369
370 /*
371 * Go from back to front. First we go through and figure out what
372 * type numbers we need, and register those types. Then we go in
373 * and fill the details.
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000374 */
Alexandre Julliard01d63461997-01-20 19:43:45 +0000375
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000376 for( c = strchr(ptr, '='); c != NULL; c = strchr(c + 1, '=') )
377 {
378 /*
379 * Back up until we get to a non-numeric character. This is the type
380 * number.
381 */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000382 typenum = DEBUG_ReadTypeEnumBackwards(c-1);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000383
Alexandre Julliard01d63461997-01-20 19:43:45 +0000384 if( ntypes >= MAX_TD_NESTING )
385 {
386 /*
387 * If this ever happens, just bump the counter.
388 */
389 fprintf(stderr, "Typedef nesting overflow\n");
390 return FALSE;
391 }
392
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000393 switch(c[1])
394 {
395 case '*':
François Gouget241c7301998-10-28 10:47:09 +0000396 stab_types[typenum] = DEBUG_NewDataType(DT_POINTER, NULL);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000397 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000398 break;
399 case 's':
400 case 'u':
François Gouget241c7301998-10-28 10:47:09 +0000401 stab_types[typenum] = DEBUG_NewDataType(DT_STRUCT, typename);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000402 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000403 break;
404 case 'a':
François Gouget241c7301998-10-28 10:47:09 +0000405 stab_types[typenum] = DEBUG_NewDataType(DT_ARRAY, NULL);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000406 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000407 break;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000408 case '(':
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000409 case '1':
410 case 'r':
François Gouget241c7301998-10-28 10:47:09 +0000411 stab_types[typenum] = DEBUG_NewDataType(DT_BASIC, typename);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000412 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000413 break;
414 case 'x':
415 stab_strcpy(element_name, c + 3);
François Gouget241c7301998-10-28 10:47:09 +0000416 stab_types[typenum] = DEBUG_NewDataType(DT_STRUCT, element_name);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000417 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000418 break;
419 case 'e':
François Gouget241c7301998-10-28 10:47:09 +0000420 stab_types[typenum] = DEBUG_NewDataType(DT_ENUM, NULL);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000421 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000422 break;
423 case 'f':
François Gouget241c7301998-10-28 10:47:09 +0000424 stab_types[typenum] = DEBUG_NewDataType(DT_FUNC, NULL);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000425 curr_types[ntypes++] = stab_types[typenum];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000426 break;
427 default:
Alexandre Julliarda845b881998-06-01 10:44:35 +0000428 fprintf(stderr, "Unknown type (%c).\n",c[1]);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000429 }
430 typename = NULL;
431 }
432
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000433 /*
Alexandre Julliard01d63461997-01-20 19:43:45 +0000434 * Now register the type so that if we encounter it again, we will know
435 * what to do.
436 */
437 DEBUG_RegisterTypedef(orig_typename, curr_types, ntypes);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000438
Alexandre Julliard01d63461997-01-20 19:43:45 +0000439 /*
440 * OK, now take a second sweep through. Now we will be digging
441 * out the definitions of the various components, and storing
442 * them in the skeletons that we have already allocated. We take
443 * a right-to left search as this is much easier to parse.
444 */
445 for( c = strrchr(ptr, '='); c != NULL; c = strrchr(ptr, '=') )
446 {
Alexandre Julliarda845b881998-06-01 10:44:35 +0000447 int typenum = DEBUG_ReadTypeEnumBackwards(c-1);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000448 curr_type = stab_types[typenum];
449
450 switch(c[1])
451 {
452 case 'x':
453 tc = c + 3;
454 while( *tc != ':' )
Alexandre Julliarda845b881998-06-01 10:44:35 +0000455 tc++;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000456 tc++;
457 if( *tc == '\0' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000458 *c = '\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000459 else
Alexandre Julliard01d63461997-01-20 19:43:45 +0000460 strcpy(c, tc);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000461 break;
462 case '*':
463 case 'f':
464 tc = c + 2;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000465 datatype = stab_types[DEBUG_ReadTypeEnum(&tc)];
Alexandre Julliard01d63461997-01-20 19:43:45 +0000466 DEBUG_SetPointerType(curr_type, datatype);
467 if( *tc == '\0' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000468 *c = '\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000469 else
Alexandre Julliard01d63461997-01-20 19:43:45 +0000470 strcpy(c, tc);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000471 break;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000472 case '(':
Alexandre Julliard01d63461997-01-20 19:43:45 +0000473 case '1':
474 case 'r':
475 /*
476 * We have already handled these above.
477 */
478 *c = '\0';
479 break;
480 case 'a':
Alexandre Julliarda845b881998-06-01 10:44:35 +0000481 /* ar<typeinfo_nodef>;<int>;<int>;<typeinfo>,<int>,<int>;; */
482
483 tc = c + 3;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000484 /* 'r' */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000485 DEBUG_ReadTypeEnum(&tc);
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000486 tc++; /* ';' */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000487 arrmin = strtol(tc, &tc, 10); /* <int> */
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000488 tc++; /* ';' */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000489 arrmax = strtol(tc, &tc, 10); /* <int> */
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000490 tc++; /* ';' */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000491 datatype = stab_types[DEBUG_ReadTypeEnum(&tc)]; /* <typeinfo> */
Alexandre Julliard01d63461997-01-20 19:43:45 +0000492 if( *tc == '\0' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000493 *c = '\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000494 else
Alexandre Julliard01d63461997-01-20 19:43:45 +0000495 strcpy(c, tc);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000496 DEBUG_SetArrayParams(curr_type, arrmin, arrmax, datatype);
497 break;
498 case 's':
Alexandre Julliarda845b881998-06-01 10:44:35 +0000499 case 'u': {
500 int failure = 0;
501
Alexandre Julliard01d63461997-01-20 19:43:45 +0000502 tc = c + 2;
503 if( DEBUG_SetStructSize(curr_type, strtol(tc, &tc, 10)) == FALSE )
504 {
505 /*
506 * We have already filled out this structure. Nothing to do,
507 * so just skip forward to the end of the definition.
508 */
509 while( tc[0] != ';' && tc[1] != ';' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000510 tc++;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000511
512 tc += 2;
513
514 if( *tc == '\0' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000515 *c = '\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000516 else
Alexandre Julliard01d63461997-01-20 19:43:45 +0000517 strcpy(c, tc + 1);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000518 continue;
519 }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000520
Alexandre Julliard01d63461997-01-20 19:43:45 +0000521 /*
522 * Now parse the individual elements of the structure/union.
523 */
524 while(*tc != ';')
525 {
Alexandre Julliarda845b881998-06-01 10:44:35 +0000526 char *ti;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000527 tc2 = element_name;
528 while(*tc != ':')
Alexandre Julliard01d63461997-01-20 19:43:45 +0000529 *tc2++ = *tc++;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000530 tc++;
531 *tc2++ = '\0';
Alexandre Julliarda845b881998-06-01 10:44:35 +0000532 ti=tc;
533 datatype = stab_types[DEBUG_ReadTypeEnum(&tc)];
534 *tc='\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000535 tc++;
536 offset = strtol(tc, &tc, 10);
537 tc++;
538 size = strtol(tc, &tc, 10);
539 tc++;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000540 if (datatype)
541 DEBUG_AddStructElement(curr_type, element_name, datatype, offset, size);
542 else {
543 failure = 1;
544 /* ... but proceed parsing to the end of the stab */
545 }
Alexandre Julliard01d63461997-01-20 19:43:45 +0000546 }
Alexandre Julliarda845b881998-06-01 10:44:35 +0000547
548 if (failure) {
549 /* if we had a undeclared value this one is undeclared too.
550 * remove it from the stab_types.
551 * I just set it to NULL to detect bugs in my thoughtprocess.
552 * FIXME: leaks the memory for the structure elements.
553 * FIXME: such structures should have been optimized away
554 * by ld.
555 */
556 stab_types[typenum] = NULL;
557 }
Alexandre Julliard01d63461997-01-20 19:43:45 +0000558 if( *tc == '\0' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000559 *c = '\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000560 else
Alexandre Julliard01d63461997-01-20 19:43:45 +0000561 strcpy(c, tc + 1);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000562 break;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000563 }
Alexandre Julliard01d63461997-01-20 19:43:45 +0000564 case 'e':
565 tc = c + 2;
566 /*
567 * Now parse the individual elements of the structure/union.
568 */
569 while(*tc != ';')
570 {
571 tc2 = element_name;
572 while(*tc != ':')
Alexandre Julliard01d63461997-01-20 19:43:45 +0000573 *tc2++ = *tc++;
Alexandre Julliard01d63461997-01-20 19:43:45 +0000574 tc++;
575 *tc2++ = '\0';
576 offset = strtol(tc, &tc, 10);
577 tc++;
578 DEBUG_AddStructElement(curr_type, element_name, NULL, offset, 0);
579 }
580 if( *tc == '\0' )
Alexandre Julliard01d63461997-01-20 19:43:45 +0000581 *c = '\0';
Alexandre Julliard01d63461997-01-20 19:43:45 +0000582 else
Alexandre Julliard01d63461997-01-20 19:43:45 +0000583 strcpy(c, tc + 1);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000584 break;
585 default:
Alexandre Julliarda845b881998-06-01 10:44:35 +0000586 fprintf(stderr, "Unknown type (%c).\n",c[1]);
Alexandre Julliard01d63461997-01-20 19:43:45 +0000587 break;
588 }
589 }
590
Alexandre Julliarda845b881998-06-01 10:44:35 +0000591 return TRUE;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000592
593}
594
595static struct datatype *
596DEBUG_ParseStabType(const char * stab)
597{
598 char * c;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000599
600 /*
601 * Look through the stab definition, and figure out what datatype
602 * this represents. If we have something we know about, assign the
603 * type.
604 */
605 c = strchr(stab, ':');
606 if( c == NULL )
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000607 return NULL;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000608
609 c++;
610 /*
611 * The next character says more about the type (i.e. data, function, etc)
612 * of symbol. Skip it.
613 */
614 c++;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000615 /*
616 * The next is either an integer or a (integer,integer).
617 * The DEBUG_ReadTypeEnum takes care that stab_types is large enough.
618 */
619 return stab_types[DEBUG_ReadTypeEnum(&c)];
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000620}
621
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000622int
623DEBUG_ParseStabs(char * addr, unsigned int load_offset,
624 unsigned int staboff, int stablen,
625 unsigned int strtaboff, int strtablen)
626{
627 struct name_hash * curr_func = NULL;
628 struct wine_locals * curr_loc = NULL;
629 struct name_hash * curr_sym = NULL;
630 char currpath[PATH_MAX];
631 int i;
632 int ignore = FALSE;
633 int last_nso = -1;
634 int len;
635 DBG_ADDR new_addr;
636 int nstab;
637 char * ptr;
638 char * stabbuff;
639 int stabbufflen;
640 struct stab_nlist * stab_ptr;
641 char * strs;
642 int strtabinc;
643 char * subpath = NULL;
644 char symname[4096];
645
646 nstab = stablen / sizeof(struct stab_nlist);
647 stab_ptr = (struct stab_nlist *) (addr + staboff);
648 strs = (char *) (addr + strtaboff);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000649
650 memset(currpath, 0, sizeof(currpath));
651
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000652 /*
653 * Allocate a buffer into which we can build stab strings for cases
654 * where the stab is continued over multiple lines.
655 */
656 stabbufflen = 65536;
657 stabbuff = (char *) xmalloc(stabbufflen);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000658
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000659 strtabinc = 0;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000660 stabbuff[0] = '\0';
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000661 for(i=0; i < nstab; i++, stab_ptr++ )
662 {
663 ptr = strs + (unsigned int) stab_ptr->n_un.n_name;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000664 if( ptr[strlen(ptr) - 1] == '\\' )
665 {
666 /*
667 * Indicates continuation. Append this to the buffer, and go onto the
668 * next record. Repeat the process until we find a stab without the
669 * '/' character, as this indicates we have the whole thing.
670 */
671 len = strlen(ptr);
672 if( strlen(stabbuff) + len > stabbufflen )
673 {
674 stabbufflen += 65536;
675 stabbuff = (char *) xrealloc(stabbuff, stabbufflen);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000676 }
677 strncat(stabbuff, ptr, len - 1);
678 continue;
679 }
680 else if( stabbuff[0] != '\0' )
681 {
682 strcat( stabbuff, ptr);
683 ptr = stabbuff;
684 }
685
686 if( strchr(ptr, '=') != NULL )
687 {
688 /*
689 * The stabs aren't in writable memory, so copy it over so we are
690 * sure we can scribble on it.
691 */
692 if( ptr != stabbuff )
693 {
694 strcpy(stabbuff, ptr);
695 ptr = stabbuff;
696 }
697 stab_strcpy(symname, ptr);
698 DEBUG_ParseTypedefStab(ptr, symname);
699 }
700
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000701 switch(stab_ptr->n_type)
702 {
703 case N_GSYM:
704 /*
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000705 * These are useless with ELF. They have no value, and you have to
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000706 * read the normal symbol table to get the address. Thus we
707 * ignore them, and when we process the normal symbol table
708 * we should do the right thing.
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000709 *
710 * With a.out, they actually do make some amount of sense.
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000711 */
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000712 new_addr.seg = 0;
713 new_addr.type = DEBUG_ParseStabType(ptr);
714 new_addr.off = load_offset + stab_ptr->n_value;
715
716 stab_strcpy(symname, ptr);
717#ifdef __ELF__
718 curr_sym = DEBUG_AddSymbol( symname, &new_addr, currpath,
719 SYM_WINE | SYM_DATA | SYM_INVALID);
720#else
721 curr_sym = DEBUG_AddSymbol( symname, &new_addr, currpath,
722 SYM_WINE | SYM_DATA );
723#endif
724 break;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000725 case N_RBRAC:
726 case N_LBRAC:
727 /*
728 * We need to keep track of these so we get symbol scoping
729 * right for local variables. For now, we just ignore them.
730 * The hooks are already there for dealing with this however,
731 * so all we need to do is to keep count of the nesting level,
732 * and find the RBRAC for each matching LBRAC.
733 */
734 break;
735 case N_LCSYM:
736 case N_STSYM:
737 /*
738 * These are static symbols and BSS symbols.
739 */
740 new_addr.seg = 0;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000741 new_addr.type = DEBUG_ParseStabType(ptr);
742 new_addr.off = load_offset + stab_ptr->n_value;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000743
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000744 stab_strcpy(symname, ptr);
745 curr_sym = DEBUG_AddSymbol( symname, &new_addr, currpath,
746 SYM_WINE | SYM_DATA );
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000747 break;
748 case N_PSYM:
749 /*
750 * These are function parameters.
751 */
752 if( (curr_func != NULL)
753 && (stab_ptr->n_value != 0) )
754 {
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000755 stab_strcpy(symname, ptr);
756 curr_loc = DEBUG_AddLocal(curr_func, 0,
757 stab_ptr->n_value, 0, 0, symname);
758 DEBUG_SetLocalSymbolType( curr_loc, DEBUG_ParseStabType(ptr));
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000759 }
760 break;
761 case N_RSYM:
762 if( curr_func != NULL )
763 {
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000764 stab_strcpy(symname, ptr);
765 curr_loc = DEBUG_AddLocal(curr_func, stab_ptr->n_value, 0, 0, 0, symname);
766 DEBUG_SetLocalSymbolType( curr_loc, DEBUG_ParseStabType(ptr));
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000767 }
768 break;
769 case N_LSYM:
770 if( (curr_func != NULL)
771 && (stab_ptr->n_value != 0) )
772 {
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000773 stab_strcpy(symname, ptr);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000774 DEBUG_AddLocal(curr_func, 0,
775 stab_ptr->n_value, 0, 0, symname);
776 }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000777 else if (curr_func == NULL)
778 {
779 stab_strcpy(symname, ptr);
780 }
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000781 break;
782 case N_SLINE:
783 /*
784 * This is a line number. These are always relative to the start
785 * of the function (N_FUN), and this makes the lookup easier.
786 */
787 if( curr_func != NULL )
788 {
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000789#ifdef __ELF__
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000790 DEBUG_AddLineNumber(curr_func, stab_ptr->n_desc,
791 stab_ptr->n_value);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000792#else
793#if 0
794 /*
795 * This isn't right. The order of the stabs is different under
796 * a.out, and as a result we would end up attaching the line
797 * number to the wrong function.
798 */
799 DEBUG_AddLineNumber(curr_func, stab_ptr->n_desc,
800 stab_ptr->n_value - curr_func->addr.off);
801#endif
802#endif
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000803 }
804 break;
805 case N_FUN:
806 /*
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000807 * First, clean up the previous function we were working on.
808 */
809 DEBUG_Normalize(curr_func);
810
811 /*
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000812 * For now, just declare the various functions. Later
813 * on, we will add the line number information and the
814 * local symbols.
815 */
816 if( !ignore )
817 {
818 new_addr.seg = 0;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000819 new_addr.type = DEBUG_ParseStabType(ptr);
820 new_addr.off = load_offset + stab_ptr->n_value;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000821 /*
822 * Copy the string to a temp buffer so we
823 * can kill everything after the ':'. We do
824 * it this way because otherwise we end up dirtying
825 * all of the pages related to the stabs, and that
826 * sucks up swap space like crazy.
827 */
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000828 stab_strcpy(symname, ptr);
829 curr_func = DEBUG_AddSymbol( symname, &new_addr, currpath,
830 SYM_WINE | SYM_FUNC);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000831 }
832 else
833 {
834 /*
835 * Don't add line number information for this function
836 * any more.
837 */
838 curr_func = NULL;
839 }
840 break;
841 case N_SO:
842 /*
843 * This indicates a new source file. Append the records
844 * together, to build the correct path name.
845 */
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000846#ifndef __ELF__
847 /*
848 * With a.out, there is no NULL string N_SO entry at the end of
849 * the file. Thus when we find non-consecutive entries,
850 * we consider that a new file is started.
851 */
852 if( last_nso < i-1 )
853 {
854 currpath[0] = '\0';
855 DEBUG_Normalize(curr_func);
856 curr_func = NULL;
857 }
858#endif
859
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000860 if( *ptr == '\0' )
861 {
862 /*
863 * Nuke old path.
864 */
865 currpath[0] = '\0';
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000866 DEBUG_Normalize(curr_func);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000867 curr_func = NULL;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000868 /*
869 * The datatypes that we would need to use are reset when
870 * we start a new file.
871 */
Alexandre Julliarda845b881998-06-01 10:44:35 +0000872 memset(stab_types, 0, num_stab_types * sizeof(stab_types[0]));
873 /*
874 for (i=0;i<nrofnroftypenums;i++)
875 memset(typenums[i],0,sizeof(typenums[i][0])*nroftypenums[i]);
876 */
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000877 }
878 else
879 {
Alexandre Julliard349a9531997-02-02 19:01:52 +0000880 if (*ptr != '/')
881 strcat(currpath, ptr);
882 else
883 strcpy(currpath, ptr);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000884 subpath = ptr;
885 }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000886 last_nso = i;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000887 break;
888 case N_SOL:
889 /*
890 * This indicates we are including stuff from an include file.
891 * If this is the main source, enable the debug stuff, otherwise
892 * ignore it.
893 */
894 if( subpath == NULL || strcmp(ptr, subpath) == 0 )
895 {
896 ignore = FALSE;
897 }
898 else
899 {
900 ignore = TRUE;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000901 DEBUG_Normalize(curr_func);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000902 curr_func = NULL;
903 }
904 break;
905 case N_UNDF:
906 strs += strtabinc;
907 strtabinc = stab_ptr->n_value;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000908 DEBUG_Normalize(curr_func);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000909 curr_func = NULL;
910 break;
911 case N_OPT:
912 /*
913 * Ignore this. We don't care what it points to.
914 */
915 break;
916 case N_BINCL:
917 case N_EINCL:
918 case N_MAIN:
919 /*
920 * Always ignore these. GCC doesn't even generate them.
921 */
922 break;
923 default:
924 break;
925 }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000926
927 stabbuff[0] = '\0';
928
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000929#if 0
930 fprintf(stderr, "%d %x %s\n", stab_ptr->n_type,
931 (unsigned int) stab_ptr->n_value,
932 strs + (unsigned int) stab_ptr->n_un.n_name);
933#endif
934 }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000935
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000936 if( stab_types != NULL )
937 {
938 free(stab_types);
939 stab_types = NULL;
940 num_stab_types = 0;
941 }
942
Alexandre Julliard01d63461997-01-20 19:43:45 +0000943
944 DEBUG_FreeRegisteredTypedefs();
945
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000946 return TRUE;
947}
948
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000949#ifdef __ELF__
950
951/*
952 * Walk through the entire symbol table and add any symbols we find there.
953 * This can be used in cases where we have stripped ELF shared libraries,
954 * or it can be used in cases where we have data symbols for which the address
955 * isn't encoded in the stabs.
956 *
957 * This is all really quite easy, since we don't have to worry about line
958 * numbers or local data variables.
959 */
960static
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000961int
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000962DEBUG_ProcessElfSymtab(char * addr, unsigned int load_offset,
963 Elf32_Shdr * symtab, Elf32_Shdr * strtab)
964{
965 char * curfile = NULL;
966 struct name_hash * curr_sym = NULL;
967 int flags;
968 int i;
969 DBG_ADDR new_addr;
970 int nsym;
971 char * strp;
972 char * symname;
973 Elf32_Sym * symp;
974
975
976 symp = (Elf32_Sym *) (addr + symtab->sh_offset);
977 nsym = symtab->sh_size / sizeof(*symp);
978 strp = (char *) (addr + strtab->sh_offset);
979
980 for(i=0; i < nsym; i++, symp++)
981 {
982 /*
983 * Ignore certain types of entries which really aren't of that much
984 * interest.
985 */
986 if( ELF32_ST_TYPE(symp->st_info) == STT_SECTION )
987 {
988 continue;
989 }
990
991 symname = strp + symp->st_name;
992
993 /*
994 * Save the name of the current file, so we have a way of tracking
995 * static functions/data.
996 */
997 if( ELF32_ST_TYPE(symp->st_info) == STT_FILE )
998 {
999 curfile = symname;
1000 continue;
1001 }
1002
1003
1004 /*
1005 * See if we already have something for this symbol.
1006 * If so, ignore this entry, because it would have come from the
1007 * stabs or from a previous symbol. If the value is different,
1008 * we will have to keep the darned thing, because there can be
1009 * multiple local symbols by the same name.
1010 */
1011 if( (DEBUG_GetSymbolValue(symname, -1, &new_addr, FALSE ) == TRUE)
1012 && (new_addr.off == (load_offset + symp->st_value)) )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001013 continue;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001014
1015 new_addr.seg = 0;
1016 new_addr.type = NULL;
1017 new_addr.off = load_offset + symp->st_value;
1018 flags = SYM_WINE | (ELF32_ST_BIND(symp->st_info) == STT_FUNC
1019 ? SYM_FUNC : SYM_DATA);
1020 if( ELF32_ST_BIND(symp->st_info) == STB_GLOBAL )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001021 curr_sym = DEBUG_AddSymbol( symname, &new_addr, NULL, flags );
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001022 else
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001023 curr_sym = DEBUG_AddSymbol( symname, &new_addr, curfile, flags );
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001024
1025 /*
1026 * Record the size of the symbol. This can come in handy in
1027 * some cases. Not really used yet, however.
1028 */
1029 if( symp->st_size != 0 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001030 DEBUG_SetSymbolSize(curr_sym, symp->st_size);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001031 }
1032
1033 return TRUE;
1034}
1035
1036static
1037int
1038DEBUG_ProcessElfObject(char * filename, unsigned int load_offset)
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001039{
1040 int rtn = FALSE;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001041 struct stat statbuf;
1042 int fd = -1;
1043 int status;
1044 char * addr = (char *) 0xffffffff;
1045 Elf32_Ehdr * ehptr;
1046 Elf32_Shdr * spnt;
1047 char * shstrtab;
1048 int nsect;
1049 int i;
1050 int stabsect;
1051 int stabstrsect;
1052
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001053
1054 /*
1055 * Make sure we can stat and open this file.
1056 */
1057 if( filename == NULL )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001058 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001059
1060 status = stat(filename, &statbuf);
1061 if( status == -1 )
1062 {
Alexandre Julliard77b99181997-09-14 17:17:23 +00001063 char *s,*t,*fn,*paths;
1064 if (strchr(filename,'/'))
1065 goto leave;
1066 paths = xstrdup(getenv("PATH"));
1067 s = paths;
1068 while (s && *s) {
1069 t = strchr(s,':');
1070 if (t) *t='\0';
1071 fn = (char*)xmalloc(strlen(filename)+1+strlen(s)+1);
1072 strcpy(fn,s);
1073 strcat(fn,"/");
1074 strcat(fn,filename);
1075 if ((rtn = DEBUG_ProcessElfObject(fn,load_offset))) {
Alexandre Julliard3db94ef1997-09-28 17:43:24 +00001076 free(fn);
Alexandre Julliard77b99181997-09-14 17:17:23 +00001077 free(paths);
1078 goto leave;
1079 }
Alexandre Julliard3db94ef1997-09-28 17:43:24 +00001080 free(fn);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001081 if (t) s = t+1; else break;
Alexandre Julliard77b99181997-09-14 17:17:23 +00001082 }
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001083 if (!s || !*s) fprintf(stderr," not found");
Alexandre Julliard77b99181997-09-14 17:17:23 +00001084 free(paths);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001085 goto leave;
1086 }
1087
1088 /*
1089 * Now open the file, so that we can mmap() it.
1090 */
1091 fd = open(filename, O_RDONLY);
1092 if( fd == -1 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001093 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001094
1095
1096 /*
1097 * Now mmap() the file.
1098 */
1099 addr = mmap(0, statbuf.st_size, PROT_READ,
1100 MAP_PRIVATE, fd, 0);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001101 if( addr == (char *) 0xffffffff )
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001102 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001103
1104 /*
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001105 * Next, we need to find a few of the internal ELF headers within
1106 * this thing. We need the main executable header, and the section
1107 * table.
1108 */
1109 ehptr = (Elf32_Ehdr *) addr;
1110
Alexandre Julliarddadf78f1998-05-17 17:13:43 +00001111 if( load_offset == 0 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001112 DEBUG_RegisterELFDebugInfo(ehptr->e_entry, statbuf.st_size, filename);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001113 else
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001114 DEBUG_RegisterELFDebugInfo(load_offset, statbuf.st_size, filename);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001115
1116 spnt = (Elf32_Shdr *) (addr + ehptr->e_shoff);
1117 nsect = ehptr->e_shnum;
1118 shstrtab = (addr + spnt[ehptr->e_shstrndx].sh_offset);
1119
1120 stabsect = stabstrsect = -1;
1121
1122 for(i=0; i < nsect; i++)
1123 {
1124 if( strcmp(shstrtab + spnt[i].sh_name, ".stab") == 0 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001125 stabsect = i;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001126
1127 if( strcmp(shstrtab + spnt[i].sh_name, ".stabstr") == 0 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001128 stabstrsect = i;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001129 }
1130
1131 if( stabsect == -1 || stabstrsect == -1 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001132 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001133
1134 /*
1135 * OK, now just parse all of the stabs.
1136 */
1137 rtn = DEBUG_ParseStabs(addr, load_offset,
1138 spnt[stabsect].sh_offset,
1139 spnt[stabsect].sh_size,
1140 spnt[stabstrsect].sh_offset,
1141 spnt[stabstrsect].sh_size);
1142
1143 if( rtn != TRUE )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001144 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001145
1146 for(i=0; i < nsect; i++)
1147 {
1148 if( (strcmp(shstrtab + spnt[i].sh_name, ".symtab") == 0)
1149 && (spnt[i].sh_type == SHT_SYMTAB) )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001150 DEBUG_ProcessElfSymtab(addr, load_offset,
1151 spnt + i, spnt + spnt[i].sh_link);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001152
1153 if( (strcmp(shstrtab + spnt[i].sh_name, ".dynsym") == 0)
1154 && (spnt[i].sh_type == SHT_DYNSYM) )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001155 DEBUG_ProcessElfSymtab(addr, load_offset,
1156 spnt + i, spnt + spnt[i].sh_link);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001157 }
1158
1159leave:
1160
1161 if( addr != (char *) 0xffffffff )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001162 munmap(addr, statbuf.st_size);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001163
1164 if( fd != -1 )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001165 close(fd);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001166
1167 return (rtn);
1168
1169}
1170
1171int
1172DEBUG_ReadExecutableDbgInfo(void)
1173{
1174 Elf32_Ehdr * ehdr;
1175 char * exe_name;
1176 Elf32_Dyn * dynpnt;
1177 struct r_debug * dbg_hdr;
1178 struct link_map * lpnt = NULL;
1179 extern Elf32_Dyn _DYNAMIC[];
1180 int rtn = FALSE;
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001181 int rowcount;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001182
1183 exe_name = DEBUG_argv0;
1184
1185 /*
1186 * Make sure we can stat and open this file.
1187 */
1188 if( exe_name == NULL )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001189 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001190
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001191 fprintf( stderr, "Loading symbols: %s", exe_name );
1192 rowcount = 17 + strlen(exe_name);
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001193 DEBUG_ProcessElfObject(exe_name, 0);
1194
1195 /*
1196 * Finally walk the tables that the dynamic loader maintains to find all
1197 * of the other shared libraries which might be loaded. Perform the
1198 * same step for all of these.
1199 */
1200 dynpnt = _DYNAMIC;
1201 if( dynpnt == NULL )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001202 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001203
1204 /*
1205 * Now walk the dynamic section (of the executable, looking for a DT_DEBUG
1206 * entry.
1207 */
1208 for(; dynpnt->d_tag != DT_NULL; dynpnt++)
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001209 if( dynpnt->d_tag == DT_DEBUG )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001210 break;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001211
1212 if( (dynpnt->d_tag != DT_DEBUG)
Alexandre Julliarddadf78f1998-05-17 17:13:43 +00001213 || (dynpnt->d_un.d_ptr == 0) )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001214 goto leave;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001215
1216 /*
1217 * OK, now dig into the actual tables themselves.
1218 */
1219 dbg_hdr = (struct r_debug *) dynpnt->d_un.d_ptr;
1220 lpnt = dbg_hdr->r_map;
1221
1222 /*
1223 * Now walk the linked list. In all known ELF implementations,
1224 * the dynamic loader maintains this linked list for us. In some
1225 * cases the first entry doesn't appear with a name, in other cases it
1226 * does.
1227 */
1228 for(; lpnt; lpnt = lpnt->l_next )
1229 {
1230 /*
1231 * We already got the stuff for the executable using the
1232 * argv[0] entry above. Here we only need to concentrate on any
1233 * shared libraries which may be loaded.
1234 */
1235 ehdr = (Elf32_Ehdr *) lpnt->l_addr;
Alexandre Julliarddadf78f1998-05-17 17:13:43 +00001236 if( (lpnt->l_addr == 0) || (ehdr->e_type != ET_DYN) )
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001237 continue;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001238
1239 if( lpnt->l_name != NULL )
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001240 {
1241 if (rowcount + strlen(lpnt->l_name) > 76)
1242 {
1243 fprintf( stderr, "\n " );
1244 rowcount = 3;
1245 }
1246 fprintf( stderr, " %s", lpnt->l_name );
1247 rowcount += strlen(lpnt->l_name) + 1;
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001248 DEBUG_ProcessElfObject(lpnt->l_name, lpnt->l_addr);
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001249 }
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001250 }
1251
1252 rtn = TRUE;
1253
1254leave:
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001255 fprintf( stderr, "\n" );
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001256 return (rtn);
1257
1258}
1259
1260#else /* !__ELF__ */
1261
1262#ifdef linux
1263/*
1264 * a.out linux.
1265 */
1266int
1267DEBUG_ReadExecutableDbgInfo(void)
1268{
1269 char * addr = (char *) 0xffffffff;
1270 char * exe_name;
1271 struct exec * ahdr;
1272 int fd = -1;
1273 int rtn = FALSE;
1274 unsigned int staboff;
1275 struct stat statbuf;
1276 int status;
1277 unsigned int stroff;
1278
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001279 exe_name = DEBUG_argv0;
1280
1281 /*
1282 * Make sure we can stat and open this file.
1283 */
1284 if( exe_name == NULL )
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001285 goto leave;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001286
1287 status = stat(exe_name, &statbuf);
1288 if( status == -1 )
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001289 goto leave;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001290
1291 /*
1292 * Now open the file, so that we can mmap() it.
1293 */
1294 fd = open(exe_name, O_RDONLY);
1295 if( fd == -1 )
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001296 goto leave;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001297
1298
1299 /*
1300 * Now mmap() the file.
1301 */
1302 addr = mmap(0, statbuf.st_size, PROT_READ,
1303 MAP_PRIVATE, fd, 0);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001304 if( addr == (char *) 0xffffffff )
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001305 goto leave;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001306
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001307 ahdr = (struct exec *) addr;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001308
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001309 staboff = N_SYMOFF(*ahdr);
1310 stroff = N_STROFF(*ahdr);
1311 rtn = DEBUG_ParseStabs(addr, 0,
1312 staboff,
1313 ahdr->a_syms,
1314 stroff,
1315 statbuf.st_size - stroff);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001316
1317 /*
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001318 * Give a nice status message here...
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001319 */
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001320 fprintf( stderr, "Loading symbols: %s", exe_name );
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001321
1322 rtn = TRUE;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001323
1324leave:
1325
1326 if( addr != (char *) 0xffffffff )
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001327 munmap(addr, statbuf.st_size);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001328
1329 if( fd != -1 )
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001330 close(fd);
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001331
1332 return (rtn);
1333
1334}
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001335#else
1336/*
1337 * Non-linux, non-ELF platforms.
1338 */
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00001339int
1340DEBUG_ReadExecutableDbgInfo(void)
1341{
1342return FALSE;
1343}
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001344#endif
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00001345
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001346#endif /* __ELF__ */