Hello, Consider the following: --- #include <stdio.h> #include <string.h> extern "C" void* memset(void *block, int c, size_t size) __attribute__((weak, alias("__int_memset"), visibility("default"))); extern "C" __attribute__((visibility("default"))) void* __int_memset(void *block, int c, size_t size) { puts("Hello"); return NULL; } int main() { void *(*F)(void *b, int c, size_t len) = memset; char a[5]; memset(a, 0, sizeof(a)); F(a, 0, sizeof(a)); return 0; } --- It intercepts the memset() calls without issue on both x86-64 FreeBSD 9.2 and Linux. However, with the -fPIC option specified in the cc's command line, only the first (direct) call work on FreeBSD, but not the second (indirect) one. Note is that on Linux both the calls are intercepted--no matter whether the -fPIC option is specified or not. The question is: is there a way to intercept indirect calls on FreeBSD? Thanks, --Received on Fri Jul 04 2014 - 10:18:25 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:40:50 UTC