Git Product home page Git Product logo

Comments (7)

caikelun avatar caikelun commented on July 18, 2024

Sorry. I'm not familiar with WebKit.
I suggest you first get a general idea of the principle of PLT hook.

from xhook.

iory1984 avatar iory1984 commented on July 18, 2024

Actually , it doesn't matter whether it webkit or not. I am just really not sure how to hook a constructor function in a class. And how to re-write the function in my patch. I found the document and not find any examples on this issue. Could you help set a example on it ? It will be greatly appreciated.:)

from xhook.

caikelun avatar caikelun commented on July 18, 2024

C++ function (including constructor function) is just an ordinary function. Try google: "c++ demangle".

Refs:
https://demangler.com/
https://gcc.gnu.org/onlinedocs/libstdc++/manual/ext_demangling.html

For example:

art::JavaVMExt::LoadNativeLibrary(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, art::Handle<art::mirror::ClassLoader>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*)

to:

_ZN3art9JavaVMExt17LoadNativeLibraryERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6HandleINS_6mirror11ClassLoaderEEEPS7_

from xhook.

sindney avatar sindney commented on July 18, 2024

Hi @caikelun, i'm trying to hook UE4 project's memory functions,
and i'v managed to get mangled names by doing:
typeid(&FMemory::Malloc).name(); // PFPvjjE
and
nm pathto/libUE4.so | grep Malloc // _ZN7FMemory6MallocEjj
i'm not sure which mangled name is correct, but both of them reports no error:
xhook_register, xhook_refresh(1)
and none of those mangled name works, my replacement for FMemory::Malloc didn't get called. The FMemory::Malloc is defined in UnrealMemory.h:
struct CORE_API FMemory {
static void* Malloc(SIZE_T Count, uint32 Alignment = DEFAULT_ALIGNMENT);
};
What could be wrong?

from xhook.

caikelun avatar caikelun commented on July 18, 2024

Try: arm-linux-androideabi-readelf -r ./libyour_lib.so

from xhook.

sindney avatar sindney commented on July 18, 2024

I found malloc, free in this section:
Relocation section '.rel.plt' at offset 0x26dd168 contains 641 entries:
Offset Info Type Sym.Value Sym. Name
0833b158 0004fa16 R_ARM_JUMP_SLOT 00000000 malloc
0833b100 0004f916 R_ARM_JUMP_SLOT 00000000 free
but there's only 640 records in this section and i don't see many c++ mangled names here. Also i can't find FMemory related lines, does this mean they didn't 'export?' those core functions? Is this why i can't hook FMemory::Malloc?

from xhook.

caikelun avatar caikelun commented on July 18, 2024

@sindney Yes, that's right.
Ref: https://github.com/iqiyi/xHook/blob/master/libxhook/jni/xh_elf.c#L1006

from xhook.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.