自作プログラムを使用して、特定の 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
。
syscall をキャッチする小さなプログラムを作成しました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 は、無意味なスレッドの問題ではなく、まだ実装されていないことを意味しますか?