zwimer / DrShadowStack

A software defined dynamic shadow stack utilizing dynamorio
http://www.zwimer.com/DrShadowStack/
GNU General Public License v3.0
5 stars 0 forks source link

Signal exception errors for SIGCHILD #56

Closed zwimer closed 6 years ago

zwimer commented 6 years ago

Probably because of signal ignore or something.

zwimer commented 6 years ago

Looking into this. SIG_IGN is simply a casted 1. Probably have to find where DynamoRIO stores signal handlers for this.

zwimer commented 6 years ago

Checking the forums for a way to find the address of signal handlers when a signal is called. https://groups.google.com/forum/#!topic/dynamorio-users/gAO8PqbPxoE

zwimer commented 6 years ago

Ended up utilizing the drmgr_register_kernel_xfer_event function instead of the signal event. Function

zwimer commented 6 years ago

Done