binfmt_elf32.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * binfmt_elf32.c: Support 32-bit Sparc ELF binaries on Ultra.
  3.  *
  4.  * Copyright (C) 1995, 1996, 1997, 1998 David S. Miller (davem@redhat.com)
  5.  * Copyright (C) 1995, 1996, 1997, 1998 Jakub Jelinek (jj@ultra.linux.cz)
  6.  */
  7. #define ELF_ARCH EM_SPARC
  8. #define ELF_CLASS ELFCLASS32
  9. #define ELF_DATA ELFDATA2MSB;
  10. /* For the most part we present code dumps in the format
  11.  * Solaris does.
  12.  */
  13. typedef unsigned int elf_greg_t;
  14. #define ELF_NGREG 38
  15. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  16. /* Format is:
  17.  *  G0 --> G7
  18.  * O0 --> O7
  19.  * L0 --> L7
  20.  * I0 --> I7
  21.  * PSR, PC, nPC, Y, WIM, TBR
  22.  */
  23. #include <asm/psrcompat.h>
  24. #define ELF_CORE_COPY_REGS(__elf_regs, __pt_regs)
  25. do { unsigned int *dest = &(__elf_regs[0]);
  26. struct pt_regs *src = (__pt_regs);
  27. unsigned int *sp;
  28. int i;
  29. for(i = 0; i < 16; i++)
  30. dest[i] = (unsigned int) src->u_regs[i];
  31. /* Don't try this at home kids... */
  32. set_fs(USER_DS);
  33. sp = (unsigned int *) (src->u_regs[14] &
  34. 0x00000000fffffffc);
  35. for(i = 0; i < 16; i++)
  36. __get_user(dest[i+16], &sp[i]);
  37. set_fs(KERNEL_DS);
  38. dest[32] = tstate_to_psr(src->tstate);
  39. dest[33] = (unsigned int) src->tpc;
  40. dest[34] = (unsigned int) src->tnpc;
  41. dest[35] = src->y;
  42. dest[36] = dest[37] = 0; /* XXX */
  43. } while(0);
  44. typedef struct {
  45. union {
  46. unsigned int pr_regs[32];
  47. unsigned long pr_dregs[16];
  48. } pr_fr;
  49. unsigned int __unused;
  50. unsigned int pr_fsr;
  51. unsigned char pr_qcnt;
  52. unsigned char pr_q_entrysize;
  53. unsigned char pr_en;
  54. unsigned int pr_q[64];
  55. } elf_fpregset_t;
  56. /* UltraSparc extensions.  Still unused, but will be eventually.  */
  57. typedef struct {
  58. unsigned int pr_type;
  59. unsigned int pr_align;
  60. union {
  61. struct {
  62. union {
  63. unsigned int pr_regs[32];
  64. unsigned long pr_dregs[16];
  65. long double pr_qregs[8];
  66. } pr_xfr;
  67. } pr_v8p;
  68. unsigned int pr_xfsr;
  69. unsigned int pr_fprs;
  70. unsigned int pr_xg[8];
  71. unsigned int pr_xo[8];
  72. unsigned long pr_tstate;
  73. unsigned int pr_filler[8];
  74. } pr_un;
  75. } elf_xregset_t;
  76. #define elf_check_arch(x) (((x)->e_machine == EM_SPARC) || ((x)->e_machine == EM_SPARC32PLUS))
  77. #define ELF_ET_DYN_BASE         0x08000000
  78. #include <asm/processor.h>
  79. #include <linux/module.h>
  80. #include <linux/config.h>
  81. #include <linux/elfcore.h>
  82. struct timeval32
  83. {
  84. int tv_sec, tv_usec;
  85. };
  86. #define elf_prstatus elf_prstatus32
  87. struct elf_prstatus32
  88. {
  89. struct elf_siginfo pr_info; /* Info associated with signal */
  90. short pr_cursig; /* Current signal */
  91. unsigned int pr_sigpend; /* Set of pending signals */
  92. unsigned int pr_sighold; /* Set of held signals */
  93. pid_t pr_pid;
  94. pid_t pr_ppid;
  95. pid_t pr_pgrp;
  96. pid_t pr_sid;
  97. struct timeval32 pr_utime; /* User time */
  98. struct timeval32 pr_stime; /* System time */
  99. struct timeval32 pr_cutime; /* Cumulative user time */
  100. struct timeval32 pr_cstime; /* Cumulative system time */
  101. elf_gregset_t pr_reg; /* GP registers */
  102. int pr_fpvalid; /* True if math co-processor being used.  */
  103. };
  104. #define elf_prpsinfo elf_prpsinfo32
  105. struct elf_prpsinfo32
  106. {
  107. char pr_state; /* numeric process state */
  108. char pr_sname; /* char for pr_state */
  109. char pr_zomb; /* zombie */
  110. char pr_nice; /* nice val */
  111. unsigned int pr_flag; /* flags */
  112. u16 pr_uid;
  113. u16 pr_gid;
  114. pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
  115. /* Lots missing */
  116. char pr_fname[16]; /* filename of executable */
  117. char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
  118. };
  119. #include <linux/highuid.h>
  120. #undef NEW_TO_OLD_UID
  121. #undef NEW_TO_OLD_GID
  122. #define NEW_TO_OLD_UID(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
  123. #define NEW_TO_OLD_GID(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
  124. #define elf_addr_t u32
  125. #define elf_caddr_t u32
  126. #undef start_thread
  127. #define start_thread start_thread32
  128. #define init_elf_binfmt init_elf32_binfmt
  129. #undef CONFIG_BINFMT_ELF
  130. #ifdef CONFIG_BINFMT_ELF32
  131. #define CONFIG_BINFMT_ELF CONFIG_BINFMT_ELF32
  132. #endif
  133. #undef CONFIG_BINFMT_ELF_MODULE
  134. #ifdef CONFIG_BINFMT_ELF32_MODULE
  135. #define CONFIG_BINFMT_ELF_MODULE CONFIG_BINFMT_ELF32_MODULE
  136. #endif
  137. #define ELF_FLAGS_INIT current->thread.flags |= SPARC_FLAG_32BIT
  138. MODULE_DESCRIPTION("Binary format loader for compatibility with 32bit SparcLinux binaries on the Ultra");
  139. MODULE_AUTHOR("Eric Youngdale, David S. Miller, Jakub Jelinek");
  140. #undef MODULE_DESCRIPTION
  141. #undef MODULE_AUTHOR
  142. #include "../../../fs/binfmt_elf.c"