binfmt_elfo32.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. * This is used to ensure we don't load something for the wrong architecture.
  27. */
  28. #define elf_check_arch(hdr) \
  29. ({ \
  30. int __res = 1; \
  31. struct elfhdr *__h = (hdr); \
  32. \
  33. if (__h->e_machine != EM_MIPS) \
  34. __res = 0; \
  35. if (__h->e_ident[EI_CLASS] != ELFCLASS32) \
  36. __res = 0; \
  37. if ((__h->e_flags & EF_MIPS_ABI2) != 0) \
  38. __res = 0; \
  39. if (((__h->e_flags & EF_MIPS_ABI) != 0) && \
  40. ((__h->e_flags & EF_MIPS_ABI) != EF_MIPS_ABI_O32)) \
  41. __res = 0; \
  42. \
  43. __res; \
  44. })
  45. #define TASK32_SIZE 0x7fff8000UL
  46. #undef ELF_ET_DYN_BASE
  47. #define ELF_ET_DYN_BASE (TASK32_SIZE / 3 * 2)
  48. #include <asm/processor.h>
  49. #include <linux/module.h>
  50. #include <linux/elfcore.h>
  51. #include <linux/compat.h>
  52. #define elf_prstatus elf_prstatus32
  53. struct elf_prstatus32
  54. {
  55. struct elf_siginfo pr_info; /* Info associated with signal */
  56. short pr_cursig; /* Current signal */
  57. unsigned int pr_sigpend; /* Set of pending signals */
  58. unsigned int pr_sighold; /* Set of held signals */
  59. pid_t pr_pid;
  60. pid_t pr_ppid;
  61. pid_t pr_pgrp;
  62. pid_t pr_sid;
  63. struct compat_timeval pr_utime; /* User time */
  64. struct compat_timeval pr_stime; /* System time */
  65. struct compat_timeval pr_cutime;/* Cumulative user time */
  66. struct compat_timeval pr_cstime;/* Cumulative system time */
  67. elf_gregset_t pr_reg; /* GP registers */
  68. int pr_fpvalid; /* True if math co-processor being used. */
  69. };
  70. #define elf_prpsinfo elf_prpsinfo32
  71. struct elf_prpsinfo32
  72. {
  73. char pr_state; /* numeric process state */
  74. char pr_sname; /* char for pr_state */
  75. char pr_zomb; /* zombie */
  76. char pr_nice; /* nice val */
  77. unsigned int pr_flag; /* flags */
  78. __kernel_uid_t pr_uid;
  79. __kernel_gid_t pr_gid;
  80. pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
  81. /* Lots missing */
  82. char pr_fname[16]; /* filename of executable */
  83. char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
  84. };
  85. #define elf_caddr_t u32
  86. #define init_elf_binfmt init_elf32_binfmt
  87. #define jiffies_to_timeval jiffies_to_compat_timeval
  88. static inline void
  89. jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value)
  90. {
  91. /*
  92. * Convert jiffies to nanoseconds and seperate with
  93. * one divide.
  94. */
  95. u64 nsec = (u64)jiffies * TICK_NSEC;
  96. long rem;
  97. value->tv_sec = div_long_long_rem(nsec, NSEC_PER_SEC, &rem);
  98. value->tv_usec = rem / NSEC_PER_USEC;
  99. }
  100. #undef ELF_CORE_COPY_REGS
  101. #define ELF_CORE_COPY_REGS(_dest,_regs) elf32_core_copy_regs(_dest,_regs);
  102. void elf32_core_copy_regs(elf_gregset_t grp, struct pt_regs *regs)
  103. {
  104. int i;
  105. for (i = 0; i < EF_R0; i++)
  106. grp[i] = 0;
  107. grp[EF_R0] = 0;
  108. for (i = 1; i <= 31; i++)
  109. grp[EF_R0 + i] = (elf_greg_t) regs->regs[i];
  110. grp[EF_R26] = 0;
  111. grp[EF_R27] = 0;
  112. grp[EF_LO] = (elf_greg_t) regs->lo;
  113. grp[EF_HI] = (elf_greg_t) regs->hi;
  114. grp[EF_CP0_EPC] = (elf_greg_t) regs->cp0_epc;
  115. grp[EF_CP0_BADVADDR] = (elf_greg_t) regs->cp0_badvaddr;
  116. grp[EF_CP0_STATUS] = (elf_greg_t) regs->cp0_status;
  117. grp[EF_CP0_CAUSE] = (elf_greg_t) regs->cp0_cause;
  118. #ifdef EF_UNUSED0
  119. grp[EF_UNUSED0] = 0;
  120. #endif
  121. }
  122. MODULE_DESCRIPTION("Binary format loader for compatibility with o32 Linux/MIPS binaries");
  123. MODULE_AUTHOR("Ralf Baechle (ralf@linux-mips.org)");
  124. #undef MODULE_DESCRIPTION
  125. #undef MODULE_AUTHOR
  126. #undef TASK_SIZE
  127. #define TASK_SIZE TASK_SIZE32
  128. #include "../../../fs/binfmt_elf.c"