Skip to content

Commit ab729d7

Browse files
committedJul 28, 2020
8247515: OSX pc_to_symbol() lookup does not work with core files
Reviewed-by: sspitsyn, kevinw
1 parent 1a5ef66 commit ab729d7

File tree

4 files changed

+102
-46
lines changed

4 files changed

+102
-46
lines changed
 

‎src/jdk.hotspot.agent/macosx/native/libsaproc/libproc_impl.c

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -208,11 +208,11 @@ void Prelease(struct ps_prochandle* ph) {
208208
free(ph);
209209
}
210210

211-
lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base) {
212-
return add_lib_info_fd(ph, libname, -1, base);
211+
lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base, size_t memsz) {
212+
return add_lib_info_fd(ph, libname, -1, base, memsz);
213213
}
214214

215-
lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd, uintptr_t base) {
215+
lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd, uintptr_t base, size_t memsz) {
216216
lib_info* newlib;
217217
print_debug("add_lib_info_fd %s\n", libname);
218218

@@ -229,6 +229,7 @@ lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd,
229229
strcpy(newlib->name, libname);
230230

231231
newlib->base = base;
232+
newlib->memsz = memsz;
232233

233234
if (fd == -1) {
234235
if ( (newlib->fd = pathmap_open(newlib->name)) < 0) {
@@ -262,7 +263,7 @@ lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd,
262263
if (newlib->symtab == NULL) {
263264
print_debug("symbol table build failed for %s\n", newlib->name);
264265
} else {
265-
print_debug("built symbol table for %s\n", newlib->name);
266+
print_debug("built symbol table for 0x%lx %s\n", newlib, newlib->name);
266267
}
267268

268269
// even if symbol table building fails, we add the lib_info.
@@ -305,8 +306,12 @@ uintptr_t lookup_symbol(struct ps_prochandle* ph, const char* object_name,
305306
const char* symbol_for_pc(struct ps_prochandle* ph, uintptr_t addr, uintptr_t* poffset) {
306307
const char* res = NULL;
307308
lib_info* lib = ph->libs;
309+
print_debug("symbol_for_pc: addr 0x%lx\n", addr);
308310
while (lib) {
309-
if (lib->symtab && addr >= lib->base) {
311+
print_debug("symbol_for_pc: checking lib 0x%lx 0x%lx %s\n", lib->base, lib->memsz, lib->name);
312+
if (lib->symtab && addr >= lib->base && addr < lib->base + lib->memsz) {
313+
print_debug("symbol_for_pc: address=0x%lx offset=0x%lx found inside lib base=0x%lx memsz=0x%lx %s\n",
314+
addr, addr - lib->base, lib->base, lib->memsz, lib->name);
310315
res = nearest_symbol(lib->symtab, addr - lib->base, poffset);
311316
if (res) return res;
312317
}

‎src/jdk.hotspot.agent/macosx/native/libsaproc/libproc_impl.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -95,6 +95,7 @@ typedef struct lib_info {
9595
struct symtab* symtab;
9696
int fd; // file descriptor for lib
9797
struct lib_info* next;
98+
size_t memsz;
9899
} lib_info;
99100

100101
// list of threads
@@ -108,8 +109,8 @@ typedef struct sa_thread_info {
108109
// list of virtual memory maps
109110
typedef struct map_info {
110111
int fd; // file descriptor
111-
off_t offset; // file offset of this mapping
112-
uintptr_t vaddr; // starting virtual address
112+
uint64_t offset; // file offset of this mapping
113+
uint64_t vaddr; // starting virtual address
113114
size_t memsz; // size of the mapping
114115
struct map_info* next;
115116
} map_info;
@@ -170,11 +171,11 @@ typedef bool (*thread_info_callback)(struct ps_prochandle* ph, pthread_t pid, lw
170171
bool read_thread_info(struct ps_prochandle* ph, thread_info_callback cb);
171172

172173
// adds a new shared object to lib list, returns NULL on failure
173-
lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base);
174+
lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base, size_t memsz);
174175

175176
// adds a new shared object to lib list, supply open lib file descriptor as well
176177
lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd,
177-
uintptr_t base);
178+
uintptr_t base, size_t memsz);
178179

179180
sa_thread_info* add_thread_info(struct ps_prochandle* ph, pthread_t pthread_id, lwpid_t lwp_id);
180181
// a test for ELF signature without using libelf

‎src/jdk.hotspot.agent/macosx/native/libsaproc/ps_core.c

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -241,6 +241,7 @@ static bool read_core_segments(struct ps_prochandle* ph) {
241241
goto err;
242242
}
243243
offset += lcmd.cmdsize; // next command position
244+
//print_debug("LC: 0x%x\n", lcmd.cmd);
244245
if (lcmd.cmd == LC_SEGMENT_64) {
245246
lseek(fd, -sizeof(load_command), SEEK_CUR);
246247
if (read(fd, (void *)&segcmd, sizeof(segment_command_64)) != sizeof(segment_command_64)) {
@@ -251,8 +252,9 @@ static bool read_core_segments(struct ps_prochandle* ph) {
251252
print_debug("Failed to add map_info at i = %d\n", i);
252253
goto err;
253254
}
254-
print_debug("segment added: %" PRIu64 " 0x%" PRIx64 " %d\n",
255-
segcmd.fileoff, segcmd.vmaddr, segcmd.vmsize);
255+
print_debug("LC_SEGMENT_64 added: nsects=%d fileoff=0x%llx vmaddr=0x%llx vmsize=0x%llx filesize=0x%llx %s\n",
256+
segcmd.nsects, segcmd.fileoff, segcmd.vmaddr, segcmd.vmsize,
257+
segcmd.filesize, &segcmd.segname[0]);
256258
} else if (lcmd.cmd == LC_THREAD || lcmd.cmd == LC_UNIXTHREAD) {
257259
typedef struct thread_fc {
258260
uint32_t flavor;
@@ -440,7 +442,7 @@ static bool read_shared_lib_info(struct ps_prochandle* ph) {
440442
// only search core file!
441443
continue;
442444
}
443-
print_debug("map_info %d: vmaddr = 0x%016" PRIx64 " fileoff = %" PRIu64 " vmsize = %" PRIu64 "\n",
445+
print_debug("map_info %d: vmaddr = 0x%016llx fileoff = 0x%llx vmsize = 0x%lx\n",
444446
j, iter->vaddr, iter->offset, iter->memsz);
445447
lseek(fd, fpos, SEEK_SET);
446448
// we assume .dylib loaded at segment address --- which is true for JVM libraries
@@ -464,7 +466,7 @@ static bool read_shared_lib_info(struct ps_prochandle* ph) {
464466
continue;
465467
}
466468
lseek(fd, -sizeof(uint32_t), SEEK_CUR);
467-
// this is the file begining to core file.
469+
// This is the begining of the mach-o file in the segment.
468470
if (read(fd, (void *)&header, sizeof(mach_header_64)) != sizeof(mach_header_64)) {
469471
goto err;
470472
}
@@ -497,18 +499,26 @@ static bool read_shared_lib_info(struct ps_prochandle* ph) {
497499
if (name[j] == '\0') break;
498500
j++;
499501
}
500-
print_debug("%s\n", name);
502+
print_debug("%d %s\n", lcmd.cmd, name);
501503
// changed name from @rpath/xxxx.dylib to real path
502504
if (strrchr(name, '@')) {
503505
get_real_path(ph, name);
504506
print_debug("get_real_path returned: %s\n", name);
507+
} else {
508+
break; // Ignore non-relative paths, which are system libs. See JDK-8249779.
505509
}
506-
add_lib_info(ph, name, iter->vaddr);
510+
add_lib_info(ph, name, iter->vaddr, iter->memsz);
507511
break;
508512
}
509513
}
510514
// done with the file, advanced to next page to search more files
515+
#if 0
516+
// This line is disabled due to JDK-8249779. Instead we break out of the loop
517+
// and don't attempt to find any more mach-o files in this segment.
511518
fpos = (ltell(fd) + pagesize - 1) / pagesize * pagesize;
519+
#else
520+
break;
521+
#endif
512522
}
513523
}
514524
return true;

‎src/jdk.hotspot.agent/macosx/native/libsaproc/symtab.c

+68-28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
2424

2525
#include <unistd.h>
2626
#include <search.h>
27+
#include <stddef.h>
2728
#include <stdlib.h>
2829
#include <string.h>
2930
#include <db.h>
@@ -57,12 +58,14 @@ typedef struct symtab {
5758

5859
void build_search_table(symtab_t *symtab) {
5960
int i;
61+
print_debug("build_search_table\n");
6062
for (i = 0; i < symtab->num_symbols; i++) {
6163
DBT key, value;
6264
key.data = symtab->symbols[i].name;
6365
key.size = strlen(key.data) + 1;
6466
value.data = &(symtab->symbols[i]);
6567
value.size = sizeof(symtab_symbol);
68+
//print_debug("build_search_table: %d 0x%x %s\n", i, symtab->symbols[i].offset, symtab->symbols[i].name);
6669
(*symtab->hash_table->put)(symtab->hash_table, &key, &value, 0);
6770

6871
// check result
@@ -92,10 +95,11 @@ void build_search_table(symtab_t *symtab) {
9295
// read symbol table from given fd.
9396
struct symtab* build_symtab(int fd) {
9497
symtab_t* symtab = NULL;
95-
int i;
98+
int i, j;
9699
mach_header_64 header;
97100
off_t image_start;
98101

102+
print_debug("build_symtab\n");
99103
if (!get_arch_off(fd, CPU_TYPE_X86_64, &image_start)) {
100104
print_debug("failed in get fat header\n");
101105
return NULL;
@@ -151,46 +155,59 @@ struct symtab* build_symtab(int fd) {
151155
if (symtab->hash_table == NULL)
152156
goto quit;
153157

158+
// allocate the symtab
154159
symtab->num_symbols = symtabcmd.nsyms;
155160
symtab->symbols = (symtab_symbol *)malloc(sizeof(symtab_symbol) * symtab->num_symbols);
156161
symtab->strs = (char *)malloc(sizeof(char) * symtabcmd.strsize);
157162
if (symtab->symbols == NULL || symtab->strs == NULL) {
158163
print_debug("out of memory: allocating symtab.symbol or symtab.strs\n");
159164
goto quit;
160165
}
161-
lseek(fd, image_start + symtabcmd.symoff, SEEK_SET);
162-
for (i = 0; i < symtab->num_symbols; i++) {
163-
if (read(fd, (void *)&lentry, sizeof(nlist_64)) != sizeof(nlist_64)) {
164-
print_debug("read nlist_64 failed at %i\n", i);
165-
goto quit;
166-
}
167-
symtab->symbols[i].offset = lentry.n_value;
168-
symtab->symbols[i].size = lentry.n_un.n_strx; // index
169-
}
170166

171-
// string table
167+
// read in the string table
172168
lseek(fd, image_start + symtabcmd.stroff, SEEK_SET);
173169
int size = read(fd, (void *)(symtab->strs), symtabcmd.strsize * sizeof(char));
174170
if (size != symtabcmd.strsize * sizeof(char)) {
175171
print_debug("reading string table failed\n");
176172
goto quit;
177173
}
178174

179-
for (i = 0; i < symtab->num_symbols; i++) {
180-
symtab->symbols[i].name = symtab->strs + symtab->symbols[i].size;
181-
if (i > 0) {
182-
// fix size
183-
symtab->symbols[i - 1].size = symtab->symbols[i].size - symtab->symbols[i - 1].size;
184-
print_debug("%s size = %d\n", symtab->symbols[i - 1].name, symtab->symbols[i - 1].size);
175+
// read in each nlist_64 from the symbol table and use to fill in symtab->symbols
176+
lseek(fd, image_start + symtabcmd.symoff, SEEK_SET);
177+
i = 0;
178+
for (j = 0; j < symtab->num_symbols; j++) {
179+
if (read(fd, (void *)&lentry, sizeof(nlist_64)) != sizeof(nlist_64)) {
180+
print_debug("read nlist_64 failed at %j\n", j);
181+
goto quit;
182+
}
183+
184+
uintptr_t offset = lentry.n_value; // offset of the symbol code/data in the file
185+
uintptr_t stridx = lentry.n_un.n_strx; // offset of symbol string in the symtabcmd.symoff section
185186

187+
if (stridx == 0 || offset == 0) {
188+
continue; // Skip this entry. It's not a reference to code or data
186189
}
190+
symtab->symbols[i].offset = offset;
191+
symtab->symbols[i].name = symtab->strs + stridx;
192+
symtab->symbols[i].size = strlen(symtab->symbols[i].name);
187193

188-
if (i == symtab->num_symbols - 1) {
189-
// last index
190-
symtab->symbols[i].size =
191-
symtabcmd.strsize - symtab->symbols[i].size;
192-
print_debug("%s size = %d\n", symtab->symbols[i].name, symtab->symbols[i].size);
194+
if (symtab->symbols[i].size == 0) {
195+
continue; // Skip this entry. It points to an empty string.
193196
}
197+
198+
print_debug("symbol read: %d %d n_type=0x%x n_sect=0x%x n_desc=0x%x n_strx=0x%lx offset=0x%lx %s\n",
199+
j, i, lentry.n_type, lentry.n_sect, lentry.n_desc, stridx, offset, symtab->symbols[i].name);
200+
i++;
201+
}
202+
203+
// Update symtab->num_symbols to be the actual number of symbols we added. Since the symbols
204+
// array was allocated larger, reallocate it to the proper size.
205+
print_debug("build_symtab: included %d of %d entries.\n", i, symtab->num_symbols);
206+
symtab->num_symbols = i;
207+
symtab->symbols = (symtab_symbol *)realloc(symtab->symbols, sizeof(symtab_symbol) * symtab->num_symbols);
208+
if (symtab->symbols == NULL) {
209+
print_debug("out of memory: reallocating symtab.symbol\n");
210+
goto quit;
194211
}
195212

196213
// build a hashtable for fast query
@@ -389,14 +406,37 @@ uintptr_t search_symbol(struct symtab* symtab, uintptr_t base, const char *sym_n
389406
const char* nearest_symbol(struct symtab* symtab, uintptr_t offset,
390407
uintptr_t* poffset) {
391408
int n = 0;
409+
char* result = NULL;
410+
ptrdiff_t lowest_offset_from_sym = -1;
392411
if (!symtab) return NULL;
412+
// Search the symbol table for the symbol that is closest to the specified offset, but is not under.
413+
//
414+
// Note we can't just use the first symbol that is >= the offset because the symbols may not be
415+
// sorted by offset.
416+
//
417+
// Note this is a rather slow search that is O(n/2), and libjvm has as many as 250k symbols.
418+
// Probably would be good to sort the array and do a binary search, or use a hash table like
419+
// we do for name -> address lookups. However, this functionality is not used often and
420+
// generally just involves one lookup, such as with the clhsdb "findpc" command.
393421
for (; n < symtab->num_symbols; n++) {
394422
symtab_symbol* sym = &(symtab->symbols[n]);
395-
if (sym->name != NULL &&
396-
offset >= sym->offset && offset < sym->offset + sym->size) {
397-
if (poffset) *poffset = (offset - sym->offset);
398-
return sym->name;
423+
if (sym->size != 0 && offset >= sym->offset) {
424+
ptrdiff_t offset_from_sym = offset - sym->offset;
425+
if (offset_from_sym >= 0) { // ignore symbols that come after "offset"
426+
if (lowest_offset_from_sym == -1 || offset_from_sym < lowest_offset_from_sym) {
427+
lowest_offset_from_sym = offset_from_sym;
428+
result = sym->name;
429+
//print_debug("nearest_symbol: found %d %s 0x%x 0x%x 0x%x\n",
430+
// n, sym->name, offset, sym->offset, lowest_offset_from_sym);
431+
}
432+
}
399433
}
400434
}
401-
return NULL;
435+
print_debug("nearest_symbol: found symbol %d file_offset=0x%lx sym_offset=0x%lx %s\n",
436+
n, offset, lowest_offset_from_sym, result);
437+
// Save the offset from the symbol if requested.
438+
if (result != NULL && poffset) {
439+
*poffset = lowest_offset_from_sym;
440+
}
441+
return result;
402442
}

0 commit comments

Comments
 (0)
Please sign in to comment.