0
votes
1answer
58 views

What is Pc Materialization?

I am working with a tool called for binary instrumentation called Intel Pin. However I encountered this strange terminology while I was examining part of the examples that Pin comes with. Here is the ...
1
vote
1answer
136 views

In ELF or DWARF, how can I get .PLT section values? — Trying to get the address of a function on where an instrumentation tool is in

I am working in obtaining all the data of a program using its ELF and DWARF info and by hooking a pin tool to a process that is currently running -- It is kind of a debugger using a Pin tool. For ...
0
votes
0answers
147 views

Trying to print the registers' values from the stack using a pin tool

I am trying to print out the stack in different routines using a pin tool. I am able to get all of the routines but I am a little confused on how to get the addresses stored in the registers in the ...
1
vote
3answers
226 views

accessing contents of a void pointer holding a C++ object in C

I'm doing binary instrumentation with DynamoRIO using a C client on a C++ program although you probably don't need to know about DynamoRIO to answer my question. Currently I'm wrapping a function ...
1
vote
2answers
133 views

Get a log of all the memory locations modified by a C program

I need a log of all the memory locations a C program modifies during its execution. The problem is a bit more involved than watching a region of memory using gdb/valgrind, because I do not have the ...
0
votes
2answers
381 views

Using GCC's function instrumentation, why does using C++ STL containers or stream I/O cause a segfault?

I recently read about using GCC's code generation features (specifically, the -finstrument-functions compiler flag) to easily add instrumentation to my programs. I thought it sounded really cool and ...
0
votes
3answers
55 views

Portable instrumentation

GCC has a nice feature about instrumentation which let you call a routine every time a function is called, or every time a function returns. Now, I want to create my own system to make it portable to ...
3
votes
2answers
179 views

BCI library for Java in C

I am looking for a BCI (Bytecode Instrumentation) library for Java in C or C++, to use in a JVMTI agent. Best case scenario would be something like ASM or BCEL in pure C. The closest thing I have ...
1
vote
2answers
92 views

Instrumenting Command Line Arguments

I am writing a program that runs through pintools, to perform dynamic taint analysis and am stuck with an issue. The problem is, when a user provides data to the program through say, scanf or gets or ...
2
votes
2answers
373 views

Writing an instrumentation tool for C/C++ programs

I would like to write a program that does automatic instrumentation of an input C/C++ code based on some input properties. I am seeking a good place to start learning how to do so (mainly related on ...
4
votes
2answers
899 views

Instrumenting C/C++ code using LLVM

I want to write a LLVM pass to instrument every memory access. Here is what I am trying to do. Given any C/C++ program (like the one given below), I am trying to insert calls to some function, before ...
0
votes
3answers
411 views

How to “interleave” C/C++ souce with my string (only inside functions at appropriate places)?

For example, there is the source: void func1() { func3(); if(qqq) { func2(); } func4( ); } It should be transformed to: void func1() { MYMACRO func3(); MYMACRO ...
2
votes
2answers
768 views

How to tell gcc to instrument the code with calls to my own function each _line_ of code?

For example, there is the source: void my_special_debugging_function(const char* function_name, const char* file_name, int line_number); void func1() { func3(); func4(); } void foo() { ...
0
votes
2answers
631 views

Macros giving problems with dladdr()

I have implemented tracing behavior using the -finstrument-functions option of gcc and this (simplified) code: void __cyg_profile_func_enter(void *this_fn, void *call_site) { Dl_info di; ...