- how does linux 2.6 differ from 2.4?
- can we modify the source kernel ?
- can we modify the int 0x80 service routine?
|
|
|||||
|
|
|
UPDATE: What: The kernel syscall interface
Description:
This interface matches much of the POSIX interface and is based
on it and other Unix based interfaces. It will only be added to
over time, and not have things removed from it.
The system call table entries for i386 are in: arch/i386/kernel/syscall_table.SNote that the table is a sequence of pointers, so if you want to maintain a degree of forward compatibility with the kernel maintainers, you'd need to pad the table before placement of your pointer. The syscall vector number is defined in irq_vectors.hThen traps.c sets the address of the system_call function via set_system_gate, which places the entry into the interrupt descriptor table. The system_call function itself is in entry.S, and calls the requested pointer from the system call table.
There are a few housekeeping details, which you can see reading the code, but direct modification of the 0x80 interrupt handler is accomplished in entry.S inside the system_call function. In a more sane fashion, you can modify the system call table, inserting your own function without modifying the dispatch mechanism.In fact, having read the 2.6 source, it says directly that int 0x80 and x86-64 syscall use the same code, so far. So you can make portable changes for x86-32 and x86-64. END Update The INT 0x80 method invokes the system call table handler. This matches register arguments to a call table, invoking kernel functions based on the contents of the EAX register. You can easily extend the system call table to add custom kernel API functions. This may even work with the new syscall code on x86-64, as it uses the system call table, too. If you alter the current system call table in any manner other than to extend it, you will break all dependent libraries and code, including libc, init, etc. Here's the current Linux system call table: http://asm.sourceforge.net/syscall.html |
|||
|
|
|
|
|
|||
|
|
