f8298cfe29611b5814f1b8f187c44fe5f4ae6faa
[dragonfly.git] / sys / kern / imgact_elf.c
1 /*-
2  * Copyright (c) 2000 David O'Brien
3  * Copyright (c) 1995-1996 Søren Schmidt
4  * Copyright (c) 1996 Peter Wemm
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer
12  *    in this position and unchanged.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  * $FreeBSD: src/sys/kern/imgact_elf.c,v 1.73.2.13 2002/12/28 19:49:41 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 #include <sys/eventhandler.h>
55
56 #include <cpu/lwbuf.h>
57
58 #include <vm/vm.h>
59 #include <vm/vm_kern.h>
60 #include <vm/vm_param.h>
61 #include <vm/pmap.h>
62 #include <sys/lock.h>
63 #include <vm/vm_map.h>
64 #include <vm/vm_object.h>
65 #include <vm/vm_extern.h>
66
67 #include <machine/elf.h>
68 #include <machine/md_var.h>
69 #include <sys/mount.h>
70 #include <sys/ckpt.h>
71
72 #define OLD_EI_BRAND    8
73 #define truncps(va,ps)  ((va) & ~(ps - 1))
74 #define aligned(a,t)    (truncps((u_long)(a), sizeof(t)) == (u_long)(a))
75
76 static int __elfN(check_header)(const Elf_Ehdr *hdr);
77 static Elf_Brandinfo *__elfN(get_brandinfo)(struct image_params *imgp,
78     const char *interp, int32_t *osrel);
79 static int __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
80     u_long *entry);
81 static int __elfN(load_section)(struct proc *p,
82     struct vmspace *vmspace, struct vnode *vp,
83     vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz,
84     vm_prot_t prot);
85 static int __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp);
86 static boolean_t __elfN(bsd_trans_osrel)(const Elf_Note *note,
87     int32_t *osrel);
88 static boolean_t __elfN(check_note)(struct image_params *imgp,
89     Elf_Brandnote *checknote, int32_t *osrel);
90 static boolean_t check_PT_NOTE(struct image_params *imgp,
91     Elf_Brandnote *checknote, int32_t *osrel, const Elf_Phdr * pnote);
92 static boolean_t extract_interpreter(struct image_params *imgp,
93     const Elf_Phdr *pinterpreter, char *data);
94
95 static int elf_legacy_coredump = 0;
96 static int __elfN(fallback_brand) = -1;
97 #if defined(__x86_64__)
98 SYSCTL_NODE(_kern, OID_AUTO, elf64, CTLFLAG_RW, 0, "");
99 SYSCTL_INT(_debug, OID_AUTO, elf64_legacy_coredump, CTLFLAG_RW,
100     &elf_legacy_coredump, 0, "legacy coredump mode");
101 SYSCTL_INT(_kern_elf64, OID_AUTO, fallback_brand, CTLFLAG_RW,
102     &elf64_fallback_brand, 0, "ELF64 brand of last resort");
103 TUNABLE_INT("kern.elf64.fallback_brand", &elf64_fallback_brand);
104 #else /* i386 assumed */
105 SYSCTL_NODE(_kern, OID_AUTO, elf32, CTLFLAG_RW, 0, "");
106 SYSCTL_INT(_debug, OID_AUTO, elf32_legacy_coredump, CTLFLAG_RW,
107     &elf_legacy_coredump, 0, "legacy coredump mode");
108 SYSCTL_INT(_kern_elf32, OID_AUTO, fallback_brand, CTLFLAG_RW,
109     &elf32_fallback_brand, 0, "ELF32 brand of last resort");
110 TUNABLE_INT("kern.elf32.fallback_brand", &elf32_fallback_brand);
111 #endif
112
113 static Elf_Brandinfo *elf_brand_list[MAX_BRANDS];
114
115 static const char DRAGONFLY_ABI_VENDOR[] = "DragonFly";
116 static const char FREEBSD_ABI_VENDOR[]   = "FreeBSD";
117
118 Elf_Brandnote __elfN(dragonfly_brandnote) = {
119         .hdr.n_namesz   = sizeof(DRAGONFLY_ABI_VENDOR),
120         .hdr.n_descsz   = sizeof(int32_t),
121         .hdr.n_type     = 1,
122         .vendor         = DRAGONFLY_ABI_VENDOR,
123         .flags          = BN_TRANSLATE_OSREL,
124         .trans_osrel    = __elfN(bsd_trans_osrel),
125 };
126
127 Elf_Brandnote __elfN(freebsd_brandnote) = {
128         .hdr.n_namesz   = sizeof(FREEBSD_ABI_VENDOR),
129         .hdr.n_descsz   = sizeof(int32_t),
130         .hdr.n_type     = 1,
131         .vendor         = FREEBSD_ABI_VENDOR,
132         .flags          = BN_TRANSLATE_OSREL,
133         .trans_osrel    = __elfN(bsd_trans_osrel),
134 };
135
136 int
137 __elfN(insert_brand_entry)(Elf_Brandinfo *entry)
138 {
139         int i;
140
141         for (i = 0; i < MAX_BRANDS; i++) {
142                 if (elf_brand_list[i] == NULL) {
143                         elf_brand_list[i] = entry;
144                         break;
145                 }
146         }
147         if (i == MAX_BRANDS) {
148                 uprintf("WARNING: %s: could not insert brandinfo entry: %p\n",
149                         __func__, entry);
150                 return (-1);
151         }
152         return (0);
153 }
154
155 int
156 __elfN(remove_brand_entry)(Elf_Brandinfo *entry)
157 {
158         int i;
159
160         for (i = 0; i < MAX_BRANDS; i++) {
161                 if (elf_brand_list[i] == entry) {
162                         elf_brand_list[i] = NULL;
163                         break;
164                 }
165         }
166         if (i == MAX_BRANDS)
167                 return (-1);
168         return (0);
169 }
170
171 /*
172  * Check if an elf brand is being used anywhere in the system.
173  *
174  * Used by the linux emulation module unloader.  This isn't safe from
175  * races.
176  */
177 struct elf_brand_inuse_info {
178         int rval;
179         Elf_Brandinfo *entry;
180 };
181
182 static int elf_brand_inuse_callback(struct proc *p, void *data);
183
184 int
185 __elfN(brand_inuse)(Elf_Brandinfo *entry)
186 {
187         struct elf_brand_inuse_info info;
188
189         info.rval = FALSE;
190         info.entry = entry;
191         allproc_scan(elf_brand_inuse_callback, entry);
192         return (info.rval);
193 }
194
195 static
196 int
197 elf_brand_inuse_callback(struct proc *p, void *data)
198 {
199         struct elf_brand_inuse_info *info = data;
200
201         if (p->p_sysent == info->entry->sysvec) {
202                 info->rval = TRUE;
203                 return (-1);
204         }
205         return (0);
206 }
207
208 static int
209 __elfN(check_header)(const Elf_Ehdr *hdr)
210 {
211         Elf_Brandinfo *bi;
212         int i;
213
214         if (!IS_ELF(*hdr) ||
215             hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
216             hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
217             hdr->e_ident[EI_VERSION] != EV_CURRENT ||
218             hdr->e_phentsize != sizeof(Elf_Phdr) ||
219             hdr->e_ehsize != sizeof(Elf_Ehdr) ||
220             hdr->e_version != ELF_TARG_VER)
221                 return (ENOEXEC);
222
223         /*
224          * Make sure we have at least one brand for this machine.
225          */
226
227         for (i = 0; i < MAX_BRANDS; i++) {
228                 bi = elf_brand_list[i];
229                 if (bi != NULL && bi->machine == hdr->e_machine)
230                         break;
231         }
232         if (i == MAX_BRANDS)
233                 return (ENOEXEC);
234
235         return (0);
236 }
237
238 static int
239 __elfN(load_section)(struct proc *p, struct vmspace *vmspace, struct vnode *vp,
240                  vm_offset_t offset, caddr_t vmaddr, size_t memsz,
241                  size_t filsz, vm_prot_t prot)
242 {
243         size_t map_len;
244         vm_offset_t map_addr;
245         int error, rv, cow;
246         int count;
247         size_t copy_len;
248         vm_object_t object;
249         vm_offset_t file_addr;
250
251         object = vp->v_object;
252         error = 0;
253
254         /*
255          * It's necessary to fail if the filsz + offset taken from the
256          * header is greater than the actual file pager object's size.
257          * If we were to allow this, then the vm_map_find() below would
258          * walk right off the end of the file object and into the ether.
259          *
260          * While I'm here, might as well check for something else that
261          * is invalid: filsz cannot be greater than memsz.
262          */
263         if ((off_t)filsz + offset > vp->v_filesize || filsz > memsz) {
264                 uprintf("elf_load_section: truncated ELF file\n");
265                 return (ENOEXEC);
266         }
267
268         map_addr = trunc_page((vm_offset_t)vmaddr);
269         file_addr = trunc_page(offset);
270
271         /*
272          * We have two choices.  We can either clear the data in the last page
273          * of an oversized mapping, or we can start the anon mapping a page
274          * early and copy the initialized data into that first page.  We
275          * choose the second..
276          */
277         if (memsz > filsz)
278                 map_len = trunc_page(offset+filsz) - file_addr;
279         else
280                 map_len = round_page(offset+filsz) - file_addr;
281
282         if (map_len != 0) {
283                 vm_object_reference(object);
284
285                 /* cow flags: don't dump readonly sections in core */
286                 cow = MAP_COPY_ON_WRITE | MAP_PREFAULT |
287                     (prot & VM_PROT_WRITE ? 0 : MAP_DISABLE_COREDUMP);
288
289                 count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
290                 vm_map_lock(&vmspace->vm_map);
291                 rv = vm_map_insert(&vmspace->vm_map, &count,
292                                       object,
293                                       file_addr,        /* file offset */
294                                       map_addr,         /* virtual start */
295                                       map_addr + map_len,/* virtual end */
296                                       VM_MAPTYPE_NORMAL,
297                                       prot, VM_PROT_ALL,
298                                       cow);
299                 vm_map_unlock(&vmspace->vm_map);
300                 vm_map_entry_release(count);
301                 if (rv != KERN_SUCCESS) {
302                         vm_object_deallocate(object);
303                         return (EINVAL);
304                 }
305
306                 /* we can stop now if we've covered it all */
307                 if (memsz == filsz) {
308                         return (0);
309                 }
310         }
311
312
313         /*
314          * We have to get the remaining bit of the file into the first part
315          * of the oversized map segment.  This is normally because the .data
316          * segment in the file is extended to provide bss.  It's a neat idea
317          * to try and save a page, but it's a pain in the behind to implement.
318          */
319         copy_len = (offset + filsz) - trunc_page(offset + filsz);
320         map_addr = trunc_page((vm_offset_t)vmaddr + filsz);
321         map_len = round_page((vm_offset_t)vmaddr + memsz) - map_addr;
322
323         /* This had damn well better be true! */
324         if (map_len != 0) {
325                 count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
326                 vm_map_lock(&vmspace->vm_map);
327                 rv = vm_map_insert(&vmspace->vm_map, &count,
328                                         NULL, 0,
329                                         map_addr, map_addr + map_len,
330                                         VM_MAPTYPE_NORMAL,
331                                         VM_PROT_ALL, VM_PROT_ALL,
332                                         0);
333                 vm_map_unlock(&vmspace->vm_map);
334                 vm_map_entry_release(count);
335                 if (rv != KERN_SUCCESS) {
336                         return (EINVAL);
337                 }
338         }
339
340         if (copy_len != 0) {
341                 vm_page_t m;
342                 struct lwbuf *lwb;
343                 struct lwbuf lwb_cache;
344
345                 m = vm_fault_object_page(object, trunc_page(offset + filsz),
346                                          VM_PROT_READ, 0, &error);
347                 if (m) {
348                         lwb = lwbuf_alloc(m, &lwb_cache);
349                         error = copyout((caddr_t)lwbuf_kva(lwb),
350                                         (caddr_t)map_addr, copy_len);
351                         lwbuf_free(lwb);
352                         vm_page_unhold(m);
353                 }
354                 if (error) {
355                         return (error);
356                 }
357         }
358
359         /*
360          * set it to the specified protection
361          */
362         vm_map_protect(&vmspace->vm_map, map_addr, map_addr + map_len,  prot,
363                        FALSE);
364
365         return (error);
366 }
367
368 /*
369  * Load the file "file" into memory.  It may be either a shared object
370  * or an executable.
371  *
372  * The "addr" reference parameter is in/out.  On entry, it specifies
373  * the address where a shared object should be loaded.  If the file is
374  * an executable, this value is ignored.  On exit, "addr" specifies
375  * where the file was actually loaded.
376  *
377  * The "entry" reference parameter is out only.  On exit, it specifies
378  * the entry point for the loaded file.
379  */
380 static int
381 __elfN(load_file)(struct proc *p, const char *file, u_long *addr, u_long *entry)
382 {
383         struct {
384                 struct nlookupdata nd;
385                 struct vattr attr;
386                 struct image_params image_params;
387         } *tempdata;
388         const Elf_Ehdr *hdr = NULL;
389         const Elf_Phdr *phdr = NULL;
390         struct nlookupdata *nd;
391         struct vmspace *vmspace = p->p_vmspace;
392         struct vattr *attr;
393         struct image_params *imgp;
394         struct mount *topmnt;
395         vm_prot_t prot;
396         u_long rbase;
397         u_long base_addr = 0;
398         int error, i, numsegs;
399
400         tempdata = kmalloc(sizeof(*tempdata), M_TEMP, M_WAITOK);
401         nd = &tempdata->nd;
402         attr = &tempdata->attr;
403         imgp = &tempdata->image_params;
404
405         /*
406          * Initialize part of the common data
407          */
408         imgp->proc = p;
409         imgp->attr = attr;
410         imgp->firstpage = NULL;
411         imgp->image_header = NULL;
412         imgp->vp = NULL;
413
414         error = nlookup_init(nd, file, UIO_SYSSPACE, NLC_FOLLOW);
415         if (error == 0)
416                 error = nlookup(nd);
417         if (error == 0)
418                 error = cache_vget(&nd->nl_nch, nd->nl_cred, LK_EXCLUSIVE, &imgp->vp);
419         topmnt = nd->nl_nch.mount;
420         nlookup_done(nd);
421         if (error)
422                 goto fail;
423
424         /*
425          * Check permissions, modes, uid, etc on the file, and "open" it.
426          */
427         error = exec_check_permissions(imgp, topmnt);
428         if (error) {
429                 vn_unlock(imgp->vp);
430                 goto fail;
431         }
432
433         error = exec_map_first_page(imgp);
434         /*
435          * Also make certain that the interpreter stays the same, so set
436          * its VTEXT flag, too.
437          */
438         if (error == 0)
439                 vsetflags(imgp->vp, VTEXT);
440         vn_unlock(imgp->vp);
441         if (error)
442                 goto fail;
443
444         hdr = (const Elf_Ehdr *)imgp->image_header;
445         if ((error = __elfN(check_header)(hdr)) != 0)
446                 goto fail;
447         if (hdr->e_type == ET_DYN)
448                 rbase = *addr;
449         else if (hdr->e_type == ET_EXEC)
450                 rbase = 0;
451         else {
452                 error = ENOEXEC;
453                 goto fail;
454         }
455
456         /* Only support headers that fit within first page for now      */
457         /*    (multiplication of two Elf_Half fields will not overflow) */
458         if ((hdr->e_phoff > PAGE_SIZE) ||
459             (hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE - hdr->e_phoff) {
460                 error = ENOEXEC;
461                 goto fail;
462         }
463
464         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
465         if (!aligned(phdr, Elf_Addr)) {
466                 error = ENOEXEC;
467                 goto fail;
468         }
469
470         for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) {
471                 if (phdr[i].p_type == PT_LOAD && phdr[i].p_memsz != 0) {
472                         /* Loadable segment */
473                         prot = 0;
474                         if (phdr[i].p_flags & PF_X)
475                                 prot |= VM_PROT_EXECUTE;
476                         if (phdr[i].p_flags & PF_W)
477                                 prot |= VM_PROT_WRITE;
478                         if (phdr[i].p_flags & PF_R)
479                                 prot |= VM_PROT_READ;
480
481                         error = __elfN(load_section)(
482                                     p, vmspace, imgp->vp,
483                                     phdr[i].p_offset,
484                                     (caddr_t)phdr[i].p_vaddr +
485                                     rbase,
486                                     phdr[i].p_memsz,
487                                     phdr[i].p_filesz, prot);
488                         if (error != 0)
489                                 goto fail;
490                         /*
491                          * Establish the base address if this is the
492                          * first segment.
493                          */
494                         if (numsegs == 0)
495                                 base_addr = trunc_page(phdr[i].p_vaddr + rbase);
496                         numsegs++;
497                 }
498         }
499         *addr = base_addr;
500         *entry = (unsigned long)hdr->e_entry + rbase;
501
502 fail:
503         if (imgp->firstpage)
504                 exec_unmap_first_page(imgp);
505         if (imgp->vp) {
506                 vrele(imgp->vp);
507                 imgp->vp = NULL;
508         }
509         kfree(tempdata, M_TEMP);
510
511         return (error);
512 }
513
514 static Elf_Brandinfo *
515 __elfN(get_brandinfo)(struct image_params *imgp, const char *interp,
516     int32_t *osrel)
517 {
518         const Elf_Ehdr *hdr = (const Elf_Ehdr *)imgp->image_header;
519         Elf_Brandinfo *bi;
520         boolean_t ret;
521         int i;
522
523         /* We support four types of branding -- (1) the ELF EI_OSABI field
524          * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string
525          * branding within the ELF header, (3) path of the `interp_path' field,
526          * and (4) the ".note.ABI-tag" ELF section.
527          */
528
529         /* Look for an ".note.ABI-tag" ELF section */
530         for (i = 0; i < MAX_BRANDS; i++) {
531                 bi = elf_brand_list[i];
532
533                 if (bi == NULL)
534                         continue;
535                 if (hdr->e_machine == bi->machine && (bi->flags &
536                     (BI_BRAND_NOTE|BI_BRAND_NOTE_MANDATORY)) != 0) {
537                         ret = __elfN(check_note)(imgp, bi->brand_note, osrel);
538                         if (ret)
539                                 return (bi);
540                 }
541         }
542
543         /* If the executable has a brand, search for it in the brand list. */
544         for (i = 0;  i < MAX_BRANDS;  i++) {
545                 bi = elf_brand_list[i];
546
547                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
548                         continue;
549                 if (hdr->e_machine == bi->machine &&
550                     (hdr->e_ident[EI_OSABI] == bi->brand ||
551                     strncmp((const char *)&hdr->e_ident[OLD_EI_BRAND],
552                     bi->compat_3_brand, strlen(bi->compat_3_brand)) == 0))
553                         return (bi);
554         }
555
556         /* Lacking a known brand, search for a recognized interpreter. */
557         if (interp != NULL) {
558                 for (i = 0;  i < MAX_BRANDS;  i++) {
559                         bi = elf_brand_list[i];
560
561                         if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
562                                 continue;
563                         if (hdr->e_machine == bi->machine &&
564                             strcmp(interp, bi->interp_path) == 0)
565                                 return (bi);
566                 }
567         }
568
569         /* Lacking a recognized interpreter, try the default brand */
570         for (i = 0; i < MAX_BRANDS; i++) {
571                 bi = elf_brand_list[i];
572
573                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
574                         continue;
575                 if (hdr->e_machine == bi->machine &&
576                     __elfN(fallback_brand) == bi->brand)
577                         return (bi);
578         }
579         return (NULL);
580 }
581
582 static int
583 __CONCAT(exec_,__elfN(imgact))(struct image_params *imgp)
584 {
585         const Elf_Ehdr *hdr = (const Elf_Ehdr *) imgp->image_header;
586         const Elf_Phdr *phdr;
587         Elf_Auxargs *elf_auxargs;
588         struct vmspace *vmspace;
589         vm_prot_t prot;
590         u_long text_size = 0, data_size = 0, total_size = 0;
591         u_long text_addr = 0, data_addr = 0;
592         u_long seg_size, seg_addr;
593         u_long addr, baddr, et_dyn_addr, entry = 0, proghdr = 0;
594         int32_t osrel = 0;
595         int error = 0, i, n;
596         boolean_t failure;
597         char *interp = NULL;
598         const char *newinterp = NULL;
599         Elf_Brandinfo *brand_info;
600         char *path;
601
602         /*
603          * Do we have a valid ELF header ?
604          *
605          * Only allow ET_EXEC & ET_DYN here, reject ET_DYN later if a particular
606          * brand doesn't support it.  Both DragonFly platforms do by default.
607          */
608         if (__elfN(check_header)(hdr) != 0 ||
609             (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN))
610                 return (-1);
611
612         /*
613          * From here on down, we return an errno, not -1, as we've
614          * detected an ELF file.
615          */
616
617         if ((hdr->e_phoff > PAGE_SIZE) ||
618             (hdr->e_phoff + hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE) {
619                 /* Only support headers in first page for now */
620                 return (ENOEXEC);
621         }
622         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
623         if (!aligned(phdr, Elf_Addr))
624                 return (ENOEXEC);
625         n = 0;
626         baddr = 0;
627         for (i = 0; i < hdr->e_phnum; i++) {
628                 if (phdr[i].p_type == PT_LOAD) {
629                         if (n == 0)
630                                 baddr = phdr[i].p_vaddr;
631                         n++;
632                         continue;
633                 }
634                 if (phdr[i].p_type == PT_INTERP) {
635                         /*
636                          * If interp is already defined there are more than
637                          * one PT_INTERP program headers present.  Take only
638                          * the first one and ignore the rest.
639                          */
640                         if (interp != NULL)
641                                 continue;
642
643                         if (phdr[i].p_filesz == 0 ||
644                             phdr[i].p_filesz > PAGE_SIZE ||
645                             phdr[i].p_filesz > MAXPATHLEN)
646                                 return (ENOEXEC);
647
648                         interp = kmalloc(phdr[i].p_filesz, M_TEMP, M_WAITOK);
649                         failure = extract_interpreter(imgp, &phdr[i], interp);
650                         if (failure) {
651                                 kfree(interp, M_TEMP);
652                                 return (ENOEXEC);
653                         }
654                         continue;
655                 }
656         }
657         
658         brand_info = __elfN(get_brandinfo)(imgp, interp, &osrel);
659         if (brand_info == NULL) {
660                 uprintf("ELF binary type \"%u\" not known.\n",
661                     hdr->e_ident[EI_OSABI]);
662                 if (interp != NULL)
663                         kfree(interp, M_TEMP);
664                 return (ENOEXEC);
665         }
666         if (hdr->e_type == ET_DYN) {
667                 if ((brand_info->flags & BI_CAN_EXEC_DYN) == 0) {
668                         if (interp != NULL)
669                                 kfree(interp, M_TEMP);
670                         return (ENOEXEC);
671                 }
672                 /*
673                  * Honour the base load address from the dso if it is
674                  * non-zero for some reason.
675                  */
676                 if (baddr == 0)
677                         et_dyn_addr = ET_DYN_LOAD_ADDR;
678                 else
679                         et_dyn_addr = 0;
680         } else
681                 et_dyn_addr = 0;
682
683         if (interp != NULL && brand_info->interp_newpath != NULL)
684                 newinterp = brand_info->interp_newpath;
685
686         exec_new_vmspace(imgp, NULL);
687
688         /*
689          * Yeah, I'm paranoid.  There is every reason in the world to get
690          * VTEXT now since from here on out, there are places we can have
691          * a context switch.  Better safe than sorry; I really don't want
692          * the file to change while it's being loaded.
693          */
694         vsetflags(imgp->vp, VTEXT);
695
696         vmspace = imgp->proc->p_vmspace;
697
698         for (i = 0; i < hdr->e_phnum; i++) {
699                 switch (phdr[i].p_type) {
700
701                 case PT_LOAD:   /* Loadable segment */
702                         if (phdr[i].p_memsz == 0)
703                                 break;
704                         prot = 0;
705                         if (phdr[i].p_flags & PF_X)
706                                 prot |= VM_PROT_EXECUTE;
707                         if (phdr[i].p_flags & PF_W)
708                                 prot |= VM_PROT_WRITE;
709                         if (phdr[i].p_flags & PF_R)
710                                 prot |= VM_PROT_READ;
711
712                         if ((error = __elfN(load_section)(
713                                         imgp->proc,
714                                         vmspace,
715                                         imgp->vp,
716                                         phdr[i].p_offset,
717                                         (caddr_t)phdr[i].p_vaddr + et_dyn_addr,
718                                         phdr[i].p_memsz,
719                                         phdr[i].p_filesz,
720                                         prot)) != 0) {
721                                 if (interp != NULL)
722                                         kfree (interp, M_TEMP);
723                                 return (error);
724                         }
725
726                         /*
727                          * If this segment contains the program headers,
728                          * remember their virtual address for the AT_PHDR
729                          * aux entry. Static binaries don't usually include
730                          * a PT_PHDR entry.
731                          */
732                         if (phdr[i].p_offset == 0 &&
733                             hdr->e_phoff + hdr->e_phnum * hdr->e_phentsize
734                                 <= phdr[i].p_filesz)
735                                 proghdr = phdr[i].p_vaddr + hdr->e_phoff +
736                                     et_dyn_addr;
737
738                         seg_addr = trunc_page(phdr[i].p_vaddr + et_dyn_addr);
739                         seg_size = round_page(phdr[i].p_memsz +
740                             phdr[i].p_vaddr + et_dyn_addr - seg_addr);
741
742                         /*
743                          * Is this .text or .data?  We can't use
744                          * VM_PROT_WRITE or VM_PROT_EXEC, it breaks the
745                          * alpha terribly and possibly does other bad
746                          * things so we stick to the old way of figuring
747                          * it out:  If the segment contains the program
748                          * entry point, it's a text segment, otherwise it
749                          * is a data segment.
750                          *
751                          * Note that obreak() assumes that data_addr + 
752                          * data_size == end of data load area, and the ELF
753                          * file format expects segments to be sorted by
754                          * address.  If multiple data segments exist, the
755                          * last one will be used.
756                          */
757                         if (hdr->e_entry >= phdr[i].p_vaddr &&
758                             hdr->e_entry < (phdr[i].p_vaddr +
759                             phdr[i].p_memsz)) {
760                                 text_size = seg_size;
761                                 text_addr = seg_addr;
762                                 entry = (u_long)hdr->e_entry + et_dyn_addr;
763                         } else {
764                                 data_size = seg_size;
765                                 data_addr = seg_addr;
766                         }
767                         total_size += seg_size;
768
769                         /*
770                          * Check limits.  It should be safe to check the
771                          * limits after loading the segment since we do
772                          * not actually fault in all the segment's pages.
773                          */
774                         if (data_size >
775                             imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur ||
776                             text_size > maxtsiz ||
777                             total_size >
778                             imgp->proc->p_rlimit[RLIMIT_VMEM].rlim_cur) {
779                                 if (interp != NULL)
780                                         kfree(interp, M_TEMP);
781                                 error = ENOMEM;
782                                 return (error);
783                         }
784                         break;
785                 case PT_PHDR:   /* Program header table info */
786                         proghdr = phdr[i].p_vaddr + et_dyn_addr;
787                         break;
788                 default:
789                         break;
790                 }
791         }
792
793         vmspace->vm_tsize = text_size >> PAGE_SHIFT;
794         vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr;
795         vmspace->vm_dsize = data_size >> PAGE_SHIFT;
796         vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr;
797
798         addr = ELF_RTLD_ADDR(vmspace);
799
800         imgp->entry_addr = entry;
801
802         imgp->proc->p_sysent = brand_info->sysvec;
803         EVENTHANDLER_INVOKE(process_exec, imgp);
804
805         if (interp != NULL) {
806                 int have_interp = FALSE;
807                 if (brand_info->emul_path != NULL &&
808                     brand_info->emul_path[0] != '\0') {
809                         path = kmalloc(MAXPATHLEN, M_TEMP, M_WAITOK);
810                         ksnprintf(path, MAXPATHLEN, "%s%s",
811                             brand_info->emul_path, interp);
812                         error = __elfN(load_file)(imgp->proc, path, &addr,
813                             &imgp->entry_addr);
814                         kfree(path, M_TEMP);
815                         if (error == 0)
816                                 have_interp = TRUE;
817                 }
818                 if (!have_interp && newinterp != NULL) {
819                         error = __elfN(load_file)(imgp->proc, newinterp,
820                             &addr, &imgp->entry_addr);
821                         if (error == 0)
822                                 have_interp = TRUE;
823                 }
824                 if (!have_interp) {
825                         error = __elfN(load_file)(imgp->proc, interp, &addr,
826                             &imgp->entry_addr);
827                 }
828                 if (error != 0) {
829                         uprintf("ELF interpreter %s not found\n", interp);
830                         kfree(interp, M_TEMP);
831                         return (error);
832                 }
833                 kfree(interp, M_TEMP);
834         } else
835                 addr = et_dyn_addr;
836
837         /*
838          * Construct auxargs table (used by the fixup routine)
839          */
840         elf_auxargs = kmalloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
841         elf_auxargs->execfd = -1;
842         elf_auxargs->phdr = proghdr;
843         elf_auxargs->phent = hdr->e_phentsize;
844         elf_auxargs->phnum = hdr->e_phnum;
845         elf_auxargs->pagesz = PAGE_SIZE;
846         elf_auxargs->base = addr;
847         elf_auxargs->flags = 0;
848         elf_auxargs->entry = entry;
849
850         imgp->auxargs = elf_auxargs;
851         imgp->interpreted = 0;
852         imgp->proc->p_osrel = osrel;
853
854         return (error);
855 }
856
857 int
858 __elfN(dragonfly_fixup)(register_t **stack_base, struct image_params *imgp)
859 {
860         Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
861         Elf_Addr *base;
862         Elf_Addr *pos;
863
864         base = (Elf_Addr *)*stack_base;
865         pos = base + (imgp->args->argc + imgp->args->envc + 2);
866
867         if (args->execfd != -1)
868                 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
869         AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
870         AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
871         AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
872         AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
873         AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
874         AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
875         AUXARGS_ENTRY(pos, AT_BASE, args->base);
876         if (imgp->execpathp != 0)
877                 AUXARGS_ENTRY(pos, AT_EXECPATH, imgp->execpathp);
878         AUXARGS_ENTRY(pos, AT_NULL, 0);
879
880         kfree(imgp->auxargs, M_TEMP);
881         imgp->auxargs = NULL;
882
883         base--;
884         suword(base, (long)imgp->args->argc);
885         *stack_base = (register_t *)base;
886         return (0);
887 }
888
889 /*
890  * Code for generating ELF core dumps.
891  */
892
893 typedef int (*segment_callback)(vm_map_entry_t, void *);
894
895 /* Closure for cb_put_phdr(). */
896 struct phdr_closure {
897         Elf_Phdr *phdr;         /* Program header to fill in (incremented) */
898         Elf_Phdr *phdr_max;     /* Pointer bound for error check */
899         Elf_Off offset;         /* Offset of segment in core file */
900 };
901
902 /* Closure for cb_size_segment(). */
903 struct sseg_closure {
904         int count;              /* Count of writable segments. */
905         size_t vsize;           /* Total size of all writable segments. */
906 };
907
908 /* Closure for cb_put_fp(). */
909 struct fp_closure {
910         struct vn_hdr *vnh;
911         struct vn_hdr *vnh_max;
912         int count;
913         struct stat *sb;
914 };
915
916 typedef struct elf_buf {
917         char    *buf;
918         size_t  off;
919         size_t  off_max;
920 } *elf_buf_t;
921
922 static void *target_reserve(elf_buf_t target, size_t bytes, int *error);
923
924 static int cb_put_phdr (vm_map_entry_t, void *);
925 static int cb_size_segment (vm_map_entry_t, void *);
926 static int cb_fpcount_segment(vm_map_entry_t, void *);
927 static int cb_put_fp(vm_map_entry_t, void *);
928
929
930 static int each_segment (struct proc *, segment_callback, void *, int);
931 static int __elfN(corehdr)(struct lwp *, int, struct file *, struct ucred *,
932                         int, elf_buf_t);
933 enum putmode { WRITE, DRYRUN };
934 static int __elfN(puthdr)(struct lwp *, elf_buf_t, int sig, enum putmode,
935                         int, struct file *);
936 static int elf_putallnotes(struct lwp *, elf_buf_t, int, enum putmode);
937 static int __elfN(putnote)(elf_buf_t, const char *, int, const void *, size_t);
938
939 static int elf_putsigs(struct lwp *, elf_buf_t);
940 static int elf_puttextvp(struct proc *, elf_buf_t);
941 static int elf_putfiles(struct proc *, elf_buf_t, struct file *);
942
943 int
944 __elfN(coredump)(struct lwp *lp, int sig, struct vnode *vp, off_t limit)
945 {
946         struct file *fp; 
947         int error;
948
949         if ((error = falloc(NULL, &fp, NULL)) != 0)
950                 return (error);
951         fsetcred(fp, lp->lwp_proc->p_ucred);
952
953         /*
954          * XXX fixme.
955          */
956         fp->f_type = DTYPE_VNODE;
957         fp->f_flag = O_CREAT|O_WRONLY|O_NOFOLLOW;
958         fp->f_ops = &vnode_fileops;
959         fp->f_data = vp;
960         vn_unlock(vp);
961         
962         error = generic_elf_coredump(lp, sig, fp, limit);
963
964         fp->f_type = 0;
965         fp->f_flag = 0;
966         fp->f_ops = &badfileops;
967         fp->f_data = NULL;
968         fdrop(fp);
969         return (error);
970 }
971
972 int
973 generic_elf_coredump(struct lwp *lp, int sig, struct file *fp, off_t limit)
974 {
975         struct proc *p = lp->lwp_proc;
976         struct ucred *cred = p->p_ucred;
977         int error = 0;
978         struct sseg_closure seginfo;
979         struct elf_buf target;
980
981         if (!fp)
982                 kprintf("can't dump core - null fp\n");
983
984         /*
985          * Size the program segments
986          */
987         seginfo.count = 0;
988         seginfo.vsize = 0;
989         each_segment(p, cb_size_segment, &seginfo, 1);
990
991         /*
992          * Calculate the size of the core file header area by making
993          * a dry run of generating it.  Nothing is written, but the
994          * size is calculated.
995          */
996         bzero(&target, sizeof(target));
997         __elfN(puthdr)(lp, &target, sig, DRYRUN, seginfo.count, fp);
998
999         if (target.off + seginfo.vsize >= limit)
1000                 return (EFAULT);
1001
1002         /*
1003          * Allocate memory for building the header, fill it up,
1004          * and write it out.
1005          */
1006         target.off_max = target.off;
1007         target.off = 0;
1008         target.buf = kmalloc(target.off_max, M_TEMP, M_WAITOK|M_ZERO);
1009
1010         error = __elfN(corehdr)(lp, sig, fp, cred, seginfo.count, &target);
1011
1012         /* Write the contents of all of the writable segments. */
1013         if (error == 0) {
1014                 Elf_Phdr *php;
1015                 int i;
1016                 ssize_t nbytes;
1017
1018                 php = (Elf_Phdr *)(target.buf + sizeof(Elf_Ehdr)) + 1;
1019                 for (i = 0; i < seginfo.count; i++) {
1020                         error = fp_write(fp, (caddr_t)php->p_vaddr,
1021                                         php->p_filesz, &nbytes, UIO_USERSPACE);
1022                         if (error != 0)
1023                                 break;
1024                         php++;
1025                 }
1026         }
1027         kfree(target.buf, M_TEMP);
1028         
1029         return (error);
1030 }
1031
1032 /*
1033  * A callback for each_segment() to write out the segment's
1034  * program header entry.
1035  */
1036 static int
1037 cb_put_phdr(vm_map_entry_t entry, void *closure)
1038 {
1039         struct phdr_closure *phc = closure;
1040         Elf_Phdr *phdr = phc->phdr;
1041
1042         if (phc->phdr == phc->phdr_max)
1043                 return (EINVAL);
1044
1045         phc->offset = round_page(phc->offset);
1046
1047         phdr->p_type = PT_LOAD;
1048         phdr->p_offset = phc->offset;
1049         phdr->p_vaddr = entry->start;
1050         phdr->p_paddr = 0;
1051         phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1052         phdr->p_align = PAGE_SIZE;
1053         phdr->p_flags = 0;
1054         if (entry->protection & VM_PROT_READ)
1055                 phdr->p_flags |= PF_R;
1056         if (entry->protection & VM_PROT_WRITE)
1057                 phdr->p_flags |= PF_W;
1058         if (entry->protection & VM_PROT_EXECUTE)
1059                 phdr->p_flags |= PF_X;
1060
1061         phc->offset += phdr->p_filesz;
1062         ++phc->phdr;
1063         return (0);
1064 }
1065
1066 /*
1067  * A callback for each_writable_segment() to gather information about
1068  * the number of segments and their total size.
1069  */
1070 static int
1071 cb_size_segment(vm_map_entry_t entry, void *closure)
1072 {
1073         struct sseg_closure *ssc = closure;
1074
1075         ++ssc->count;
1076         ssc->vsize += entry->end - entry->start;
1077         return (0);
1078 }
1079
1080 /*
1081  * A callback for each_segment() to gather information about
1082  * the number of text segments.
1083  */
1084 static int
1085 cb_fpcount_segment(vm_map_entry_t entry, void *closure)
1086 {
1087         int *count = closure;
1088         struct vnode *vp;
1089
1090         if (entry->object.vm_object->type == OBJT_VNODE) {
1091                 vp = (struct vnode *)entry->object.vm_object->handle;
1092                 if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp)
1093                         return (0);
1094                 ++*count;
1095         }
1096         return (0);
1097 }
1098
1099 static int
1100 cb_put_fp(vm_map_entry_t entry, void *closure) 
1101 {
1102         struct fp_closure *fpc = closure;
1103         struct vn_hdr *vnh = fpc->vnh;
1104         Elf_Phdr *phdr = &vnh->vnh_phdr;
1105         struct vnode *vp;
1106         int error;
1107
1108         /*
1109          * If an entry represents a vnode then write out a file handle.
1110          *
1111          * If we are checkpointing a checkpoint-restored program we do
1112          * NOT record the filehandle for the old checkpoint vnode (which
1113          * is mapped all over the place).  Instead we rely on the fact
1114          * that a checkpoint-restored program does not mmap() the checkpt
1115          * vnode NOCORE, so its contents will be written out to the
1116          * new checkpoint file.  This is necessary because the 'old'
1117          * checkpoint file is typically destroyed when a new one is created
1118          * and thus cannot be used to restore the new checkpoint.
1119          *
1120          * Theoretically we could create a chain of checkpoint files and
1121          * operate the checkpointing operation kinda like an incremental
1122          * checkpoint, but a checkpoint restore would then likely wind up
1123          * referencing many prior checkpoint files and that is a bit over
1124          * the top for the purpose of the checkpoint API.
1125          */
1126         if (entry->object.vm_object->type == OBJT_VNODE) {
1127                 vp = (struct vnode *)entry->object.vm_object->handle;
1128                 if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp)
1129                         return (0);
1130                 if (vnh == fpc->vnh_max)
1131                         return (EINVAL);
1132
1133                 if (vp->v_mount)
1134                         vnh->vnh_fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
1135                 error = VFS_VPTOFH(vp, &vnh->vnh_fh.fh_fid);
1136                 if (error) {
1137                         char *freepath, *fullpath;
1138
1139                         if (vn_fullpath(curproc, vp, &fullpath, &freepath, 0)) {
1140                                 kprintf("Warning: coredump, error %d: cannot store file handle for vnode %p\n", error, vp);
1141                         } else {
1142                                 kprintf("Warning: coredump, error %d: cannot store file handle for %s\n", error, fullpath);
1143                                 kfree(freepath, M_TEMP);
1144                         }
1145                         error = 0;
1146                 }
1147
1148                 phdr->p_type = PT_LOAD;
1149                 phdr->p_offset = 0;        /* not written to core */
1150                 phdr->p_vaddr = entry->start;
1151                 phdr->p_paddr = 0;
1152                 phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1153                 phdr->p_align = PAGE_SIZE;
1154                 phdr->p_flags = 0;
1155                 if (entry->protection & VM_PROT_READ)
1156                         phdr->p_flags |= PF_R;
1157                 if (entry->protection & VM_PROT_WRITE)
1158                         phdr->p_flags |= PF_W;
1159                 if (entry->protection & VM_PROT_EXECUTE)
1160                         phdr->p_flags |= PF_X;
1161                 ++fpc->vnh;
1162                 ++fpc->count;
1163         }
1164         return (0);
1165 }
1166
1167 /*
1168  * For each writable segment in the process's memory map, call the given
1169  * function with a pointer to the map entry and some arbitrary
1170  * caller-supplied data.
1171  */
1172 static int
1173 each_segment(struct proc *p, segment_callback func, void *closure, int writable)
1174 {
1175         int error = 0;
1176         vm_map_t map = &p->p_vmspace->vm_map;
1177         vm_map_entry_t entry;
1178
1179         for (entry = map->header.next; error == 0 && entry != &map->header;
1180             entry = entry->next) {
1181                 vm_object_t obj;
1182
1183                 /*
1184                  * Don't dump inaccessible mappings, deal with legacy
1185                  * coredump mode.
1186                  *
1187                  * Note that read-only segments related to the elf binary
1188                  * are marked MAP_ENTRY_NOCOREDUMP now so we no longer
1189                  * need to arbitrarily ignore such segments.
1190                  */
1191                 if (elf_legacy_coredump) {
1192                         if (writable && (entry->protection & VM_PROT_RW) != VM_PROT_RW)
1193                                 continue;
1194                 } else {
1195                         if (writable && (entry->protection & VM_PROT_ALL) == 0)
1196                                 continue;
1197                 }
1198
1199                 /*
1200                  * Dont include memory segment in the coredump if
1201                  * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
1202                  * madvise(2).
1203                  *
1204                  * Currently we only dump normal VM object maps.  We do
1205                  * not dump submaps or virtual page tables.
1206                  */
1207                 if (writable && (entry->eflags & MAP_ENTRY_NOCOREDUMP))
1208                         continue;
1209                 if (entry->maptype != VM_MAPTYPE_NORMAL)
1210                         continue;
1211                 if ((obj = entry->object.vm_object) == NULL)
1212                         continue;
1213
1214                 /* Find the deepest backing object. */
1215                 while (obj->backing_object != NULL)
1216                         obj = obj->backing_object;
1217
1218                 /* Ignore memory-mapped devices and such things. */
1219                 if (obj->type != OBJT_DEFAULT &&
1220                     obj->type != OBJT_SWAP &&
1221                     obj->type != OBJT_VNODE)
1222                         continue;
1223
1224                 error = (*func)(entry, closure);
1225         }
1226         return (error);
1227 }
1228
1229 static
1230 void *
1231 target_reserve(elf_buf_t target, size_t bytes, int *error)
1232 {
1233     void *res = NULL;
1234
1235     if (target->buf) {
1236             if (target->off + bytes > target->off_max)
1237                     *error = EINVAL;
1238             else
1239                     res = target->buf + target->off;
1240     }
1241     target->off += bytes;
1242     return (res);
1243 }
1244
1245 /*
1246  * Write the core file header to the file, including padding up to
1247  * the page boundary.
1248  */
1249 static int
1250 __elfN(corehdr)(struct lwp *lp, int sig, struct file *fp, struct ucred *cred,
1251             int numsegs, elf_buf_t target)
1252 {
1253         int error;
1254         ssize_t nbytes;
1255
1256         /*
1257          * Fill in the header.  The fp is passed so we can detect and flag
1258          * a checkpoint file pointer within the core file itself, because
1259          * it may not be restored from the same file handle.
1260          */
1261         error = __elfN(puthdr)(lp, target, sig, WRITE, numsegs, fp);
1262
1263         /* Write it to the core file. */
1264         if (error == 0) {
1265                 error = fp_write(fp, target->buf, target->off, &nbytes,
1266                                  UIO_SYSSPACE);
1267         }
1268         return (error);
1269 }
1270
1271 static int
1272 __elfN(puthdr)(struct lwp *lp, elf_buf_t target, int sig, enum putmode mode,
1273     int numsegs, struct file *fp)
1274 {
1275         struct proc *p = lp->lwp_proc;
1276         int error = 0;
1277         size_t phoff;
1278         size_t noteoff;
1279         size_t notesz;
1280         Elf_Ehdr *ehdr;
1281         Elf_Phdr *phdr;
1282
1283         ehdr = target_reserve(target, sizeof(Elf_Ehdr), &error);
1284
1285         phoff = target->off;
1286         phdr = target_reserve(target, (numsegs + 1) * sizeof(Elf_Phdr), &error);
1287
1288         noteoff = target->off;
1289         if (error == 0)
1290                 elf_putallnotes(lp, target, sig, mode);
1291         notesz = target->off - noteoff;
1292
1293         /*
1294          * put extra cruft for dumping process state here 
1295          *  - we really want it be before all the program 
1296          *    mappings
1297          *  - we just need to update the offset accordingly
1298          *    and GDB will be none the wiser.
1299          */
1300         if (error == 0)
1301                 error = elf_puttextvp(p, target);
1302         if (error == 0)
1303                 error = elf_putsigs(lp, target);
1304         if (error == 0)
1305                 error = elf_putfiles(p, target, fp);
1306
1307         /*
1308          * Align up to a page boundary for the program segments.  The
1309          * actual data will be written to the outptu file, not to elf_buf_t,
1310          * so we do not have to do any further bounds checking.
1311          */
1312         target->off = round_page(target->off);
1313         if (error == 0 && ehdr != NULL) {
1314                 /*
1315                  * Fill in the ELF header.
1316                  */
1317                 ehdr->e_ident[EI_MAG0] = ELFMAG0;
1318                 ehdr->e_ident[EI_MAG1] = ELFMAG1;
1319                 ehdr->e_ident[EI_MAG2] = ELFMAG2;
1320                 ehdr->e_ident[EI_MAG3] = ELFMAG3;
1321                 ehdr->e_ident[EI_CLASS] = ELF_CLASS;
1322                 ehdr->e_ident[EI_DATA] = ELF_DATA;
1323                 ehdr->e_ident[EI_VERSION] = EV_CURRENT;
1324                 ehdr->e_ident[EI_OSABI] = ELFOSABI_NONE;
1325                 ehdr->e_ident[EI_ABIVERSION] = 0;
1326                 ehdr->e_ident[EI_PAD] = 0;
1327                 ehdr->e_type = ET_CORE;
1328                 ehdr->e_machine = ELF_ARCH;
1329                 ehdr->e_version = EV_CURRENT;
1330                 ehdr->e_entry = 0;
1331                 ehdr->e_phoff = phoff;
1332                 ehdr->e_flags = 0;
1333                 ehdr->e_ehsize = sizeof(Elf_Ehdr);
1334                 ehdr->e_phentsize = sizeof(Elf_Phdr);
1335                 ehdr->e_phnum = numsegs + 1;
1336                 ehdr->e_shentsize = sizeof(Elf_Shdr);
1337                 ehdr->e_shnum = 0;
1338                 ehdr->e_shstrndx = SHN_UNDEF;
1339         }
1340         if (error == 0 && phdr != NULL) {
1341                 /*
1342                  * Fill in the program header entries.
1343                  */
1344                 struct phdr_closure phc;
1345
1346                 /* The note segement. */
1347                 phdr->p_type = PT_NOTE;
1348                 phdr->p_offset = noteoff;
1349                 phdr->p_vaddr = 0;
1350                 phdr->p_paddr = 0;
1351                 phdr->p_filesz = notesz;
1352                 phdr->p_memsz = 0;
1353                 phdr->p_flags = 0;
1354                 phdr->p_align = 0;
1355                 ++phdr;
1356
1357                 /* All the writable segments from the program. */
1358                 phc.phdr = phdr;
1359                 phc.phdr_max = phdr + numsegs;
1360                 phc.offset = target->off;
1361                 each_segment(p, cb_put_phdr, &phc, 1);
1362         }
1363         return (error);
1364 }
1365
1366 /*
1367  * Append core dump notes to target ELF buffer or simply update target size
1368  * if dryrun selected.
1369  */
1370 static int
1371 elf_putallnotes(struct lwp *corelp, elf_buf_t target, int sig,
1372     enum putmode mode)
1373 {
1374         struct proc *p = corelp->lwp_proc;
1375         int error;
1376         struct {
1377                 prstatus_t status;
1378                 prfpregset_t fpregs;
1379                 prpsinfo_t psinfo;
1380         } *tmpdata;
1381         prstatus_t *status;
1382         prfpregset_t *fpregs;
1383         prpsinfo_t *psinfo;
1384         struct lwp *lp;
1385
1386         /*
1387          * Allocate temporary storage for notes on heap to avoid stack overflow.
1388          */
1389         if (mode != DRYRUN) {
1390                 tmpdata = kmalloc(sizeof(*tmpdata), M_TEMP, M_ZERO | M_WAITOK);
1391                 status = &tmpdata->status;
1392                 fpregs = &tmpdata->fpregs;
1393                 psinfo = &tmpdata->psinfo;
1394         } else {
1395                 tmpdata = NULL;
1396                 status = NULL;
1397                 fpregs = NULL;
1398                 psinfo = NULL;
1399         }
1400
1401         /*
1402          * Append LWP-agnostic note.
1403          */
1404         if (mode != DRYRUN) {
1405                 psinfo->pr_version = PRPSINFO_VERSION;
1406                 psinfo->pr_psinfosz = sizeof(prpsinfo_t);
1407                 strlcpy(psinfo->pr_fname, p->p_comm,
1408                         sizeof(psinfo->pr_fname));
1409                 /*
1410                  * XXX - We don't fill in the command line arguments
1411                  * properly yet.
1412                  */
1413                 strlcpy(psinfo->pr_psargs, p->p_comm,
1414                         sizeof(psinfo->pr_psargs));
1415         }
1416         error =
1417             __elfN(putnote)(target, "CORE", NT_PRPSINFO, psinfo, sizeof *psinfo);
1418         if (error)
1419                 goto exit;
1420
1421         /*
1422          * Append first note for LWP that triggered core so that it is
1423          * the selected one when the debugger starts.
1424          */
1425         if (mode != DRYRUN) {
1426                 status->pr_version = PRSTATUS_VERSION;
1427                 status->pr_statussz = sizeof(prstatus_t);
1428                 status->pr_gregsetsz = sizeof(gregset_t);
1429                 status->pr_fpregsetsz = sizeof(fpregset_t);
1430                 status->pr_osreldate = osreldate;
1431                 status->pr_cursig = sig;
1432                 /*
1433                  * XXX GDB needs unique pr_pid for each LWP and does not
1434                  * not support pr_pid==0 but lwp_tid can be 0, so hack unique
1435                  * value.
1436                  */
1437                 status->pr_pid = corelp->lwp_tid;
1438                 fill_regs(corelp, &status->pr_reg);
1439                 fill_fpregs(corelp, fpregs);
1440         }
1441         error =
1442             __elfN(putnote)(target, "CORE", NT_PRSTATUS, status, sizeof *status);
1443         if (error)
1444                 goto exit;
1445         error =
1446             __elfN(putnote)(target, "CORE", NT_FPREGSET, fpregs, sizeof *fpregs);
1447         if (error)
1448                 goto exit;
1449
1450         /*
1451          * Then append notes for other LWPs.
1452          */
1453         FOREACH_LWP_IN_PROC(lp, p) {
1454                 if (lp == corelp)
1455                         continue;
1456                 /* skip lwps being created */
1457                 if (lp->lwp_thread == NULL)
1458                         continue;
1459                 if (mode != DRYRUN) {
1460                         status->pr_pid = lp->lwp_tid;
1461                         fill_regs(lp, &status->pr_reg);
1462                         fill_fpregs(lp, fpregs);
1463                 }
1464                 error = __elfN(putnote)(target, "CORE", NT_PRSTATUS,
1465                                         status, sizeof *status);
1466                 if (error)
1467                         goto exit;
1468                 error = __elfN(putnote)(target, "CORE", NT_FPREGSET,
1469                                         fpregs, sizeof *fpregs);
1470                 if (error)
1471                         goto exit;
1472         }
1473
1474 exit:
1475         if (tmpdata != NULL)
1476                 kfree(tmpdata, M_TEMP);
1477         return (error);
1478 }
1479
1480 /*
1481  * Generate a note sub-structure.
1482  *
1483  * NOTE: 4-byte alignment.
1484  */
1485 static int
1486 __elfN(putnote)(elf_buf_t target, const char *name, int type,
1487             const void *desc, size_t descsz)
1488 {
1489         int error = 0;
1490         char *dst;
1491         Elf_Note note;
1492
1493         note.n_namesz = strlen(name) + 1;
1494         note.n_descsz = descsz;
1495         note.n_type = type;
1496         dst = target_reserve(target, sizeof(note), &error);
1497         if (dst != NULL)
1498                 bcopy(&note, dst, sizeof note);
1499         dst = target_reserve(target, note.n_namesz, &error);
1500         if (dst != NULL)
1501                 bcopy(name, dst, note.n_namesz);
1502         target->off = roundup2(target->off, sizeof(Elf_Word));
1503         dst = target_reserve(target, note.n_descsz, &error);
1504         if (dst != NULL)
1505                 bcopy(desc, dst, note.n_descsz);
1506         target->off = roundup2(target->off, sizeof(Elf_Word));
1507         return (error);
1508 }
1509
1510
1511 static int
1512 elf_putsigs(struct lwp *lp, elf_buf_t target)
1513 {
1514         /* XXX lwp handle more than one lwp */
1515         struct proc *p = lp->lwp_proc;
1516         int error = 0;
1517         struct ckpt_siginfo *csi;
1518
1519         csi = target_reserve(target, sizeof(struct ckpt_siginfo), &error);
1520         if (csi) {
1521                 csi->csi_ckptpisz = sizeof(struct ckpt_siginfo);
1522                 bcopy(p->p_sigacts, &csi->csi_sigacts, sizeof(*p->p_sigacts));
1523                 bcopy(&p->p_realtimer, &csi->csi_itimerval, sizeof(struct itimerval));
1524                 bcopy(&lp->lwp_sigmask, &csi->csi_sigmask,
1525                         sizeof(sigset_t));
1526                 csi->csi_sigparent = p->p_sigparent;
1527         }
1528         return (error);
1529 }
1530
1531 static int
1532 elf_putfiles(struct proc *p, elf_buf_t target, struct file *ckfp)
1533 {
1534         int error = 0;
1535         int i;
1536         struct ckpt_filehdr *cfh = NULL;
1537         struct ckpt_fileinfo *cfi;
1538         struct file *fp;        
1539         struct vnode *vp;
1540         /*
1541          * the duplicated loop is gross, but it was the only way
1542          * to eliminate uninitialized variable warnings 
1543          */
1544         cfh = target_reserve(target, sizeof(struct ckpt_filehdr), &error);
1545         if (cfh) {
1546                 cfh->cfh_nfiles = 0;            
1547         }
1548
1549         /*
1550          * ignore STDIN/STDERR/STDOUT.
1551          */
1552         for (i = 3; error == 0 && i < p->p_fd->fd_nfiles; i++) {
1553                 fp = holdfp(p->p_fd, i, -1);
1554                 if (fp == NULL)
1555                         continue;
1556                 /* 
1557                  * XXX Only checkpoint vnodes for now.
1558                  */
1559                 if (fp->f_type != DTYPE_VNODE) {
1560                         fdrop(fp);
1561                         continue;
1562                 }
1563                 cfi = target_reserve(target, sizeof(struct ckpt_fileinfo),
1564                                         &error);
1565                 if (cfi == NULL) {
1566                         fdrop(fp);
1567                         continue;
1568                 }
1569                 cfi->cfi_index = -1;
1570                 cfi->cfi_type = fp->f_type;
1571                 cfi->cfi_flags = fp->f_flag;
1572                 cfi->cfi_offset = fp->f_offset;
1573                 cfi->cfi_ckflags = 0;
1574
1575                 if (fp == ckfp)
1576                         cfi->cfi_ckflags |= CKFIF_ISCKPTFD;
1577                 /* f_count and f_msgcount should not be saved/restored */
1578                 /* XXX save cred info */
1579
1580                 switch(fp->f_type) {
1581                 case DTYPE_VNODE:
1582                         vp = (struct vnode *)fp->f_data;
1583                         /*
1584                          * it looks like a bug in ptrace is marking 
1585                          * a non-vnode as a vnode - until we find the 
1586                          * root cause this will at least prevent
1587                          * further panics from truss
1588                          */
1589                         if (vp == NULL || vp->v_mount == NULL)
1590                                 break;
1591                         cfh->cfh_nfiles++;
1592                         cfi->cfi_index = i;
1593                         cfi->cfi_fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
1594                         error = VFS_VPTOFH(vp, &cfi->cfi_fh.fh_fid);
1595                         break;
1596                 default:
1597                         break;
1598                 }
1599                 fdrop(fp);
1600         }
1601         return (error);
1602 }
1603
1604 static int
1605 elf_puttextvp(struct proc *p, elf_buf_t target)
1606 {
1607         int error = 0;
1608         int *vn_count;
1609         struct fp_closure fpc;
1610         struct ckpt_vminfo *vminfo;
1611
1612         vminfo = target_reserve(target, sizeof(struct ckpt_vminfo), &error);
1613         if (vminfo != NULL) {
1614                 vminfo->cvm_dsize = p->p_vmspace->vm_dsize;
1615                 vminfo->cvm_tsize = p->p_vmspace->vm_tsize;
1616                 vminfo->cvm_daddr = p->p_vmspace->vm_daddr;
1617                 vminfo->cvm_taddr = p->p_vmspace->vm_taddr;
1618         }
1619
1620         fpc.count = 0;
1621         vn_count = target_reserve(target, sizeof(int), &error);
1622         if (target->buf != NULL) {
1623                 fpc.vnh = (struct vn_hdr *)(target->buf + target->off);
1624                 fpc.vnh_max = fpc.vnh + 
1625                         (target->off_max - target->off) / sizeof(struct vn_hdr);
1626                 error = each_segment(p, cb_put_fp, &fpc, 0);
1627                 if (vn_count)
1628                         *vn_count = fpc.count;
1629         } else {
1630                 error = each_segment(p, cb_fpcount_segment, &fpc.count, 0);
1631         }
1632         target->off += fpc.count * sizeof(struct vn_hdr);
1633         return (error);
1634 }
1635
1636 /*
1637  * Try to find the appropriate ABI-note section for checknote,
1638  * The entire image is searched if necessary, not only the first page.
1639  */
1640 static boolean_t
1641 __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *checknote,
1642     int32_t *osrel)
1643 {
1644         boolean_t valid_note_found;
1645         const Elf_Phdr *phdr, *pnote;
1646         const Elf_Ehdr *hdr;
1647         int i;
1648
1649         valid_note_found = FALSE;
1650         hdr = (const Elf_Ehdr *)imgp->image_header;
1651         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
1652
1653         for (i = 0; i < hdr->e_phnum; i++) {
1654                 if (phdr[i].p_type == PT_NOTE) {
1655                         pnote = &phdr[i];
1656                         valid_note_found = check_PT_NOTE (imgp, checknote,
1657                                 osrel, pnote);
1658                         if (valid_note_found)
1659                                 break;
1660                 }
1661         }
1662         return valid_note_found;
1663 }
1664
1665 static boolean_t
1666 check_PT_NOTE(struct image_params *imgp, Elf_Brandnote *checknote,
1667     int32_t *osrel, const Elf_Phdr * pnote)
1668 {
1669         boolean_t limited_to_first_page;
1670         boolean_t found = FALSE;
1671         const Elf_Note *note, *note0, *note_end;
1672         const char *note_name;
1673         __ElfN(Off) noteloc, firstloc;
1674         __ElfN(Size) notesz, firstlen, endbyte;
1675         struct lwbuf *lwb;
1676         struct lwbuf lwb_cache;
1677         const char *page;
1678         char *data = NULL;
1679         int n;
1680
1681         notesz = pnote->p_filesz;
1682         noteloc = pnote->p_offset;
1683         endbyte = noteloc + notesz;
1684         limited_to_first_page = noteloc < PAGE_SIZE && endbyte < PAGE_SIZE;
1685
1686         if (limited_to_first_page) {
1687                 note = (const Elf_Note *)(imgp->image_header + noteloc);
1688                 note_end = (const Elf_Note *)(imgp->image_header + endbyte);
1689                 note0 = note;
1690         } else {
1691                 firstloc = noteloc & PAGE_MASK;
1692                 firstlen = PAGE_SIZE - firstloc;
1693                 if (notesz < sizeof(Elf_Note) || notesz > PAGE_SIZE)
1694                         return (FALSE);
1695
1696                 lwb = &lwb_cache;
1697                 if (exec_map_page(imgp, noteloc >> PAGE_SHIFT, &lwb, &page))
1698                         return (FALSE);
1699                 if (firstlen < notesz) {         /* crosses page boundary */
1700                         data = kmalloc(notesz, M_TEMP, M_WAITOK);
1701                         bcopy(page + firstloc, data, firstlen);
1702
1703                         exec_unmap_page(lwb);
1704                         lwb = &lwb_cache;
1705                         if (exec_map_page(imgp, (noteloc >> PAGE_SHIFT) + 1,
1706                                 &lwb, &page)) {
1707                                 kfree(data, M_TEMP);
1708                                 return (FALSE);
1709                         }
1710                         bcopy(page, data + firstlen, notesz - firstlen);
1711                         note = note0 = (const Elf_Note *)(data);
1712                         note_end = (const Elf_Note *)(data + notesz);
1713                 } else {
1714                         note = note0 = (const Elf_Note *)(page + firstloc);
1715                         note_end = (const Elf_Note *)(page + firstloc +
1716                                 firstlen);
1717                 }
1718         }
1719
1720         for (n = 0; n < 100 && note >= note0 && note < note_end; n++) {
1721                 if (!aligned(note, Elf32_Addr))
1722                         break;
1723                 note_name = (const char *)(note + 1);
1724
1725                 if (note->n_namesz == checknote->hdr.n_namesz
1726                     && note->n_descsz == checknote->hdr.n_descsz
1727                     && note->n_type == checknote->hdr.n_type
1728                     && (strncmp(checknote->vendor, note_name,
1729                         checknote->hdr.n_namesz) == 0)) {
1730                         /* Fetch osreldata from ABI.note-tag */
1731                         if ((checknote->flags & BN_TRANSLATE_OSREL) != 0 &&
1732                             checknote->trans_osrel != NULL)
1733                                 checknote->trans_osrel(note, osrel);
1734                         found = TRUE;
1735                         break;
1736                 }
1737                 note = (const Elf_Note *)((const char *)(note + 1) +
1738                     roundup2(note->n_namesz, sizeof(Elf32_Addr)) +
1739                     roundup2(note->n_descsz, sizeof(Elf32_Addr)));
1740         }
1741
1742         if (!limited_to_first_page) {
1743                 if (data != NULL)
1744                         kfree(data, M_TEMP);
1745                 exec_unmap_page(lwb);
1746         }
1747         return (found);
1748 }
1749
1750 /*
1751  * The interpreter program header may be located beyond the first page, so
1752  * regardless of its location, a copy of the interpreter path is created so
1753  * that it may be safely referenced by the calling function in all case.  The
1754  * memory is allocated by calling function, and the copying is done here.
1755  */
1756 static boolean_t
1757 extract_interpreter(struct image_params *imgp, const Elf_Phdr *pinterpreter,
1758     char *data)
1759 {
1760         boolean_t limited_to_first_page;
1761         const boolean_t result_success = FALSE;
1762         const boolean_t result_failure = TRUE;
1763         __ElfN(Off) pathloc, firstloc;
1764         __ElfN(Size) pathsz, firstlen, endbyte;
1765         struct lwbuf *lwb;
1766         struct lwbuf lwb_cache;
1767         const char *page;
1768
1769         pathsz  = pinterpreter->p_filesz;
1770         pathloc = pinterpreter->p_offset;
1771         endbyte = pathloc + pathsz;
1772
1773         limited_to_first_page = pathloc < PAGE_SIZE && endbyte < PAGE_SIZE;
1774         if (limited_to_first_page) {
1775                 bcopy(imgp->image_header + pathloc, data, pathsz);
1776                 return (result_success);
1777         }
1778
1779         firstloc = pathloc & PAGE_MASK;
1780         firstlen = PAGE_SIZE - firstloc;
1781
1782         lwb = &lwb_cache;
1783         if (exec_map_page(imgp, pathloc >> PAGE_SHIFT, &lwb, &page))
1784                 return (result_failure);
1785
1786         if (firstlen < pathsz) {         /* crosses page boundary */
1787                 bcopy(page + firstloc, data, firstlen);
1788
1789                 exec_unmap_page(lwb);
1790                 lwb = &lwb_cache;
1791                 if (exec_map_page(imgp, (pathloc >> PAGE_SHIFT) + 1, &lwb,
1792                         &page))
1793                         return (result_failure);
1794                 bcopy(page, data + firstlen, pathsz - firstlen);
1795         } else
1796                 bcopy(page + firstloc, data, pathsz);
1797
1798         exec_unmap_page(lwb);
1799         return (result_success);
1800 }
1801
1802 static boolean_t
1803 __elfN(bsd_trans_osrel)(const Elf_Note *note, int32_t *osrel)
1804 {
1805         uintptr_t p;
1806
1807         p = (uintptr_t)(note + 1);
1808         p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
1809         *osrel = *(const int32_t *)(p);
1810
1811         return (TRUE);
1812 }
1813
1814 /*
1815  * Tell kern_execve.c about it, with a little help from the linker.
1816  */
1817 #if defined(__x86_64__)
1818 static struct execsw elf_execsw = {exec_elf64_imgact, "ELF64"};
1819 EXEC_SET_ORDERED(elf64, elf_execsw, SI_ORDER_FIRST);
1820 #else /* i386 assumed */
1821 static struct execsw elf_execsw = {exec_elf32_imgact, "ELF32"};
1822 EXEC_SET_ORDERED(elf32, elf_execsw, SI_ORDER_FIRST);
1823 #endif