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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * irixelf.c: Code to load IRIX ELF executables which conform to
  3.  *            the MIPS ABI.
  4.  *
  5.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  6.  *
  7.  * Based upon work which is:
  8.  * Copyright 1993, 1994: Eric Youngdale (ericy@cais.com).
  9.  */
  10. #include <linux/module.h>
  11. #include <linux/fs.h>
  12. #include <linux/stat.h>
  13. #include <linux/sched.h>
  14. #include <linux/mm.h>
  15. #include <linux/mman.h>
  16. #include <linux/a.out.h>
  17. #include <linux/errno.h>
  18. #include <linux/init.h>
  19. #include <linux/signal.h>
  20. #include <linux/binfmts.h>
  21. #include <linux/string.h>
  22. #include <linux/file.h>
  23. #include <linux/fcntl.h>
  24. #include <linux/slab.h>
  25. #include <linux/shm.h>
  26. #include <linux/personality.h>
  27. #include <linux/elfcore.h>
  28. #include <linux/smp_lock.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/pgalloc.h>
  31. #include <asm/ptrace.h>
  32. #include <asm/mipsregs.h>
  33. #include <asm/prctl.h>
  34. #define DLINFO_ITEMS 12
  35. #include <linux/elf.h>
  36. #undef DEBUG_ELF
  37. static int load_irix_binary(struct linux_binprm * bprm, struct pt_regs * regs);
  38. static int load_irix_library(struct file *);
  39. static int irix_core_dump(long signr, struct pt_regs * regs,
  40.                           struct file *file);
  41. extern int dump_fpu (elf_fpregset_t *);
  42. static struct linux_binfmt irix_format = {
  43. NULL, THIS_MODULE, load_irix_binary, load_irix_library,
  44. irix_core_dump, PAGE_SIZE
  45. };
  46. #ifndef elf_addr_t
  47. #define elf_addr_t unsigned long
  48. #define elf_caddr_t char *
  49. #endif
  50. #ifdef DEBUG_ELF
  51. /* Debugging routines. */
  52. static char *get_elf_p_type(Elf32_Word p_type)
  53. {
  54. int i = (int) p_type;
  55. switch(i) {
  56. case PT_NULL: return("PT_NULL"); break;
  57. case PT_LOAD: return("PT_LOAD"); break;
  58. case PT_DYNAMIC: return("PT_DYNAMIC"); break;
  59. case PT_INTERP: return("PT_INTERP"); break;
  60. case PT_NOTE: return("PT_NOTE"); break;
  61. case PT_SHLIB: return("PT_SHLIB"); break;
  62. case PT_PHDR: return("PT_PHDR"); break;
  63. case PT_LOPROC: return("PT_LOPROC/REGINFO"); break;
  64. case PT_HIPROC: return("PT_HIPROC"); break;
  65. default: return("PT_BOGUS"); break;
  66. }
  67. }
  68. static void print_elfhdr(struct elfhdr *ehp)
  69. {
  70. int i;
  71. printk("ELFHDR: e_ident<");
  72. for(i = 0; i < (EI_NIDENT - 1); i++) printk("%x ", ehp->e_ident[i]);
  73. printk("%x>n", ehp->e_ident[i]);
  74. printk("        e_type[%04x] e_machine[%04x] e_version[%08lx]n",
  75.        (unsigned short) ehp->e_type, (unsigned short) ehp->e_machine,
  76.        (unsigned long) ehp->e_version);
  77. printk("        e_entry[%08lx] e_phoff[%08lx] e_shoff[%08lx] "
  78.        "e_flags[%08lx]n",
  79.        (unsigned long) ehp->e_entry, (unsigned long) ehp->e_phoff,
  80.        (unsigned long) ehp->e_shoff, (unsigned long) ehp->e_flags);
  81. printk("        e_ehsize[%04x] e_phentsize[%04x] e_phnum[%04x]n",
  82.        (unsigned short) ehp->e_ehsize, (unsigned short) ehp->e_phentsize,
  83.        (unsigned short) ehp->e_phnum);
  84. printk("        e_shentsize[%04x] e_shnum[%04x] e_shstrndx[%04x]n",
  85.        (unsigned short) ehp->e_shentsize, (unsigned short) ehp->e_shnum,
  86.        (unsigned short) ehp->e_shstrndx);
  87. }
  88. static void print_phdr(int i, struct elf_phdr *ep)
  89. {
  90. printk("PHDR[%d]: p_type[%s] p_offset[%08lx] p_vaddr[%08lx] "
  91.        "p_paddr[%08lx]n", i, get_elf_p_type(ep->p_type),
  92.        (unsigned long) ep->p_offset, (unsigned long) ep->p_vaddr,
  93.        (unsigned long) ep->p_paddr);
  94. printk("         p_filesz[%08lx] p_memsz[%08lx] p_flags[%08lx] "
  95.        "p_align[%08lx]n", (unsigned long) ep->p_filesz,
  96.        (unsigned long) ep->p_memsz, (unsigned long) ep->p_flags,
  97.        (unsigned long) ep->p_align);
  98. }
  99. static void dump_phdrs(struct elf_phdr *ep, int pnum)
  100. {
  101. int i;
  102. for(i = 0; i < pnum; i++, ep++) {
  103. if((ep->p_type == PT_LOAD) ||
  104.    (ep->p_type == PT_INTERP) ||
  105.    (ep->p_type == PT_PHDR))
  106. print_phdr(i, ep);
  107. }
  108. }
  109. #endif /* (DEBUG_ELF) */
  110. static void set_brk(unsigned long start, unsigned long end)
  111. {
  112. start = PAGE_ALIGN(start);
  113. end = PAGE_ALIGN(end);
  114. if (end <= start)
  115. return;
  116. do_brk(start, end - start);
  117. }
  118. /* We need to explicitly zero any fractional pages
  119.  * after the data section (i.e. bss).  This would
  120.  * contain the junk from the file that should not
  121.  * be in memory.
  122.  */
  123. static void padzero(unsigned long elf_bss)
  124. {
  125. unsigned long nbyte;
  126. nbyte = elf_bss & (PAGE_SIZE-1);
  127. if (nbyte) {
  128. nbyte = PAGE_SIZE - nbyte;
  129. clear_user((void *) elf_bss, nbyte);
  130. }
  131. }
  132. unsigned long * create_irix_tables(char * p, int argc, int envc,
  133.    struct elfhdr * exec, unsigned int load_addr,
  134.    unsigned int interp_load_addr,
  135.    struct pt_regs *regs, struct elf_phdr *ephdr)
  136. {
  137. elf_caddr_t *argv;
  138. elf_caddr_t *envp;
  139. elf_addr_t *sp, *csp;
  140. #ifdef DEBUG_ELF
  141. printk("create_irix_tables: p[%p] argc[%d] envc[%d] "
  142.        "load_addr[%08x] interp_load_addr[%08x]n",
  143.        p, argc, envc, load_addr, interp_load_addr);
  144. #endif
  145. sp = (elf_addr_t *) (~15UL & (unsigned long) p);
  146. csp = sp;
  147. csp -= exec ? DLINFO_ITEMS*2 : 2;
  148. csp -= envc+1;
  149. csp -= argc+1;
  150. csp -= 1; /* argc itself */
  151. if ((unsigned long)csp & 15UL) {
  152. sp -= (16UL - ((unsigned long)csp & 15UL)) / sizeof(*sp);
  153. }
  154. /*
  155.  * Put the ELF interpreter info on the stack
  156.  */
  157. #define NEW_AUX_ENT(nr, id, val) 
  158.   __put_user ((id), sp+(nr*2)); 
  159.   __put_user ((val), sp+(nr*2+1)); 
  160. sp -= 2;
  161. NEW_AUX_ENT(0, AT_NULL, 0);
  162. if(exec) {
  163. sp -= 11*2;
  164. NEW_AUX_ENT (0, AT_PHDR, load_addr + exec->e_phoff);
  165. NEW_AUX_ENT (1, AT_PHENT, sizeof (struct elf_phdr));
  166. NEW_AUX_ENT (2, AT_PHNUM, exec->e_phnum);
  167. NEW_AUX_ENT (3, AT_PAGESZ, ELF_EXEC_PAGESIZE);
  168. NEW_AUX_ENT (4, AT_BASE, interp_load_addr);
  169. NEW_AUX_ENT (5, AT_FLAGS, 0);
  170. NEW_AUX_ENT (6, AT_ENTRY, (elf_addr_t) exec->e_entry);
  171. NEW_AUX_ENT (7, AT_UID, (elf_addr_t) current->uid);
  172. NEW_AUX_ENT (8, AT_EUID, (elf_addr_t) current->euid);
  173. NEW_AUX_ENT (9, AT_GID, (elf_addr_t) current->gid);
  174. NEW_AUX_ENT (10, AT_EGID, (elf_addr_t) current->egid);
  175. }
  176. #undef NEW_AUX_ENT
  177. sp -= envc+1;
  178. envp = (elf_caddr_t *) sp;
  179. sp -= argc+1;
  180. argv = (elf_caddr_t *) sp;
  181. __put_user((elf_addr_t)argc,--sp);
  182. current->mm->arg_start = (unsigned long) p;
  183. while (argc-->0) {
  184. __put_user((elf_caddr_t)(unsigned long)p,argv++);
  185. p += strlen_user(p);
  186. }
  187. __put_user(NULL, argv);
  188. current->mm->arg_end = current->mm->env_start = (unsigned long) p;
  189. while (envc-->0) {
  190. __put_user((elf_caddr_t)(unsigned long)p,envp++);
  191. p += strlen_user(p);
  192. }
  193. __put_user(NULL, envp);
  194. current->mm->env_end = (unsigned long) p;
  195. return sp;
  196. }
  197. /* This is much more generalized than the library routine read function,
  198.  * so we keep this separate.  Technically the library read function
  199.  * is only provided so that we can read a.out libraries that have
  200.  * an ELF header.
  201.  */
  202. static unsigned int load_irix_interp(struct elfhdr * interp_elf_ex,
  203.      struct file * interpreter,
  204.      unsigned int *interp_load_addr)
  205. {
  206. struct elf_phdr *elf_phdata  =  NULL;
  207. struct elf_phdr *eppnt;
  208. unsigned int len;
  209. unsigned int load_addr;
  210. int elf_bss;
  211. int retval;
  212. unsigned int last_bss;
  213. int error;
  214. int i;
  215. unsigned int k;
  216. elf_bss = 0;
  217. last_bss = 0;
  218. error = load_addr = 0;
  219. #ifdef DEBUG_ELF
  220. print_elfhdr(interp_elf_ex);
  221. #endif
  222. /* First of all, some simple consistency checks */
  223. if ((interp_elf_ex->e_type != ET_EXEC &&
  224.      interp_elf_ex->e_type != ET_DYN) ||
  225.      !irix_elf_check_arch(interp_elf_ex) ||
  226.      !interpreter->f_op->mmap) {
  227. printk("IRIX interp has bad e_type %dn", interp_elf_ex->e_type);
  228. return 0xffffffff;
  229. }
  230. /* Now read in all of the header information */
  231. if(sizeof(struct elf_phdr) * interp_elf_ex->e_phnum > PAGE_SIZE) {
  232.     printk("IRIX interp header bigger than a page (%d)n",
  233.    (sizeof(struct elf_phdr) * interp_elf_ex->e_phnum));
  234.     return 0xffffffff;
  235. }
  236. elf_phdata =  (struct elf_phdr *)
  237. kmalloc(sizeof(struct elf_phdr) * interp_elf_ex->e_phnum,
  238. GFP_KERNEL);
  239. if(!elf_phdata) {
  240.           printk("Cannot kmalloc phdata for IRIX interp.n");
  241.   return 0xffffffff;
  242. }
  243. /* If the size of this structure has changed, then punt, since
  244.  * we will be doing the wrong thing.
  245.  */
  246. if(interp_elf_ex->e_phentsize != 32) {
  247. printk("IRIX interp e_phentsize == %d != 32 ",
  248.        interp_elf_ex->e_phentsize);
  249. kfree(elf_phdata);
  250. return 0xffffffff;
  251. }
  252. retval = kernel_read(interpreter, interp_elf_ex->e_phoff,
  253.    (char *) elf_phdata,
  254.    sizeof(struct elf_phdr) * interp_elf_ex->e_phnum);
  255. #ifdef DEBUG_ELF
  256. dump_phdrs(elf_phdata, interp_elf_ex->e_phnum);
  257. #endif
  258. eppnt = elf_phdata;
  259. for(i=0; i<interp_elf_ex->e_phnum; i++, eppnt++) {
  260.   if(eppnt->p_type == PT_LOAD) {
  261.     int elf_type = MAP_PRIVATE | MAP_DENYWRITE;
  262.     int elf_prot = 0;
  263.     unsigned long vaddr = 0;
  264.     if (eppnt->p_flags & PF_R) elf_prot =  PROT_READ;
  265.     if (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
  266.     if (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
  267.     elf_type |= MAP_FIXED;
  268.     vaddr = eppnt->p_vaddr;
  269. #ifdef DEBUG_ELF
  270.     printk("INTERP do_mmap(%p, %08lx, %08lx, %08lx, %08lx, %08lx) ",
  271.    interpreter, vaddr,
  272.    (unsigned long) (eppnt->p_filesz + (eppnt->p_vaddr & 0xfff)),
  273.    (unsigned long) elf_prot, (unsigned long) elf_type,
  274.    (unsigned long) (eppnt->p_offset & 0xfffff000));
  275. #endif
  276.     down_write(&current->mm->mmap_sem);
  277.     error = do_mmap(interpreter, vaddr,
  278.     eppnt->p_filesz + (eppnt->p_vaddr & 0xfff),
  279.     elf_prot, elf_type,
  280.     eppnt->p_offset & 0xfffff000);
  281.     up_write(&current->mm->mmap_sem);
  282.     if(error < 0 && error > -1024) {
  283.     printk("Aieee IRIX interp mmap error=%dn", error);
  284.     break;  /* Real error */
  285.     }
  286. #ifdef DEBUG_ELF
  287.     printk("error=%08lx ", (unsigned long) error);
  288. #endif
  289.     if(!load_addr && interp_elf_ex->e_type == ET_DYN) {
  290.       load_addr = error;
  291. #ifdef DEBUG_ELF
  292.               printk("load_addr = error ");
  293. #endif
  294.     }
  295.     /* Find the end of the file  mapping for this phdr, and keep
  296.      * track of the largest address we see for this.
  297.      */
  298.     k = eppnt->p_vaddr + eppnt->p_filesz;
  299.     if(k > elf_bss) elf_bss = k;
  300.     /* Do the same thing for the memory mapping - between
  301.      * elf_bss and last_bss is the bss section.
  302.      */
  303.     k = eppnt->p_memsz + eppnt->p_vaddr;
  304.     if(k > last_bss) last_bss = k;
  305. #ifdef DEBUG_ELF
  306.     printk("n");
  307. #endif
  308.   }
  309. }
  310. /* Now use mmap to map the library into memory. */
  311. if(error < 0 && error > -1024) {
  312. #ifdef DEBUG_ELF
  313. printk("got error %dn", error);
  314. #endif
  315. kfree(elf_phdata);
  316. return 0xffffffff;
  317. }
  318. /* Now fill out the bss section.  First pad the last page up
  319.  * to the page boundary, and then perform a mmap to make sure
  320.  * that there are zero-mapped pages up to and including the
  321.  * last bss page.
  322.  */
  323. #ifdef DEBUG_ELF
  324. printk("padzero(%08lx) ", (unsigned long) (elf_bss));
  325. #endif
  326. padzero(elf_bss);
  327. len = (elf_bss + 0xfff) & 0xfffff000; /* What we have mapped so far */
  328. #ifdef DEBUG_ELF
  329. printk("last_bss[%08lx] len[%08lx]n", (unsigned long) last_bss,
  330.        (unsigned long) len);
  331. #endif
  332. /* Map the last of the bss segment */
  333. if (last_bss > len) {
  334. do_brk(len, (last_bss - len));
  335. }
  336. kfree(elf_phdata);
  337. *interp_load_addr = load_addr;
  338. return ((unsigned int) interp_elf_ex->e_entry);
  339. }
  340. /* Check sanity of IRIX elf executable header. */
  341. static int verify_binary(struct elfhdr *ehp, struct linux_binprm *bprm)
  342. {
  343. if (memcmp(ehp->e_ident, ELFMAG, SELFMAG) != 0)
  344. return -ENOEXEC;
  345. /* First of all, some simple consistency checks */
  346. if((ehp->e_type != ET_EXEC && ehp->e_type != ET_DYN) ||
  347.     !irix_elf_check_arch(ehp) || !bprm->file->f_op->mmap) {
  348. return -ENOEXEC;
  349. }
  350. /* Only support MIPS ARCH2 or greater IRIX binaries for now. */
  351. if(!(ehp->e_flags & EF_MIPS_ARCH) && !(ehp->e_flags & 0x04)) {
  352. return -ENOEXEC;
  353. }
  354. /* XXX Don't support N32 or 64bit binaries yet because they can
  355.  * XXX and do execute 64 bit instructions and expect all registers
  356.  * XXX to be 64 bit as well.  We need to make the kernel save
  357.  * XXX all registers as 64bits on cpu's capable of this at
  358.  * XXX exception time plus frob the XTLB exception vector.
  359.  */
  360. if((ehp->e_flags & 0x20)) {
  361. return -ENOEXEC;
  362. }
  363. return 0; /* It's ok. */
  364. }
  365. #define IRIX_INTERP_PREFIX "/usr/gnemul/irix"
  366. /* Look for an IRIX ELF interpreter. */
  367. static inline int look_for_irix_interpreter(char **name,
  368.     struct file **interpreter,
  369.     struct elfhdr *interp_elf_ex,
  370.     struct elf_phdr *epp,
  371.     struct linux_binprm *bprm, int pnum)
  372. {
  373. int i;
  374. int retval = -EINVAL;
  375. struct file *file = NULL;
  376. *name = NULL;
  377. for(i = 0; i < pnum; i++, epp++) {
  378. if (epp->p_type != PT_INTERP)
  379. continue;
  380. /* It is illegal to have two interpreters for one executable. */
  381. if (*name != NULL)
  382. goto out;
  383. *name = (char *) kmalloc((epp->p_filesz +
  384.   strlen(IRIX_INTERP_PREFIX)),
  385.  GFP_KERNEL);
  386. if (!*name)
  387. return -ENOMEM;
  388. strcpy(*name, IRIX_INTERP_PREFIX);
  389. retval = kernel_read(bprm->file, epp->p_offset, (*name + 16),
  390.                      epp->p_filesz);
  391. if (retval < 0)
  392. goto out;
  393. file = open_exec(*name);
  394. if (IS_ERR(file)) {
  395. retval = PTR_ERR(file);
  396. goto out;
  397. }
  398. retval = kernel_read(file, 0, bprm->buf, 128);
  399. if (retval < 0)
  400. goto dput_and_out;
  401. *interp_elf_ex = *(struct elfhdr *) bprm->buf;
  402. }
  403. *interpreter = file;
  404. return 0;
  405. dput_and_out:
  406. fput(file);
  407. out:
  408. kfree(*name);
  409. return retval;
  410. }
  411. static inline int verify_irix_interpreter(struct elfhdr *ihp)
  412. {
  413. if (memcmp(ihp->e_ident, ELFMAG, SELFMAG) != 0)
  414. return -ELIBBAD;
  415. return 0;
  416. }
  417. #define EXEC_MAP_FLAGS (MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE)
  418. static inline void map_executable(struct file *fp, struct elf_phdr *epp, int pnum,
  419.   unsigned int *estack, unsigned int *laddr,
  420.   unsigned int *scode, unsigned int *ebss,
  421.   unsigned int *ecode, unsigned int *edata,
  422.   unsigned int *ebrk)
  423. {
  424. unsigned int tmp;
  425. int i, prot;
  426. for(i = 0; i < pnum; i++, epp++) {
  427. if(epp->p_type != PT_LOAD)
  428. continue;
  429. /* Map it. */
  430. prot  = (epp->p_flags & PF_R) ? PROT_READ : 0;
  431. prot |= (epp->p_flags & PF_W) ? PROT_WRITE : 0;
  432. prot |= (epp->p_flags & PF_X) ? PROT_EXEC : 0;
  433.         down_write(&current->mm->mmap_sem);
  434. (void) do_mmap(fp, (epp->p_vaddr & 0xfffff000),
  435.        (epp->p_filesz + (epp->p_vaddr & 0xfff)),
  436.        prot, EXEC_MAP_FLAGS,
  437.        (epp->p_offset & 0xfffff000));
  438.         up_write(&current->mm->mmap_sem);
  439. /* Fixup location tracking vars. */
  440. if((epp->p_vaddr & 0xfffff000) < *estack)
  441. *estack = (epp->p_vaddr & 0xfffff000);
  442. if(!*laddr)
  443. *laddr = epp->p_vaddr - epp->p_offset;
  444. if(epp->p_vaddr < *scode)
  445. *scode = epp->p_vaddr;
  446. tmp = epp->p_vaddr + epp->p_filesz;
  447. if(tmp > *ebss)
  448. *ebss = tmp;
  449. if((epp->p_flags & PF_X) && *ecode < tmp)
  450. *ecode = tmp;
  451. if(*edata < tmp)
  452. *edata = tmp;
  453. tmp = epp->p_vaddr + epp->p_memsz;
  454. if(tmp > *ebrk)
  455. *ebrk = tmp;
  456. }
  457. }
  458. static inline int map_interpreter(struct elf_phdr *epp, struct elfhdr *ihp,
  459.   struct file *interp, unsigned int *iladdr,
  460.   int pnum, mm_segment_t old_fs,
  461.   unsigned int *eentry)
  462. {
  463. int i;
  464. *eentry = 0xffffffff;
  465. for(i = 0; i < pnum; i++, epp++) {
  466. if(epp->p_type != PT_INTERP)
  467. continue;
  468. /* We should have fielded this error elsewhere... */
  469. if(*eentry != 0xffffffff)
  470. return -1;
  471. set_fs(old_fs);
  472. *eentry = load_irix_interp(ihp, interp, iladdr);
  473. old_fs = get_fs();
  474. set_fs(get_ds());
  475. fput(interp);
  476. if (*eentry == 0xffffffff)
  477. return -1;
  478. }
  479. return 0;
  480. }
  481. /*
  482.  * IRIX maps a page at 0x200000 that holds information about the
  483.  * process and the system, here we map the page and fill the
  484.  * structure
  485.  */
  486. void irix_map_prda_page (void)
  487. {
  488. unsigned long v;
  489. struct prda *pp;
  490. v =  do_brk (PRDA_ADDRESS, PAGE_SIZE);
  491. if (v < 0)
  492. return;
  493. pp = (struct prda *) v;
  494. pp->prda_sys.t_pid  = current->pid;
  495. pp->prda_sys.t_prid = read_32bit_cp0_register (CP0_PRID);
  496. pp->prda_sys.t_rpid = current->pid;
  497. /* We leave the rest set to zero */
  498. }
  499. /* These are the functions used to load ELF style executables and shared
  500.  * libraries.  There is no binary dependent code anywhere else.
  501.  */
  502. static int load_irix_binary(struct linux_binprm * bprm, struct pt_regs * regs)
  503. {
  504. struct elfhdr elf_ex, interp_elf_ex;
  505. struct file *interpreter;
  506. struct elf_phdr *elf_phdata, *elf_ihdr, *elf_ephdr;
  507. unsigned int load_addr, elf_bss, elf_brk;
  508. unsigned int elf_entry, interp_load_addr = 0;
  509. unsigned int start_code, end_code, end_data, elf_stack;
  510. int retval, has_interp, has_ephdr, size, i;
  511. char *elf_interpreter;
  512. mm_segment_t old_fs;
  513. load_addr = 0;
  514. has_interp = has_ephdr = 0;
  515. elf_ihdr = elf_ephdr = 0;
  516. elf_ex = *((struct elfhdr *) bprm->buf);
  517. retval = -ENOEXEC;
  518. if (verify_binary(&elf_ex, bprm))
  519. goto out;
  520. #ifdef DEBUG_ELF
  521. print_elfhdr(&elf_ex);
  522. #endif
  523. /* Now read in all of the header information */
  524. size = elf_ex.e_phentsize * elf_ex.e_phnum;
  525. if (size > 65536)
  526. goto out;
  527. elf_phdata = (struct elf_phdr *) kmalloc(size, GFP_KERNEL);
  528. if (elf_phdata == NULL) {
  529. retval = -ENOMEM;
  530. goto out;
  531. }
  532. retval = kernel_read(bprm->file, elf_ex.e_phoff, (char *)elf_phdata, size);
  533. if (retval < 0)
  534. goto out_free_ph;
  535. #ifdef DEBUG_ELF
  536. dump_phdrs(elf_phdata, elf_ex.e_phnum);
  537. #endif
  538. /* Set some things for later. */
  539. for(i = 0; i < elf_ex.e_phnum; i++) {
  540. switch(elf_phdata[i].p_type) {
  541. case PT_INTERP:
  542. has_interp = 1;
  543. elf_ihdr = &elf_phdata[i];
  544. break;
  545. case PT_PHDR:
  546. has_ephdr = 1;
  547. elf_ephdr = &elf_phdata[i];
  548. break;
  549. };
  550. }
  551. #ifdef DEBUG_ELF
  552. printk("n");
  553. #endif
  554. elf_bss = 0;
  555. elf_brk = 0;
  556. elf_stack = 0xffffffff;
  557. elf_interpreter = NULL;
  558. start_code = 0xffffffff;
  559. end_code = 0;
  560. end_data = 0;
  561. retval = look_for_irix_interpreter(&elf_interpreter,
  562.                                    &interpreter,
  563.    &interp_elf_ex, elf_phdata, bprm,
  564.    elf_ex.e_phnum);
  565. if (retval)
  566. goto out_free_file;
  567. if (elf_interpreter) {
  568. retval = verify_irix_interpreter(&interp_elf_ex);
  569. if(retval)
  570. goto out_free_interp;
  571. }
  572. /* OK, we are done with that, now set up the arg stuff,
  573.  * and then start this sucker up.
  574.  */
  575. retval = -E2BIG;
  576. if (!bprm->sh_bang && !bprm->p)
  577. goto out_free_interp;
  578. /* Flush all traces of the currently running executable */
  579. retval = flush_old_exec(bprm);
  580. if (retval)
  581. goto out_free_dentry;
  582. /* OK, This is the point of no return */
  583. current->mm->end_data = 0;
  584. current->mm->end_code = 0;
  585. current->mm->mmap = NULL;
  586. current->flags &= ~PF_FORKNOEXEC;
  587. elf_entry = (unsigned int) elf_ex.e_entry;
  588. /* Do this so that we can load the interpreter, if need be.  We will
  589.  * change some of these later.
  590.  */
  591. current->mm->rss = 0;
  592. setup_arg_pages(bprm);
  593. current->mm->start_stack = bprm->p;
  594. /* At this point, we assume that the image should be loaded at
  595.  * fixed address, not at a variable address.
  596.  */
  597. old_fs = get_fs();
  598. set_fs(get_ds());
  599. map_executable(bprm->file, elf_phdata, elf_ex.e_phnum, &elf_stack,
  600.                &load_addr, &start_code, &elf_bss, &end_code,
  601.                &end_data, &elf_brk);
  602. if(elf_interpreter) {
  603. retval = map_interpreter(elf_phdata, &interp_elf_ex,
  604.  interpreter, &interp_load_addr,
  605.  elf_ex.e_phnum, old_fs, &elf_entry);
  606. kfree(elf_interpreter);
  607. if(retval) {
  608. set_fs(old_fs);
  609. printk("Unable to load IRIX ELF interpretern");
  610. send_sig(SIGSEGV, current, 0);
  611. retval = 0;
  612. goto out_free_file;
  613. }
  614. }
  615. set_fs(old_fs);
  616. kfree(elf_phdata);
  617. set_personality(PER_IRIX32);
  618. set_binfmt(&irix_format);
  619. compute_creds(bprm);
  620. current->flags &= ~PF_FORKNOEXEC;
  621. bprm->p = (unsigned long)
  622.   create_irix_tables((char *)bprm->p, bprm->argc, bprm->envc,
  623. (elf_interpreter ? &elf_ex : NULL),
  624. load_addr, interp_load_addr, regs, elf_ephdr);
  625. current->mm->start_brk = current->mm->brk = elf_brk;
  626. current->mm->end_code = end_code;
  627. current->mm->start_code = start_code;
  628. current->mm->end_data = end_data;
  629. current->mm->start_stack = bprm->p;
  630. /* Calling set_brk effectively mmaps the pages that we need for the
  631.  * bss and break sections.
  632.  */
  633. set_brk(elf_bss, elf_brk);
  634. /*
  635.  * IRIX maps a page at 0x200000 which holds some system
  636.  * information.  Programs depend on this.
  637.  */
  638. irix_map_prda_page ();
  639. padzero(elf_bss);
  640. #ifdef DEBUG_ELF
  641. printk("(start_brk) %lxn" , (long) current->mm->start_brk);
  642. printk("(end_code) %lxn" , (long) current->mm->end_code);
  643. printk("(start_code) %lxn" , (long) current->mm->start_code);
  644. printk("(end_data) %lxn" , (long) current->mm->end_data);
  645. printk("(start_stack) %lxn" , (long) current->mm->start_stack);
  646. printk("(brk) %lxn" , (long) current->mm->brk);
  647. #endif
  648. #if 0 /* XXX No fucking way dude... */
  649. /* Why this, you ask???  Well SVr4 maps page 0 as read-only,
  650.  * and some applications "depend" upon this behavior.
  651.  * Since we do not have the power to recompile these, we
  652.  * emulate the SVr4 behavior.  Sigh.
  653.  */
  654. down_write(&current->mm->mmap_sem);
  655. (void) do_mmap(NULL, 0, 4096, PROT_READ | PROT_EXEC,
  656.        MAP_FIXED | MAP_PRIVATE, 0);
  657. up_write(&current->mm->mmap_sem);
  658. #endif
  659. start_thread(regs, elf_entry, bprm->p);
  660. if (current->ptrace & PT_PTRACED)
  661. send_sig(SIGTRAP, current, 0);
  662. return 0;
  663. out:
  664. return retval;
  665. out_free_dentry:
  666. allow_write_access(interpreter);
  667. fput(interpreter);
  668. out_free_interp:
  669. if (elf_interpreter)
  670. kfree(elf_interpreter);
  671. out_free_file:
  672. out_free_ph:
  673. kfree (elf_phdata);
  674. goto out;
  675. }
  676. /* This is really simpleminded and specialized - we are loading an
  677.  * a.out library that is given an ELF header.
  678.  */
  679. static int load_irix_library(struct file *file)
  680. {
  681. struct elfhdr elf_ex;
  682. struct elf_phdr *elf_phdata  =  NULL;
  683. unsigned int len = 0;
  684. int elf_bss = 0;
  685. int retval;
  686. unsigned int bss;
  687. int error;
  688. int i,j, k;
  689. error = kernel_read(file, 0, (char *) &elf_ex, sizeof(elf_ex));
  690. if (error != sizeof(elf_ex))
  691. return -ENOEXEC;
  692. if (memcmp(elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
  693. return -ENOEXEC;
  694. /* First of all, some simple consistency checks. */
  695. if(elf_ex.e_type != ET_EXEC || elf_ex.e_phnum > 2 ||
  696.    !irix_elf_check_arch(&elf_ex) || !file->f_op->mmap)
  697. return -ENOEXEC;
  698. /* Now read in all of the header information. */
  699. if(sizeof(struct elf_phdr) * elf_ex.e_phnum > PAGE_SIZE)
  700. return -ENOEXEC;
  701. elf_phdata =  (struct elf_phdr *)
  702. kmalloc(sizeof(struct elf_phdr) * elf_ex.e_phnum, GFP_KERNEL);
  703. if (elf_phdata == NULL)
  704. return -ENOMEM;
  705. retval = kernel_read(file, elf_ex.e_phoff, (char *) elf_phdata,
  706.    sizeof(struct elf_phdr) * elf_ex.e_phnum);
  707. j = 0;
  708. for(i=0; i<elf_ex.e_phnum; i++)
  709. if((elf_phdata + i)->p_type == PT_LOAD) j++;
  710. if(j != 1)  {
  711. kfree(elf_phdata);
  712. return -ENOEXEC;
  713. }
  714. while(elf_phdata->p_type != PT_LOAD) elf_phdata++;
  715. /* Now use mmap to map the library into memory. */
  716. down_write(&current->mm->mmap_sem);
  717. error = do_mmap(file,
  718. elf_phdata->p_vaddr & 0xfffff000,
  719. elf_phdata->p_filesz + (elf_phdata->p_vaddr & 0xfff),
  720. PROT_READ | PROT_WRITE | PROT_EXEC,
  721. MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE,
  722. elf_phdata->p_offset & 0xfffff000);
  723. up_write(&current->mm->mmap_sem);
  724. k = elf_phdata->p_vaddr + elf_phdata->p_filesz;
  725. if (k > elf_bss) elf_bss = k;
  726. if (error != (elf_phdata->p_vaddr & 0xfffff000)) {
  727. kfree(elf_phdata);
  728. return error;
  729. }
  730. padzero(elf_bss);
  731. len = (elf_phdata->p_filesz + elf_phdata->p_vaddr+ 0xfff) & 0xfffff000;
  732. bss = elf_phdata->p_memsz + elf_phdata->p_vaddr;
  733. if (bss > len)
  734.   do_brk(len, bss-len);
  735. kfree(elf_phdata);
  736. return 0;
  737. }
  738. /* Called through irix_syssgi() to map an elf image given an FD,
  739.  * a phdr ptr USER_PHDRP in userspace, and a count CNT telling how many
  740.  * phdrs there are in the USER_PHDRP array.  We return the vaddr the
  741.  * first phdr was successfully mapped to.
  742.  */
  743. unsigned long irix_mapelf(int fd, struct elf_phdr *user_phdrp, int cnt)
  744. {
  745. struct elf_phdr *hp;
  746. struct file *filp;
  747. int i, retval;
  748. #ifdef DEBUG_ELF
  749. printk("irix_mapelf: fd[%d] user_phdrp[%p] cnt[%d]n",
  750.        fd, user_phdrp, cnt);
  751. #endif
  752. /* First get the verification out of the way. */
  753. hp = user_phdrp;
  754. retval = verify_area(VERIFY_READ, hp, (sizeof(struct elf_phdr) * cnt));
  755. if(retval) {
  756. #ifdef DEBUG_ELF
  757. printk("irix_mapelf: verify_area fails!n");
  758. #endif
  759. return retval;
  760. }
  761. #ifdef DEBUG_ELF
  762. dump_phdrs(user_phdrp, cnt);
  763. #endif
  764. for(i = 0; i < cnt; i++, hp++)
  765. if(hp->p_type != PT_LOAD) {
  766. printk("irix_mapelf: One section is not PT_LOAD!n");
  767. return -ENOEXEC;
  768. }
  769. filp = fget(fd);
  770. if (!filp)
  771. return -EACCES;
  772. if(!filp->f_op) {
  773. printk("irix_mapelf: Bogon filp!n");
  774. fput(filp);
  775. return -EACCES;
  776. }
  777. hp = user_phdrp;
  778. for(i = 0; i < cnt; i++, hp++) {
  779. int prot;
  780. prot  = (hp->p_flags & PF_R) ? PROT_READ : 0;
  781. prot |= (hp->p_flags & PF_W) ? PROT_WRITE : 0;
  782. prot |= (hp->p_flags & PF_X) ? PROT_EXEC : 0;
  783. down_write(&current->mm->mmap_sem);
  784. retval = do_mmap(filp, (hp->p_vaddr & 0xfffff000),
  785.  (hp->p_filesz + (hp->p_vaddr & 0xfff)),
  786.  prot, (MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE),
  787.  (hp->p_offset & 0xfffff000));
  788. up_write(&current->mm->mmap_sem);
  789. if(retval != (hp->p_vaddr & 0xfffff000)) {
  790. printk("irix_mapelf: do_mmap fails with %d!n", retval);
  791. fput(filp);
  792. return retval;
  793. }
  794. }
  795. #ifdef DEBUG_ELF
  796. printk("irix_mapelf: Success, returning %08lxn", user_phdrp->p_vaddr);
  797. #endif
  798. fput(filp);
  799. return user_phdrp->p_vaddr;
  800. }
  801. /*
  802.  * ELF core dumper
  803.  *
  804.  * Modelled on fs/exec.c:aout_core_dump()
  805.  * Jeremy Fitzhardinge <jeremy@sw.oz.au>
  806.  */
  807. /* These are the only things you should do on a core-file: use only these
  808.  * functions to write out all the necessary info.
  809.  */
  810. static int dump_write(struct file *file, const void *addr, int nr)
  811. {
  812. return file->f_op->write(file, addr, nr, &file->f_pos) == nr;
  813. }
  814. static int dump_seek(struct file *file, off_t off)
  815. {
  816. if (file->f_op->llseek) {
  817. if (file->f_op->llseek(file, off, 0) != off)
  818. return 0;
  819. } else
  820. file->f_pos = off;
  821. return 1;
  822. }
  823. /* Decide whether a segment is worth dumping; default is yes to be
  824.  * sure (missing info is worse than too much; etc).
  825.  * Personally I'd include everything, and use the coredump limit...
  826.  *
  827.  * I think we should skip something. But I am not sure how. H.J.
  828.  */
  829. static inline int maydump(struct vm_area_struct *vma)
  830. {
  831. if (!(vma->vm_flags & (VM_READ|VM_WRITE|VM_EXEC)))
  832. return 0;
  833. #if 1
  834. if (vma->vm_flags & (VM_WRITE|VM_GROWSUP|VM_GROWSDOWN))
  835. return 1;
  836. if (vma->vm_flags & (VM_READ|VM_EXEC|VM_EXECUTABLE|VM_SHARED))
  837. return 0;
  838. #endif
  839. return 1;
  840. }
  841. #define roundup(x, y)  ((((x)+((y)-1))/(y))*(y))
  842. /* An ELF note in memory. */
  843. struct memelfnote
  844. {
  845. const char *name;
  846. int type;
  847. unsigned int datasz;
  848. void *data;
  849. };
  850. static int notesize(struct memelfnote *en)
  851. {
  852. int sz;
  853. sz = sizeof(struct elf_note);
  854. sz += roundup(strlen(en->name), 4);
  855. sz += roundup(en->datasz, 4);
  856. return sz;
  857. }
  858. /* #define DEBUG */
  859. #define DUMP_WRITE(addr, nr)
  860. if (!dump_write(file, (addr), (nr))) 
  861. goto end_coredump;
  862. #define DUMP_SEEK(off)
  863. if (!dump_seek(file, (off))) 
  864. goto end_coredump;
  865. static int writenote(struct memelfnote *men, struct file *file)
  866. {
  867. struct elf_note en;
  868. en.n_namesz = strlen(men->name);
  869. en.n_descsz = men->datasz;
  870. en.n_type = men->type;
  871. DUMP_WRITE(&en, sizeof(en));
  872. DUMP_WRITE(men->name, en.n_namesz);
  873. /* XXX - cast from long long to long to avoid need for libgcc.a */
  874. DUMP_SEEK(roundup((unsigned long)file->f_pos, 4)); /* XXX */
  875. DUMP_WRITE(men->data, men->datasz);
  876. DUMP_SEEK(roundup((unsigned long)file->f_pos, 4)); /* XXX */
  877. return 1;
  878. end_coredump:
  879. return 0;
  880. }
  881. #undef DUMP_WRITE
  882. #undef DUMP_SEEK
  883. #define DUMP_WRITE(addr, nr)
  884. if (!dump_write(file, (addr), (nr))) 
  885. goto end_coredump;
  886. #define DUMP_SEEK(off)
  887. if (!dump_seek(file, (off))) 
  888. goto end_coredump;
  889. /* Actual dumper.
  890.  *
  891.  * This is a two-pass process; first we find the offsets of the bits,
  892.  * and then they are actually written out.  If we run out of core limit
  893.  * we just truncate.
  894.  */
  895. static int irix_core_dump(long signr, struct pt_regs * regs, struct file *file)
  896. {
  897. int has_dumped = 0;
  898. mm_segment_t fs;
  899. int segs;
  900. int i;
  901. size_t size;
  902. struct vm_area_struct *vma;
  903. struct elfhdr elf;
  904. off_t offset = 0, dataoff;
  905. int limit = current->rlim[RLIMIT_CORE].rlim_cur;
  906. int numnote = 4;
  907. struct memelfnote notes[4];
  908. struct elf_prstatus prstatus; /* NT_PRSTATUS */
  909. elf_fpregset_t fpu; /* NT_PRFPREG */
  910. struct elf_prpsinfo psinfo; /* NT_PRPSINFO */
  911. /* Count what's needed to dump, up to the limit of coredump size. */
  912. segs = 0;
  913. size = 0;
  914. for(vma = current->mm->mmap; vma != NULL; vma = vma->vm_next) {
  915. if (maydump(vma))
  916. {
  917. int sz = vma->vm_end-vma->vm_start;
  918. if (size+sz >= limit)
  919. break;
  920. else
  921. size += sz;
  922. }
  923. segs++;
  924. }
  925. #ifdef DEBUG
  926. printk("irix_core_dump: %d segs taking %d bytesn", segs, size);
  927. #endif
  928. /* Set up header. */
  929. memcpy(elf.e_ident, ELFMAG, SELFMAG);
  930. elf.e_ident[EI_CLASS] = ELFCLASS32;
  931. elf.e_ident[EI_DATA] = ELFDATA2LSB;
  932. elf.e_ident[EI_VERSION] = EV_CURRENT;
  933. memset(elf.e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
  934. elf.e_type = ET_CORE;
  935. elf.e_machine = ELF_ARCH;
  936. elf.e_version = EV_CURRENT;
  937. elf.e_entry = 0;
  938. elf.e_phoff = sizeof(elf);
  939. elf.e_shoff = 0;
  940. elf.e_flags = 0;
  941. elf.e_ehsize = sizeof(elf);
  942. elf.e_phentsize = sizeof(struct elf_phdr);
  943. elf.e_phnum = segs+1; /* Include notes. */
  944. elf.e_shentsize = 0;
  945. elf.e_shnum = 0;
  946. elf.e_shstrndx = 0;
  947. fs = get_fs();
  948. set_fs(KERNEL_DS);
  949. has_dumped = 1;
  950. current->flags |= PF_DUMPCORE;
  951. DUMP_WRITE(&elf, sizeof(elf));
  952. offset += sizeof(elf); /* Elf header. */
  953. offset += (segs+1) * sizeof(struct elf_phdr); /* Program headers. */
  954. /* Set up the notes in similar form to SVR4 core dumps made
  955.  * with info from their /proc.
  956.  */
  957. memset(&psinfo, 0, sizeof(psinfo));
  958. memset(&prstatus, 0, sizeof(prstatus));
  959. notes[0].name = "CORE";
  960. notes[0].type = NT_PRSTATUS;
  961. notes[0].datasz = sizeof(prstatus);
  962. notes[0].data = &prstatus;
  963. prstatus.pr_info.si_signo = prstatus.pr_cursig = signr;
  964. prstatus.pr_sigpend = current->pending.signal.sig[0];
  965. prstatus.pr_sighold = current->blocked.sig[0];
  966. psinfo.pr_pid = prstatus.pr_pid = current->pid;
  967. psinfo.pr_ppid = prstatus.pr_ppid = current->p_pptr->pid;
  968. psinfo.pr_pgrp = prstatus.pr_pgrp = current->pgrp;
  969. psinfo.pr_sid = prstatus.pr_sid = current->session;
  970. prstatus.pr_utime.tv_sec = CT_TO_SECS(current->times.tms_utime);
  971. prstatus.pr_utime.tv_usec = CT_TO_USECS(current->times.tms_utime);
  972. prstatus.pr_stime.tv_sec = CT_TO_SECS(current->times.tms_stime);
  973. prstatus.pr_stime.tv_usec = CT_TO_USECS(current->times.tms_stime);
  974. prstatus.pr_cutime.tv_sec = CT_TO_SECS(current->times.tms_cutime);
  975. prstatus.pr_cutime.tv_usec = CT_TO_USECS(current->times.tms_cutime);
  976. prstatus.pr_cstime.tv_sec = CT_TO_SECS(current->times.tms_cstime);
  977. prstatus.pr_cstime.tv_usec = CT_TO_USECS(current->times.tms_cstime);
  978. if (sizeof(elf_gregset_t) != sizeof(struct pt_regs)) {
  979. printk("sizeof(elf_gregset_t) (%d) != sizeof(struct pt_regs) "
  980.        "(%d)n", sizeof(elf_gregset_t), sizeof(struct pt_regs));
  981. } else {
  982. *(struct pt_regs *)&prstatus.pr_reg = *regs;
  983. }
  984. notes[1].name = "CORE";
  985. notes[1].type = NT_PRPSINFO;
  986. notes[1].datasz = sizeof(psinfo);
  987. notes[1].data = &psinfo;
  988. i = current->state ? ffz(~current->state) + 1 : 0;
  989. psinfo.pr_state = i;
  990. psinfo.pr_sname = (i < 0 || i > 5) ? '.' : "RSDZTD"[i];
  991. psinfo.pr_zomb = psinfo.pr_sname == 'Z';
  992. psinfo.pr_nice = current->nice;
  993. psinfo.pr_flag = current->flags;
  994. psinfo.pr_uid = current->uid;
  995. psinfo.pr_gid = current->gid;
  996. {
  997. int i, len;
  998. set_fs(fs);
  999. len = current->mm->arg_end - current->mm->arg_start;
  1000. len = len >= ELF_PRARGSZ ? ELF_PRARGSZ : len;
  1001. copy_from_user(&psinfo.pr_psargs,
  1002.        (const char *)current->mm->arg_start, len);
  1003. for(i = 0; i < len; i++)
  1004. if (psinfo.pr_psargs[i] == 0)
  1005. psinfo.pr_psargs[i] = ' ';
  1006. psinfo.pr_psargs[len] = 0;
  1007. set_fs(KERNEL_DS);
  1008. }
  1009. strncpy(psinfo.pr_fname, current->comm, sizeof(psinfo.pr_fname));
  1010. notes[2].name = "CORE";
  1011. notes[2].type = NT_TASKSTRUCT;
  1012. notes[2].datasz = sizeof(*current);
  1013. notes[2].data = current;
  1014. /* Try to dump the FPU. */
  1015. prstatus.pr_fpvalid = dump_fpu (&fpu);
  1016. if (!prstatus.pr_fpvalid) {
  1017. numnote--;
  1018. } else {
  1019. notes[3].name = "CORE";
  1020. notes[3].type = NT_PRFPREG;
  1021. notes[3].datasz = sizeof(fpu);
  1022. notes[3].data = &fpu;
  1023. }
  1024. /* Write notes phdr entry. */
  1025. {
  1026. struct elf_phdr phdr;
  1027. int sz = 0;
  1028. for(i = 0; i < numnote; i++)
  1029. sz += notesize(&notes[i]);
  1030. phdr.p_type = PT_NOTE;
  1031. phdr.p_offset = offset;
  1032. phdr.p_vaddr = 0;
  1033. phdr.p_paddr = 0;
  1034. phdr.p_filesz = sz;
  1035. phdr.p_memsz = 0;
  1036. phdr.p_flags = 0;
  1037. phdr.p_align = 0;
  1038. offset += phdr.p_filesz;
  1039. DUMP_WRITE(&phdr, sizeof(phdr));
  1040. }
  1041. /* Page-align dumped data. */
  1042. dataoff = offset = roundup(offset, PAGE_SIZE);
  1043. /* Write program headers for segments dump. */
  1044. for(vma = current->mm->mmap, i = 0;
  1045. i < segs && vma != NULL; vma = vma->vm_next) {
  1046. struct elf_phdr phdr;
  1047. size_t sz;
  1048. i++;
  1049. sz = vma->vm_end - vma->vm_start;
  1050. phdr.p_type = PT_LOAD;
  1051. phdr.p_offset = offset;
  1052. phdr.p_vaddr = vma->vm_start;
  1053. phdr.p_paddr = 0;
  1054. phdr.p_filesz = maydump(vma) ? sz : 0;
  1055. phdr.p_memsz = sz;
  1056. offset += phdr.p_filesz;
  1057. phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
  1058. if (vma->vm_flags & VM_WRITE) phdr.p_flags |= PF_W;
  1059. if (vma->vm_flags & VM_EXEC) phdr.p_flags |= PF_X;
  1060. phdr.p_align = PAGE_SIZE;
  1061. DUMP_WRITE(&phdr, sizeof(phdr));
  1062. }
  1063. for(i = 0; i < numnote; i++)
  1064. if (!writenote(&notes[i], file))
  1065. goto end_coredump;
  1066. set_fs(fs);
  1067. DUMP_SEEK(dataoff);
  1068. for(i = 0, vma = current->mm->mmap;
  1069.     i < segs && vma != NULL;
  1070.     vma = vma->vm_next) {
  1071. unsigned long addr = vma->vm_start;
  1072. unsigned long len = vma->vm_end - vma->vm_start;
  1073. if (!maydump(vma))
  1074. continue;
  1075. i++;
  1076. #ifdef DEBUG
  1077. printk("elf_core_dump: writing %08lx %lxn", addr, len);
  1078. #endif
  1079. DUMP_WRITE((void *)addr, len);
  1080. }
  1081. if ((off_t) file->f_pos != offset) {
  1082. /* Sanity check. */
  1083. printk("elf_core_dump: file->f_pos (%ld) != offset (%ld)n",
  1084.        (off_t) file->f_pos, offset);
  1085. }
  1086. end_coredump:
  1087. set_fs(fs);
  1088. return has_dumped;
  1089. }
  1090. static int __init init_irix_binfmt(void)
  1091. {
  1092. return register_binfmt(&irix_format);
  1093. }
  1094. static void __exit exit_irix_binfmt(void)
  1095. {
  1096. /* Remove the IRIX ELF loaders. */
  1097. unregister_binfmt(&irix_format);
  1098. }
  1099. module_init(init_irix_binfmt)
  1100. module_exit(exit_irix_binfmt)