mirror of
https://github.com/opa334/TrollStore.git
synced 2025-04-04 03:23:12 +08:00
24 lines
1.2 KiB
C
24 lines
1.2 KiB
C
#ifndef __SPRAY_H__
|
|
#define __SPRAY_H__
|
|
|
|
#include <mach/mach.h>
|
|
#include <stdint.h>
|
|
|
|
mach_port_t spray_data_kalloc_kmsg_single(uint8_t *data, unsigned int size);
|
|
mach_port_t *spray_data_kalloc_kmsg(uint8_t *data, unsigned int size, unsigned int count);
|
|
void spray_data_kalloc_kmsg_on_ports(uint8_t *data, unsigned int size, unsigned int count, mach_port_t *ports);
|
|
mach_port_t *spray_default_kalloc_ool_ports(unsigned int size, unsigned int count, mach_port_t *ool_ports);
|
|
mach_port_t *spray_default_kalloc_ool_ports_with_data_kalloc_size(unsigned int size, unsigned int count, mach_port_t *ool_ports, unsigned int data_kalloc_size);
|
|
|
|
void spray_default_kalloc_ool_ports_on_port(unsigned int size, unsigned int count, mach_port_t *ool_ports, mach_port_t p);
|
|
void spray_default_kalloc_ool_ports_with_data_kalloc_size_on_port(unsigned int size, mach_port_t *ool_ports, unsigned int data_kalloc_size, mach_port_t p);
|
|
int spray_default_kalloc_necp(int necp_fd, uint8_t *b, uint32_t sz);
|
|
|
|
kern_return_t spray_kmsg_on_port(mach_port_t port, void *data, size_t size);
|
|
|
|
mach_port_t *spray_ports(unsigned int count);
|
|
mach_port_t *spray_ports_with_context(unsigned int count, uint64_t context);
|
|
|
|
|
|
#endif
|