X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=blobdiff_plain;f=kernel%2Farch%2Fx86%2Fentry.S;h=997487e2af0437f9b3451cf1911579325e23f7b9;hp=3483893d93f4c9c642d7244bc493eff25cff6cf2;hb=1ac390fe1e18444008857b056c947710be9621a8;hpb=0601614ebbcc48b961a2f0613281e6e629af29b1 diff --git a/kernel/arch/x86/entry.S b/kernel/arch/x86/entry.S index 3483893..997487e 100644 --- a/kernel/arch/x86/entry.S +++ b/kernel/arch/x86/entry.S @@ -14,10 +14,12 @@ #include +#define ROSHARED_PTR(x) (x - x86_syscall_ptr + 0x7fff0000) + .org 0 .code32 .global _start -.align 4 + .align 4 multiboot_hdr: .long 0x1badb002 // Multi-boot magic @@ -102,8 +104,9 @@ using_our_gdt: movl $0x87, x86_init_ptbl_l2 + 0x800 - KERNEL_START ljmp $0x10, $paging_on - KERNEL_START + -paging_on: +paging_on: lgdt x86_gdtr + 6 movl %esi, x86_boot_info_phys @@ -299,22 +302,23 @@ x86_int98_entry: .global x86_int99_entry x86_int99_entry: - pushl %ecx + pushl %edx pushl %eax enterkernel %edx pushl %esp call x86_return_from_method addl $4, %esp - + exitkernel popl %eax - popl %ecx - xorl %edx, %edx + xorl %ecx, %ecx + popl %edx xorl %ebx, %ebx xorl %ebp, %ebp xorl %esi, %esi xorl %edi, %edi + movl $ROSHARED_PTR(x86_shared_int98_ret), (%esp) iret .global x86_irq @@ -378,25 +382,42 @@ x86_new_thread: xorl %edi, %edi call sched_new_thread - pop %eax + popl %eax call *%eax call exit_thread ud2a - - .section ".roshared","x" - // The vsyscall table must be the first thing in roshared (at - // vaddr 0x7fff0000). + .global arch_new_user_thread +arch_new_user_thread: + movl 4(%esp), %eax // arg1: user entry + movl 8(%esp), %ecx // arg2: user stack + pushl $0x23 // SS + pushl %ecx // ESP + pushl $0x202 // EFLAGS + pushl $0x2b // CS + pushl %eax // EIP + + movl $0x23, %ebx + movl %ebx, %ds + movl %ebx, %es + + xorl %eax, %eax + xorl %ecx, %ecx + iret -#define PTR(x) (x - x86_syscall_ptr + 0x7fff0000) + .section ".roshared","ax" + .align 4096 + + // The vsyscall table must be the first thing in roshared + // (at vaddr 0x7fff0000). .global x86_syscall_ptr x86_syscall_ptr: - .long PTR(x86_shared_int98) + .long ROSHARED_PTR(x86_shared_int98) .global x86_sysret_ptr x86_sysret_ptr: - .long PTR(x86_shared_int99) + .long ROSHARED_PTR(x86_shared_int99) x86_shared_int98: // FIXME: This must be unpreemptible by traps @@ -407,6 +428,7 @@ x86_shared_int98: pushl %esi pushl %ebx int $0x98 +x86_shared_int98_ret: popl %ebx popl %esi popl %edi @@ -419,7 +441,29 @@ x86_shared_int99: int $0x99 ret - .section ".rwshared","" + .global test_user_ptr + .align 4 +test_user_ptr: + .long ROSHARED_PTR(test_user) + +test_pib: + .long 0 + .long 0 + .long ROSHARED_PTR(test_objlist) + .long 1 + .long 0 + +test_objlist: + .long 0 + .space 128 + +test_user: + movl $ROSHARED_PTR(test_pib), %eax + call *0x7fff0000 +1: jmp 1b + + .section ".rwshared","a" + .align 4096 // Userspace must set this to an appropriate entry point // prior to registering objects with the kernel. It should