> I am working on gcc 4.0.0. I want to use gcc to intercept each call to
> read, and taint the data readed in. For example:
> transform
> read(fd, buf, size)
> to
> read(fd, buf, size)
> if(is_socket(fd))
> taint(buf, size)
> So, what is the best suitable level to d
Besides that, as far as I know, valgrind can not run on itanium... but
I am now working on it :-(
2007/1/24, Nicholas Nethercote <[EMAIL PROTECTED]>:
On Wed, 24 Jan 2007, [GB2312] ÎâêØ wrote:
> I know valgrind, it is an emulator ,but we are restricted not to use
> an emulator. :-(
Well, for so
Anyway, the program is supervised...would you mind giving some advices
with the compiler-based approach, after recompilation, I could finish
this modification.
2007/1/24, Nicholas Nethercote <[EMAIL PROTECTED]>:
On Wed, 24 Jan 2007, [GB2312] ÎâêØ wrote:
> I know valgrind, it is an emulator ,but
On Wed, 24 Jan 2007, [GB2312] ÎâêØ wrote:
I know valgrind, it is an emulator ,but we are restricted not to use
an emulator. :-(
Well, for some definition of "emulator".
Nick
I know valgrind, it is an emulator ,but we are restricted not to use
an emulator. :-(
2007/1/24, Nicholas Nethercote <[EMAIL PROTECTED]>:
On Wed, 24 Jan 2007, [GB2312] ÎâêØ wrote:
> I am working on gcc 4.0.0. I want to use gcc to intercept each call to
> read, and taint the data readed in. For
On Wed, 24 Jan 2007, [GB2312] ÎâêØ wrote:
I am working on gcc 4.0.0. I want to use gcc to intercept each call to
read, and taint the data readed in. For example:
transform
read(fd, buf, size)
to
read(fd, buf, size)
if(is_socket(fd))
taint(buf, size)
So, wh