Search:

Type: Posts; User: josymadamana

Search: Search took 0.00 seconds.

  1. yeah it is working.. :) .. i almost lost hope in...

    yeah it is working.. :) .. i almost lost hope in it... thanks.. i will just try to understand it fully and will make out from it. In man page of execve i found like i should not call this execve if...
  2. i will explain in detail what i did. this was how...

    i will explain in detail what i did. this was how i proceeded

    ./repeat foobar
    LD_PRELOAD is unset.
    The address of memcpy() is 0x804844c.
    Copied "foobar".

    ./example foobar
    LD_PRELOAD is...
  3. thanks a million for ur HELPFUL information... :)...

    thanks a million for ur HELPFUL information... :) thats what i can say... :) i need to fix this some how. so i had posted in multiple forum. sorry for the inconvenience caused... :)
  4. thanks for ur detailed analysis. but when i am...

    thanks for ur detailed analysis. but when i am doing a ld_preload and trying to execute the program i am getting a segmentation fault. i m doing seting LD_PRELOAD by the command

    export...
  5. _dl_runtime_resolve,_dl_lookup_symbol_x ,dl_new_hash functionality doubt

    i am using a static library which is actually calling application constructor. I am building the application with this library statically. this library is having many calls to the inbuilt function...
  6. i am using a static library which is actually...

    i am using a static library which is actually calling application constructor. I am building the application with this library statically. this library is having many calls to the inbuilt function...
  7. anyone knows the functionality of the following functions please respond

    hi
    i am stuck with a particular problem. when a strcpy or some string functions are called by a application it executes the following functions

    0x000000555556c7d0 in _dl_runtime_resolve () from...
  8. yeah but i dont know how to use that pointer for...

    yeah but i dont know how to use that pointer for adding that library dynamically into LD_PRELOAD. if anyone knows please help
  9. thanks for ur detailed mail. environ is not doing...

    thanks for ur detailed mail. environ is not doing the work. when i do a LD_PRELOAD of memcpy even in the constructor function my own memcpy is called. i tried to unset environ LD_PRELOAD by like this...
  10. dlopen not working as expected, help needed

    hi this is my code. here i am trying to build a library of this code and do LD_PRELOAD of it so that i can dynamically add libmymemcopy to LD_PRELOAD. i want if the executable/application with name...
  11. LD_PRELOAD reduces the speed of execution. why it is like that?? help needed

    i am writing a memcpy wrapper. and i am doing a LD_PRELOAD of the library on which memcpy wrapper is written. Now if i run a application which calls strcpy it is not doing it fast. if i am runing the...
  12. (gdb) where #0 0x0000005555561d74 in...

    (gdb) where
    #0 0x0000005555561d74 in do_lookup_x () from /lib64/ld.so.1
    #1 0x00000055555622a8 in _dl_lookup_symbol_x () from /lib64/ld.so.1
    #2 0x000000555556ca84 in __dl_runtime_resolve () from...
  13. hi it worked perfectly for the first time... but...

    hi it worked perfectly for the first time... but it crashed when i ran it again.......
    this time it was calling my own implimented libc. evenif i had kept RTLD_NEXT in memcpy. both of my codes...
  14. thankyou it worked... thanks for ur timely...

    thankyou it worked... thanks for ur timely help.... i had tried this but was getting a segmentation fault because i was not doing the typecast....
  15. Using dlopen can i load the entire library??? i...

    Using dlopen can i load the entire library??? i had seen examples where we can get the symbol name in the library using dlsym. Using dlsym also i tried to get the symbols from libc.so. But dlsym is...
  16. hi i am not clear about the extra behaviour here...

    hi i am not clear about the extra behaviour here u had told. How to set that in the constructor. In the constructor i can find whether application should be excluded or not. but how to set unset...
  17. How to unset LD_PRELOAD in runtime for a particular process

    Hi,

    I am trying to write wrapper function for some libc functions. I am doing it by creating a library and setting it in LD_PRELOAD. For some applications I dont want to set LD_PRELOAD how to do...
Results 1 to 17 of 17