I know this kind of goes against the whole point of opaque data types, but for the purpose of reverse engineering, how do people go about looking into opaque data types?
How do I see inside opaque data types?
453 Views Asked by thepufferfish At
2
Unless you already have the source, there is no feasible way to "hack inside" an opaque type without having a clue of the underlying representation on a specific system. Hacking it would involve following each access to the opaque pointer in run-time and see where it goes, then start guessing from there.
Instead, you could Google for example the glibc source at Github. In stdio.h there is a conditional typedef which points either at
__fpos_t
or__fpos64_t
in internal headers:__fpos_t.h
__fpos64_t.h
Not very exciting, but you can continue to trace those various types at Github from there and see what they boil down to in the end. Integers and enums, most likely.