No more intel/minix segments.
authorBen Gras <ben@minix3.org>
Mon, 7 May 2012 14:03:35 +0000 (16:03 +0200)
committerBen Gras <ben@minix3.org>
Sun, 15 Jul 2012 20:30:15 +0000 (22:30 +0200)
commit50e2064049171fb3c6122276ecd0959d1c41eaaf
tree5f07124b2ddc20c8e141dd3466503739dee78003
parentcfe1ed4df40c7ed268f94502108a54cf2d4bbca9
No more intel/minix segments.

This commit removes all traces of Minix segments (the text/data/stack
memory map abstraction in the kernel) and significance of Intel segments
(hardware segments like CS, DS that add offsets to all addressing before
page table translation). This ultimately simplifies the memory layout
and addressing and makes the same layout possible on non-Intel
architectures.

There are only two types of addresses in the world now: virtual
and physical; even the kernel and processes have the same virtual
address space. Kernel and user processes can be distinguished at a
glance as processes won't use 0xF0000000 and above.

No static pre-allocated memory sizes exist any more.

Changes to booting:
        . The pre_init.c leaves the kernel and modules exactly as
          they were left by the bootloader in physical memory
        . The kernel starts running using physical addressing,
          loaded at a fixed location given in its linker script by the
          bootloader.  All code and data in this phase are linked to
          this fixed low location.
        . It makes a bootstrap pagetable to map itself to a
          fixed high location (also in linker script) and jumps to
          the high address. All code and data then use this high addressing.
        . All code/data symbols linked at the low addresses is prefixed by
          an objcopy step with __k_unpaged_*, so that that code cannot
          reference highly-linked symbols (which aren't valid yet) or vice
          versa (symbols that aren't valid any more).
        . The two addressing modes are separated in the linker script by
          collecting the unpaged_*.o objects and linking them with low
          addresses, and linking the rest high. Some objects are linked
          twice, once low and once high.
        . The bootstrap phase passes a lot of information (e.g. free memory
          list, physical location of the modules, etc.) using the kinfo
          struct.
        . After this bootstrap the low-linked part is freed.
        . The kernel maps in VM into the bootstrap page table so that VM can
          begin executing. Its first job is to make page tables for all other
          boot processes. So VM runs before RS, and RS gets a fully dynamic,
          VM-managed address space. VM gets its privilege info from RS as usual
          but that happens after RS starts running.
        . Both the kernel loading VM and VM organizing boot processes happen
  using the libexec logic. This removes the last reason for VM to
  still know much about exec() and vm/exec.c is gone.

Further Implementation:
        . All segments are based at 0 and have a 4 GB limit.
        . The kernel is mapped in at the top of the virtual address
          space so as not to constrain the user processes.
        . Processes do not use segments from the LDT at all; there are
          no segments in the LDT any more, so no LLDT is needed.
        . The Minix segments T/D/S are gone and so none of the
          user-space or in-kernel copy functions use them. The copy
          functions use a process endpoint of NONE to realize it's
          a physical address, virtual otherwise.
        . The umap call only makes sense to translate a virtual address
          to a physical address now.
        . Segments-related calls like newmap and alloc_segments are gone.
        . All segments-related translation in VM is gone (vir2map etc).
        . Initialization in VM is simpler as no moving around is necessary.
        . VM and all other boot processes can be linked wherever they wish
          and will be mapped in at the right location by the kernel and VM
          respectively.

Other changes:
        . The multiboot code is less special: it does not use mb_print
          for its diagnostics any more but uses printf() as normal, saving
          the output into the diagnostics buffer, only printing to the
          screen using the direct print functions if a panic() occurs.
        . The multiboot code uses the flexible 'free memory map list'
          style to receive the list of free memory if available.
        . The kernel determines the memory layout of the processes to
          a degree: it tells VM where the kernel starts and ends and
          where the kernel wants the top of the process to be. VM then
          uses this entire range, i.e. the stack is right at the top,
          and mmap()ped bits of memory are placed below that downwards,
          and the break grows upwards.

Other Consequences:
        . Every process gets its own page table as address spaces
          can't be separated any more by segments.
        . As all segments are 0-based, there is no distinction between
          virtual and linear addresses, nor between userspace and
          kernel addresses.
        . Less work is done when context switching, leading to a net
          performance increase. (8% faster on my machine for 'make servers'.)
. The layout and configuration of the GDT makes sysenter and syscall
  possible.
139 files changed:
commands/Makefile
drivers/pci/pci.c
drivers/tty/console.c
include/arch/i386/include/archtypes.h
include/arch/i386/include/interrupt.h
include/arch/i386/include/multiboot.h
include/arch/i386/include/vmparam.h
include/minix/com.h
include/minix/const.h
include/minix/profile.h
include/minix/syslib.h
include/minix/type.h
include/minix/vm.h
kernel/Makefile
kernel/arch/i386/Makefile.inc
kernel/arch/i386/apic.c
kernel/arch/i386/arch_do_vmctl.c
kernel/arch/i386/arch_reset.c [new file with mode: 0644]
kernel/arch/i386/arch_smp.c
kernel/arch/i386/arch_system.c
kernel/arch/i386/direct_tty_utils.c [new file with mode: 0644]
kernel/arch/i386/do_readbios.c
kernel/arch/i386/do_sdevio.c
kernel/arch/i386/exception.c
kernel/arch/i386/head.S [new file with mode: 0644]
kernel/arch/i386/i8259.c
kernel/arch/i386/include/arch_proto.h
kernel/arch/i386/include/arch_watchdog.h
kernel/arch/i386/include/archconst.h
kernel/arch/i386/include/direct_utils.h [new file with mode: 0644]
kernel/arch/i386/kernel.lds
kernel/arch/i386/klib.S
kernel/arch/i386/mb_utils.h [deleted file]
kernel/arch/i386/memory.c
kernel/arch/i386/mpx.S
kernel/arch/i386/multiboot.S [deleted file]
kernel/arch/i386/pg_utils.c [new file with mode: 0644]
kernel/arch/i386/pre_init.c
kernel/arch/i386/procoffsets.cf
kernel/arch/i386/protect.c
kernel/arch/i386/sconst.h
kernel/arch/i386/trampoline.S
kernel/clock.c
kernel/config.h
kernel/const.h
kernel/debug.c
kernel/glo.h
kernel/main.c
kernel/perf.h
kernel/proc.c
kernel/proc.h
kernel/profile.c
kernel/proto.h
kernel/start.c [deleted file]
kernel/system.c
kernel/system.h
kernel/system/Makefile.inc
kernel/system/do_abort.c
kernel/system/do_copy.c
kernel/system/do_exec.c
kernel/system/do_fork.c
kernel/system/do_getinfo.c
kernel/system/do_newmap.c [deleted file]
kernel/system/do_safecopy.c
kernel/system/do_safemap.c
kernel/system/do_trace.c
kernel/system/do_umap_remote.c
kernel/system/do_update.c
kernel/system/do_vmctl.c
kernel/system/do_vumap.c
kernel/table.c
kernel/type.h
kernel/utility.c
lib/libasyn/asyn.h
lib/libaudiodriver/audio_fw.c
lib/libexec/exec_elf.c
lib/libexec/exec_general.c
lib/libexec/libexec.h
lib/libminlib/i386/_cpufeature.c
lib/libsys/Makefile
lib/libsys/alloc_util.c
lib/libsys/env_get_prm.c
lib/libsys/env_parse.c
lib/libsys/kputc.c
lib/libsys/sef.c
lib/libsys/sys_fork.c
lib/libsys/sys_newmap.c [deleted file]
lib/libsys/sys_physcopy.c
lib/libsys/sys_safecopy.c
lib/libsys/sys_safemap.c
lib/libsys/sys_vircopy.c
lib/libsys/sys_vmctl.c
lib/libvassert/vassert.c
servers/init/Makefile
servers/is/dmp.c
servers/is/dmp_kernel.c
servers/is/dmp_vm.c
servers/is/proto.h
servers/pm/exec.c
servers/pm/glo.h
servers/pm/main.c
servers/pm/misc.c
servers/procfs/pid.c
servers/rs/const.h
servers/rs/exec.c
servers/rs/glo.h
servers/rs/main.c
servers/rs/manager.c
servers/vfs/exec.c
servers/vfs/glo.h
servers/vfs/main.c
servers/vfs/table.c
servers/vm/Makefile
servers/vm/alloc.c
servers/vm/arch/i386/Makefile.inc
servers/vm/arch/i386/arch_vmproc.h [deleted file]
servers/vm/arch/i386/memory.h
servers/vm/arch/i386/pagetable.c
servers/vm/arch/i386/vm.c [deleted file]
servers/vm/break.c
servers/vm/exec.c [deleted file]
servers/vm/exit.c
servers/vm/fork.c
servers/vm/glo.h
servers/vm/main.c
servers/vm/mmap.c
servers/vm/pagefaults.c
servers/vm/proto.h
servers/vm/region.c
servers/vm/rs.c
servers/vm/sanitycheck.h
servers/vm/slaballoc.c
servers/vm/utility.c
servers/vm/vmproc.h
share/mk/bsd.prog.mk
share/mk/minix.bootprog.mk
usr.bin/Makefile
usr.bin/mkimage/Makefile [deleted file]
usr.bin/mkimage/mkimage.c [deleted file]