binfmt_elf32.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Support for 32-bit Linux for S390 ELF binaries.
  3.  *
  4.  * Copyright (C) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  5.  * Author(s): Gerhard Tonn (ton@de.ibm.com)
  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 __ASMS390_ELF_H
  12. /*
  13.  * These are used to set parameters in the core dumps.
  14.  */
  15. #define ELF_CLASS ELFCLASS32
  16. #define ELF_DATA ELFDATA2MSB
  17. #define ELF_ARCH EM_S390
  18. /*
  19.  * This is used to ensure we don't load something for the wrong architecture.
  20.  */
  21. #define elf_check_arch(x) 
  22. (((x)->e_machine == EM_S390 || (x)->e_machine == EM_S390_OLD) 
  23.          && (x)->e_ident[EI_CLASS] == ELF_CLASS)
  24. /* ELF register definitions */
  25. #define NUM_GPRS      16
  26. #define NUM_FPRS      16
  27. #define NUM_ACRS      16    
  28. #define TASK31_SIZE (0x80000000UL)
  29. /* For SVR4/S390 the function pointer to be registered with `atexit` is
  30.    passed in R14. */
  31. #define ELF_PLAT_INIT(_r) 
  32. do { 
  33. _r->gprs[14] = 0; 
  34. current->thread.flags |= S390_FLAG_31BIT; 
  35. } while(0)
  36. #define USE_ELF_CORE_DUMP
  37. #define ELF_EXEC_PAGESIZE       4096
  38. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  39.    use of this is to invoke "./ld.so someprog" to test out a new version of
  40.    the loader.  We need to make sure that it is out of the way of the program
  41.    that it will "exec", and that there is sufficient room for the brk.  */
  42. #define ELF_ET_DYN_BASE         ((TASK31_SIZE & 0x80000000) 
  43.                                 ? TASK31_SIZE / 3 * 2 
  44.                                 : 2 * TASK31_SIZE / 3)     
  45. /* Wow, the "main" arch needs arch dependent functions too.. :) */
  46. /* regs is struct pt_regs, pr_reg is elf_gregset_t (which is
  47.    now struct_user_regs, they are different) */
  48. #define ELF_CORE_COPY_REGS(pr_reg, regs)        
  49. int i; 
  50. memcpy(&pr_reg.psw.mask, &regs->psw.mask, 4); 
  51. memcpy(&pr_reg.psw.addr, ((char*)&regs->psw.addr)+4, 4); 
  52. for(i=0; i<NUM_GPRS; i++) 
  53. pr_reg.gprs[i] = regs->gprs[i]; 
  54. for(i=0; i<NUM_ACRS; i++) 
  55. pr_reg.acrs[i] = regs->acrs[i]; 
  56. pr_reg.orig_gpr2 = regs->orig_gpr2; 
  57. }
  58. /* This yields a mask that user programs can use to figure out what
  59.    instruction set this CPU supports. */
  60. #define ELF_HWCAP (0)
  61. /* This yields a string that ld.so will use to load implementation
  62.    specific libraries for optimization.  This is more specific in
  63.    intent than poking at uname or /proc/cpuinfo.
  64.    For the moment, we have only optimizations for the Intel generations,
  65.    but that could change... */
  66. #define ELF_PLATFORM (NULL)
  67. #ifdef __KERNEL__
  68. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  69. #endif 
  70. #include "linux32.h"
  71. typedef _s390_fp_regs32 elf_fpregset_t;
  72. typedef struct
  73. {
  74. _psw_t32 psw;
  75. __u32 gprs[__NUM_GPRS]; 
  76. __u32 acrs[__NUM_ACRS]; 
  77. __u32 orig_gpr2;
  78. } s390_regs32;
  79. typedef s390_regs32 elf_gregset_t;
  80. #include <asm/processor.h>
  81. #include <linux/module.h>
  82. #include <linux/config.h>
  83. #include <linux/elfcore.h>
  84. int setup_arg_pages32(struct linux_binprm *bprm);
  85. struct timeval32
  86. {
  87.     int tv_sec, tv_usec;
  88. };
  89. #define elf_prstatus elf_prstatus32
  90. struct elf_prstatus32
  91. {
  92. struct elf_siginfo pr_info; /* Info associated with signal */
  93. short pr_cursig; /* Current signal */
  94. u32 pr_sigpend; /* Set of pending signals */
  95. u32 pr_sighold; /* Set of held signals */
  96. pid_t pr_pid;
  97. pid_t pr_ppid;
  98. pid_t pr_pgrp;
  99. pid_t pr_sid;
  100. struct timeval32 pr_utime; /* User time */
  101. struct timeval32 pr_stime; /* System time */
  102. struct timeval32 pr_cutime; /* Cumulative user time */
  103. struct timeval32 pr_cstime; /* Cumulative system time */
  104. elf_gregset_t pr_reg; /* GP registers */
  105. int pr_fpvalid; /* True if math co-processor being used.  */
  106. };
  107. #define elf_prpsinfo elf_prpsinfo32
  108. struct elf_prpsinfo32
  109. {
  110. char pr_state; /* numeric process state */
  111. char pr_sname; /* char for pr_state */
  112. char pr_zomb; /* zombie */
  113. char pr_nice; /* nice val */
  114. u32 pr_flag; /* flags */
  115. u16 pr_uid;
  116. u16 pr_gid;
  117. pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
  118. /* Lots missing */
  119. char pr_fname[16]; /* filename of executable */
  120. char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
  121. };
  122. #include <linux/highuid.h>
  123. #undef NEW_TO_OLD_UID
  124. #undef NEW_TO_OLD_GID
  125. #define NEW_TO_OLD_UID(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
  126. #define NEW_TO_OLD_GID(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid) 
  127. #define elf_addr_t u32
  128. #define elf_caddr_t u32
  129. /*
  130. #define init_elf_binfmt init_elf32_binfmt
  131. */
  132. #undef CONFIG_BINFMT_ELF
  133. #ifdef CONFIG_BINFMT_ELF32
  134. #define CONFIG_BINFMT_ELF CONFIG_BINFMT_ELF32
  135. #endif
  136. #undef CONFIG_BINFMT_ELF_MODULE
  137. #ifdef CONFIG_BINFMT_ELF32_MODULE
  138. #define CONFIG_BINFMT_ELF_MODULE CONFIG_BINFMT_ELF32_MODULE
  139. #endif
  140. #undef start_thread
  141. #define start_thread                    start_thread31 
  142. #define setup_arg_pages(bprm)           setup_arg_pages32(bprm)
  143. #define elf_map elf_map32
  144. MODULE_DESCRIPTION("Binary format loader for compatibility with 32bit Linux for S390 binaries,"
  145.                    " Copyright 2000 IBM Corporation"); 
  146. MODULE_AUTHOR("Gerhard Tonn <ton@de.ibm.com>");
  147. #undef MODULE_DESCRIPTION
  148. #undef MODULE_AUTHOR
  149. #include "../../../fs/binfmt_elf.c"
  150. static unsigned long
  151. elf_map32 (struct file *filep, unsigned long addr, struct elf_phdr *eppnt, int prot, int type)
  152. {
  153. unsigned long map_addr;
  154. if(!addr)
  155. addr = 0x40000000;
  156. down_write(&current->mm->mmap_sem);
  157. map_addr = do_mmap(filep, ELF_PAGESTART(addr),
  158.    eppnt->p_filesz + ELF_PAGEOFFSET(eppnt->p_vaddr), prot, type,
  159.    eppnt->p_offset - ELF_PAGEOFFSET(eppnt->p_vaddr));
  160. up_write(&current->mm->mmap_sem);
  161. return(map_addr);
  162. }