/*******************************************************************************/ /* COS2000 - Compatible Operating System - LGPL v3 - Horde Nicolas */ /* */ #include #include #include #include #include #include #include /* 32bit SYSENTER instruction entry. * * Arguments: * %eax System call number. * %ebx Arg1 * %esi Arg2 * %edi Arg3 /*******************************************************************************/ /* Fonction permettant de tester le fonctionnement de SYSENTER */ /* SYSCALL { "ID":0, "LIBRARY":"libsys", "NAME":"testapi", "INTERNALNAME":"testapi", "DESCRIPTION":"Simple function to test if SYSCALL API is correctly running", "ARGS": [ {"TYPE":"u32","NAME":"arg1","DESCRIPTION":"first argument of your choice"}, {"TYPE":"u32","NAME":"arg2","DESCRIPTION":"second argument of your choice"}, {"TYPE":"u32","NAME":"arg3","DESCRIPTION":"third argument of your choice"} ], "RETURN":"u32", "DUMP":"yes" } END */ u32 testapi(u32 arg1, u32 arg2, u32 arg3, regs* dump) { printf("Appel syscall %u depuis %Y:%Y avec arguments => ARG1:%Y ARG2:%Y ARG3:%Y\r\n", dump->eax, (u32) dump->cs, dump->eip, arg1, arg2, arg3); return; } /*******************************************************************************/ /* Initialise les appels système par SYSENTER/SYSEXIT */ void initsyscall(void) { wrmsr(0x174, SEL_KERNEL_CODE, 0x0); wrmsr(0x175, 0x60000, 0x0); wrmsr(0x176, &sysenter_handler + 6, 0x0); } /*******************************************************************************/ /* Entrée pour les appels système SYSENTER */ void sysenter_handler(void) { cli(); regs *dump; dumpcpu(); getESP(dump); sti(); switch (dump->eax) { /* FOR INSERTING */ default: printf("Appel syscall vers fonction inexistante en %Y:%Y", dump->cs, dump->eip); break; } restdebugcpu(); sysexit(); } /*******************************************************************************/