我正在尝试使用自制程序捕获由给定 PID 调用的所有系统调用(我不能使用任何 strace、dtruss、gdb ......)。所以我使用了中
kern_return_t task_set_emulation(task_t target_port, vm_address_t routine_entry_pt, int routine_number)
声明的函数/usr/include/mach/task.h
。
我写了一个小程序来捕捉系统调用write
:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <mach/mach.h>
#include <mach/mach_vm.h>
void do_exit(char *msg)
{
printf("Error::%s\n", msg);
exit(42);
}
int main(void)
{
mach_port_t the_task;
mach_vm_address_t address;
mach_vm_size_t size;
mach_port_t the_thread;
kern_return_t kerr;
//Initialisation
address = 0;
size = 1ul * 1024;
the_task = mach_task_self(); //Get the current program task
kerr = mach_vm_allocate(the_task, &address, size, VM_MEMORY_MALLOC); //Allocate a new address for the test
if (kerr != KERN_SUCCESS)
{ do_exit("vm_allocate"); }
printf("address::%llx, size::%llu\n", address, size); //debug
//Process
kerr = task_set_emulation(the_task, address, SYS_write); //About to catch write syscalls
the_thread = mach_thread_self(); //Verify if a thread is opened (even if it's obvious)
printf("kerr::%d, thread::%d\n", kerr, the_thread); //debug
if (kerr != KERN_SUCCESS)
{ do_exit("set_emulation"); }
//Use some writes for the example
write(1, "Bonjour\n", 8);
write(1, "Bonjour\n", 8);
}
输出是:
address::0x106abe000, size::1024
kerr::46, thread::1295
Error::set_emulation
内核错误 46 对应于KERN_NOT_SUPPORTED
描述为“空线程激活(没有线程链接到它)”的宏/usr/include/mach/kern_return.h
,甚至在我调用write
.
我的问题是:我在这个过程中做错了什么?Kern_not_supported 确实意味着它还没有实现,而不是一个无意义的线程问题?