syscall_table.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * System call table for UML/x86-64, copied from arch/x86_64/kernel/syscall.c
  3. * with some changes for UML.
  4. */
  5. #include <linux/linkage.h>
  6. #include <linux/sys.h>
  7. #include <linux/cache.h>
  8. #include <kern_constants.h>
  9. #define __NO_STUBS
  10. /*
  11. * Below you can see, in terms of #define's, the differences between the x86-64
  12. * and the UML syscall table.
  13. */
  14. /* Not going to be implemented by UML, since we have no hardware. */
  15. #define stub_iopl sys_ni_syscall
  16. #define sys_ioperm sys_ni_syscall
  17. /*
  18. * The UML TLS problem. Note that x86_64 does not implement this, so the below
  19. * is needed only for the ia32 compatibility.
  20. */
  21. /* On UML we call it this way ("old" means it's not mmap2) */
  22. #define sys_mmap old_mmap
  23. #define stub_clone sys_clone
  24. #define stub_fork sys_fork
  25. #define stub_vfork sys_vfork
  26. #define stub_execve sys_execve
  27. #define stub_rt_sigsuspend sys_rt_sigsuspend
  28. #define stub_sigaltstack sys_sigaltstack
  29. #define stub_rt_sigreturn sys_rt_sigreturn
  30. #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
  31. #undef _ASM_X86_UNISTD_64_H
  32. #include "../../x86/include/asm/unistd_64.h"
  33. #undef __SYSCALL
  34. #define __SYSCALL(nr, sym) [ nr ] = sym,
  35. #undef _ASM_X86_UNISTD_64_H
  36. typedef void (*sys_call_ptr_t)(void);
  37. extern void sys_ni_syscall(void);
  38. /*
  39. * We used to have a trick here which made sure that holes in the
  40. * x86_64 table were filled in with sys_ni_syscall, but a comment in
  41. * unistd_64.h says that holes aren't allowed, so the trick was
  42. * removed.
  43. * The trick looked like this
  44. * [0 ... UM_NR_syscall_max] = &sys_ni_syscall
  45. * before including unistd_64.h - the later initializations overwrote
  46. * the sys_ni_syscall filler.
  47. */
  48. sys_call_ptr_t sys_call_table[] __cacheline_aligned = {
  49. #include "../../x86/include/asm/unistd_64.h"
  50. };
  51. int syscall_table_size = sizeof(sys_call_table);