This is a practice to override a call to the function from library by the developer's own implementation. Dedicated to add monitoring and/or debugging stuff into functions like malloc().

learn more… | top users | synonyms

0
votes
0answers
48 views

How to express --wrap ld option in linker script?

The tile of the question does not exactly express what I like to do in detail. I have a project where all objects to be linked are entries given by INPUT() command in my ld linker script. I cannot use ...
2
votes
1answer
146 views

Can OS X system calls be overridden or interposed on a system-wide basis?

Working under OS X Lion, I've done some work with code injection to interpose system calls on a process-by-process basis recently. I've learned a lot along the way, and it now looks like it would ...
1
vote
1answer
161 views

How can I get the PID of a new process before it executes?

So that I can do some injecting and interposing using the inject_and_interpose code, I need to way to get the PID of a newly-launched process (a typical closed-source user application) before it ...
3
votes
1answer
306 views

Interposing of OS X system calls

I need to interpose (get my functions called instead of the original functions) some OS X system calls to overcome a flaw in a piece of closed-source software. Preferably, the resulting solution ...
0
votes
1answer
194 views

Cleaning up function interposition with dlsym

As a malloc wrapper, I use this classical snippet of code: #define _GNU_SOURCE #include <stdio.h> #include <stdint.h> #include <dlfcn.h> void* malloc(size_t size) { static ...
9
votes
2answers
1k views

How to dynamically interpose C functions from Python on Linux (without LD_PRELOAD)?

How do I, at run-time (no LD_PRELOAD), intercept/hook a C function like fopen() on Linux, a la Detours for Windows? I'd like to do this from Python (hence, I'm assuming that the program is already ...
0
votes
4answers
169 views

Find out if a received pointer is a string, ushort or array

I am interposing the memcpy() function in C because the target application uses it to concatenate strings and I want to find out which strings are being created. The code is: void * my_memcpy ( void ...
3
votes
2answers
830 views

LD_PRELOAD for C++ class methods

I need to interpose on a method call in a C++ program (the class resides in a separate shared library). I thought I could use LD_PRELOAD, but i am not sure how this would work (i only found examples ...
0
votes
1answer
761 views

Interposing library: XOpenDisplay

I am working on a project where I need to change the behaviour of the XOpenDisplay function defined in X11/Xlib.h. I have found an example, which should do exactly what I am looking for, but when I ...
1
vote
4answers
1k views

Problem replacing Linux system calls using LD_PRELOAD

I am trying to write a program that allows a binary to be run, substituting a certain file when requested with another. It is a library with simple replacements for the system call functions, that is ...
2
votes
3answers
3k views

memory-mapped files in C

I was playing around with memory-mapped files in C and was wondering if there is a way to replace the FILE * from fopen with a memory mapped file transparently. Example: FILE * fp = g_fopen(...); ...