GithubHelp home page GithubHelp logo

Comments (1)

PotatoMapper avatar PotatoMapper commented on April 20, 2024

I try to avoid contributing responses to poorly defined or not an issue with the project itself.

But it does not appear you ever declared a "Holder" pointer function where the original implementation of malloc_zone_malloc OR malloc_zone_free could be invoked from.

If you reference the homepage of the repo it clearly outlines a very simple and clear example of the proper way to swap the implementations.

I very quickly typed up what a single hook for malloc_zone_malloc should look like. Beware copy and pasting this as I typed it up on the fly and am EXTREMELY prone to overlooking typos.

#import "fishhook.h"
#import <Wherever_Malloc_structs_are_defined>

static void * (*orig_malloc_zone_malloc)(malloc_zone_t, size_t);

void * my_malloc_zone_malloc(malloc_zone_t *zone, size_t size) {
	// Do Stuff here
	// Log whatever you wanna play with or what have you
	orig_malloc_zone_malloc(zone,size);
}

rebind_symbols((struct rebinding[1])
	{{"malloc_zone_malloc", my_malloc_zone_malloc, (void *)&orig_malloc_zone_malloc}},1);

Note the static definition of the ptr func for the original implementation you do not have.

Try this and see if you still run into issues. Either way this is not an issue with fishhook itself at first glance, and should really be closed until you get to an error that is indicative of a failure on the project itself.

from fishhook.

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.