binfmt_elf32.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Support for 32-bit Linux/Parisc ELF binaries on 64 bit kernels
  3. *
  4. * Copyright (C) 2000 John Marvin
  5. * Copyright (C) 2000 Hewlett Packard Co.
  6. *
  7. * Heavily inspired from various other efforts to do the same thing
  8. * (ia64,sparc64/mips64)
  9. */
  10. /* Make sure include/asm-parisc/elf.h does the right thing */
  11. #define ELF_CLASS ELFCLASS32
  12. #define ELF_CORE_COPY_REGS(dst, pt) \
  13. memset(dst, 0, sizeof(dst)); /* don't leak any "random" bits */ \
  14. { int i; \
  15. for (i = 0; i < 32; i++) dst[i] = (elf_greg_t) pt->gr[i]; \
  16. for (i = 0; i < 8; i++) dst[32 + i] = (elf_greg_t) pt->sr[i]; \
  17. } \
  18. dst[40] = (elf_greg_t) pt->iaoq[0]; dst[41] = (elf_greg_t) pt->iaoq[1]; \
  19. dst[42] = (elf_greg_t) pt->iasq[0]; dst[43] = (elf_greg_t) pt->iasq[1]; \
  20. dst[44] = (elf_greg_t) pt->sar; dst[45] = (elf_greg_t) pt->iir; \
  21. dst[46] = (elf_greg_t) pt->isr; dst[47] = (elf_greg_t) pt->ior; \
  22. dst[48] = (elf_greg_t) mfctl(22); dst[49] = (elf_greg_t) mfctl(0); \
  23. dst[50] = (elf_greg_t) mfctl(24); dst[51] = (elf_greg_t) mfctl(25); \
  24. dst[52] = (elf_greg_t) mfctl(26); dst[53] = (elf_greg_t) mfctl(27); \
  25. dst[54] = (elf_greg_t) mfctl(28); dst[55] = (elf_greg_t) mfctl(29); \
  26. dst[56] = (elf_greg_t) mfctl(30); dst[57] = (elf_greg_t) mfctl(31); \
  27. dst[58] = (elf_greg_t) mfctl( 8); dst[59] = (elf_greg_t) mfctl( 9); \
  28. dst[60] = (elf_greg_t) mfctl(12); dst[61] = (elf_greg_t) mfctl(13); \
  29. dst[62] = (elf_greg_t) mfctl(10); dst[63] = (elf_greg_t) mfctl(15);
  30. typedef unsigned int elf_greg_t;
  31. #include <linux/spinlock.h>
  32. #include <asm/processor.h>
  33. #include <linux/module.h>
  34. #include <linux/elfcore.h>
  35. #include <linux/compat.h> /* struct compat_timeval */
  36. #define elf_prstatus elf_prstatus32
  37. struct elf_prstatus32
  38. {
  39. struct elf_siginfo pr_info; /* Info associated with signal */
  40. short pr_cursig; /* Current signal */
  41. unsigned int pr_sigpend; /* Set of pending signals */
  42. unsigned int pr_sighold; /* Set of held signals */
  43. pid_t pr_pid;
  44. pid_t pr_ppid;
  45. pid_t pr_pgrp;
  46. pid_t pr_sid;
  47. struct compat_timeval pr_utime; /* User time */
  48. struct compat_timeval pr_stime; /* System time */
  49. struct compat_timeval pr_cutime; /* Cumulative user time */
  50. struct compat_timeval pr_cstime; /* Cumulative system time */
  51. elf_gregset_t pr_reg; /* GP registers */
  52. int pr_fpvalid; /* True if math co-processor being used. */
  53. };
  54. #define elf_prpsinfo elf_prpsinfo32
  55. struct elf_prpsinfo32
  56. {
  57. char pr_state; /* numeric process state */
  58. char pr_sname; /* char for pr_state */
  59. char pr_zomb; /* zombie */
  60. char pr_nice; /* nice val */
  61. unsigned int pr_flag; /* flags */
  62. u16 pr_uid;
  63. u16 pr_gid;
  64. pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
  65. /* Lots missing */
  66. char pr_fname[16]; /* filename of executable */
  67. char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
  68. };
  69. #define init_elf_binfmt init_elf32_binfmt
  70. #define ELF_PLATFORM ("PARISC32\0")
  71. /*
  72. * We should probably use this macro to set a flag somewhere to indicate
  73. * this is a 32 on 64 process. We could use PER_LINUX_32BIT, or we
  74. * could set a processor dependent flag in the thread_struct.
  75. */
  76. #undef SET_PERSONALITY
  77. #define SET_PERSONALITY(ex) \
  78. set_thread_flag(TIF_32BIT); \
  79. current->thread.map_base = DEFAULT_MAP_BASE32; \
  80. current->thread.task_size = DEFAULT_TASK_SIZE32 \
  81. #undef cputime_to_timeval
  82. #define cputime_to_timeval cputime_to_compat_timeval
  83. static __inline__ void
  84. cputime_to_compat_timeval(const cputime_t cputime, struct compat_timeval *value)
  85. {
  86. unsigned long jiffies = cputime_to_jiffies(cputime);
  87. value->tv_usec = (jiffies % HZ) * (1000000L / HZ);
  88. value->tv_sec = jiffies / HZ;
  89. }
  90. #include "../../../fs/binfmt_elf.c"