Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
297 views

Why won't LD_PRELOAD work with Python?

Using function interposition for open() with Python doesn't seem to work after the first few calls. I suspect Python is doing some kind of initialization, or something is temporarily bypassing my ...
6
votes
4answers
2k views

Function interposition in Linux without dlsym

I'm currently working on a project where I need to track the usage of several system calls and low-level functions like mmap, brk, sbrk. So far, I've been doing this using function interposition: I ...
3
votes
3answers
72 views

how do I interpose on Long/String compareTo()?

I have a class implementing a data structure storing Comparable objects. Some instances hold Longs and other Strings. I want to count the number of comparisons that occur, without changing the data ...
3
votes
5answers
345 views

How to catch unintentional function interpositioning?

Reading through my book Expert C Programming, I came across the chapter on function interpositioning and how it can lead to some serious hard to find bugs if done unintentionally. The example given ...
2
votes
3answers
271 views

Capturing Display / Monitor Images, Sending Keyboard Input on Linux

I need to process images sent to my laptop's video display, and I need to send keyboard input to my Linux system, using a C++ or shell program. My goal is to process images that are part of an FPS ...
1
vote
1answer
157 views

Checkpointing and restarting X11 applications

My task is to checkpoint and restart X11 applications. Therefore I use the BLCR (Berkeley Lab Checkpoint/Restart (BLCR)) tool. Due to the fact that BLCR is not able (without modifications) to ...
0
votes
2answers
193 views

[macosx]does dlopen call open and read functions?

I've intercepted(interposed) dlopen function under MacOS X and some other functions. I see how my applications calls dlopen in the log, but don't find anything related to open/read functions after ...
0
votes
1answer
573 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 ...