Re: vdso handling
Mark Wielaard <[email protected]>
| Newsgroups | gmane.comp.gnu.binutils,gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 2014-03-13 at 11:31 +1030, Alan Modra wrote: > It wouldn't > help in the vdso case anyway, since the problem there is that you only > have the loaded part of the original ELF file. Note that the vdso is often special, compared to other ELF dsos, because the loaded part is just the complete ELF image in memory. Since they are very simple they will just have one PT_LOAD at offset zero and if the image is smaller than the page size then the whole file is just simply mapped into memory completely. So by fetching the vdso ELF image from remote memory you should be able to get the section headers and the not-allocated sections too. Cheers, Mark