]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/kern/imgact_elf.c
MFC r238527:
[FreeBSD/stable/9.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
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include "opt_capsicum.h"
35 #include "opt_compat.h"
36 #include "opt_core.h"
37
38 #include <sys/param.h>
39 #include <sys/capability.h>
40 #include <sys/exec.h>
41 #include <sys/fcntl.h>
42 #include <sys/imgact.h>
43 #include <sys/imgact_elf.h>
44 #include <sys/kernel.h>
45 #include <sys/lock.h>
46 #include <sys/malloc.h>
47 #include <sys/mount.h>
48 #include <sys/mutex.h>
49 #include <sys/mman.h>
50 #include <sys/namei.h>
51 #include <sys/pioctl.h>
52 #include <sys/proc.h>
53 #include <sys/procfs.h>
54 #include <sys/racct.h>
55 #include <sys/resourcevar.h>
56 #include <sys/sf_buf.h>
57 #include <sys/smp.h>
58 #include <sys/systm.h>
59 #include <sys/signalvar.h>
60 #include <sys/stat.h>
61 #include <sys/sx.h>
62 #include <sys/syscall.h>
63 #include <sys/sysctl.h>
64 #include <sys/sysent.h>
65 #include <sys/vnode.h>
66 #include <sys/syslog.h>
67 #include <sys/eventhandler.h>
68
69 #include <net/zlib.h>
70
71 #include <vm/vm.h>
72 #include <vm/vm_kern.h>
73 #include <vm/vm_param.h>
74 #include <vm/pmap.h>
75 #include <vm/vm_map.h>
76 #include <vm/vm_object.h>
77 #include <vm/vm_extern.h>
78
79 #include <machine/elf.h>
80 #include <machine/md_var.h>
81
82 #define OLD_EI_BRAND    8
83
84 static int __elfN(check_header)(const Elf_Ehdr *hdr);
85 static Elf_Brandinfo *__elfN(get_brandinfo)(struct image_params *imgp,
86     const char *interp, int32_t *osrel);
87 static int __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
88     u_long *entry, size_t pagesize);
89 static int __elfN(load_section)(struct vmspace *vmspace, vm_object_t object,
90     vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz,
91     vm_prot_t prot, size_t pagesize);
92 static int __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp);
93 static boolean_t __elfN(freebsd_trans_osrel)(const Elf_Note *note,
94     int32_t *osrel);
95 static boolean_t kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel);
96 static boolean_t __elfN(check_note)(struct image_params *imgp,
97     Elf_Brandnote *checknote, int32_t *osrel);
98 static vm_prot_t __elfN(trans_prot)(Elf_Word);
99 static Elf_Word __elfN(untrans_prot)(vm_prot_t);
100
101 SYSCTL_NODE(_kern, OID_AUTO, __CONCAT(elf, __ELF_WORD_SIZE), CTLFLAG_RW, 0,
102     "");
103
104 #ifdef COMPRESS_USER_CORES
105 static int compress_core(gzFile, char *, char *, unsigned int,
106     struct thread * td);
107 #define CORE_BUF_SIZE   (16 * 1024)
108 #endif
109
110 int __elfN(fallback_brand) = -1;
111 SYSCTL_INT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO,
112     fallback_brand, CTLFLAG_RW, &__elfN(fallback_brand), 0,
113     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) " brand of last resort");
114 TUNABLE_INT("kern.elf" __XSTRING(__ELF_WORD_SIZE) ".fallback_brand",
115     &__elfN(fallback_brand));
116
117 static int elf_legacy_coredump = 0;
118 SYSCTL_INT(_debug, OID_AUTO, __elfN(legacy_coredump), CTLFLAG_RW, 
119     &elf_legacy_coredump, 0, "");
120
121 int __elfN(nxstack) =
122 #if defined(__amd64__) || defined(__powerpc64__) /* both 64 and 32 bit */
123         1;
124 #else
125         0;
126 #endif
127 SYSCTL_INT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO,
128     nxstack, CTLFLAG_RW, &__elfN(nxstack), 0,
129     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) ": enable non-executable stack");
130
131 #if __ELF_WORD_SIZE == 32
132 #if defined(__amd64__) || defined(__ia64__)
133 int i386_read_exec = 0;
134 SYSCTL_INT(_kern_elf32, OID_AUTO, read_exec, CTLFLAG_RW, &i386_read_exec, 0,
135     "enable execution from readable segments");
136 #endif
137 #endif
138
139 static Elf_Brandinfo *elf_brand_list[MAX_BRANDS];
140
141 #define trunc_page_ps(va, ps)   ((va) & ~(ps - 1))
142 #define round_page_ps(va, ps)   (((va) + (ps - 1)) & ~(ps - 1))
143 #define aligned(a, t)   (trunc_page_ps((u_long)(a), sizeof(t)) == (u_long)(a))
144
145 static const char FREEBSD_ABI_VENDOR[] = "FreeBSD";
146
147 Elf_Brandnote __elfN(freebsd_brandnote) = {
148         .hdr.n_namesz   = sizeof(FREEBSD_ABI_VENDOR),
149         .hdr.n_descsz   = sizeof(int32_t),
150         .hdr.n_type     = 1,
151         .vendor         = FREEBSD_ABI_VENDOR,
152         .flags          = BN_TRANSLATE_OSREL,
153         .trans_osrel    = __elfN(freebsd_trans_osrel)
154 };
155
156 static boolean_t
157 __elfN(freebsd_trans_osrel)(const Elf_Note *note, int32_t *osrel)
158 {
159         uintptr_t p;
160
161         p = (uintptr_t)(note + 1);
162         p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
163         *osrel = *(const int32_t *)(p);
164
165         return (TRUE);
166 }
167
168 static const char GNU_ABI_VENDOR[] = "GNU";
169 static int GNU_KFREEBSD_ABI_DESC = 3;
170
171 Elf_Brandnote __elfN(kfreebsd_brandnote) = {
172         .hdr.n_namesz   = sizeof(GNU_ABI_VENDOR),
173         .hdr.n_descsz   = 16,   /* XXX at least 16 */
174         .hdr.n_type     = 1,
175         .vendor         = GNU_ABI_VENDOR,
176         .flags          = BN_TRANSLATE_OSREL,
177         .trans_osrel    = kfreebsd_trans_osrel
178 };
179
180 static boolean_t
181 kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel)
182 {
183         const Elf32_Word *desc;
184         uintptr_t p;
185
186         p = (uintptr_t)(note + 1);
187         p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
188
189         desc = (const Elf32_Word *)p;
190         if (desc[0] != GNU_KFREEBSD_ABI_DESC)
191                 return (FALSE);
192
193         /*
194          * Debian GNU/kFreeBSD embed the earliest compatible kernel version
195          * (__FreeBSD_version: <major><two digit minor>Rxx) in the LSB way.
196          */
197         *osrel = desc[1] * 100000 + desc[2] * 1000 + desc[3];
198
199         return (TRUE);
200 }
201
202 int
203 __elfN(insert_brand_entry)(Elf_Brandinfo *entry)
204 {
205         int i;
206
207         for (i = 0; i < MAX_BRANDS; i++) {
208                 if (elf_brand_list[i] == NULL) {
209                         elf_brand_list[i] = entry;
210                         break;
211                 }
212         }
213         if (i == MAX_BRANDS) {
214                 printf("WARNING: %s: could not insert brandinfo entry: %p\n",
215                         __func__, entry);
216                 return (-1);
217         }
218         return (0);
219 }
220
221 int
222 __elfN(remove_brand_entry)(Elf_Brandinfo *entry)
223 {
224         int i;
225
226         for (i = 0; i < MAX_BRANDS; i++) {
227                 if (elf_brand_list[i] == entry) {
228                         elf_brand_list[i] = NULL;
229                         break;
230                 }
231         }
232         if (i == MAX_BRANDS)
233                 return (-1);
234         return (0);
235 }
236
237 int
238 __elfN(brand_inuse)(Elf_Brandinfo *entry)
239 {
240         struct proc *p;
241         int rval = FALSE;
242
243         sx_slock(&allproc_lock);
244         FOREACH_PROC_IN_SYSTEM(p) {
245                 if (p->p_sysent == entry->sysvec) {
246                         rval = TRUE;
247                         break;
248                 }
249         }
250         sx_sunlock(&allproc_lock);
251
252         return (rval);
253 }
254
255 static Elf_Brandinfo *
256 __elfN(get_brandinfo)(struct image_params *imgp, const char *interp,
257     int32_t *osrel)
258 {
259         const Elf_Ehdr *hdr = (const Elf_Ehdr *)imgp->image_header;
260         Elf_Brandinfo *bi;
261         boolean_t ret;
262         int i;
263
264         /*
265          * We support four types of branding -- (1) the ELF EI_OSABI field
266          * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string
267          * branding w/in the ELF header, (3) path of the `interp_path'
268          * field, and (4) the ".note.ABI-tag" ELF section.
269          */
270
271         /* Look for an ".note.ABI-tag" ELF section */
272         for (i = 0; i < MAX_BRANDS; i++) {
273                 bi = elf_brand_list[i];
274                 if (bi == NULL)
275                         continue;
276                 if (hdr->e_machine == bi->machine && (bi->flags &
277                     (BI_BRAND_NOTE|BI_BRAND_NOTE_MANDATORY)) != 0) {
278                         ret = __elfN(check_note)(imgp, bi->brand_note, osrel);
279                         if (ret)
280                                 return (bi);
281                 }
282         }
283
284         /* If the executable has a brand, search for it in the brand list. */
285         for (i = 0; i < MAX_BRANDS; i++) {
286                 bi = elf_brand_list[i];
287                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
288                         continue;
289                 if (hdr->e_machine == bi->machine &&
290                     (hdr->e_ident[EI_OSABI] == bi->brand ||
291                     strncmp((const char *)&hdr->e_ident[OLD_EI_BRAND],
292                     bi->compat_3_brand, strlen(bi->compat_3_brand)) == 0))
293                         return (bi);
294         }
295
296         /* Lacking a known brand, search for a recognized interpreter. */
297         if (interp != NULL) {
298                 for (i = 0; i < MAX_BRANDS; i++) {
299                         bi = elf_brand_list[i];
300                         if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
301                                 continue;
302                         if (hdr->e_machine == bi->machine &&
303                             strcmp(interp, bi->interp_path) == 0)
304                                 return (bi);
305                 }
306         }
307
308         /* Lacking a recognized interpreter, try the default brand */
309         for (i = 0; i < MAX_BRANDS; i++) {
310                 bi = elf_brand_list[i];
311                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
312                         continue;
313                 if (hdr->e_machine == bi->machine &&
314                     __elfN(fallback_brand) == bi->brand)
315                         return (bi);
316         }
317         return (NULL);
318 }
319
320 static int
321 __elfN(check_header)(const Elf_Ehdr *hdr)
322 {
323         Elf_Brandinfo *bi;
324         int i;
325
326         if (!IS_ELF(*hdr) ||
327             hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
328             hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
329             hdr->e_ident[EI_VERSION] != EV_CURRENT ||
330             hdr->e_phentsize != sizeof(Elf_Phdr) ||
331             hdr->e_version != ELF_TARG_VER)
332                 return (ENOEXEC);
333
334         /*
335          * Make sure we have at least one brand for this machine.
336          */
337
338         for (i = 0; i < MAX_BRANDS; i++) {
339                 bi = elf_brand_list[i];
340                 if (bi != NULL && bi->machine == hdr->e_machine)
341                         break;
342         }
343         if (i == MAX_BRANDS)
344                 return (ENOEXEC);
345
346         return (0);
347 }
348
349 static int
350 __elfN(map_partial)(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
351     vm_offset_t start, vm_offset_t end, vm_prot_t prot)
352 {
353         struct sf_buf *sf;
354         int error;
355         vm_offset_t off;
356
357         /*
358          * Create the page if it doesn't exist yet. Ignore errors.
359          */
360         vm_map_lock(map);
361         vm_map_insert(map, NULL, 0, trunc_page(start), round_page(end),
362             VM_PROT_ALL, VM_PROT_ALL, 0);
363         vm_map_unlock(map);
364
365         /*
366          * Find the page from the underlying object.
367          */
368         if (object) {
369                 sf = vm_imgact_map_page(object, offset);
370                 if (sf == NULL)
371                         return (KERN_FAILURE);
372                 off = offset - trunc_page(offset);
373                 error = copyout((caddr_t)sf_buf_kva(sf) + off, (caddr_t)start,
374                     end - start);
375                 vm_imgact_unmap_page(sf);
376                 if (error) {
377                         return (KERN_FAILURE);
378                 }
379         }
380
381         return (KERN_SUCCESS);
382 }
383
384 static int
385 __elfN(map_insert)(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
386     vm_offset_t start, vm_offset_t end, vm_prot_t prot, int cow)
387 {
388         struct sf_buf *sf;
389         vm_offset_t off;
390         vm_size_t sz;
391         int error, rv;
392
393         if (start != trunc_page(start)) {
394                 rv = __elfN(map_partial)(map, object, offset, start,
395                     round_page(start), prot);
396                 if (rv)
397                         return (rv);
398                 offset += round_page(start) - start;
399                 start = round_page(start);
400         }
401         if (end != round_page(end)) {
402                 rv = __elfN(map_partial)(map, object, offset +
403                     trunc_page(end) - start, trunc_page(end), end, prot);
404                 if (rv)
405                         return (rv);
406                 end = trunc_page(end);
407         }
408         if (end > start) {
409                 if (offset & PAGE_MASK) {
410                         /*
411                          * The mapping is not page aligned. This means we have
412                          * to copy the data. Sigh.
413                          */
414                         rv = vm_map_find(map, NULL, 0, &start, end - start,
415                             FALSE, prot | VM_PROT_WRITE, VM_PROT_ALL, 0);
416                         if (rv)
417                                 return (rv);
418                         if (object == NULL)
419                                 return (KERN_SUCCESS);
420                         for (; start < end; start += sz) {
421                                 sf = vm_imgact_map_page(object, offset);
422                                 if (sf == NULL)
423                                         return (KERN_FAILURE);
424                                 off = offset - trunc_page(offset);
425                                 sz = end - start;
426                                 if (sz > PAGE_SIZE - off)
427                                         sz = PAGE_SIZE - off;
428                                 error = copyout((caddr_t)sf_buf_kva(sf) + off,
429                                     (caddr_t)start, sz);
430                                 vm_imgact_unmap_page(sf);
431                                 if (error) {
432                                         return (KERN_FAILURE);
433                                 }
434                                 offset += sz;
435                         }
436                         rv = KERN_SUCCESS;
437                 } else {
438                         vm_object_reference(object);
439                         vm_map_lock(map);
440                         rv = vm_map_insert(map, object, offset, start, end,
441                             prot, VM_PROT_ALL, cow);
442                         vm_map_unlock(map);
443                         if (rv != KERN_SUCCESS)
444                                 vm_object_deallocate(object);
445                 }
446                 return (rv);
447         } else {
448                 return (KERN_SUCCESS);
449         }
450 }
451
452 static int
453 __elfN(load_section)(struct vmspace *vmspace,
454         vm_object_t object, vm_offset_t offset,
455         caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot,
456         size_t pagesize)
457 {
458         struct sf_buf *sf;
459         size_t map_len;
460         vm_offset_t map_addr;
461         int error, rv, cow;
462         size_t copy_len;
463         vm_offset_t file_addr;
464
465         /*
466          * It's necessary to fail if the filsz + offset taken from the
467          * header is greater than the actual file pager object's size.
468          * If we were to allow this, then the vm_map_find() below would
469          * walk right off the end of the file object and into the ether.
470          *
471          * While I'm here, might as well check for something else that
472          * is invalid: filsz cannot be greater than memsz.
473          */
474         if ((off_t)filsz + offset > object->un_pager.vnp.vnp_size ||
475             filsz > memsz) {
476                 uprintf("elf_load_section: truncated ELF file\n");
477                 return (ENOEXEC);
478         }
479
480         map_addr = trunc_page_ps((vm_offset_t)vmaddr, pagesize);
481         file_addr = trunc_page_ps(offset, pagesize);
482
483         /*
484          * We have two choices.  We can either clear the data in the last page
485          * of an oversized mapping, or we can start the anon mapping a page
486          * early and copy the initialized data into that first page.  We
487          * choose the second..
488          */
489         if (memsz > filsz)
490                 map_len = trunc_page_ps(offset + filsz, pagesize) - file_addr;
491         else
492                 map_len = round_page_ps(offset + filsz, pagesize) - file_addr;
493
494         if (map_len != 0) {
495                 /* cow flags: don't dump readonly sections in core */
496                 cow = MAP_COPY_ON_WRITE | MAP_PREFAULT |
497                     (prot & VM_PROT_WRITE ? 0 : MAP_DISABLE_COREDUMP);
498
499                 rv = __elfN(map_insert)(&vmspace->vm_map,
500                                       object,
501                                       file_addr,        /* file offset */
502                                       map_addr,         /* virtual start */
503                                       map_addr + map_len,/* virtual end */
504                                       prot,
505                                       cow);
506                 if (rv != KERN_SUCCESS)
507                         return (EINVAL);
508
509                 /* we can stop now if we've covered it all */
510                 if (memsz == filsz) {
511                         return (0);
512                 }
513         }
514
515
516         /*
517          * We have to get the remaining bit of the file into the first part
518          * of the oversized map segment.  This is normally because the .data
519          * segment in the file is extended to provide bss.  It's a neat idea
520          * to try and save a page, but it's a pain in the behind to implement.
521          */
522         copy_len = (offset + filsz) - trunc_page_ps(offset + filsz, pagesize);
523         map_addr = trunc_page_ps((vm_offset_t)vmaddr + filsz, pagesize);
524         map_len = round_page_ps((vm_offset_t)vmaddr + memsz, pagesize) -
525             map_addr;
526
527         /* This had damn well better be true! */
528         if (map_len != 0) {
529                 rv = __elfN(map_insert)(&vmspace->vm_map, NULL, 0, map_addr,
530                     map_addr + map_len, VM_PROT_ALL, 0);
531                 if (rv != KERN_SUCCESS) {
532                         return (EINVAL);
533                 }
534         }
535
536         if (copy_len != 0) {
537                 vm_offset_t off;
538
539                 sf = vm_imgact_map_page(object, offset + filsz);
540                 if (sf == NULL)
541                         return (EIO);
542
543                 /* send the page fragment to user space */
544                 off = trunc_page_ps(offset + filsz, pagesize) -
545                     trunc_page(offset + filsz);
546                 error = copyout((caddr_t)sf_buf_kva(sf) + off,
547                     (caddr_t)map_addr, copy_len);
548                 vm_imgact_unmap_page(sf);
549                 if (error) {
550                         return (error);
551                 }
552         }
553
554         /*
555          * set it to the specified protection.
556          * XXX had better undo the damage from pasting over the cracks here!
557          */
558         vm_map_protect(&vmspace->vm_map, trunc_page(map_addr),
559             round_page(map_addr + map_len),  prot, FALSE);
560
561         return (0);
562 }
563
564 /*
565  * Load the file "file" into memory.  It may be either a shared object
566  * or an executable.
567  *
568  * The "addr" reference parameter is in/out.  On entry, it specifies
569  * the address where a shared object should be loaded.  If the file is
570  * an executable, this value is ignored.  On exit, "addr" specifies
571  * where the file was actually loaded.
572  *
573  * The "entry" reference parameter is out only.  On exit, it specifies
574  * the entry point for the loaded file.
575  */
576 static int
577 __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
578         u_long *entry, size_t pagesize)
579 {
580         struct {
581                 struct nameidata nd;
582                 struct vattr attr;
583                 struct image_params image_params;
584         } *tempdata;
585         const Elf_Ehdr *hdr = NULL;
586         const Elf_Phdr *phdr = NULL;
587         struct nameidata *nd;
588         struct vmspace *vmspace = p->p_vmspace;
589         struct vattr *attr;
590         struct image_params *imgp;
591         vm_prot_t prot;
592         u_long rbase;
593         u_long base_addr = 0;
594         int vfslocked, error, i, numsegs;
595
596 #ifdef CAPABILITY_MODE
597         /*
598          * XXXJA: This check can go away once we are sufficiently confident
599          * that the checks in namei() are correct.
600          */
601         if (IN_CAPABILITY_MODE(curthread))
602                 return (ECAPMODE);
603 #endif
604
605         tempdata = malloc(sizeof(*tempdata), M_TEMP, M_WAITOK);
606         nd = &tempdata->nd;
607         attr = &tempdata->attr;
608         imgp = &tempdata->image_params;
609
610         /*
611          * Initialize part of the common data
612          */
613         imgp->proc = p;
614         imgp->attr = attr;
615         imgp->firstpage = NULL;
616         imgp->image_header = NULL;
617         imgp->object = NULL;
618         imgp->execlabel = NULL;
619
620         NDINIT(nd, LOOKUP, MPSAFE|LOCKLEAF|FOLLOW, UIO_SYSSPACE, file,
621             curthread);
622         vfslocked = 0;
623         if ((error = namei(nd)) != 0) {
624                 nd->ni_vp = NULL;
625                 goto fail;
626         }
627         vfslocked = NDHASGIANT(nd);
628         NDFREE(nd, NDF_ONLY_PNBUF);
629         imgp->vp = nd->ni_vp;
630
631         /*
632          * Check permissions, modes, uid, etc on the file, and "open" it.
633          */
634         error = exec_check_permissions(imgp);
635         if (error)
636                 goto fail;
637
638         error = exec_map_first_page(imgp);
639         if (error)
640                 goto fail;
641
642         /*
643          * Also make certain that the interpreter stays the same, so set
644          * its VV_TEXT flag, too.
645          */
646         nd->ni_vp->v_vflag |= VV_TEXT;
647
648         imgp->object = nd->ni_vp->v_object;
649
650         hdr = (const Elf_Ehdr *)imgp->image_header;
651         if ((error = __elfN(check_header)(hdr)) != 0)
652                 goto fail;
653         if (hdr->e_type == ET_DYN)
654                 rbase = *addr;
655         else if (hdr->e_type == ET_EXEC)
656                 rbase = 0;
657         else {
658                 error = ENOEXEC;
659                 goto fail;
660         }
661
662         /* Only support headers that fit within first page for now      */
663         /*    (multiplication of two Elf_Half fields will not overflow) */
664         if ((hdr->e_phoff > PAGE_SIZE) ||
665             (hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE - hdr->e_phoff) {
666                 error = ENOEXEC;
667                 goto fail;
668         }
669
670         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
671         if (!aligned(phdr, Elf_Addr)) {
672                 error = ENOEXEC;
673                 goto fail;
674         }
675
676         for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) {
677                 if (phdr[i].p_type == PT_LOAD && phdr[i].p_memsz != 0) {
678                         /* Loadable segment */
679                         prot = __elfN(trans_prot)(phdr[i].p_flags);
680                         if ((error = __elfN(load_section)(vmspace,
681                             imgp->object, phdr[i].p_offset,
682                             (caddr_t)(uintptr_t)phdr[i].p_vaddr + rbase,
683                             phdr[i].p_memsz, phdr[i].p_filesz, prot,
684                             pagesize)) != 0)
685                                 goto fail;
686                         /*
687                          * Establish the base address if this is the
688                          * first segment.
689                          */
690                         if (numsegs == 0)
691                                 base_addr = trunc_page(phdr[i].p_vaddr +
692                                     rbase);
693                         numsegs++;
694                 }
695         }
696         *addr = base_addr;
697         *entry = (unsigned long)hdr->e_entry + rbase;
698
699 fail:
700         if (imgp->firstpage)
701                 exec_unmap_first_page(imgp);
702
703         if (nd->ni_vp)
704                 vput(nd->ni_vp);
705
706         VFS_UNLOCK_GIANT(vfslocked);
707         free(tempdata, M_TEMP);
708
709         return (error);
710 }
711
712 static int
713 __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp)
714 {
715         const Elf_Ehdr *hdr = (const Elf_Ehdr *)imgp->image_header;
716         const Elf_Phdr *phdr;
717         Elf_Auxargs *elf_auxargs;
718         struct vmspace *vmspace;
719         vm_prot_t prot;
720         u_long text_size = 0, data_size = 0, total_size = 0;
721         u_long text_addr = 0, data_addr = 0;
722         u_long seg_size, seg_addr;
723         u_long addr, baddr, et_dyn_addr, entry = 0, proghdr = 0;
724         int32_t osrel = 0;
725         int error = 0, i, n;
726         const char *interp = NULL, *newinterp = NULL;
727         Elf_Brandinfo *brand_info;
728         char *path;
729         struct sysentvec *sv;
730
731         /*
732          * Do we have a valid ELF header ?
733          *
734          * Only allow ET_EXEC & ET_DYN here, reject ET_DYN later
735          * if particular brand doesn't support it.
736          */
737         if (__elfN(check_header)(hdr) != 0 ||
738             (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN))
739                 return (-1);
740
741         /*
742          * From here on down, we return an errno, not -1, as we've
743          * detected an ELF file.
744          */
745
746         if ((hdr->e_phoff > PAGE_SIZE) ||
747             (hdr->e_phoff + hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE) {
748                 /* Only support headers in first page for now */
749                 return (ENOEXEC);
750         }
751         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
752         if (!aligned(phdr, Elf_Addr))
753                 return (ENOEXEC);
754         n = 0;
755         baddr = 0;
756         for (i = 0; i < hdr->e_phnum; i++) {
757                 switch (phdr[i].p_type) {
758                 case PT_LOAD:
759                         if (n == 0)
760                                 baddr = phdr[i].p_vaddr;
761                         n++;
762                         break;
763                 case PT_INTERP:
764                         /* Path to interpreter */
765                         if (phdr[i].p_filesz > MAXPATHLEN ||
766                             phdr[i].p_offset + phdr[i].p_filesz > PAGE_SIZE)
767                                 return (ENOEXEC);
768                         interp = imgp->image_header + phdr[i].p_offset;
769                         break;
770                 case PT_GNU_STACK:
771                         if (__elfN(nxstack))
772                                 imgp->stack_prot =
773                                     __elfN(trans_prot)(phdr[i].p_flags);
774                         break;
775                 }
776         }
777
778         brand_info = __elfN(get_brandinfo)(imgp, interp, &osrel);
779         if (brand_info == NULL) {
780                 uprintf("ELF binary type \"%u\" not known.\n",
781                     hdr->e_ident[EI_OSABI]);
782                 return (ENOEXEC);
783         }
784         if (hdr->e_type == ET_DYN) {
785                 if ((brand_info->flags & BI_CAN_EXEC_DYN) == 0)
786                         return (ENOEXEC);
787                 /*
788                  * Honour the base load address from the dso if it is
789                  * non-zero for some reason.
790                  */
791                 if (baddr == 0)
792                         et_dyn_addr = ET_DYN_LOAD_ADDR;
793                 else
794                         et_dyn_addr = 0;
795         } else
796                 et_dyn_addr = 0;
797         sv = brand_info->sysvec;
798         if (interp != NULL && brand_info->interp_newpath != NULL)
799                 newinterp = brand_info->interp_newpath;
800
801         /*
802          * Avoid a possible deadlock if the current address space is destroyed
803          * and that address space maps the locked vnode.  In the common case,
804          * the locked vnode's v_usecount is decremented but remains greater
805          * than zero.  Consequently, the vnode lock is not needed by vrele().
806          * However, in cases where the vnode lock is external, such as nullfs,
807          * v_usecount may become zero.
808          */
809         VOP_UNLOCK(imgp->vp, 0);
810
811         error = exec_new_vmspace(imgp, sv);
812         imgp->proc->p_sysent = sv;
813
814         vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
815         if (error)
816                 return (error);
817
818         vmspace = imgp->proc->p_vmspace;
819
820         for (i = 0; i < hdr->e_phnum; i++) {
821                 switch (phdr[i].p_type) {
822                 case PT_LOAD:   /* Loadable segment */
823                         if (phdr[i].p_memsz == 0)
824                                 break;
825                         prot = __elfN(trans_prot)(phdr[i].p_flags);
826
827 #if defined(__ia64__) && __ELF_WORD_SIZE == 32 && defined(IA32_ME_HARDER)
828                         /*
829                          * Some x86 binaries assume read == executable,
830                          * notably the M3 runtime and therefore cvsup
831                          */
832                         if (prot & VM_PROT_READ)
833                                 prot |= VM_PROT_EXECUTE;
834 #endif
835
836                         if ((error = __elfN(load_section)(vmspace,
837                             imgp->object, phdr[i].p_offset,
838                             (caddr_t)(uintptr_t)phdr[i].p_vaddr + et_dyn_addr,
839                             phdr[i].p_memsz, phdr[i].p_filesz, prot,
840                             sv->sv_pagesize)) != 0)
841                                 return (error);
842
843                         /*
844                          * If this segment contains the program headers,
845                          * remember their virtual address for the AT_PHDR
846                          * aux entry. Static binaries don't usually include
847                          * a PT_PHDR entry.
848                          */
849                         if (phdr[i].p_offset == 0 &&
850                             hdr->e_phoff + hdr->e_phnum * hdr->e_phentsize
851                                 <= phdr[i].p_filesz)
852                                 proghdr = phdr[i].p_vaddr + hdr->e_phoff +
853                                     et_dyn_addr;
854
855                         seg_addr = trunc_page(phdr[i].p_vaddr + et_dyn_addr);
856                         seg_size = round_page(phdr[i].p_memsz +
857                             phdr[i].p_vaddr + et_dyn_addr - seg_addr);
858
859                         /*
860                          * Make the largest executable segment the official
861                          * text segment and all others data.
862                          *
863                          * Note that obreak() assumes that data_addr + 
864                          * data_size == end of data load area, and the ELF
865                          * file format expects segments to be sorted by
866                          * address.  If multiple data segments exist, the
867                          * last one will be used.
868                          */
869
870                         if (phdr[i].p_flags & PF_X && text_size < seg_size) {
871                                 text_size = seg_size;
872                                 text_addr = seg_addr;
873                         } else {
874                                 data_size = seg_size;
875                                 data_addr = seg_addr;
876                         }
877                         total_size += seg_size;
878                         break;
879                 case PT_PHDR:   /* Program header table info */
880                         proghdr = phdr[i].p_vaddr + et_dyn_addr;
881                         break;
882                 default:
883                         break;
884                 }
885         }
886         
887         if (data_addr == 0 && data_size == 0) {
888                 data_addr = text_addr;
889                 data_size = text_size;
890         }
891
892         entry = (u_long)hdr->e_entry + et_dyn_addr;
893
894         /*
895          * Check limits.  It should be safe to check the
896          * limits after loading the segments since we do
897          * not actually fault in all the segments pages.
898          */
899         PROC_LOCK(imgp->proc);
900         if (data_size > lim_cur(imgp->proc, RLIMIT_DATA) ||
901             text_size > maxtsiz ||
902             total_size > lim_cur(imgp->proc, RLIMIT_VMEM) ||
903             racct_set(imgp->proc, RACCT_DATA, data_size) != 0 ||
904             racct_set(imgp->proc, RACCT_VMEM, total_size) != 0) {
905                 PROC_UNLOCK(imgp->proc);
906                 return (ENOMEM);
907         }
908
909         vmspace->vm_tsize = text_size >> PAGE_SHIFT;
910         vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr;
911         vmspace->vm_dsize = data_size >> PAGE_SHIFT;
912         vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr;
913
914         /*
915          * We load the dynamic linker where a userland call
916          * to mmap(0, ...) would put it.  The rationale behind this
917          * calculation is that it leaves room for the heap to grow to
918          * its maximum allowed size.
919          */
920         addr = round_page((vm_offset_t)imgp->proc->p_vmspace->vm_daddr +
921             lim_max(imgp->proc, RLIMIT_DATA));
922         PROC_UNLOCK(imgp->proc);
923
924         imgp->entry_addr = entry;
925
926         if (interp != NULL) {
927                 int have_interp = FALSE;
928                 VOP_UNLOCK(imgp->vp, 0);
929                 if (brand_info->emul_path != NULL &&
930                     brand_info->emul_path[0] != '\0') {
931                         path = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
932                         snprintf(path, MAXPATHLEN, "%s%s",
933                             brand_info->emul_path, interp);
934                         error = __elfN(load_file)(imgp->proc, path, &addr,
935                             &imgp->entry_addr, sv->sv_pagesize);
936                         free(path, M_TEMP);
937                         if (error == 0)
938                                 have_interp = TRUE;
939                 }
940                 if (!have_interp && newinterp != NULL) {
941                         error = __elfN(load_file)(imgp->proc, newinterp, &addr,
942                             &imgp->entry_addr, sv->sv_pagesize);
943                         if (error == 0)
944                                 have_interp = TRUE;
945                 }
946                 if (!have_interp) {
947                         error = __elfN(load_file)(imgp->proc, interp, &addr,
948                             &imgp->entry_addr, sv->sv_pagesize);
949                 }
950                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
951                 if (error != 0) {
952                         uprintf("ELF interpreter %s not found\n", interp);
953                         return (error);
954                 }
955         } else
956                 addr = et_dyn_addr;
957
958         /*
959          * Construct auxargs table (used by the fixup routine)
960          */
961         elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
962         elf_auxargs->execfd = -1;
963         elf_auxargs->phdr = proghdr;
964         elf_auxargs->phent = hdr->e_phentsize;
965         elf_auxargs->phnum = hdr->e_phnum;
966         elf_auxargs->pagesz = PAGE_SIZE;
967         elf_auxargs->base = addr;
968         elf_auxargs->flags = 0;
969         elf_auxargs->entry = entry;
970
971         imgp->auxargs = elf_auxargs;
972         imgp->interpreted = 0;
973         imgp->reloc_base = addr;
974         imgp->proc->p_osrel = osrel;
975
976         return (error);
977 }
978
979 #define suword __CONCAT(suword, __ELF_WORD_SIZE)
980
981 int
982 __elfN(freebsd_fixup)(register_t **stack_base, struct image_params *imgp)
983 {
984         Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
985         Elf_Addr *base;
986         Elf_Addr *pos;
987
988         base = (Elf_Addr *)*stack_base;
989         pos = base + (imgp->args->argc + imgp->args->envc + 2);
990
991         if (args->execfd != -1)
992                 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
993         AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
994         AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
995         AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
996         AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
997         AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
998         AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
999         AUXARGS_ENTRY(pos, AT_BASE, args->base);
1000         if (imgp->execpathp != 0)
1001                 AUXARGS_ENTRY(pos, AT_EXECPATH, imgp->execpathp);
1002         AUXARGS_ENTRY(pos, AT_OSRELDATE, osreldate);
1003         if (imgp->canary != 0) {
1004                 AUXARGS_ENTRY(pos, AT_CANARY, imgp->canary);
1005                 AUXARGS_ENTRY(pos, AT_CANARYLEN, imgp->canarylen);
1006         }
1007         AUXARGS_ENTRY(pos, AT_NCPUS, mp_ncpus);
1008         if (imgp->pagesizes != 0) {
1009                 AUXARGS_ENTRY(pos, AT_PAGESIZES, imgp->pagesizes);
1010                 AUXARGS_ENTRY(pos, AT_PAGESIZESLEN, imgp->pagesizeslen);
1011         }
1012         AUXARGS_ENTRY(pos, AT_STACKPROT, imgp->sysent->sv_shared_page_obj
1013             != NULL && imgp->stack_prot != 0 ? imgp->stack_prot :
1014             imgp->sysent->sv_stackprot);
1015         AUXARGS_ENTRY(pos, AT_NULL, 0);
1016
1017         free(imgp->auxargs, M_TEMP);
1018         imgp->auxargs = NULL;
1019
1020         base--;
1021         suword(base, (long)imgp->args->argc);
1022         *stack_base = (register_t *)base;
1023         return (0);
1024 }
1025
1026 /*
1027  * Code for generating ELF core dumps.
1028  */
1029
1030 typedef void (*segment_callback)(vm_map_entry_t, void *);
1031
1032 /* Closure for cb_put_phdr(). */
1033 struct phdr_closure {
1034         Elf_Phdr *phdr;         /* Program header to fill in */
1035         Elf_Off offset;         /* Offset of segment in core file */
1036 };
1037
1038 /* Closure for cb_size_segment(). */
1039 struct sseg_closure {
1040         int count;              /* Count of writable segments. */
1041         size_t size;            /* Total size of all writable segments. */
1042 };
1043
1044 static void cb_put_phdr(vm_map_entry_t, void *);
1045 static void cb_size_segment(vm_map_entry_t, void *);
1046 static void each_writable_segment(struct thread *, segment_callback, void *);
1047 static int __elfN(corehdr)(struct thread *, struct vnode *, struct ucred *,
1048     int, void *, size_t, gzFile);
1049 static void __elfN(puthdr)(struct thread *, void *, size_t *, int);
1050 static void __elfN(putnote)(void *, size_t *, const char *, int,
1051     const void *, size_t);
1052
1053 #ifdef COMPRESS_USER_CORES
1054 extern int compress_user_cores;
1055 extern int compress_user_cores_gzlevel;
1056 #endif
1057
1058 static int
1059 core_output(struct vnode *vp, void *base, size_t len, off_t offset,
1060     struct ucred *active_cred, struct ucred *file_cred,
1061     struct thread *td, char *core_buf, gzFile gzfile) {
1062
1063         int error;
1064         if (gzfile) {
1065 #ifdef COMPRESS_USER_CORES
1066                 error = compress_core(gzfile, base, core_buf, len, td);
1067 #else
1068                 panic("shouldn't be here");
1069 #endif
1070         } else {
1071                 error = vn_rdwr_inchunks(UIO_WRITE, vp, base, len, offset,
1072                     UIO_USERSPACE, IO_UNIT | IO_DIRECT, active_cred, file_cred,
1073                     NULL, td);
1074         }
1075         return (error);
1076 }
1077
1078 int
1079 __elfN(coredump)(struct thread *td, struct vnode *vp, off_t limit, int flags)
1080 {
1081         struct ucred *cred = td->td_ucred;
1082         int error = 0;
1083         struct sseg_closure seginfo;
1084         void *hdr;
1085         size_t hdrsize;
1086
1087         gzFile gzfile = Z_NULL;
1088         char *core_buf = NULL;
1089 #ifdef COMPRESS_USER_CORES
1090         char gzopen_flags[8];
1091         char *p;
1092         int doing_compress = flags & IMGACT_CORE_COMPRESS;
1093 #endif
1094
1095         hdr = NULL;
1096
1097 #ifdef COMPRESS_USER_CORES
1098         if (doing_compress) {
1099                 p = gzopen_flags;
1100                 *p++ = 'w';
1101                 if (compress_user_cores_gzlevel >= 0 &&
1102                     compress_user_cores_gzlevel <= 9)
1103                         *p++ = '0' + compress_user_cores_gzlevel;
1104                 *p = 0;
1105                 gzfile = gz_open("", gzopen_flags, vp);
1106                 if (gzfile == Z_NULL) {
1107                         error = EFAULT;
1108                         goto done;
1109                 }
1110                 core_buf = malloc(CORE_BUF_SIZE, M_TEMP, M_WAITOK | M_ZERO);
1111                 if (!core_buf) {
1112                         error = ENOMEM;
1113                         goto done;
1114                 }
1115         }
1116 #endif
1117
1118         /* Size the program segments. */
1119         seginfo.count = 0;
1120         seginfo.size = 0;
1121         each_writable_segment(td, cb_size_segment, &seginfo);
1122
1123         /*
1124          * Calculate the size of the core file header area by making
1125          * a dry run of generating it.  Nothing is written, but the
1126          * size is calculated.
1127          */
1128         hdrsize = 0;
1129         __elfN(puthdr)(td, (void *)NULL, &hdrsize, seginfo.count);
1130
1131 #ifdef RACCT
1132         PROC_LOCK(td->td_proc);
1133         error = racct_add(td->td_proc, RACCT_CORE, hdrsize + seginfo.size);
1134         PROC_UNLOCK(td->td_proc);
1135         if (error != 0) {
1136                 error = EFAULT;
1137                 goto done;
1138         }
1139 #endif
1140         if (hdrsize + seginfo.size >= limit) {
1141                 error = EFAULT;
1142                 goto done;
1143         }
1144
1145         /*
1146          * Allocate memory for building the header, fill it up,
1147          * and write it out.
1148          */
1149         hdr = malloc(hdrsize, M_TEMP, M_WAITOK);
1150         if (hdr == NULL) {
1151                 error = EINVAL;
1152                 goto done;
1153         }
1154         error = __elfN(corehdr)(td, vp, cred, seginfo.count, hdr, hdrsize,
1155             gzfile);
1156
1157         /* Write the contents of all of the writable segments. */
1158         if (error == 0) {
1159                 Elf_Phdr *php;
1160                 off_t offset;
1161                 int i;
1162
1163                 php = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr)) + 1;
1164                 offset = hdrsize;
1165                 for (i = 0; i < seginfo.count; i++) {
1166                         error = core_output(vp, (caddr_t)(uintptr_t)php->p_vaddr,
1167                             php->p_filesz, offset, cred, NOCRED, curthread, core_buf, gzfile);
1168                         if (error != 0)
1169                                 break;
1170                         offset += php->p_filesz;
1171                         php++;
1172                 }
1173         }
1174         if (error) {
1175                 log(LOG_WARNING,
1176                     "Failed to write core file for process %s (error %d)\n",
1177                     curproc->p_comm, error);
1178         }
1179
1180 done:
1181 #ifdef COMPRESS_USER_CORES
1182         if (core_buf)
1183                 free(core_buf, M_TEMP);
1184         if (gzfile)
1185                 gzclose(gzfile);
1186 #endif
1187
1188         free(hdr, M_TEMP);
1189
1190         return (error);
1191 }
1192
1193 /*
1194  * A callback for each_writable_segment() to write out the segment's
1195  * program header entry.
1196  */
1197 static void
1198 cb_put_phdr(entry, closure)
1199         vm_map_entry_t entry;
1200         void *closure;
1201 {
1202         struct phdr_closure *phc = (struct phdr_closure *)closure;
1203         Elf_Phdr *phdr = phc->phdr;
1204
1205         phc->offset = round_page(phc->offset);
1206
1207         phdr->p_type = PT_LOAD;
1208         phdr->p_offset = phc->offset;
1209         phdr->p_vaddr = entry->start;
1210         phdr->p_paddr = 0;
1211         phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1212         phdr->p_align = PAGE_SIZE;
1213         phdr->p_flags = __elfN(untrans_prot)(entry->protection);
1214
1215         phc->offset += phdr->p_filesz;
1216         phc->phdr++;
1217 }
1218
1219 /*
1220  * A callback for each_writable_segment() to gather information about
1221  * the number of segments and their total size.
1222  */
1223 static void
1224 cb_size_segment(entry, closure)
1225         vm_map_entry_t entry;
1226         void *closure;
1227 {
1228         struct sseg_closure *ssc = (struct sseg_closure *)closure;
1229
1230         ssc->count++;
1231         ssc->size += entry->end - entry->start;
1232 }
1233
1234 /*
1235  * For each writable segment in the process's memory map, call the given
1236  * function with a pointer to the map entry and some arbitrary
1237  * caller-supplied data.
1238  */
1239 static void
1240 each_writable_segment(td, func, closure)
1241         struct thread *td;
1242         segment_callback func;
1243         void *closure;
1244 {
1245         struct proc *p = td->td_proc;
1246         vm_map_t map = &p->p_vmspace->vm_map;
1247         vm_map_entry_t entry;
1248         vm_object_t backing_object, object;
1249         boolean_t ignore_entry;
1250
1251         vm_map_lock_read(map);
1252         for (entry = map->header.next; entry != &map->header;
1253             entry = entry->next) {
1254                 /*
1255                  * Don't dump inaccessible mappings, deal with legacy
1256                  * coredump mode.
1257                  *
1258                  * Note that read-only segments related to the elf binary
1259                  * are marked MAP_ENTRY_NOCOREDUMP now so we no longer
1260                  * need to arbitrarily ignore such segments.
1261                  */
1262                 if (elf_legacy_coredump) {
1263                         if ((entry->protection & VM_PROT_RW) != VM_PROT_RW)
1264                                 continue;
1265                 } else {
1266                         if ((entry->protection & VM_PROT_ALL) == 0)
1267                                 continue;
1268                 }
1269
1270                 /*
1271                  * Dont include memory segment in the coredump if
1272                  * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
1273                  * madvise(2).  Do not dump submaps (i.e. parts of the
1274                  * kernel map).
1275                  */
1276                 if (entry->eflags & (MAP_ENTRY_NOCOREDUMP|MAP_ENTRY_IS_SUB_MAP))
1277                         continue;
1278
1279                 if ((object = entry->object.vm_object) == NULL)
1280                         continue;
1281
1282                 /* Ignore memory-mapped devices and such things. */
1283                 VM_OBJECT_LOCK(object);
1284                 while ((backing_object = object->backing_object) != NULL) {
1285                         VM_OBJECT_LOCK(backing_object);
1286                         VM_OBJECT_UNLOCK(object);
1287                         object = backing_object;
1288                 }
1289                 ignore_entry = object->type != OBJT_DEFAULT &&
1290                     object->type != OBJT_SWAP && object->type != OBJT_VNODE;
1291                 VM_OBJECT_UNLOCK(object);
1292                 if (ignore_entry)
1293                         continue;
1294
1295                 (*func)(entry, closure);
1296         }
1297         vm_map_unlock_read(map);
1298 }
1299
1300 /*
1301  * Write the core file header to the file, including padding up to
1302  * the page boundary.
1303  */
1304 static int
1305 __elfN(corehdr)(td, vp, cred, numsegs, hdr, hdrsize, gzfile)
1306         struct thread *td;
1307         struct vnode *vp;
1308         struct ucred *cred;
1309         int numsegs;
1310         size_t hdrsize;
1311         void *hdr;
1312         gzFile gzfile;
1313 {
1314         size_t off;
1315
1316         /* Fill in the header. */
1317         bzero(hdr, hdrsize);
1318         off = 0;
1319         __elfN(puthdr)(td, hdr, &off, numsegs);
1320
1321         if (!gzfile) {
1322                 /* Write it to the core file. */
1323                 return (vn_rdwr_inchunks(UIO_WRITE, vp, hdr, hdrsize, (off_t)0,
1324                         UIO_SYSSPACE, IO_UNIT | IO_DIRECT, cred, NOCRED, NULL,
1325                         td));
1326         } else {
1327 #ifdef COMPRESS_USER_CORES
1328                 if (gzwrite(gzfile, hdr, hdrsize) != hdrsize) {
1329                         log(LOG_WARNING,
1330                             "Failed to compress core file header for process"
1331                             " %s.\n", curproc->p_comm);
1332                         return (EFAULT);
1333                 }
1334                 else {
1335                         return (0);
1336                 }
1337 #else
1338                 panic("shouldn't be here");
1339 #endif
1340         }
1341 }
1342
1343 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1344 #include <compat/freebsd32/freebsd32.h>
1345
1346 typedef struct prstatus32 elf_prstatus_t;
1347 typedef struct prpsinfo32 elf_prpsinfo_t;
1348 typedef struct fpreg32 elf_prfpregset_t;
1349 typedef struct fpreg32 elf_fpregset_t;
1350 typedef struct reg32 elf_gregset_t;
1351 typedef struct thrmisc32 elf_thrmisc_t;
1352 #else
1353 typedef prstatus_t elf_prstatus_t;
1354 typedef prpsinfo_t elf_prpsinfo_t;
1355 typedef prfpregset_t elf_prfpregset_t;
1356 typedef prfpregset_t elf_fpregset_t;
1357 typedef gregset_t elf_gregset_t;
1358 typedef thrmisc_t elf_thrmisc_t;
1359 #endif
1360
1361 static void
1362 __elfN(puthdr)(struct thread *td, void *dst, size_t *off, int numsegs)
1363 {
1364         struct {
1365                 elf_prstatus_t status;
1366                 elf_prfpregset_t fpregset;
1367                 elf_prpsinfo_t psinfo;
1368                 elf_thrmisc_t thrmisc;
1369         } *tempdata;
1370         elf_prstatus_t *status;
1371         elf_prfpregset_t *fpregset;
1372         elf_prpsinfo_t *psinfo;
1373         elf_thrmisc_t *thrmisc;
1374         struct proc *p;
1375         struct thread *thr;
1376         size_t ehoff, noteoff, notesz, phoff;
1377
1378         p = td->td_proc;
1379
1380         ehoff = *off;
1381         *off += sizeof(Elf_Ehdr);
1382
1383         phoff = *off;
1384         *off += (numsegs + 1) * sizeof(Elf_Phdr);
1385
1386         noteoff = *off;
1387         /*
1388          * Don't allocate space for the notes if we're just calculating
1389          * the size of the header. We also don't collect the data.
1390          */
1391         if (dst != NULL) {
1392                 tempdata = malloc(sizeof(*tempdata), M_TEMP, M_ZERO|M_WAITOK);
1393                 status = &tempdata->status;
1394                 fpregset = &tempdata->fpregset;
1395                 psinfo = &tempdata->psinfo;
1396                 thrmisc = &tempdata->thrmisc;
1397         } else {
1398                 tempdata = NULL;
1399                 status = NULL;
1400                 fpregset = NULL;
1401                 psinfo = NULL;
1402                 thrmisc = NULL;
1403         }
1404
1405         if (dst != NULL) {
1406                 psinfo->pr_version = PRPSINFO_VERSION;
1407                 psinfo->pr_psinfosz = sizeof(elf_prpsinfo_t);
1408                 strlcpy(psinfo->pr_fname, p->p_comm, sizeof(psinfo->pr_fname));
1409                 /*
1410                  * XXX - We don't fill in the command line arguments properly
1411                  * yet.
1412                  */
1413                 strlcpy(psinfo->pr_psargs, p->p_comm,
1414                     sizeof(psinfo->pr_psargs));
1415         }
1416         __elfN(putnote)(dst, off, "FreeBSD", NT_PRPSINFO, psinfo,
1417             sizeof *psinfo);
1418
1419         /*
1420          * To have the debugger select the right thread (LWP) as the initial
1421          * thread, we dump the state of the thread passed to us in td first.
1422          * This is the thread that causes the core dump and thus likely to
1423          * be the right thread one wants to have selected in the debugger.
1424          */
1425         thr = td;
1426         while (thr != NULL) {
1427                 if (dst != NULL) {
1428                         status->pr_version = PRSTATUS_VERSION;
1429                         status->pr_statussz = sizeof(elf_prstatus_t);
1430                         status->pr_gregsetsz = sizeof(elf_gregset_t);
1431                         status->pr_fpregsetsz = sizeof(elf_fpregset_t);
1432                         status->pr_osreldate = osreldate;
1433                         status->pr_cursig = p->p_sig;
1434                         status->pr_pid = thr->td_tid;
1435 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1436                         fill_regs32(thr, &status->pr_reg);
1437                         fill_fpregs32(thr, fpregset);
1438 #else
1439                         fill_regs(thr, &status->pr_reg);
1440                         fill_fpregs(thr, fpregset);
1441 #endif
1442                         memset(&thrmisc->_pad, 0, sizeof (thrmisc->_pad));
1443                         strcpy(thrmisc->pr_tname, thr->td_name);
1444                 }
1445                 __elfN(putnote)(dst, off, "FreeBSD", NT_PRSTATUS, status,
1446                     sizeof *status);
1447                 __elfN(putnote)(dst, off, "FreeBSD", NT_FPREGSET, fpregset,
1448                     sizeof *fpregset);
1449                 __elfN(putnote)(dst, off, "FreeBSD", NT_THRMISC, thrmisc,
1450                     sizeof *thrmisc);
1451                 /*
1452                  * Allow for MD specific notes, as well as any MD
1453                  * specific preparations for writing MI notes.
1454                  */
1455                 __elfN(dump_thread)(thr, dst, off);
1456
1457                 thr = (thr == td) ? TAILQ_FIRST(&p->p_threads) :
1458                     TAILQ_NEXT(thr, td_plist);
1459                 if (thr == td)
1460                         thr = TAILQ_NEXT(thr, td_plist);
1461         }
1462
1463         notesz = *off - noteoff;
1464
1465         if (dst != NULL)
1466                 free(tempdata, M_TEMP);
1467
1468         /* Align up to a page boundary for the program segments. */
1469         *off = round_page(*off);
1470
1471         if (dst != NULL) {
1472                 Elf_Ehdr *ehdr;
1473                 Elf_Phdr *phdr;
1474                 struct phdr_closure phc;
1475
1476                 /*
1477                  * Fill in the ELF header.
1478                  */
1479                 ehdr = (Elf_Ehdr *)((char *)dst + ehoff);
1480                 ehdr->e_ident[EI_MAG0] = ELFMAG0;
1481                 ehdr->e_ident[EI_MAG1] = ELFMAG1;
1482                 ehdr->e_ident[EI_MAG2] = ELFMAG2;
1483                 ehdr->e_ident[EI_MAG3] = ELFMAG3;
1484                 ehdr->e_ident[EI_CLASS] = ELF_CLASS;
1485                 ehdr->e_ident[EI_DATA] = ELF_DATA;
1486                 ehdr->e_ident[EI_VERSION] = EV_CURRENT;
1487                 ehdr->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
1488                 ehdr->e_ident[EI_ABIVERSION] = 0;
1489                 ehdr->e_ident[EI_PAD] = 0;
1490                 ehdr->e_type = ET_CORE;
1491 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1492                 ehdr->e_machine = ELF_ARCH32;
1493 #else
1494                 ehdr->e_machine = ELF_ARCH;
1495 #endif
1496                 ehdr->e_version = EV_CURRENT;
1497                 ehdr->e_entry = 0;
1498                 ehdr->e_phoff = phoff;
1499                 ehdr->e_flags = 0;
1500                 ehdr->e_ehsize = sizeof(Elf_Ehdr);
1501                 ehdr->e_phentsize = sizeof(Elf_Phdr);
1502                 ehdr->e_phnum = numsegs + 1;
1503                 ehdr->e_shentsize = sizeof(Elf_Shdr);
1504                 ehdr->e_shnum = 0;
1505                 ehdr->e_shstrndx = SHN_UNDEF;
1506
1507                 /*
1508                  * Fill in the program header entries.
1509                  */
1510                 phdr = (Elf_Phdr *)((char *)dst + phoff);
1511
1512                 /* The note segement. */
1513                 phdr->p_type = PT_NOTE;
1514                 phdr->p_offset = noteoff;
1515                 phdr->p_vaddr = 0;
1516                 phdr->p_paddr = 0;
1517                 phdr->p_filesz = notesz;
1518                 phdr->p_memsz = 0;
1519                 phdr->p_flags = 0;
1520                 phdr->p_align = 0;
1521                 phdr++;
1522
1523                 /* All the writable segments from the program. */
1524                 phc.phdr = phdr;
1525                 phc.offset = *off;
1526                 each_writable_segment(td, cb_put_phdr, &phc);
1527         }
1528 }
1529
1530 static void
1531 __elfN(putnote)(void *dst, size_t *off, const char *name, int type,
1532     const void *desc, size_t descsz)
1533 {
1534         Elf_Note note;
1535
1536         note.n_namesz = strlen(name) + 1;
1537         note.n_descsz = descsz;
1538         note.n_type = type;
1539         if (dst != NULL)
1540                 bcopy(&note, (char *)dst + *off, sizeof note);
1541         *off += sizeof note;
1542         if (dst != NULL)
1543                 bcopy(name, (char *)dst + *off, note.n_namesz);
1544         *off += roundup2(note.n_namesz, sizeof(Elf_Size));
1545         if (dst != NULL)
1546                 bcopy(desc, (char *)dst + *off, note.n_descsz);
1547         *off += roundup2(note.n_descsz, sizeof(Elf_Size));
1548 }
1549
1550 static boolean_t
1551 __elfN(parse_notes)(struct image_params *imgp, Elf_Brandnote *checknote,
1552     int32_t *osrel, const Elf_Phdr *pnote)
1553 {
1554         const Elf_Note *note, *note0, *note_end;
1555         const char *note_name;
1556         int i;
1557
1558         if (pnote == NULL || pnote->p_offset >= PAGE_SIZE ||
1559             pnote->p_offset + pnote->p_filesz >= PAGE_SIZE)
1560                 return (FALSE);
1561
1562         note = note0 = (const Elf_Note *)(imgp->image_header + pnote->p_offset);
1563         note_end = (const Elf_Note *)(imgp->image_header +
1564             pnote->p_offset + pnote->p_filesz);
1565         for (i = 0; i < 100 && note >= note0 && note < note_end; i++) {
1566                 if (!aligned(note, Elf32_Addr))
1567                         return (FALSE);
1568                 if (note->n_namesz != checknote->hdr.n_namesz ||
1569                     note->n_descsz != checknote->hdr.n_descsz ||
1570                     note->n_type != checknote->hdr.n_type)
1571                         goto nextnote;
1572                 note_name = (const char *)(note + 1);
1573                 if (strncmp(checknote->vendor, note_name,
1574                     checknote->hdr.n_namesz) != 0)
1575                         goto nextnote;
1576
1577                 /*
1578                  * Fetch the osreldate for binary
1579                  * from the ELF OSABI-note if necessary.
1580                  */
1581                 if ((checknote->flags & BN_TRANSLATE_OSREL) != 0 &&
1582                     checknote->trans_osrel != NULL)
1583                         return (checknote->trans_osrel(note, osrel));
1584                 return (TRUE);
1585
1586 nextnote:
1587                 note = (const Elf_Note *)((const char *)(note + 1) +
1588                     roundup2(note->n_namesz, sizeof(Elf32_Addr)) +
1589                     roundup2(note->n_descsz, sizeof(Elf32_Addr)));
1590         }
1591
1592         return (FALSE);
1593 }
1594
1595 /*
1596  * Try to find the appropriate ABI-note section for checknote,
1597  * fetch the osreldate for binary from the ELF OSABI-note. Only the
1598  * first page of the image is searched, the same as for headers.
1599  */
1600 static boolean_t
1601 __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *checknote,
1602     int32_t *osrel)
1603 {
1604         const Elf_Phdr *phdr;
1605         const Elf_Ehdr *hdr;
1606         int i;
1607
1608         hdr = (const Elf_Ehdr *)imgp->image_header;
1609         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
1610
1611         for (i = 0; i < hdr->e_phnum; i++) {
1612                 if (phdr[i].p_type == PT_NOTE &&
1613                     __elfN(parse_notes)(imgp, checknote, osrel, &phdr[i]))
1614                         return (TRUE);
1615         }
1616         return (FALSE);
1617
1618 }
1619
1620 /*
1621  * Tell kern_execve.c about it, with a little help from the linker.
1622  */
1623 static struct execsw __elfN(execsw) = {
1624         __CONCAT(exec_, __elfN(imgact)),
1625         __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
1626 };
1627 EXEC_SET(__CONCAT(elf, __ELF_WORD_SIZE), __elfN(execsw));
1628
1629 #ifdef COMPRESS_USER_CORES
1630 /*
1631  * Compress and write out a core segment for a user process.
1632  *
1633  * 'inbuf' is the starting address of a VM segment in the process' address
1634  * space that is to be compressed and written out to the core file.  'dest_buf'
1635  * is a buffer in the kernel's address space.  The segment is copied from 
1636  * 'inbuf' to 'dest_buf' first before being processed by the compression
1637  * routine gzwrite().  This copying is necessary because the content of the VM
1638  * segment may change between the compression pass and the crc-computation pass
1639  * in gzwrite().  This is because realtime threads may preempt the UNIX kernel.
1640  */
1641 static int
1642 compress_core (gzFile file, char *inbuf, char *dest_buf, unsigned int len,
1643     struct thread *td)
1644 {
1645         int len_compressed;
1646         int error = 0;
1647         unsigned int chunk_len;
1648
1649         while (len) {
1650                 chunk_len = (len > CORE_BUF_SIZE) ? CORE_BUF_SIZE : len;
1651                 copyin(inbuf, dest_buf, chunk_len);
1652                 len_compressed = gzwrite(file, dest_buf, chunk_len);
1653
1654                 EVENTHANDLER_INVOKE(app_coredump_progress, td, len_compressed);
1655
1656                 if ((unsigned int)len_compressed != chunk_len) {
1657                         log(LOG_WARNING,
1658                             "compress_core: length mismatch (0x%x returned, "
1659                             "0x%x expected)\n", len_compressed, chunk_len);
1660                         EVENTHANDLER_INVOKE(app_coredump_error, td,
1661                             "compress_core: length mismatch %x -> %x",
1662                             chunk_len, len_compressed);
1663                         error = EFAULT;
1664                         break;
1665                 }
1666                 inbuf += chunk_len;
1667                 len -= chunk_len;
1668                 maybe_yield();
1669         }
1670
1671         return (error);
1672 }
1673 #endif /* COMPRESS_USER_CORES */
1674
1675 static vm_prot_t
1676 __elfN(trans_prot)(Elf_Word flags)
1677 {
1678         vm_prot_t prot;
1679
1680         prot = 0;
1681         if (flags & PF_X)
1682                 prot |= VM_PROT_EXECUTE;
1683         if (flags & PF_W)
1684                 prot |= VM_PROT_WRITE;
1685         if (flags & PF_R)
1686                 prot |= VM_PROT_READ;
1687 #if __ELF_WORD_SIZE == 32
1688 #if defined(__amd64__) || defined(__ia64__)
1689         if (i386_read_exec && (flags & PF_R))
1690                 prot |= VM_PROT_EXECUTE;
1691 #endif
1692 #endif
1693         return (prot);
1694 }
1695
1696 static Elf_Word
1697 __elfN(untrans_prot)(vm_prot_t prot)
1698 {
1699         Elf_Word flags;
1700
1701         flags = 0;
1702         if (prot & VM_PROT_EXECUTE)
1703                 flags |= PF_X;
1704         if (prot & VM_PROT_READ)
1705                 flags |= PF_R;
1706         if (prot & VM_PROT_WRITE)
1707                 flags |= PF_W;
1708         return (flags);
1709 }