Giter Site home page Giter Site logo

libhooker's Issues

[Darwin]: LHPrepareRemapMachMem Question

More for learning curiosity here: Why not call [mach_]vm_remap here? What do you get hand rolling your own mach_msg implementation?

privateFunc void LHPrepareRemapMachMem(vm_map_t task,
vm_address_t *target_address,
vm_size_t size,
vm_address_t mask,
int flags,
vm_map_t src_task,
vm_address_t src_address,
boolean_t copy,
vm_inherit_t inheritance,
mach_port_t reply_port,
union remap_msg *msg){
msg->Request.msgh_body.msgh_descriptor_count = 1;
msg->Request.src_task.name = src_task;
msg->Request.src_task.disposition = MACH_MSG_TYPE_COPY_SEND;
msg->Request.src_task.type = MACH_MSG_PORT_DESCRIPTOR;
msg->Request.NDR = NDR_record;
msg->Request.target_address = *target_address;
msg->Request.size = size;
msg->Request.mask = mask;
msg->Request.flags = flags;
msg->Request.src_address = src_address;
msg->Request.copy = copy;
msg->Request.inherit = inheritance;
msg->Request.Head.msgh_bits = MACH_MSGH_BITS_COMPLEX | MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND, MACH_MSG_TYPE_MAKE_SEND_ONCE);
msg->Request.Head.msgh_remote_port = task;
msg->Request.Head.msgh_local_port = reply_port;
msg->Request.Head.msgh_id = 4813;
}

Thanks

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.