1 /* -*- tab-width: 8; c-basic-offset: 2 -*- */
4 * File stabs.c - read stabs information from the wine executable itself.
6 * Copyright (C) 1996, Eric Youngdale.
11 #include <sys/types.h>
14 #ifdef HAVE_SYS_MMAN_H
23 #define PATH_MAX _MAX_PATH
29 #if defined(__svr4__) || defined(__sun)
40 #elif defined(__EMX__)
77 struct stab_nlist *n_next;
83 unsigned long n_value;
87 * This is used to keep track of known datatypes so that we don't redefine
88 * them over and over again. It sucks up lots of memory otherwise.
92 struct known_typedef * next;
95 struct datatype * types[1];
98 #define NR_STAB_HASH 521
100 struct known_typedef * ktd_head[NR_STAB_HASH] = {NULL,};
102 static unsigned int stab_hash( const char * name )
104 unsigned int hash = 0;
112 hash = (hash << 4) + *p++;
114 if( (tmp = (hash & 0xf0000000)) )
120 return hash % NR_STAB_HASH;
124 static void stab_strcpy(char * dest, const char * source)
127 * A strcpy routine that stops when we hit the ':' character.
128 * Faster than copying the whole thing, and then nuking the
131 while(*source != '\0' && *source != ':')
140 struct datatype** vector;
144 #define MAX_INCLUDES 256
146 static include_def* include_defs = NULL;
147 static int num_include_def = 0;
148 static int num_alloc_include_def = 0;
149 static int cu_include_stack[MAX_INCLUDES];
150 static int cu_include_stk_idx = 0;
151 static struct datatype** cu_vector = NULL;
152 static int cu_nrofentries = 0;
156 DEBUG_CreateInclude(const char* file, unsigned long val)
158 if (num_include_def == num_alloc_include_def)
160 num_alloc_include_def += 256;
161 include_defs = DBG_realloc(include_defs, sizeof(include_defs[0])*num_alloc_include_def);
162 memset(include_defs+num_include_def, 0, sizeof(include_defs[0])*256);
164 include_defs[num_include_def].name = DBG_strdup(file);
165 include_defs[num_include_def].value = val;
166 include_defs[num_include_def].vector = NULL;
167 include_defs[num_include_def].nrofentries = 0;
169 return num_include_def++;
174 DEBUG_FindInclude(const char* file, unsigned long val)
178 for (i = 0; i < num_include_def; i++)
180 if (val == include_defs[i].value &&
181 strcmp(file, include_defs[i].name) == 0)
189 DEBUG_AddInclude(int idx)
191 ++cu_include_stk_idx;
193 /* is this happen, just bump MAX_INCLUDES */
194 /* we could also handle this as another dynarray */
195 assert(cu_include_stk_idx < MAX_INCLUDES);
197 cu_include_stack[cu_include_stk_idx] = idx;
198 return cu_include_stk_idx;
203 DEBUG_ResetIncludes(void)
206 * The datatypes that we would need to use are reset when
207 * we start a new file. (at least the ones in filenr == 0
209 cu_include_stk_idx = 0;/* keep 0 as index for the .c file itself */
210 memset(cu_vector, 0, sizeof(cu_vector[0]) * cu_nrofentries);
215 DEBUG_FreeIncludes(void)
219 DEBUG_ResetIncludes();
221 for (i = 0; i < num_include_def; i++)
223 DBG_free(include_defs[i].name);
224 DBG_free(include_defs[i].vector);
226 DBG_free(include_defs);
229 num_alloc_include_def = 0;
235 #define MAX_TD_NESTING 128
239 DEBUG_FileSubNr2StabEnum(int filenr, int subnr)
241 struct datatype** ret;
243 /* fprintf(stderr, "creating type id for (%d,%d)\n", filenr, subnr); */
245 /* FIXME: I could perhaps create a dummy include_def for each compilation
246 * unit which would allow not to handle those two cases separately
250 if (cu_nrofentries <= subnr)
252 cu_vector = DBG_realloc(cu_vector, sizeof(cu_vector[0])*(subnr+1));
253 memset(cu_vector+cu_nrofentries, 0, sizeof(cu_vector[0])*(subnr+1-cu_nrofentries));
254 cu_nrofentries = subnr + 1;
256 ret = &cu_vector[subnr];
262 assert(filenr <= cu_include_stk_idx);
264 idef = &include_defs[cu_include_stack[filenr]];
266 if (idef->nrofentries <= subnr)
268 idef->vector = DBG_realloc(idef->vector, sizeof(idef->vector[0])*(subnr+1));
269 memset(idef->vector + idef->nrofentries, 0, sizeof(idef->vector[0])*(subnr+1-idef->nrofentries));
270 idef->nrofentries = subnr + 1;
272 ret = &idef->vector[subnr];
274 /* fprintf(stderr,"(%d,%d) is %d\n",filenr,subnr,ret); */
280 DEBUG_ReadTypeEnumBackwards(char*x) {
287 filenr=strtol(x,&x,10); /* <int> */
289 subnr=strtol(x,&x,10); /* <int> */
292 while ((*x>='0') && (*x<='9'))
297 return DEBUG_FileSubNr2StabEnum(filenr,subnr);
302 DEBUG_ReadTypeEnum(char **x) {
307 filenr=strtol(*x,x,10); /* <int> */
309 subnr=strtol(*x,x,10); /* <int> */
313 subnr = strtol(*x,x,10); /* <int> */
315 return DEBUG_FileSubNr2StabEnum(filenr,subnr);
320 DEBUG_RegisterTypedef(const char * name, struct datatype ** types, int ndef)
323 struct known_typedef * ktd;
328 ktd = (struct known_typedef *) DBG_alloc(sizeof(struct known_typedef)
329 + (ndef - 1) * sizeof(struct datatype *));
331 hash = stab_hash(name);
333 ktd->name = DBG_strdup(name);
335 memcpy(&ktd->types[0], types, ndef * sizeof(struct datatype *));
336 ktd->next = ktd_head[hash];
337 ktd_head[hash] = ktd;
344 DEBUG_HandlePreviousTypedef(const char * name, const char * stab)
347 enum debug_type expect;
349 struct known_typedef * ktd;
352 hash = stab_hash(name);
354 for(ktd = ktd_head[hash]; ktd; ktd = ktd->next)
355 if ((ktd->name[0] == name[0]) && (strcmp(name, ktd->name) == 0) )
359 * Didn't find it. This must be a new one.
365 * Examine the stab to make sure it has the same number of definitions.
368 for(ptr = strchr(stab, '='); ptr; ptr = strchr(ptr+1, '='))
370 if( count >= ktd->ndefs )
374 * Make sure the types of all of the objects is consistent with
375 * what we have already parsed.
389 case '(': /* it's mainly a ref to another typedef, skip it */
406 fprintf(stderr, "Unknown type (%c).\n",ptr[1]);
409 if( expect != -1 && expect != DEBUG_GetType(ktd->types[count]) )
414 if( ktd->ndefs != count )
418 * Go through, dig out all of the type numbers, and substitute the
419 * appropriate things.
422 for(ptr = strchr(stab, '='); ptr; ptr = strchr(ptr+1, '='))
423 *DEBUG_ReadTypeEnumBackwards(ptr-1) = ktd->types[count++];
428 static int DEBUG_FreeRegisteredTypedefs(void)
432 struct known_typedef * ktd;
433 struct known_typedef * next;
436 for(j=0; j < NR_STAB_HASH; j++ )
438 for(ktd = ktd_head[j]; ktd; ktd = next)
454 DEBUG_ParseTypedefStab(char * ptr, const char * typename)
459 struct datatype * curr_type;
460 struct datatype * datatype;
461 struct datatype * curr_types[MAX_TD_NESTING];
462 char element_name[1024];
465 const char * orig_typename;
471 orig_typename = typename;
473 if( DEBUG_HandlePreviousTypedef(typename, ptr) )
477 * Go from back to front. First we go through and figure out what
478 * type numbers we need, and register those types. Then we go in
479 * and fill the details.
482 for( c = strchr(ptr, '='); c != NULL; c = strchr(c + 1, '=') )
485 * Back up until we get to a non-numeric character, to get datatype
487 struct datatype** dt = DEBUG_ReadTypeEnumBackwards(c-1);
489 if( ntypes >= MAX_TD_NESTING )
492 * If this ever happens, just bump the counter.
494 fprintf(stderr, "Typedef nesting overflow\n");
501 *dt = DEBUG_NewDataType(DT_POINTER, NULL);
502 curr_types[ntypes++] = *dt;
506 *dt = DEBUG_NewDataType(DT_STRUCT, typename);
507 curr_types[ntypes++] = *dt;
510 *dt = DEBUG_NewDataType(DT_ARRAY, NULL);
511 curr_types[ntypes++] = *dt;
514 /* will be handled in next loop,
515 * just a ref to another type
517 curr_types[ntypes++] = NULL;
521 *dt = DEBUG_NewDataType(DT_BASIC, typename);
522 curr_types[ntypes++] = *dt;
525 stab_strcpy(element_name, c + 3);
526 *dt = DEBUG_NewDataType(DT_STRUCT, element_name);
527 curr_types[ntypes++] = *dt;
530 *dt = DEBUG_NewDataType(DT_ENUM, NULL);
531 curr_types[ntypes++] = *dt;
534 *dt = DEBUG_NewDataType(DT_FUNC, NULL);
535 curr_types[ntypes++] = *dt;
538 fprintf(stderr, "Unknown type (%c).\n",c[1]);
546 * OK, now take a second sweep through. Now we will be digging
547 * out the definitions of the various components, and storing
548 * them in the skeletons that we have already allocated. We take
549 * a right-to left search as this is much easier to parse.
551 for( c = strrchr(ptr, '='); c != NULL; c = strrchr(ptr, '=') )
553 struct datatype** dt = DEBUG_ReadTypeEnumBackwards(c-1);
554 struct datatype** dt2;
575 datatype = *DEBUG_ReadTypeEnum(&tc);
576 DEBUG_SetPointerType(curr_type, datatype);
584 dt2 = DEBUG_ReadTypeEnum(&tc);
590 else if (!*dt && !*dt2)
592 /* this should be a basic type, define it */
593 *dt2 = *dt = DEBUG_NewDataType(DT_BASIC, typename);
597 fprintf(stderr, "Unknown condition %p %p (%s)\n", *dt, *dt2, ptr);
603 curr_types[ntp--] = *dt;
609 * We have already handled these above.
615 /* ar<typeinfo_nodef>;<int>;<int>;<typeinfo>,<int>,<int>;; */
619 DEBUG_ReadTypeEnum(&tc);
621 arrmin = strtol(tc, &tc, 10); /* <int> */
623 arrmax = strtol(tc, &tc, 10); /* <int> */
625 datatype = *DEBUG_ReadTypeEnum(&tc); /* <typeinfo> */
630 DEBUG_SetArrayParams(curr_type, arrmin, arrmax, datatype);
638 if( DEBUG_SetStructSize(curr_type, strtol(tc, &tc, 10)) == FALSE )
641 * We have already filled out this structure. Nothing to do,
642 * so just skip forward to the end of the definition.
644 while( tc[0] != ';' && tc[1] != ';' )
657 * Now parse the individual elements of the structure/union.
668 datatype = *DEBUG_ReadTypeEnum(&tc);
671 offset = strtol(tc, &tc, 10);
673 size = strtol(tc, &tc, 10);
676 DEBUG_AddStructElement(curr_type, element_name, datatype,
681 /* ... but proceed parsing to the end of the stab */
682 fprintf(stderr, "failure on %s %s\n", ptr, ti);
689 /* if we had a undeclared value this one is undeclared too.
690 * remove it from the stab_types.
691 * I just set it to NULL to detect bugs in my thoughtprocess.
692 * FIXME: leaks the memory for the structure elements.
693 * FIXME: such structures should have been optimized away
707 * Now parse the individual elements of the structure/union.
716 offset = strtol(tc, &tc, 10);
718 DEBUG_AddStructElement(curr_type, element_name, NULL, offset, 0);
726 fprintf(stderr, "Unknown type (%c).\n",c[1]);
731 * Now register the type so that if we encounter it again, we will know
734 DEBUG_RegisterTypedef(orig_typename, curr_types, ntypes);
739 static struct datatype *
740 DEBUG_ParseStabType(const char * stab)
745 * Look through the stab definition, and figure out what datatype
746 * this represents. If we have something we know about, assign the
749 c = strchr(stab, ':');
755 * The next character says more about the type (i.e. data, function, etc)
756 * of symbol. Skip it.
761 * The next is either an integer or a (integer,integer).
762 * The DEBUG_ReadTypeEnum takes care that stab_types is large enough.
764 return *DEBUG_ReadTypeEnum(&c);
768 DEBUG_ParseStabs(char * addr, unsigned int load_offset,
769 unsigned int staboff, int stablen,
770 unsigned int strtaboff, int strtablen)
772 struct name_hash * curr_func = NULL;
773 struct wine_locals * curr_loc = NULL;
774 struct name_hash * curr_sym = NULL;
775 char currpath[PATH_MAX];
777 int in_external_file = FALSE;
785 struct stab_nlist * stab_ptr;
788 char * subpath = NULL;
791 nstab = stablen / sizeof(struct stab_nlist);
792 stab_ptr = (struct stab_nlist *) (addr + staboff);
793 strs = (char *) (addr + strtaboff);
795 memset(currpath, 0, sizeof(currpath));
798 * Allocate a buffer into which we can build stab strings for cases
799 * where the stab is continued over multiple lines.
802 stabbuff = (char *) DBG_alloc(stabbufflen);
806 for(i=0; i < nstab; i++, stab_ptr++ )
808 ptr = strs + (unsigned int) stab_ptr->n_un.n_name;
809 if( ptr[strlen(ptr) - 1] == '\\' )
812 * Indicates continuation. Append this to the buffer, and go onto the
813 * next record. Repeat the process until we find a stab without the
814 * '/' character, as this indicates we have the whole thing.
817 if( strlen(stabbuff) + len > stabbufflen )
819 stabbufflen += 65536;
820 stabbuff = (char *) DBG_realloc(stabbuff, stabbufflen);
822 strncat(stabbuff, ptr, len - 1);
825 else if( stabbuff[0] != '\0' )
827 strcat( stabbuff, ptr);
831 if( strchr(ptr, '=') != NULL )
834 * The stabs aren't in writable memory, so copy it over so we are
835 * sure we can scribble on it.
837 if( ptr != stabbuff )
839 strcpy(stabbuff, ptr);
842 stab_strcpy(symname, ptr);
843 DEBUG_ParseTypedefStab(ptr, symname);
846 switch(stab_ptr->n_type)
850 * These are useless with ELF. They have no value, and you have to
851 * read the normal symbol table to get the address. Thus we
852 * ignore them, and when we process the normal symbol table
853 * we should do the right thing.
855 * With a.out, they actually do make some amount of sense.
857 new_value.addr.seg = 0;
858 new_value.type = DEBUG_ParseStabType(ptr);
859 new_value.addr.off = load_offset + stab_ptr->n_value;
860 new_value.cookie = DV_TARGET;
862 stab_strcpy(symname, ptr);
864 curr_sym = DEBUG_AddSymbol( symname, &new_value, currpath,
865 SYM_WINE | SYM_DATA | SYM_INVALID);
867 curr_sym = DEBUG_AddSymbol( symname, &new_value, currpath,
868 SYM_WINE | SYM_DATA );
874 * We need to keep track of these so we get symbol scoping
875 * right for local variables. For now, we just ignore them.
876 * The hooks are already there for dealing with this however,
877 * so all we need to do is to keep count of the nesting level,
878 * and find the RBRAC for each matching LBRAC.
884 * These are static symbols and BSS symbols.
886 new_value.addr.seg = 0;
887 new_value.type = DEBUG_ParseStabType(ptr);
888 new_value.addr.off = load_offset + stab_ptr->n_value;
889 new_value.cookie = DV_TARGET;
891 stab_strcpy(symname, ptr);
892 curr_sym = DEBUG_AddSymbol( symname, &new_value, currpath,
893 SYM_WINE | SYM_DATA );
897 * These are function parameters.
899 if( curr_func != NULL && !in_external_file )
901 stab_strcpy(symname, ptr);
902 curr_loc = DEBUG_AddLocal( curr_func, 0,
903 stab_ptr->n_value, 0, 0, symname );
904 DEBUG_SetLocalSymbolType( curr_loc, DEBUG_ParseStabType(ptr) );
908 if( curr_func != NULL && !in_external_file )
910 stab_strcpy(symname, ptr);
911 curr_loc = DEBUG_AddLocal( curr_func, stab_ptr->n_value + 1,
913 DEBUG_SetLocalSymbolType( curr_loc, DEBUG_ParseStabType(ptr) );
917 if( curr_func != NULL && !in_external_file )
919 stab_strcpy(symname, ptr);
920 curr_loc = DEBUG_AddLocal( curr_func, 0,
921 stab_ptr->n_value, 0, 0, symname );
922 DEBUG_SetLocalSymbolType( curr_loc, DEBUG_ParseStabType(ptr) );
927 * This is a line number. These are always relative to the start
928 * of the function (N_FUN), and this makes the lookup easier.
930 if( curr_func != NULL && !in_external_file )
933 DEBUG_AddLineNumber(curr_func, stab_ptr->n_desc,
938 * This isn't right. The order of the stabs is different under
939 * a.out, and as a result we would end up attaching the line
940 * number to the wrong function.
942 DEBUG_AddLineNumber(curr_func, stab_ptr->n_desc,
943 stab_ptr->n_value - curr_func->addr.off);
950 * First, clean up the previous function we were working on.
952 DEBUG_Normalize(curr_func);
955 * For now, just declare the various functions. Later
956 * on, we will add the line number information and the
959 if( !in_external_file )
961 new_value.addr.seg = 0;
962 new_value.type = DEBUG_ParseStabType(ptr);
963 new_value.addr.off = load_offset + stab_ptr->n_value;
964 new_value.cookie = DV_TARGET;
966 * Copy the string to a temp buffer so we
967 * can kill everything after the ':'. We do
968 * it this way because otherwise we end up dirtying
969 * all of the pages related to the stabs, and that
970 * sucks up swap space like crazy.
972 stab_strcpy(symname, ptr);
973 curr_func = DEBUG_AddSymbol( symname, &new_value, currpath,
974 SYM_WINE | SYM_FUNC);
979 * Don't add line number information for this function
987 * This indicates a new source file. Append the records
988 * together, to build the correct path name.
992 * With a.out, there is no NULL string N_SO entry at the end of
993 * the file. Thus when we find non-consecutive entries,
994 * we consider that a new file is started.
999 DEBUG_Normalize(curr_func);
1010 DEBUG_Normalize(curr_func);
1016 strcat(currpath, ptr);
1018 strcpy(currpath, ptr);
1020 DEBUG_ResetIncludes();
1026 * This indicates we are including stuff from an include file.
1027 * If this is the main source, enable the debug stuff, otherwise
1030 in_external_file = !(subpath == NULL || strcmp(ptr, subpath) == 0);
1034 strtabinc = stab_ptr->n_value;
1035 DEBUG_Normalize(curr_func);
1040 * Ignore this. We don't care what it points to.
1044 DEBUG_AddInclude(DEBUG_CreateInclude(ptr, stab_ptr->n_value));
1049 DEBUG_AddInclude(DEBUG_FindInclude(ptr, stab_ptr->n_value));
1053 * Always ignore these. GCC doesn't even generate them.
1057 fprintf(stderr, "Unkown stab type 0x%02x\n", stab_ptr->n_type);
1064 fprintf(stderr, "%d %x %s\n", stab_ptr->n_type,
1065 (unsigned int) stab_ptr->n_value,
1066 strs + (unsigned int) stab_ptr->n_un.n_name);
1070 DEBUG_FreeRegisteredTypedefs();
1071 DEBUG_FreeIncludes();
1079 * Walk through the entire symbol table and add any symbols we find there.
1080 * This can be used in cases where we have stripped ELF shared libraries,
1081 * or it can be used in cases where we have data symbols for which the address
1082 * isn't encoded in the stabs.
1084 * This is all really quite easy, since we don't have to worry about line
1085 * numbers or local data variables.
1089 DEBUG_ProcessElfSymtab(char * addr, unsigned int load_offset,
1090 Elf32_Shdr * symtab, Elf32_Shdr * strtab)
1092 char * curfile = NULL;
1093 struct name_hash * curr_sym = NULL;
1096 DBG_VALUE new_value;
1103 symp = (Elf32_Sym *) (addr + symtab->sh_offset);
1104 nsym = symtab->sh_size / sizeof(*symp);
1105 strp = (char *) (addr + strtab->sh_offset);
1107 for(i=0; i < nsym; i++, symp++)
1110 * Ignore certain types of entries which really aren't of that much
1113 if( ELF32_ST_TYPE(symp->st_info) == STT_SECTION )
1118 symname = strp + symp->st_name;
1121 * Save the name of the current file, so we have a way of tracking
1122 * static functions/data.
1124 if( ELF32_ST_TYPE(symp->st_info) == STT_FILE )
1132 * See if we already have something for this symbol.
1133 * If so, ignore this entry, because it would have come from the
1134 * stabs or from a previous symbol. If the value is different,
1135 * we will have to keep the darned thing, because there can be
1136 * multiple local symbols by the same name.
1138 if( (DEBUG_GetSymbolValue(symname, -1, &new_value, FALSE ) == TRUE)
1139 && (new_value.addr.off == (load_offset + symp->st_value)) )
1142 new_value.addr.seg = 0;
1143 new_value.type = NULL;
1144 new_value.addr.off = load_offset + symp->st_value;
1145 new_value.cookie = DV_TARGET;
1146 flags = SYM_WINE | (ELF32_ST_BIND(symp->st_info) == STT_FUNC
1147 ? SYM_FUNC : SYM_DATA);
1148 if( ELF32_ST_BIND(symp->st_info) == STB_GLOBAL )
1149 curr_sym = DEBUG_AddSymbol( symname, &new_value, NULL, flags );
1151 curr_sym = DEBUG_AddSymbol( symname, &new_value, curfile, flags );
1154 * Record the size of the symbol. This can come in handy in
1155 * some cases. Not really used yet, however.
1157 if( symp->st_size != 0 )
1158 DEBUG_SetSymbolSize(curr_sym, symp->st_size);
1166 DEBUG_ProcessElfObject(const char * filename, unsigned int load_offset)
1169 struct stat statbuf;
1172 char * addr = (char *) 0xffffffff;
1183 * Make sure we can stat and open this file.
1185 if( filename == NULL )
1188 status = stat(filename, &statbuf);
1191 char *s,*t,*fn,*paths;
1192 if (strchr(filename,'/'))
1194 paths = DBG_strdup(getenv("PATH"));
1199 fn = (char*)DBG_alloc(strlen(filename)+1+strlen(s)+1);
1202 strcat(fn,filename);
1203 if ((rtn = DEBUG_ProcessElfObject(fn,load_offset))) {
1209 if (t) s = t+1; else break;
1211 if (!s || !*s) fprintf(stderr," not found");
1217 * Now open the file, so that we can mmap() it.
1219 fd = open(filename, O_RDONLY);
1225 * Now mmap() the file.
1227 addr = mmap(0, statbuf.st_size, PROT_READ,
1228 MAP_PRIVATE, fd, 0);
1229 if( addr == (char *) 0xffffffff )
1233 * Next, we need to find a few of the internal ELF headers within
1234 * this thing. We need the main executable header, and the section
1237 ehptr = (Elf32_Ehdr *) addr;
1239 if( load_offset == 0 )
1240 DEBUG_RegisterELFModule(ehptr->e_entry, filename);
1242 DEBUG_RegisterELFModule(load_offset, filename);
1244 spnt = (Elf32_Shdr *) (addr + ehptr->e_shoff);
1245 nsect = ehptr->e_shnum;
1246 shstrtab = (addr + spnt[ehptr->e_shstrndx].sh_offset);
1248 stabsect = stabstrsect = -1;
1250 for(i=0; i < nsect; i++)
1252 if( strcmp(shstrtab + spnt[i].sh_name, ".stab") == 0 )
1255 if( strcmp(shstrtab + spnt[i].sh_name, ".stabstr") == 0 )
1259 if( stabsect == -1 || stabstrsect == -1 )
1263 * OK, now just parse all of the stabs.
1265 rtn = DEBUG_ParseStabs(addr, load_offset,
1266 spnt[stabsect].sh_offset,
1267 spnt[stabsect].sh_size,
1268 spnt[stabstrsect].sh_offset,
1269 spnt[stabstrsect].sh_size);
1274 for(i=0; i < nsect; i++)
1276 if( (strcmp(shstrtab + spnt[i].sh_name, ".symtab") == 0)
1277 && (spnt[i].sh_type == SHT_SYMTAB) )
1278 DEBUG_ProcessElfSymtab(addr, load_offset,
1279 spnt + i, spnt + spnt[i].sh_link);
1281 if( (strcmp(shstrtab + spnt[i].sh_name, ".dynsym") == 0)
1282 && (spnt[i].sh_type == SHT_DYNSYM) )
1283 DEBUG_ProcessElfSymtab(addr, load_offset,
1284 spnt + i, spnt + spnt[i].sh_link);
1289 if( addr != (char *) 0xffffffff )
1290 munmap(addr, statbuf.st_size);
1300 DEBUG_ReadExecutableDbgInfo(void)
1303 const char * exe_name;
1305 struct r_debug * dbg_hdr;
1306 struct link_map * lpnt = NULL;
1308 extern Elf32_Dyn _DYNAMIC[] __attribute__ ((weak));
1310 extern Elf32_Dyn _DYNAMIC[];
1318 * Make sure we can stat and open this file.
1320 if( exe_name == NULL )
1323 fprintf( stderr, "Loading symbols: %s", exe_name );
1324 rowcount = 17 + strlen(exe_name);
1325 DEBUG_ProcessElfObject(exe_name, 0);
1328 * Finally walk the tables that the dynamic loader maintains to find all
1329 * of the other shared libraries which might be loaded. Perform the
1330 * same step for all of these.
1332 if( (&_DYNAMIC == NULL) || (_DYNAMIC == NULL) )
1338 * Now walk the dynamic section (of the executable, looking for a DT_DEBUG
1341 for(; dynpnt->d_tag != DT_NULL; dynpnt++)
1342 if( dynpnt->d_tag == DT_DEBUG )
1345 if( (dynpnt->d_tag != DT_DEBUG)
1346 || (dynpnt->d_un.d_ptr == 0) )
1350 * OK, now dig into the actual tables themselves.
1352 dbg_hdr = (struct r_debug *) dynpnt->d_un.d_ptr;
1353 lpnt = dbg_hdr->r_map;
1356 * Now walk the linked list. In all known ELF implementations,
1357 * the dynamic loader maintains this linked list for us. In some
1358 * cases the first entry doesn't appear with a name, in other cases it
1361 for(; lpnt; lpnt = lpnt->l_next )
1364 * We already got the stuff for the executable using the
1365 * argv[0] entry above. Here we only need to concentrate on any
1366 * shared libraries which may be loaded.
1368 ehdr = (Elf32_Ehdr *) lpnt->l_addr;
1369 if( (lpnt->l_addr == 0) || (ehdr->e_type != ET_DYN) )
1372 if( lpnt->l_name != NULL )
1374 if (rowcount + strlen(lpnt->l_name) > 76)
1376 fprintf( stderr, "\n " );
1379 fprintf( stderr, " %s", lpnt->l_name );
1380 rowcount += strlen(lpnt->l_name) + 1;
1381 DEBUG_ProcessElfObject(lpnt->l_name, lpnt->l_addr);
1388 fprintf( stderr, "\n" );
1393 #else /* !__ELF__ */
1400 DEBUG_ReadExecutableDbgInfo(void)
1402 char * addr = (char *) 0xffffffff;
1407 unsigned int staboff;
1408 struct stat statbuf;
1410 unsigned int stroff;
1415 * Make sure we can stat and open this file.
1417 if( exe_name == NULL )
1420 status = stat(exe_name, &statbuf);
1425 * Now open the file, so that we can mmap() it.
1427 fd = open(exe_name, O_RDONLY);
1433 * Now mmap() the file.
1435 addr = mmap(0, statbuf.st_size, PROT_READ,
1436 MAP_PRIVATE, fd, 0);
1437 if( addr == (char *) 0xffffffff )
1440 ahdr = (struct exec *) addr;
1442 staboff = N_SYMOFF(*ahdr);
1443 stroff = N_STROFF(*ahdr);
1444 rtn = DEBUG_ParseStabs(addr, 0,
1448 statbuf.st_size - stroff);
1451 * Give a nice status message here...
1453 fprintf( stderr, "Loading symbols: %s", exe_name );
1459 if( addr != (char *) 0xffffffff )
1460 munmap(addr, statbuf.st_size);
1470 * Non-linux, non-ELF platforms.
1473 DEBUG_ReadExecutableDbgInfo(void)
1479 #endif /* __ELF__ */