mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-30 11:17:08 -05:00
22 lines
798 B
C++
22 lines
798 B
C++
|
|
#include "logging/logging.h"
|
|
|
|
#include "TrampolineBridge/ClosureTrampolineBridge/common-bridge-handler.h"
|
|
|
|
PUBLIC void intercept_routing_common_bridge_handler(RegisterContext *ctx, ClosureTrampolineEntry *entry) {
|
|
DLOG(0, "Catch common bridge handler, carry data: %p, carry handler: %p", (HookEntry *)entry->carry_data,
|
|
entry->carry_handler);
|
|
|
|
typedef void (*intercept_routing_handler_t)(RegisterContext * ctx, ClosureTrampolineEntry * entry);
|
|
intercept_routing_handler_t routing_handler = (intercept_routing_handler_t)entry->carry_handler;
|
|
|
|
#if __APPLE__
|
|
#if __has_feature(ptrauth_calls)
|
|
routing_handler =
|
|
(typeof(routing_handler))__builtin_ptrauth_sign_unauthenticated((void *)routing_handler, ptrauth_key_asia, 0);
|
|
#endif
|
|
#endif
|
|
|
|
routing_handler(ctx, entry);
|
|
return;
|
|
}
|