syscall_table.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. /*
  24. * On x86-64 sys_uname is actually sys_newuname plus a compatibility trick.
  25. * See arch/x86_64/kernel/sys_x86_64.c
  26. */
  27. #define sys_uname sys_uname64
  28. #define stub_clone sys_clone
  29. #define stub_fork sys_fork
  30. #define stub_vfork sys_vfork
  31. #define stub_execve sys_execve
  32. #define stub_rt_sigsuspend sys_rt_sigsuspend
  33. #define stub_sigaltstack sys_sigaltstack
  34. #define stub_rt_sigreturn sys_rt_sigreturn
  35. #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
  36. #undef _ASM_X86_UNISTD_64_H
  37. #include "../../x86/include/asm/unistd_64.h"
  38. #undef __SYSCALL
  39. #define __SYSCALL(nr, sym) [ nr ] = sym,
  40. #undef _ASM_X86_UNISTD_64_H
  41. typedef void (*sys_call_ptr_t)(void);
  42. extern void sys_ni_syscall(void);
  43. /*
  44. * We used to have a trick here which made sure that holes in the
  45. * x86_64 table were filled in with sys_ni_syscall, but a comment in
  46. * unistd_64.h says that holes aren't allowed, so the trick was
  47. * removed.
  48. * The trick looked like this
  49. * [0 ... UM_NR_syscall_max] = &sys_ni_syscall
  50. * before including unistd_64.h - the later initializations overwrote
  51. * the sys_ni_syscall filler.
  52. */
  53. sys_call_ptr_t sys_call_table[] __cacheline_aligned = {
  54. #include "../../x86/include/asm/unistd_64.h"
  55. };
  56. int syscall_table_size = sizeof(sys_call_table);