Remove VOP_GETVOBJECT, VOP_DESTROYVOBJECT, and VOP_CREATEVOBJECT. Rearrange
[dragonfly.git] / sys / kern / imgact_elf.c
1 /*-
2  * Copyright (c) 1995-1996 Søren Schmidt
3  * Copyright (c) 1996 Peter Wemm
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer
11  *    in this position and unchanged.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software withough specific prior written permission
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * $FreeBSD: src/sys/kern/imgact_elf.c,v 1.73.2.13 2002/12/28 19:49:41 dillon Exp $
30  * $DragonFly: src/sys/kern/imgact_elf.c,v 1.35 2006/03/29 18:44:50 dillon Exp $
31  */
32
33 #include <sys/param.h>
34 #include <sys/exec.h>
35 #include <sys/fcntl.h>
36 #include <sys/file.h>
37 #include <sys/imgact.h>
38 #include <sys/imgact_elf.h>
39 #include <sys/kernel.h>
40 #include <sys/malloc.h>
41 #include <sys/mman.h>
42 #include <sys/systm.h>
43 #include <sys/proc.h>
44 #include <sys/nlookup.h>
45 #include <sys/pioctl.h>
46 #include <sys/procfs.h>
47 #include <sys/resourcevar.h>
48 #include <sys/signalvar.h>
49 #include <sys/stat.h>
50 #include <sys/syscall.h>
51 #include <sys/sysctl.h>
52 #include <sys/sysent.h>
53 #include <sys/vnode.h>
54
55 #include <vm/vm.h>
56 #include <vm/vm_kern.h>
57 #include <vm/vm_param.h>
58 #include <vm/pmap.h>
59 #include <sys/lock.h>
60 #include <vm/vm_map.h>
61 #include <vm/vm_object.h>
62 #include <vm/vm_extern.h>
63
64 #include <machine/elf.h>
65 #include <machine/md_var.h>
66 #include <sys/mount.h>
67 #include <sys/ckpt.h>
68 #define OLD_EI_BRAND    8
69
70 __ElfType(Brandinfo);
71 __ElfType(Auxargs);
72
73 static int elf_check_header (const Elf_Ehdr *hdr);
74 static int elf_freebsd_fixup (register_t **stack_base,
75     struct image_params *imgp);
76 static int elf_load_file (struct proc *p, const char *file, u_long *addr,
77     u_long *entry);
78 static int elf_load_section (struct proc *p,
79     struct vmspace *vmspace, struct vnode *vp,
80     vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz,
81     vm_prot_t prot);
82 static int exec_elf_imgact (struct image_params *imgp);
83
84 static int elf_trace = 0;
85 SYSCTL_INT(_debug, OID_AUTO, elf_trace, CTLFLAG_RW, &elf_trace, 0, "");
86 static int elf_legacy_coredump = 0;
87 SYSCTL_INT(_debug, OID_AUTO, elf_legacy_coredump, CTLFLAG_RW,
88     &elf_legacy_coredump, 0, "");
89
90 static int dragonfly_match_abi_note(const Elf_Note *);
91 static int freebsd_match_abi_note(const Elf_Note *);
92
93 static struct sysentvec elf_freebsd_sysvec = {
94         SYS_MAXSYSCALL,
95         sysent,
96         -1,
97         0,
98         0,
99         0,
100         0,
101         0,
102         elf_freebsd_fixup,
103         sendsig,
104         sigcode,
105         &szsigcode,
106         0,
107         "FreeBSD ELF",
108         elf_coredump,
109         NULL,
110         MINSIGSTKSZ
111 };
112
113 static Elf_Brandinfo freebsd_brand_info = {
114                                                 ELFOSABI_FREEBSD,
115                                                 "FreeBSD",
116                                                 freebsd_match_abi_note,
117                                                 "",
118                                                 "/usr/libexec/ld-elf.so.1",
119                                                 &elf_freebsd_sysvec
120                                           };
121
122 static Elf_Brandinfo dragonfly_brand_info = {
123                                                 ELFOSABI_NONE,
124                                                 "DragonFly",
125                                                 dragonfly_match_abi_note,
126                                                 "",
127                                                 "/usr/libexec/ld-elf.so.2",
128                                                 &elf_freebsd_sysvec
129                                           };
130
131 static Elf_Brandinfo *elf_brand_list[MAX_BRANDS] = {
132                                                         &dragonfly_brand_info,
133                                                         &freebsd_brand_info,
134                                                         NULL, NULL, NULL,
135                                                         NULL, NULL, NULL
136                                                     };
137
138 static int
139 freebsd_match_abi_note(const Elf_Note *abi_note)
140 {
141         const char *abi_name = (const char *)
142             ((const uint8_t *)abi_note + sizeof(*abi_note));
143
144         if (abi_note->n_namesz != sizeof("FreeBSD"))
145                 return(FALSE);
146         if (memcmp(abi_name, "FreeBSD", sizeof("FreeBSD")))
147                 return(FALSE);
148         return(TRUE);
149 }
150
151 static int
152 dragonfly_match_abi_note(const Elf_Note *abi_note)
153 {
154         const char *abi_name = (const char *)
155             ((const uint8_t *)abi_note + sizeof(*abi_note));
156
157         if (abi_note->n_namesz != sizeof("DragonFly"))
158                 return(FALSE);
159         if (memcmp(abi_name, "DragonFly", sizeof("DragonFly")))
160                 return(FALSE);
161         return(TRUE);
162 }
163
164 int
165 elf_insert_brand_entry(Elf_Brandinfo *entry)
166 {
167         int i;
168
169         for (i=1; i<MAX_BRANDS; i++) {
170                 if (elf_brand_list[i] == NULL) {
171                         elf_brand_list[i] = entry;
172                         break;
173                 }
174         }
175         if (i == MAX_BRANDS)
176                 return -1;
177         return 0;
178 }
179
180 int
181 elf_remove_brand_entry(Elf_Brandinfo *entry)
182 {
183         int i;
184
185         for (i=1; i<MAX_BRANDS; i++) {
186                 if (elf_brand_list[i] == entry) {
187                         elf_brand_list[i] = NULL;
188                         break;
189                 }
190         }
191         if (i == MAX_BRANDS)
192                 return -1;
193         return 0;
194 }
195
196 int
197 elf_brand_inuse(Elf_Brandinfo *entry)
198 {
199         struct proc *p;
200         int rval = FALSE;
201
202         FOREACH_PROC_IN_SYSTEM(p) {
203                 if (p->p_sysent == entry->sysvec) {
204                         rval = TRUE;
205                         break;
206                 }
207         }
208
209         return (rval);
210 }
211
212 static int
213 elf_check_header(const Elf_Ehdr *hdr)
214 {
215         if (!IS_ELF(*hdr) ||
216             hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
217             hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
218             hdr->e_ident[EI_VERSION] != EV_CURRENT ||
219             hdr->e_phentsize != sizeof(Elf_Phdr) ||
220             hdr->e_ehsize != sizeof(Elf_Ehdr) ||
221             hdr->e_version != ELF_TARG_VER)
222                 return ENOEXEC;
223
224         if (!ELF_MACHINE_OK(hdr->e_machine))
225                 return ENOEXEC;
226
227         return 0;
228 }
229
230 static int
231 elf_load_section(struct proc *p, struct vmspace *vmspace, struct vnode *vp, 
232                  vm_offset_t offset, caddr_t vmaddr, size_t memsz,
233                  size_t filsz, vm_prot_t prot)
234 {
235         size_t map_len;
236         vm_offset_t map_addr;
237         int error, rv, cow;
238         int count;
239         size_t copy_len;
240         vm_object_t object;
241         vm_offset_t file_addr;
242         vm_offset_t data_buf = 0;
243
244         object = vp->v_object;
245         error = 0;
246
247         /*
248          * It's necessary to fail if the filsz + offset taken from the
249          * header is greater than the actual file pager object's size.
250          * If we were to allow this, then the vm_map_find() below would
251          * walk right off the end of the file object and into the ether.
252          *
253          * While I'm here, might as well check for something else that
254          * is invalid: filsz cannot be greater than memsz.
255          */
256         if ((off_t)filsz + offset > vp->v_filesize || filsz > memsz) {
257                 uprintf("elf_load_section: truncated ELF file\n");
258                 return (ENOEXEC);
259         }
260
261         map_addr = trunc_page((vm_offset_t)vmaddr);
262         file_addr = trunc_page(offset);
263
264         /*
265          * We have two choices.  We can either clear the data in the last page
266          * of an oversized mapping, or we can start the anon mapping a page
267          * early and copy the initialized data into that first page.  We
268          * choose the second..
269          */
270         if (memsz > filsz)
271                 map_len = trunc_page(offset+filsz) - file_addr;
272         else
273                 map_len = round_page(offset+filsz) - file_addr;
274
275         if (map_len != 0) {
276                 vm_object_reference(object);
277
278                 /* cow flags: don't dump readonly sections in core */
279                 cow = MAP_COPY_ON_WRITE | MAP_PREFAULT |
280                     (prot & VM_PROT_WRITE ? 0 : MAP_DISABLE_COREDUMP);
281
282                 count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
283                 vm_map_lock(&vmspace->vm_map);
284                 rv = vm_map_insert(&vmspace->vm_map, &count,
285                                       object,
286                                       file_addr,        /* file offset */
287                                       map_addr,         /* virtual start */
288                                       map_addr + map_len,/* virtual end */
289                                       prot,
290                                       VM_PROT_ALL,
291                                       cow);
292                 vm_map_unlock(&vmspace->vm_map);
293                 vm_map_entry_release(count);
294                 if (rv != KERN_SUCCESS) {
295                         vm_object_deallocate(object);
296                         return EINVAL;
297                 }
298
299                 /* we can stop now if we've covered it all */
300                 if (memsz == filsz) {
301                         return 0;
302                 }
303         }
304
305
306         /*
307          * We have to get the remaining bit of the file into the first part
308          * of the oversized map segment.  This is normally because the .data
309          * segment in the file is extended to provide bss.  It's a neat idea
310          * to try and save a page, but it's a pain in the behind to implement.
311          */
312         copy_len = (offset + filsz) - trunc_page(offset + filsz);
313         map_addr = trunc_page((vm_offset_t)vmaddr + filsz);
314         map_len = round_page((vm_offset_t)vmaddr + memsz) - map_addr;
315
316         /* This had damn well better be true! */
317         if (map_len != 0) {
318                 count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
319                 vm_map_lock(&vmspace->vm_map);
320                 rv = vm_map_insert(&vmspace->vm_map, &count,
321                                         NULL, 0,
322                                         map_addr, map_addr + map_len,
323                                         VM_PROT_ALL, VM_PROT_ALL, 0);
324                 vm_map_unlock(&vmspace->vm_map);
325                 vm_map_entry_release(count);
326                 if (rv != KERN_SUCCESS) {
327                         return EINVAL; 
328                 }
329         }
330
331         if (copy_len != 0) {
332                 vm_object_reference(object);
333                 rv = vm_map_find(exec_map,
334                                  object, 
335                                  trunc_page(offset + filsz),
336                                  &data_buf,
337                                  PAGE_SIZE,
338                                  TRUE,
339                                  VM_PROT_READ,
340                                  VM_PROT_ALL,
341                                  MAP_COPY_ON_WRITE | MAP_PREFAULT_PARTIAL);
342                 if (rv != KERN_SUCCESS) {
343                         vm_object_deallocate(object);
344                         return EINVAL;
345                 }
346
347                 /* send the page fragment to user space */
348                 error = copyout((caddr_t)data_buf, (caddr_t)map_addr, copy_len);
349                 vm_map_remove(exec_map, data_buf, data_buf + PAGE_SIZE);
350                 if (error) {
351                         return (error);
352                 }
353         }
354
355         /*
356          * set it to the specified protection
357          */
358         vm_map_protect(&vmspace->vm_map, map_addr, map_addr + map_len,  prot,
359                        FALSE);
360
361         return error;
362 }
363
364 /*
365  * Load the file "file" into memory.  It may be either a shared object
366  * or an executable.
367  *
368  * The "addr" reference parameter is in/out.  On entry, it specifies
369  * the address where a shared object should be loaded.  If the file is
370  * an executable, this value is ignored.  On exit, "addr" specifies
371  * where the file was actually loaded.
372  *
373  * The "entry" reference parameter is out only.  On exit, it specifies
374  * the entry point for the loaded file.
375  */
376 static int
377 elf_load_file(struct proc *p, const char *file, u_long *addr, u_long *entry)
378 {
379         struct {
380                 struct nlookupdata nd;
381                 struct vattr attr;
382                 struct image_params image_params;
383         } *tempdata;
384         const Elf_Ehdr *hdr = NULL;
385         const Elf_Phdr *phdr = NULL;
386         struct nlookupdata *nd;
387         struct vmspace *vmspace = p->p_vmspace;
388         struct vattr *attr;
389         struct image_params *imgp;
390         vm_prot_t prot;
391         u_long rbase;
392         u_long base_addr = 0;
393         int error, i, numsegs;
394         struct thread *td = p->p_thread;
395
396         tempdata = malloc(sizeof(*tempdata), M_TEMP, M_WAITOK);
397         nd = &tempdata->nd;
398         attr = &tempdata->attr;
399         imgp = &tempdata->image_params;
400
401         /*
402          * Initialize part of the common data
403          */
404         imgp->proc = p;
405         imgp->attr = attr;
406         imgp->firstpage = NULL;
407         imgp->image_header = NULL;
408         imgp->vp = NULL;
409
410         error = nlookup_init(nd, file, UIO_SYSSPACE, NLC_FOLLOW);
411         if (error == 0)
412                 error = nlookup(nd);
413         if (error == 0)
414                 error = cache_vget(nd->nl_ncp, nd->nl_cred, LK_EXCLUSIVE, &imgp->vp);
415         nlookup_done(nd);
416         if (error)
417                 goto fail;
418
419         /*
420          * Check permissions, modes, uid, etc on the file, and "open" it.
421          */
422         error = exec_check_permissions(imgp);
423         if (error) {
424                 VOP_UNLOCK(imgp->vp, 0, td);
425                 goto fail;
426         }
427
428         error = exec_map_first_page(imgp);
429         /*
430          * Also make certain that the interpreter stays the same, so set
431          * its VTEXT flag, too.
432          */
433         if (error == 0)
434                 imgp->vp->v_flag |= VTEXT;
435         VOP_UNLOCK(imgp->vp, 0, td);
436         if (error)
437                 goto fail;
438
439         hdr = (const Elf_Ehdr *)imgp->image_header;
440         if ((error = elf_check_header(hdr)) != 0)
441                 goto fail;
442         if (hdr->e_type == ET_DYN)
443                 rbase = *addr;
444         else if (hdr->e_type == ET_EXEC)
445                 rbase = 0;
446         else {
447                 error = ENOEXEC;
448                 goto fail;
449         }
450
451         /* Only support headers that fit within first page for now
452          * (multiplication of two Elf_Half fields will not overflow) */
453         if ((hdr->e_phoff > PAGE_SIZE) ||
454             (hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE - hdr->e_phoff) {
455                 error = ENOEXEC;
456                 goto fail;
457         }
458
459         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
460
461         for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) {
462                 if (phdr[i].p_type == PT_LOAD) {        /* Loadable segment */
463                         prot = 0;
464                         if (phdr[i].p_flags & PF_X)
465                                 prot |= VM_PROT_EXECUTE;
466                         if (phdr[i].p_flags & PF_W)
467                                 prot |= VM_PROT_WRITE;
468                         if (phdr[i].p_flags & PF_R)
469                                 prot |= VM_PROT_READ;
470
471                         error = elf_load_section(
472                                     p, vmspace, imgp->vp,
473                                     phdr[i].p_offset,
474                                     (caddr_t)phdr[i].p_vaddr +
475                                     rbase,
476                                     phdr[i].p_memsz,
477                                     phdr[i].p_filesz, prot);
478                         if (error != 0)
479                                 goto fail;
480                         /*
481                          * Establish the base address if this is the
482                          * first segment.
483                          */
484                         if (numsegs == 0)
485                                 base_addr = trunc_page(phdr[i].p_vaddr + rbase);
486                         numsegs++;
487                 }
488         }
489         *addr = base_addr;
490         *entry=(unsigned long)hdr->e_entry + rbase;
491
492 fail:
493         if (imgp->firstpage)
494                 exec_unmap_first_page(imgp);
495         if (imgp->vp) {
496                 vrele(imgp->vp);
497                 imgp->vp = NULL;
498         }
499         free(tempdata, M_TEMP);
500
501         return error;
502 }
503
504 /*
505  * non static, as it can be overridden by start_init()
506  */
507 int fallback_elf_brand = -1;
508 SYSCTL_INT(_kern, OID_AUTO, fallback_elf_brand, CTLFLAG_RW,
509                 &fallback_elf_brand, -1,
510                 "ELF brand of last resort");
511
512 static int
513 exec_elf_imgact(struct image_params *imgp)
514 {
515         const Elf_Ehdr *hdr = (const Elf_Ehdr *) imgp->image_header;
516         const Elf_Phdr *phdr;
517         Elf_Auxargs *elf_auxargs = NULL;
518         struct vmspace *vmspace;
519         vm_prot_t prot;
520         u_long text_size = 0, data_size = 0, total_size = 0;
521         u_long text_addr = 0, data_addr = 0;
522         u_long seg_size, seg_addr;
523         u_long addr, entry = 0, proghdr = 0;
524         int error, i;
525         const char *interp = NULL;
526         const Elf_Note *abi_note = NULL;
527         Elf_Brandinfo *brand_info;
528         char *path;
529
530         error = 0;
531
532         /*
533          * Do we have a valid ELF header ?
534          */
535         if (elf_check_header(hdr) != 0 || hdr->e_type != ET_EXEC)
536                 return -1;
537
538         /*
539          * From here on down, we return an errno, not -1, as we've
540          * detected an ELF file.
541          */
542
543         if ((hdr->e_phoff > PAGE_SIZE) ||
544             (hdr->e_phoff + hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE) {
545                 /* Only support headers in first page for now */
546                 return ENOEXEC;
547         }
548         phdr = (const Elf_Phdr*)(imgp->image_header + hdr->e_phoff);
549         
550         /*
551          * From this point on, we may have resources that need to be freed.
552          */
553
554         exec_new_vmspace(imgp, NULL);
555
556         /*
557          * Yeah, I'm paranoid.  There is every reason in the world to get
558          * VTEXT now since from here on out, there are places we can have
559          * a context switch.  Better safe than sorry; I really don't want
560          * the file to change while it's being loaded.
561          */
562         vsetflags(imgp->vp, VTEXT);
563
564         vmspace = imgp->proc->p_vmspace;
565
566         for (i = 0; i < hdr->e_phnum; i++) {
567                 switch(phdr[i].p_type) {
568
569                 case PT_LOAD:   /* Loadable segment */
570                         prot = 0;
571                         if (phdr[i].p_flags & PF_X)
572                                 prot |= VM_PROT_EXECUTE;
573                         if (phdr[i].p_flags & PF_W)
574                                 prot |= VM_PROT_WRITE;
575                         if (phdr[i].p_flags & PF_R)
576                                 prot |= VM_PROT_READ;
577
578                         if ((error = elf_load_section(imgp->proc,
579                                                      vmspace, imgp->vp,
580                                                      phdr[i].p_offset,
581                                                      (caddr_t)phdr[i].p_vaddr,
582                                                      phdr[i].p_memsz,
583                                                      phdr[i].p_filesz, prot)) != 0)
584                                 goto fail;
585
586                         /*
587                          * If this segment contains the program headers,
588                          * remember their virtual address for the AT_PHDR
589                          * aux entry. Static binaries don't usually include
590                          * a PT_PHDR entry.
591                          */
592                         if (phdr[i].p_offset == 0 &&
593                             hdr->e_phoff + hdr->e_phnum * hdr->e_phentsize
594                                 <= phdr[i].p_filesz)
595                                 proghdr = phdr[i].p_vaddr + hdr->e_phoff;
596
597                         seg_addr = trunc_page(phdr[i].p_vaddr);
598                         seg_size = round_page(phdr[i].p_memsz +
599                                 phdr[i].p_vaddr - seg_addr);
600
601                         /*
602                          * Is this .text or .data?  We can't use
603                          * VM_PROT_WRITE or VM_PROT_EXEC, it breaks the
604                          * alpha terribly and possibly does other bad
605                          * things so we stick to the old way of figuring
606                          * it out:  If the segment contains the program
607                          * entry point, it's a text segment, otherwise it
608                          * is a data segment.
609                          *
610                          * Note that obreak() assumes that data_addr + 
611                          * data_size == end of data load area, and the ELF
612                          * file format expects segments to be sorted by
613                          * address.  If multiple data segments exist, the
614                          * last one will be used.
615                          */
616                         if (hdr->e_entry >= phdr[i].p_vaddr &&
617                             hdr->e_entry < (phdr[i].p_vaddr +
618                             phdr[i].p_memsz)) {
619                                 text_size = seg_size;
620                                 text_addr = seg_addr;
621                                 entry = (u_long)hdr->e_entry;
622                         } else {
623                                 data_size = seg_size;
624                                 data_addr = seg_addr;
625                         }
626                         total_size += seg_size;
627
628                         /*
629                          * Check limits.  It should be safe to check the
630                          * limits after loading the segment since we do
631                          * not actually fault in all the segment's pages.
632                          */
633                         if (data_size >
634                             imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur ||
635                             text_size > maxtsiz ||
636                             total_size >
637                             imgp->proc->p_rlimit[RLIMIT_VMEM].rlim_cur) {
638                                 error = ENOMEM;
639                                 goto fail;
640                         }
641                         break;
642                 case PT_INTERP: /* Path to interpreter */
643                         if (phdr[i].p_filesz > MAXPATHLEN ||
644                             phdr[i].p_offset + phdr[i].p_filesz > PAGE_SIZE) {
645                                 error = ENOEXEC;
646                                 goto fail;
647                         }
648                         interp = imgp->image_header + phdr[i].p_offset;
649                         break;
650                 case PT_NOTE:   /* Check for .note.ABI-tag */
651                 {
652                         const Elf_Note *tmp_note;
653                         /* XXX handle anything outside the first page */
654                         if (phdr[i].p_offset + phdr[i].p_filesz > PAGE_SIZE)
655                                 continue;
656                         if (phdr[i].p_filesz < sizeof(Elf_Note))
657                                 continue; /* ENOEXEC? */
658                         tmp_note = (const Elf_Note *)(imgp->image_header + phdr[i].p_offset);
659                         if (tmp_note->n_type != 1)
660                                 continue;
661                         if (tmp_note->n_namesz + sizeof(Elf_Note) +
662                             tmp_note->n_descsz > phdr[i].p_filesz)
663                                 continue; /* ENOEXEC? */
664                         abi_note = tmp_note;
665                 }       
666                         break;
667                 case PT_PHDR:   /* Program header table info */
668                         proghdr = phdr[i].p_vaddr;
669                         break;
670                 default:
671                         break;
672                 }
673         }
674
675         vmspace->vm_tsize = text_size >> PAGE_SHIFT;
676         vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr;
677         vmspace->vm_dsize = data_size >> PAGE_SHIFT;
678         vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr;
679
680         addr = ELF_RTLD_ADDR(vmspace);
681
682         imgp->entry_addr = entry;
683
684         brand_info = NULL;
685
686         /* We support three types of branding -- (1) the ELF EI_OSABI field
687          * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string
688          * branding w/in the ELF header, and (3) path of the `interp_path'
689          * field.  We should also look for an ".note.ABI-tag" ELF section now
690          * in all Linux ELF binaries, FreeBSD 4.1+, and some NetBSD ones.
691          */
692
693         /* If the executable has a brand, search for it in the brand list. */
694         if (brand_info == NULL && hdr->e_ident[EI_OSABI] != ELFOSABI_NONE) {
695                 for (i = 0;  i < MAX_BRANDS;  i++) {
696                         Elf_Brandinfo *bi = elf_brand_list[i];
697
698                         if (bi != NULL && 
699                             (hdr->e_ident[EI_OSABI] == bi->brand
700                             || 0 == 
701                             strncmp((const char *)&hdr->e_ident[OLD_EI_BRAND], 
702                             bi->compat_3_brand, strlen(bi->compat_3_brand)))) {
703                                 brand_info = bi;
704                                 break;
705                         }
706                 }
707         }
708
709         /* Search for a recognized ABI. */
710         if (brand_info == NULL && abi_note != NULL) {
711                 for (i = 0; i < MAX_BRANDS; i++) {
712                         Elf_Brandinfo *bi = elf_brand_list[i];
713
714                         if (bi != NULL && bi->match_abi_note != NULL &&
715                             (*bi->match_abi_note)(abi_note)) {
716                                 brand_info = bi;
717                                 break;
718                         }
719                 }
720         }
721
722         /*
723          * ELFOSABI_NONE == ELFOSABI_SYSV, so a SYSV binary misses all
724          * checks so far, since it is neither branded nor does it have
725          * an ABI note.  If the EI_OSABI field is ELFOSABI_NONE, assume
726          * it is svr4 and look for an entry in the elf_brand_list with
727          * match_abi_note == NULL.
728          */
729         if (brand_info == NULL && hdr->e_ident[EI_OSABI] == ELFOSABI_NONE) {
730                 for (i = 0; i < MAX_BRANDS; i++) {
731                         Elf_Brandinfo *bi = elf_brand_list[i];
732
733                         if (bi != NULL && bi->match_abi_note == NULL &&
734                             ELFOSABI_SYSV == bi->brand) {
735                                 brand_info = bi;
736                                 break;
737                         }
738                 }
739         }
740
741         /* Lacking a recognized ABI, search for a recognized interpreter. */
742         if (brand_info == NULL && interp != NULL) {
743                 for (i = 0;  i < MAX_BRANDS;  i++) {
744                         Elf_Brandinfo *bi = elf_brand_list[i];
745
746                         if (bi != NULL &&
747                             strcmp(interp, bi->interp_path) == 0) {
748                                 brand_info = bi;
749                                 break;
750                         }
751                 }
752         }
753
754         /* Lacking a recognized interpreter, try the default brand */
755         if (brand_info == NULL) {
756                 for (i = 0; i < MAX_BRANDS; i++) {
757                         Elf_Brandinfo *bi = elf_brand_list[i];
758
759                         if (bi != NULL && fallback_elf_brand == bi->brand) {
760                                 brand_info = bi;
761                                 break;
762                         }
763                 }
764         }
765
766         if (brand_info == NULL) {
767                 uprintf("ELF binary type \"%u\" not known.\n",
768                     hdr->e_ident[EI_OSABI]);
769                 error = ENOEXEC;
770                 goto fail;
771         }
772
773         imgp->proc->p_sysent = brand_info->sysvec;
774         if (interp != NULL) {
775                 path = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
776                 snprintf(path, MAXPATHLEN, "%s%s",
777                          brand_info->emul_path, interp);
778                 if ((error = elf_load_file(imgp->proc, path, &addr,
779                                            &imgp->entry_addr)) != 0) {
780                         if ((error = elf_load_file(imgp->proc, interp, &addr,
781                                                    &imgp->entry_addr)) != 0) {
782                                 uprintf("ELF interpreter %s not found\n", path);
783                                 free(path, M_TEMP);
784                                 goto fail;
785                         }
786                 }
787                 free(path, M_TEMP);
788         }
789
790         /*
791          * Construct auxargs table (used by the fixup routine)
792          */
793         elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
794         elf_auxargs->execfd = -1;
795         elf_auxargs->phdr = proghdr;
796         elf_auxargs->phent = hdr->e_phentsize;
797         elf_auxargs->phnum = hdr->e_phnum;
798         elf_auxargs->pagesz = PAGE_SIZE;
799         elf_auxargs->base = addr;
800         elf_auxargs->flags = 0;
801         elf_auxargs->entry = entry;
802         elf_auxargs->trace = elf_trace;
803
804         imgp->auxargs = elf_auxargs;
805         imgp->interpreted = 0;
806
807 fail:
808         return error;
809 }
810
811 static int
812 elf_freebsd_fixup(register_t **stack_base, struct image_params *imgp)
813 {
814         Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
815         register_t *pos;
816
817         pos = *stack_base + (imgp->args->argc + imgp->args->envc + 2);
818
819         if (args->trace) {
820                 AUXARGS_ENTRY(pos, AT_DEBUG, 1);
821         }
822         if (args->execfd != -1) {
823                 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
824         }
825         AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
826         AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
827         AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
828         AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
829         AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
830         AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
831         AUXARGS_ENTRY(pos, AT_BASE, args->base);
832         AUXARGS_ENTRY(pos, AT_NULL, 0);
833
834         free(imgp->auxargs, M_TEMP);
835         imgp->auxargs = NULL;
836
837         (*stack_base)--;
838         suword(*stack_base, (long) imgp->args->argc);
839         return 0;
840
841
842 /*
843  * Code for generating ELF core dumps.
844  */
845
846 typedef int (*segment_callback) (vm_map_entry_t, void *);
847
848 /* Closure for cb_put_phdr(). */
849 struct phdr_closure {
850         Elf_Phdr *phdr;         /* Program header to fill in (incremented) */
851         Elf_Phdr *phdr_max;     /* Pointer bound for error check */
852         Elf_Off offset;         /* Offset of segment in core file */
853 };
854
855 /* Closure for cb_size_segment(). */
856 struct sseg_closure {
857         int count;              /* Count of writable segments. */
858         size_t vsize;           /* Total size of all writable segments. */
859 };
860
861 /* Closure for cb_put_fp(). */
862 struct fp_closure {
863         struct vn_hdr *vnh;
864         struct vn_hdr *vnh_max;
865         int count;
866         struct stat *sb;
867 };
868
869 typedef struct elf_buf {
870         char    *buf;
871         size_t  off;
872         size_t  off_max;
873 } *elf_buf_t;
874
875 static void *target_reserve(elf_buf_t target, size_t bytes, int *error);
876
877 static int cb_put_phdr (vm_map_entry_t, void *);
878 static int cb_size_segment (vm_map_entry_t, void *);
879 static int cb_fpcount_segment(vm_map_entry_t, void *);
880 static int cb_put_fp(vm_map_entry_t, void *);
881
882
883 static int each_segment (struct proc *, segment_callback, void *, int);
884 static int elf_corehdr (struct proc *, struct file *, struct ucred *,
885                         int, elf_buf_t);
886 static int elf_puthdr (struct proc *, elf_buf_t, const prstatus_t *,
887                         const prfpregset_t *, const prpsinfo_t *, int);
888 static int elf_putnote (elf_buf_t, const char *, int, const void *, size_t);
889
890 static int elf_putsigs(struct proc *, elf_buf_t);
891 static int elf_puttextvp(struct proc *, elf_buf_t);
892 static int elf_putfiles(struct proc *, elf_buf_t);
893
894 extern int osreldate;
895
896 int
897 elf_coredump(struct proc *p, struct vnode *vp, off_t limit)
898 {
899         struct file *fp; 
900         int error;
901
902         if ((error = falloc(NULL, &fp, NULL)) != 0)
903                 return (error);
904         fsetcred(fp, p->p_ucred);
905
906         /*
907          * XXX fixme.
908          */
909         fp->f_type = DTYPE_VNODE;
910         fp->f_flag = O_CREAT|O_WRONLY|O_NOFOLLOW;
911         fp->f_ops = &vnode_fileops;
912         fp->f_data = vp;
913         VOP_UNLOCK(vp, 0, p->p_thread);
914         
915         error = generic_elf_coredump(p, fp, limit);
916
917         fp->f_type = 0;
918         fp->f_flag = 0;
919         fp->f_ops = &badfileops;
920         fp->f_data = NULL;
921         fdrop(fp, p->p_thread);
922         return (error);
923 }
924
925 int
926 generic_elf_coredump(struct proc *p, struct file *fp, off_t limit)
927 {
928         struct ucred *cred = p->p_ucred;
929         int error = 0;
930         struct sseg_closure seginfo;
931         struct elf_buf target;
932
933         if (!fp)
934                 printf("can't dump core - null fp\n");
935
936         /*
937          * Size the program segments
938          */
939         seginfo.count = 0;
940         seginfo.vsize = 0;
941         each_segment(p, cb_size_segment, &seginfo, 1);
942
943         /*
944          * Calculate the size of the core file header area by making
945          * a dry run of generating it.  Nothing is written, but the
946          * size is calculated.
947          */
948         bzero(&target, sizeof(target));
949         elf_puthdr(p, &target, NULL, NULL, NULL, seginfo.count);
950
951         if (target.off + seginfo.vsize >= limit)
952                 return (EFAULT);
953
954         /*
955          * Allocate memory for building the header, fill it up,
956          * and write it out.
957          */
958         target.off_max = target.off;
959         target.off = 0;
960         target.buf = malloc(target.off_max, M_TEMP, M_WAITOK|M_ZERO);
961
962         if (target.buf == NULL)
963                 return EINVAL;
964         error = elf_corehdr(p, fp, cred, seginfo.count, &target);
965
966         /* Write the contents of all of the writable segments. */
967         if (error == 0) {
968                 Elf_Phdr *php;
969                 int i;
970                 int nbytes;
971
972                 php = (Elf_Phdr *)(target.buf + sizeof(Elf_Ehdr)) + 1;
973                 for (i = 0; i < seginfo.count; i++) {
974                         error = fp_write(fp, (caddr_t)php->p_vaddr,
975                                         php->p_filesz, &nbytes);
976                         if (error != 0)
977                                 break;
978                         php++;
979                 }
980         }
981         free(target.buf, M_TEMP);
982         
983         return error;
984 }
985
986 /*
987  * A callback for each_segment() to write out the segment's
988  * program header entry.
989  */
990 static int
991 cb_put_phdr(vm_map_entry_t entry, void *closure)
992 {
993         struct phdr_closure *phc = closure;
994         Elf_Phdr *phdr = phc->phdr;
995
996         if (phc->phdr == phc->phdr_max)
997                 return EINVAL;
998
999         phc->offset = round_page(phc->offset);
1000
1001         phdr->p_type = PT_LOAD;
1002         phdr->p_offset = phc->offset;
1003         phdr->p_vaddr = entry->start;
1004         phdr->p_paddr = 0;
1005         phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1006         phdr->p_align = PAGE_SIZE;
1007         phdr->p_flags = 0;
1008         if (entry->protection & VM_PROT_READ)
1009                 phdr->p_flags |= PF_R;
1010         if (entry->protection & VM_PROT_WRITE)
1011                 phdr->p_flags |= PF_W;
1012         if (entry->protection & VM_PROT_EXECUTE)
1013                 phdr->p_flags |= PF_X;
1014
1015         phc->offset += phdr->p_filesz;
1016         ++phc->phdr;
1017         return 0;
1018 }
1019
1020 /*
1021  * A callback for each_writable_segment() to gather information about
1022  * the number of segments and their total size.
1023  */
1024 static int
1025 cb_size_segment(vm_map_entry_t entry, void *closure)
1026 {
1027         struct sseg_closure *ssc = closure;
1028
1029         ++ssc->count;
1030         ssc->vsize += entry->end - entry->start;
1031         return 0;
1032 }
1033
1034 /*
1035  * A callback for each_segment() to gather information about
1036  * the number of text segments.
1037  */
1038 static int
1039 cb_fpcount_segment(vm_map_entry_t entry, void *closure)
1040 {
1041         int *count = closure;
1042         struct vnode *vp;
1043
1044         if (entry->object.vm_object->type == OBJT_VNODE) {
1045                 vp = (struct vnode *)entry->object.vm_object->handle;
1046                 if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp)
1047                         return 0;
1048                 ++*count;
1049         }
1050         return 0;
1051 }
1052
1053 static int
1054 cb_put_fp(vm_map_entry_t entry, void *closure) 
1055 {
1056         struct fp_closure *fpc = closure;
1057         struct vn_hdr *vnh = fpc->vnh;
1058         Elf_Phdr *phdr = &vnh->vnh_phdr;
1059         struct vnode *vp;
1060         int error;
1061
1062         /*
1063          * If an entry represents a vnode then write out a file handle.
1064          *
1065          * If we are checkpointing a checkpoint-restored program we do
1066          * NOT record the filehandle for the old checkpoint vnode (which
1067          * is mapped all over the place).  Instead we rely on the fact
1068          * that a checkpoint-restored program does not mmap() the checkpt
1069          * vnode NOCORE, so its contents will be written out to the
1070          * new checkpoint file.  This is necessary because the 'old'
1071          * checkpoint file is typically destroyed when a new one is created
1072          * and thus cannot be used to restore the new checkpoint.
1073          *
1074          * Theoretically we could create a chain of checkpoint files and
1075          * operate the checkpointing operation kinda like an incremental
1076          * checkpoint, but a checkpoint restore would then likely wind up
1077          * referencing many prior checkpoint files and that is a bit over
1078          * the top for the purpose of the checkpoint API.
1079          */
1080         if (entry->object.vm_object->type == OBJT_VNODE) {
1081                 vp = (struct vnode *)entry->object.vm_object->handle;
1082                 if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp)
1083                         return 0;
1084                 if (vnh == fpc->vnh_max)
1085                         return EINVAL;
1086
1087                 if (vp->v_mount)
1088                         vnh->vnh_fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
1089                 error = VFS_VPTOFH(vp, &vnh->vnh_fh.fh_fid);
1090                 if (error) {
1091                         char *freepath, *fullpath;
1092
1093                         if (vn_fullpath(curproc, vp, &fullpath, &freepath)) {
1094                                 printf("Warning: coredump, error %d: cannot store file handle for vnode %p\n", error, vp);
1095                         } else {
1096                                 printf("Warning: coredump, error %d: cannot store file handle for %s\n", error, fullpath);
1097                                 free(freepath, M_TEMP);
1098                         }
1099                         error = 0;
1100                 }
1101
1102                 phdr->p_type = PT_LOAD;
1103                 phdr->p_offset = 0;        /* not written to core */
1104                 phdr->p_vaddr = entry->start;
1105                 phdr->p_paddr = 0;
1106                 phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1107                 phdr->p_align = PAGE_SIZE;
1108                 phdr->p_flags = 0;
1109                 if (entry->protection & VM_PROT_READ)
1110                         phdr->p_flags |= PF_R;
1111                 if (entry->protection & VM_PROT_WRITE)
1112                         phdr->p_flags |= PF_W;
1113                 if (entry->protection & VM_PROT_EXECUTE)
1114                         phdr->p_flags |= PF_X;
1115                 ++fpc->vnh;
1116                 ++fpc->count;
1117         }
1118         return 0;
1119 }
1120
1121 /*
1122  * For each writable segment in the process's memory map, call the given
1123  * function with a pointer to the map entry and some arbitrary
1124  * caller-supplied data.
1125  */
1126 static int
1127 each_segment(struct proc *p, segment_callback func, void *closure, int writable)
1128 {
1129         int error = 0;
1130         vm_map_t map = &p->p_vmspace->vm_map;
1131         vm_map_entry_t entry;
1132
1133         for (entry = map->header.next; error == 0 && entry != &map->header;
1134             entry = entry->next) {
1135                 vm_object_t obj;
1136
1137                 /*
1138                  * Don't dump inaccessible mappings, deal with legacy
1139                  * coredump mode.
1140                  *
1141                  * Note that read-only segments related to the elf binary
1142                  * are marked MAP_ENTRY_NOCOREDUMP now so we no longer
1143                  * need to arbitrarily ignore such segments.
1144                  */
1145                 if (elf_legacy_coredump) {
1146                         if (writable && (entry->protection & VM_PROT_RW) != VM_PROT_RW)
1147                                 continue;
1148                 } else {
1149                         if (writable && (entry->protection & VM_PROT_ALL) == 0)
1150                                 continue;
1151                 }
1152
1153                 /*
1154                  * Dont include memory segment in the coredump if
1155                  * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
1156                  * madvise(2).  Do not dump submaps (i.e. parts of the
1157                  * kernel map).
1158                  */
1159                 if (writable && entry->eflags & (MAP_ENTRY_NOCOREDUMP|MAP_ENTRY_IS_SUB_MAP))
1160                         continue;
1161
1162                 if ((obj = entry->object.vm_object) == NULL)
1163                         continue;
1164
1165                 /* Find the deepest backing object. */
1166                 while (obj->backing_object != NULL)
1167                         obj = obj->backing_object;
1168
1169                 /* Ignore memory-mapped devices and such things. */
1170                 if (obj->type != OBJT_DEFAULT &&
1171                     obj->type != OBJT_SWAP &&
1172                     obj->type != OBJT_VNODE)
1173                         continue;
1174
1175                 error = (*func)(entry, closure);
1176         }
1177         return error;
1178 }
1179
1180 static
1181 void *
1182 target_reserve(elf_buf_t target, size_t bytes, int *error)
1183 {
1184     void *res = NULL;
1185
1186     if (target->buf) {
1187             if (target->off + bytes > target->off_max)
1188                     *error = EINVAL;
1189             else
1190                     res = target->buf + target->off;
1191     }
1192     target->off += bytes;
1193     return (res);
1194 }
1195
1196 /*
1197  * Write the core file header to the file, including padding up to
1198  * the page boundary.
1199  */
1200 static int
1201 elf_corehdr(struct proc *p, struct file *fp, struct ucred *cred, int numsegs, 
1202             elf_buf_t target)
1203 {
1204         struct {
1205                 prstatus_t status;
1206                 prfpregset_t fpregset;
1207                 prpsinfo_t psinfo;
1208         } *tempdata;
1209         int error;
1210         prstatus_t *status;
1211         prfpregset_t *fpregset;
1212         prpsinfo_t *psinfo;
1213         int nbytes;
1214         tempdata = malloc(sizeof(*tempdata), M_TEMP, M_ZERO | M_WAITOK);
1215         status = &tempdata->status;
1216         fpregset = &tempdata->fpregset;
1217         psinfo = &tempdata->psinfo;
1218
1219         /* Gather the information for the header. */
1220         status->pr_version = PRSTATUS_VERSION;
1221         status->pr_statussz = sizeof(prstatus_t);
1222         status->pr_gregsetsz = sizeof(gregset_t);
1223         status->pr_fpregsetsz = sizeof(fpregset_t);
1224         status->pr_osreldate = osreldate;
1225         status->pr_cursig = p->p_sig;
1226         status->pr_pid = p->p_pid;
1227         fill_regs(&p->p_lwp, &status->pr_reg);
1228
1229         fill_fpregs(&p->p_lwp, fpregset);
1230
1231         psinfo->pr_version = PRPSINFO_VERSION;
1232         psinfo->pr_psinfosz = sizeof(prpsinfo_t);
1233         strncpy(psinfo->pr_fname, p->p_comm, sizeof(psinfo->pr_fname) - 1);
1234
1235         /* XXX - We don't fill in the command line arguments properly yet. */
1236         strncpy(psinfo->pr_psargs, p->p_comm, PRARGSZ);
1237
1238         /* Fill in the header. */
1239         error = elf_puthdr(p, target, status, fpregset, psinfo, numsegs);
1240
1241         free(tempdata, M_TEMP);
1242
1243         /* Write it to the core file. */
1244         if (error == 0)
1245                 error = fp_write(fp, target->buf, target->off, &nbytes);
1246         return error;
1247 }
1248
1249 static int
1250 elf_puthdr(struct proc *p, elf_buf_t target, const prstatus_t *status,
1251         const prfpregset_t *fpregset, const prpsinfo_t *psinfo, int numsegs)
1252 {
1253         int error = 0;
1254         size_t phoff;
1255         size_t noteoff;
1256         size_t notesz;
1257         Elf_Ehdr *ehdr;
1258         Elf_Phdr *phdr;
1259
1260         ehdr = target_reserve(target, sizeof(Elf_Ehdr), &error);
1261
1262         phoff = target->off;
1263         phdr = target_reserve(target, (numsegs + 1) * sizeof(Elf_Phdr), &error);
1264
1265         noteoff = target->off;
1266         if (error == 0) {
1267                 error = elf_putnote(target, "FreeBSD", NT_PRSTATUS, 
1268                                         status, sizeof *status);
1269         }
1270         if (error == 0) {
1271                 error = elf_putnote(target, "FreeBSD", NT_FPREGSET,
1272                                         fpregset, sizeof *fpregset);
1273         }
1274         if (error == 0) {
1275                 error = elf_putnote(target, "FreeBSD", NT_PRPSINFO,
1276                                         psinfo, sizeof *psinfo);
1277         }
1278         notesz = target->off - noteoff;
1279
1280         /*
1281          * put extra cruft for dumping process state here 
1282          *  - we really want it be before all the program 
1283          *    mappings
1284          *  - we just need to update the offset accordingly
1285          *    and GDB will be none the wiser.
1286          */
1287         if (error == 0)
1288                 error = elf_puttextvp(p, target);
1289         if (error == 0)
1290                 error = elf_putsigs(p, target);
1291         if (error == 0)
1292                 error = elf_putfiles(p, target);
1293
1294         /*
1295          * Align up to a page boundary for the program segments.  The
1296          * actual data will be written to the outptu file, not to elf_buf_t,
1297          * so we do not have to do any further bounds checking.
1298          */
1299         target->off = round_page(target->off);
1300         if (error == 0 && ehdr != NULL) {
1301                 /*
1302                  * Fill in the ELF header.
1303                  */
1304                 ehdr->e_ident[EI_MAG0] = ELFMAG0;
1305                 ehdr->e_ident[EI_MAG1] = ELFMAG1;
1306                 ehdr->e_ident[EI_MAG2] = ELFMAG2;
1307                 ehdr->e_ident[EI_MAG3] = ELFMAG3;
1308                 ehdr->e_ident[EI_CLASS] = ELF_CLASS;
1309                 ehdr->e_ident[EI_DATA] = ELF_DATA;
1310                 ehdr->e_ident[EI_VERSION] = EV_CURRENT;
1311                 ehdr->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
1312                 ehdr->e_ident[EI_ABIVERSION] = 0;
1313                 ehdr->e_ident[EI_PAD] = 0;
1314                 ehdr->e_type = ET_CORE;
1315                 ehdr->e_machine = ELF_ARCH;
1316                 ehdr->e_version = EV_CURRENT;
1317                 ehdr->e_entry = 0;
1318                 ehdr->e_phoff = phoff;
1319                 ehdr->e_flags = 0;
1320                 ehdr->e_ehsize = sizeof(Elf_Ehdr);
1321                 ehdr->e_phentsize = sizeof(Elf_Phdr);
1322                 ehdr->e_phnum = numsegs + 1;
1323                 ehdr->e_shentsize = sizeof(Elf_Shdr);
1324                 ehdr->e_shnum = 0;
1325                 ehdr->e_shstrndx = SHN_UNDEF;
1326         }
1327         if (error == 0 && phdr != NULL) {
1328                 /*
1329                  * Fill in the program header entries.
1330                  */
1331                 struct phdr_closure phc;
1332
1333                 /* The note segement. */
1334                 phdr->p_type = PT_NOTE;
1335                 phdr->p_offset = noteoff;
1336                 phdr->p_vaddr = 0;
1337                 phdr->p_paddr = 0;
1338                 phdr->p_filesz = notesz;
1339                 phdr->p_memsz = 0;
1340                 phdr->p_flags = 0;
1341                 phdr->p_align = 0;
1342                 ++phdr;
1343
1344                 /* All the writable segments from the program. */
1345                 phc.phdr = phdr;
1346                 phc.phdr_max = phdr + numsegs;
1347                 phc.offset = target->off;
1348                 each_segment(p, cb_put_phdr, &phc, 1);
1349         }
1350         return (error);
1351 }
1352
1353 static int
1354 elf_putnote(elf_buf_t target, const char *name, int type,
1355             const void *desc, size_t descsz)
1356 {
1357         int error = 0;
1358         char *dst;
1359         Elf_Note note;
1360
1361         note.n_namesz = strlen(name) + 1;
1362         note.n_descsz = descsz;
1363         note.n_type = type;
1364         dst = target_reserve(target, sizeof(note), &error);
1365         if (dst != NULL)
1366                 bcopy(&note, dst, sizeof note);
1367         dst = target_reserve(target, note.n_namesz, &error);
1368         if (dst != NULL)
1369                 bcopy(name, dst, note.n_namesz);
1370         target->off = roundup2(target->off, sizeof(Elf_Size));
1371         dst = target_reserve(target, note.n_descsz, &error);
1372         if (dst != NULL)
1373                 bcopy(desc, dst, note.n_descsz);
1374         target->off = roundup2(target->off, sizeof(Elf_Size));
1375         return(error);
1376 }
1377
1378
1379 static int
1380 elf_putsigs(struct proc *p, elf_buf_t target)
1381 {
1382         int error = 0;
1383         struct ckpt_siginfo *csi;
1384
1385         csi = target_reserve(target, sizeof(struct ckpt_siginfo), &error);
1386         if (csi) {
1387                 csi->csi_ckptpisz = sizeof(struct ckpt_siginfo);
1388                 bcopy(p->p_procsig, &csi->csi_procsig, sizeof(struct procsig));
1389                 bcopy(p->p_procsig->ps_sigacts, &csi->csi_sigacts, sizeof(struct sigacts));
1390                 bcopy(&p->p_realtimer, &csi->csi_itimerval, sizeof(struct itimerval));
1391                 bcopy(&p->p_sigmask, &csi->csi_sigmask, sizeof(sigset_t));
1392                 csi->csi_sigparent = p->p_sigparent;
1393         }
1394         return(error);
1395 }
1396
1397 static int
1398 elf_putfiles(struct proc *p, elf_buf_t target)
1399 {
1400         int error = 0;
1401         int i;
1402         struct ckpt_filehdr *cfh = NULL;
1403         struct ckpt_fileinfo *cfi;
1404         struct file *fp;        
1405         struct vnode *vp;
1406         /*
1407          * the duplicated loop is gross, but it was the only way
1408          * to eliminate uninitialized variable warnings 
1409          */
1410         cfh = target_reserve(target, sizeof(struct ckpt_filehdr), &error);
1411         if (cfh) {
1412                 cfh->cfh_nfiles = 0;            
1413         }
1414
1415         /*
1416          * ignore STDIN/STDERR/STDOUT.
1417          */
1418         for (i = 3; error == 0 && i < p->p_fd->fd_nfiles; i++) {
1419                 if ((fp = p->p_fd->fd_files[i].fp) == NULL)
1420                         continue;
1421                 /* 
1422                  * XXX Only checkpoint vnodes for now.
1423                  */
1424                 if (fp->f_type != DTYPE_VNODE)
1425                         continue;
1426                 cfi = target_reserve(target, sizeof(struct ckpt_fileinfo),
1427                                         &error);
1428                 if (cfi == NULL)
1429                         continue;
1430                 cfi->cfi_index = -1;
1431                 cfi->cfi_type = fp->f_type;
1432                 cfi->cfi_flags = fp->f_flag;
1433                 cfi->cfi_offset = fp->f_offset;
1434                 /* f_count and f_msgcount should not be saved/restored */
1435                 /* XXX save cred info */
1436
1437                 switch(fp->f_type) {
1438                 case DTYPE_VNODE:
1439                         vp = (struct vnode *)fp->f_data;
1440                         /*
1441                          * it looks like a bug in ptrace is marking 
1442                          * a non-vnode as a vnode - until we find the 
1443                          * root cause this will at least prevent
1444                          * further panics from truss
1445                          */
1446                         if (vp == NULL || vp->v_mount == NULL)
1447                                 break;
1448                         cfh->cfh_nfiles++;
1449                         cfi->cfi_index = i;
1450                         cfi->cfi_fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
1451                         error = VFS_VPTOFH(vp, &cfi->cfi_fh.fh_fid);
1452                         break;
1453                 default:
1454                         break;
1455                 }
1456         }
1457         return(error);
1458 }
1459
1460 static int
1461 elf_puttextvp(struct proc *p, elf_buf_t target)
1462 {
1463         int error = 0;
1464         int *vn_count;
1465         struct fp_closure fpc;
1466         struct ckpt_vminfo *vminfo;
1467
1468         vminfo = target_reserve(target, sizeof(struct ckpt_vminfo), &error);
1469         if (vminfo != NULL) {
1470                 vminfo->cvm_dsize = p->p_vmspace->vm_dsize;
1471                 vminfo->cvm_tsize = p->p_vmspace->vm_tsize;
1472                 vminfo->cvm_daddr = p->p_vmspace->vm_daddr;
1473                 vminfo->cvm_taddr = p->p_vmspace->vm_taddr;
1474         }
1475
1476         fpc.count = 0;
1477         vn_count = target_reserve(target, sizeof(int), &error);
1478         if (target->buf != NULL) {
1479                 fpc.vnh = (struct vn_hdr *)(target->buf + target->off);
1480                 fpc.vnh_max = fpc.vnh + 
1481                         (target->off_max - target->off) / sizeof(struct vn_hdr);
1482                 error = each_segment(p, cb_put_fp, &fpc, 0);
1483                 if (vn_count)
1484                         *vn_count = fpc.count;
1485         } else {
1486                 error = each_segment(p, cb_fpcount_segment, &fpc.count, 0);
1487         }
1488         target->off += fpc.count * sizeof(struct vn_hdr);
1489         return(error);
1490 }
1491
1492
1493 /*
1494  * Tell kern_execve.c about it, with a little help from the linker.
1495  */
1496 static struct execsw elf_execsw = {exec_elf_imgact, "ELF"};
1497 EXEC_SET_ORDERED(elf, elf_execsw, SI_ORDER_FIRST);