binfmt_elfn32.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Support for n32 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 long 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. ((__h->e_flags & EF_MIPS_ABI) != 0)) \
  39. __res = 0; \
  40. \
  41. __res; \
  42. })
  43. #define TASK32_SIZE 0x7fff8000UL
  44. #undef ELF_ET_DYN_BASE
  45. #define ELF_ET_DYN_BASE (TASK32_SIZE / 3 * 2)
  46. #include <asm/processor.h>
  47. #include <linux/module.h>
  48. #include <linux/elfcore.h>
  49. #include <linux/compat.h>
  50. #include <linux/math64.h>
  51. #define elf_prstatus elf_prstatus32
  52. struct elf_prstatus32
  53. {
  54. struct elf_siginfo pr_info; /* Info associated with signal */
  55. short pr_cursig; /* Current signal */
  56. unsigned int pr_sigpend; /* Set of pending signals */
  57. unsigned int pr_sighold; /* Set of held signals */
  58. pid_t pr_pid;
  59. pid_t pr_ppid;
  60. pid_t pr_pgrp;
  61. pid_t pr_sid;
  62. struct compat_timeval pr_utime; /* User time */
  63. struct compat_timeval pr_stime; /* System time */
  64. struct compat_timeval pr_cutime;/* Cumulative user time */
  65. struct compat_timeval pr_cstime;/* Cumulative system time */
  66. elf_gregset_t pr_reg; /* GP registers */
  67. int pr_fpvalid; /* True if math co-processor being used. */
  68. };
  69. #define elf_prpsinfo elf_prpsinfo32
  70. struct elf_prpsinfo32
  71. {
  72. char pr_state; /* numeric process state */
  73. char pr_sname; /* char for pr_state */
  74. char pr_zomb; /* zombie */
  75. char pr_nice; /* nice val */
  76. unsigned int pr_flag; /* flags */
  77. __kernel_uid_t pr_uid;
  78. __kernel_gid_t pr_gid;
  79. pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
  80. /* Lots missing */
  81. char pr_fname[16]; /* filename of executable */
  82. char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
  83. };
  84. #define elf_caddr_t u32
  85. #define init_elf_binfmt init_elfn32_binfmt
  86. #define jiffies_to_timeval jiffies_to_compat_timeval
  87. static __inline__ void
  88. jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value)
  89. {
  90. /*
  91. * Convert jiffies to nanoseconds and separate with
  92. * one divide.
  93. */
  94. u64 nsec = (u64)jiffies * TICK_NSEC;
  95. u32 rem;
  96. value->tv_sec = div_u64_rem(nsec, NSEC_PER_SEC, &rem);
  97. value->tv_usec = rem / NSEC_PER_USEC;
  98. }
  99. #define ELF_CORE_EFLAGS EF_MIPS_ABI2
  100. MODULE_DESCRIPTION("Binary format loader for compatibility with n32 Linux/MIPS binaries");
  101. MODULE_AUTHOR("Ralf Baechle (ralf@linux-mips.org)");
  102. #undef MODULE_DESCRIPTION
  103. #undef MODULE_AUTHOR
  104. #undef TASK_SIZE
  105. #define TASK_SIZE TASK_SIZE32
  106. #undef cputime_to_timeval
  107. #define cputime_to_timeval cputime_to_compat_timeval
  108. static __inline__ void
  109. cputime_to_compat_timeval(const cputime_t cputime, struct compat_timeval *value)
  110. {
  111. unsigned long jiffies = cputime_to_jiffies(cputime);
  112. value->tv_usec = (jiffies % HZ) * (1000000L / HZ);
  113. value->tv_sec = jiffies / HZ;
  114. }
  115. #include "../../../fs/binfmt_elf.c"