binfmt_elfo32.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Support for o32 Linux/MIPS ELF binaries.
  3. *
  4. * Copyright (C) 1999, 2001 Ralf Baechle
  5. * Copyright (C) 1999, 2001 Silicon Graphics, Inc.
  6. *
  7. * Heavily inspired by the 32-bit Sparc compat code which is
  8. * Copyright (C) 1995, 1996, 1997, 1998 David S. Miller (davem@redhat.com)
  9. * Copyright (C) 1995, 1996, 1997, 1998 Jakub Jelinek (jj@ultra.linux.cz)
  10. */
  11. #define ELF_ARCH EM_MIPS
  12. #define ELF_CLASS ELFCLASS32
  13. #ifdef __MIPSEB__
  14. #define ELF_DATA ELFDATA2MSB;
  15. #else /* __MIPSEL__ */
  16. #define ELF_DATA ELFDATA2LSB;
  17. #endif
  18. /* ELF register definitions */
  19. #define ELF_NGREG 45
  20. #define ELF_NFPREG 33
  21. typedef unsigned int elf_greg_t;
  22. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  23. typedef double elf_fpreg_t;
  24. typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  25. /*
  26. * In order to be sure that we don't attempt to execute an O32 binary which
  27. * requires 64 bit FP (FR=1) on a system which does not support it we refuse
  28. * to execute any binary which has bits specified by the following macro set
  29. * in its ELF header flags.
  30. */
  31. #ifdef CONFIG_MIPS_O32_FP64_SUPPORT
  32. # define __MIPS_O32_FP64_MUST_BE_ZERO 0
  33. #else
  34. # define __MIPS_O32_FP64_MUST_BE_ZERO EF_MIPS_FP64
  35. #endif
  36. /*
  37. * This is used to ensure we don't load something for the wrong architecture.
  38. */
  39. #define elf_check_arch(hdr) \
  40. ({ \
  41. int __res = 1; \
  42. struct elfhdr *__h = (hdr); \
  43. \
  44. if (__h->e_machine != EM_MIPS) \
  45. __res = 0; \
  46. if (__h->e_ident[EI_CLASS] != ELFCLASS32) \
  47. __res = 0; \
  48. if ((__h->e_flags & EF_MIPS_ABI2) != 0) \
  49. __res = 0; \
  50. if (((__h->e_flags & EF_MIPS_ABI) != 0) && \
  51. ((__h->e_flags & EF_MIPS_ABI) != EF_MIPS_ABI_O32)) \
  52. __res = 0; \
  53. if (__h->e_flags & __MIPS_O32_FP64_MUST_BE_ZERO) \
  54. __res = 0; \
  55. \
  56. __res; \
  57. })
  58. #ifdef CONFIG_KVM_GUEST
  59. #define TASK32_SIZE 0x3fff8000UL
  60. #else
  61. #define TASK32_SIZE 0x7fff8000UL
  62. #endif
  63. #undef ELF_ET_DYN_BASE
  64. #define ELF_ET_DYN_BASE (TASK32_SIZE / 3 * 2)
  65. #include <asm/processor.h>
  66. #include <linux/module.h>
  67. #include <linux/elfcore.h>
  68. #include <linux/compat.h>
  69. #include <linux/math64.h>
  70. #define elf_prstatus elf_prstatus32
  71. struct elf_prstatus32
  72. {
  73. struct elf_siginfo pr_info; /* Info associated with signal */
  74. short pr_cursig; /* Current signal */
  75. unsigned int pr_sigpend; /* Set of pending signals */
  76. unsigned int pr_sighold; /* Set of held signals */
  77. pid_t pr_pid;
  78. pid_t pr_ppid;
  79. pid_t pr_pgrp;
  80. pid_t pr_sid;
  81. struct compat_timeval pr_utime; /* User time */
  82. struct compat_timeval pr_stime; /* System time */
  83. struct compat_timeval pr_cutime;/* Cumulative user time */
  84. struct compat_timeval pr_cstime;/* Cumulative system time */
  85. elf_gregset_t pr_reg; /* GP registers */
  86. int pr_fpvalid; /* True if math co-processor being used. */
  87. };
  88. #define elf_prpsinfo elf_prpsinfo32
  89. struct elf_prpsinfo32
  90. {
  91. char pr_state; /* numeric process state */
  92. char pr_sname; /* char for pr_state */
  93. char pr_zomb; /* zombie */
  94. char pr_nice; /* nice val */
  95. unsigned int pr_flag; /* flags */
  96. __kernel_uid_t pr_uid;
  97. __kernel_gid_t pr_gid;
  98. pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
  99. /* Lots missing */
  100. char pr_fname[16]; /* filename of executable */
  101. char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
  102. };
  103. #define elf_caddr_t u32
  104. #define init_elf_binfmt init_elf32_binfmt
  105. #define jiffies_to_timeval jiffies_to_compat_timeval
  106. static inline void
  107. jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value)
  108. {
  109. /*
  110. * Convert jiffies to nanoseconds and separate with
  111. * one divide.
  112. */
  113. u64 nsec = (u64)jiffies * TICK_NSEC;
  114. u32 rem;
  115. value->tv_sec = div_u64_rem(nsec, NSEC_PER_SEC, &rem);
  116. value->tv_usec = rem / NSEC_PER_USEC;
  117. }
  118. MODULE_DESCRIPTION("Binary format loader for compatibility with o32 Linux/MIPS binaries");
  119. MODULE_AUTHOR("Ralf Baechle (ralf@linux-mips.org)");
  120. #undef MODULE_DESCRIPTION
  121. #undef MODULE_AUTHOR
  122. #undef TASK_SIZE
  123. #define TASK_SIZE TASK_SIZE32
  124. #undef cputime_to_timeval
  125. #define cputime_to_timeval cputime_to_compat_timeval
  126. static __inline__ void
  127. cputime_to_compat_timeval(const cputime_t cputime, struct compat_timeval *value)
  128. {
  129. unsigned long jiffies = cputime_to_jiffies(cputime);
  130. value->tv_usec = (jiffies % HZ) * (1000000L / HZ);
  131. value->tv_sec = jiffies / HZ;
  132. }
  133. #include "../../../fs/binfmt_elf.c"