]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/imgact_elf.c
Only allow one PT_INTERP ELF program header. This also fixes a potential
[FreeBSD/FreeBSD.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_gzio.h"
37
38 #include <sys/param.h>
39 #include <sys/capsicum.h>
40 #include <sys/exec.h>
41 #include <sys/fcntl.h>
42 #include <sys/gzio.h>
43 #include <sys/imgact.h>
44 #include <sys/imgact_elf.h>
45 #include <sys/jail.h>
46 #include <sys/kernel.h>
47 #include <sys/lock.h>
48 #include <sys/malloc.h>
49 #include <sys/mount.h>
50 #include <sys/mman.h>
51 #include <sys/namei.h>
52 #include <sys/pioctl.h>
53 #include <sys/proc.h>
54 #include <sys/procfs.h>
55 #include <sys/racct.h>
56 #include <sys/resourcevar.h>
57 #include <sys/rwlock.h>
58 #include <sys/sbuf.h>
59 #include <sys/sf_buf.h>
60 #include <sys/smp.h>
61 #include <sys/systm.h>
62 #include <sys/signalvar.h>
63 #include <sys/stat.h>
64 #include <sys/sx.h>
65 #include <sys/syscall.h>
66 #include <sys/sysctl.h>
67 #include <sys/sysent.h>
68 #include <sys/vnode.h>
69 #include <sys/syslog.h>
70 #include <sys/eventhandler.h>
71 #include <sys/user.h>
72
73 #include <vm/vm.h>
74 #include <vm/vm_kern.h>
75 #include <vm/vm_param.h>
76 #include <vm/pmap.h>
77 #include <vm/vm_map.h>
78 #include <vm/vm_object.h>
79 #include <vm/vm_extern.h>
80
81 #include <machine/elf.h>
82 #include <machine/md_var.h>
83 #ifdef __arm__
84 #include <machine/acle-compat.h>
85 #endif
86
87 #define ELF_NOTE_ROUNDSIZE      4
88 #define OLD_EI_BRAND    8
89
90 static int __elfN(check_header)(const Elf_Ehdr *hdr);
91 static Elf_Brandinfo *__elfN(get_brandinfo)(struct image_params *imgp,
92     const char *interp, int interp_name_len, int32_t *osrel);
93 static int __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
94     u_long *entry, size_t pagesize);
95 static int __elfN(load_section)(struct image_params *imgp, vm_offset_t offset,
96     caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot,
97     size_t pagesize);
98 static int __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp);
99 static boolean_t __elfN(freebsd_trans_osrel)(const Elf_Note *note,
100     int32_t *osrel);
101 static boolean_t kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel);
102 static boolean_t __elfN(check_note)(struct image_params *imgp,
103     Elf_Brandnote *checknote, int32_t *osrel);
104 static vm_prot_t __elfN(trans_prot)(Elf_Word);
105 static Elf_Word __elfN(untrans_prot)(vm_prot_t);
106
107 SYSCTL_NODE(_kern, OID_AUTO, __CONCAT(elf, __ELF_WORD_SIZE), CTLFLAG_RW, 0,
108     "");
109
110 #define CORE_BUF_SIZE   (16 * 1024)
111
112 int __elfN(fallback_brand) = -1;
113 SYSCTL_INT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO,
114     fallback_brand, CTLFLAG_RWTUN, &__elfN(fallback_brand), 0,
115     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) " brand of last resort");
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     (defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__)
124         1;
125 #else
126         0;
127 #endif
128 SYSCTL_INT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO,
129     nxstack, CTLFLAG_RW, &__elfN(nxstack), 0,
130     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) ": enable non-executable stack");
131
132 #if __ELF_WORD_SIZE == 32
133 #if defined(__amd64__)
134 int i386_read_exec = 0;
135 SYSCTL_INT(_kern_elf32, OID_AUTO, read_exec, CTLFLAG_RW, &i386_read_exec, 0,
136     "enable execution from readable segments");
137 #endif
138 #endif
139
140 static Elf_Brandinfo *elf_brand_list[MAX_BRANDS];
141
142 #define trunc_page_ps(va, ps)   ((va) & ~(ps - 1))
143 #define round_page_ps(va, ps)   (((va) + (ps - 1)) & ~(ps - 1))
144 #define aligned(a, t)   (trunc_page_ps((u_long)(a), sizeof(t)) == (u_long)(a))
145
146 static const char FREEBSD_ABI_VENDOR[] = "FreeBSD";
147
148 Elf_Brandnote __elfN(freebsd_brandnote) = {
149         .hdr.n_namesz   = sizeof(FREEBSD_ABI_VENDOR),
150         .hdr.n_descsz   = sizeof(int32_t),
151         .hdr.n_type     = NT_FREEBSD_ABI_TAG,
152         .vendor         = FREEBSD_ABI_VENDOR,
153         .flags          = BN_TRANSLATE_OSREL,
154         .trans_osrel    = __elfN(freebsd_trans_osrel)
155 };
156
157 static boolean_t
158 __elfN(freebsd_trans_osrel)(const Elf_Note *note, int32_t *osrel)
159 {
160         uintptr_t p;
161
162         p = (uintptr_t)(note + 1);
163         p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE);
164         *osrel = *(const int32_t *)(p);
165
166         return (TRUE);
167 }
168
169 static const char GNU_ABI_VENDOR[] = "GNU";
170 static int GNU_KFREEBSD_ABI_DESC = 3;
171
172 Elf_Brandnote __elfN(kfreebsd_brandnote) = {
173         .hdr.n_namesz   = sizeof(GNU_ABI_VENDOR),
174         .hdr.n_descsz   = 16,   /* XXX at least 16 */
175         .hdr.n_type     = 1,
176         .vendor         = GNU_ABI_VENDOR,
177         .flags          = BN_TRANSLATE_OSREL,
178         .trans_osrel    = kfreebsd_trans_osrel
179 };
180
181 static boolean_t
182 kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel)
183 {
184         const Elf32_Word *desc;
185         uintptr_t p;
186
187         p = (uintptr_t)(note + 1);
188         p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE);
189
190         desc = (const Elf32_Word *)p;
191         if (desc[0] != GNU_KFREEBSD_ABI_DESC)
192                 return (FALSE);
193
194         /*
195          * Debian GNU/kFreeBSD embed the earliest compatible kernel version
196          * (__FreeBSD_version: <major><two digit minor>Rxx) in the LSB way.
197          */
198         *osrel = desc[1] * 100000 + desc[2] * 1000 + desc[3];
199
200         return (TRUE);
201 }
202
203 int
204 __elfN(insert_brand_entry)(Elf_Brandinfo *entry)
205 {
206         int i;
207
208         for (i = 0; i < MAX_BRANDS; i++) {
209                 if (elf_brand_list[i] == NULL) {
210                         elf_brand_list[i] = entry;
211                         break;
212                 }
213         }
214         if (i == MAX_BRANDS) {
215                 printf("WARNING: %s: could not insert brandinfo entry: %p\n",
216                         __func__, entry);
217                 return (-1);
218         }
219         return (0);
220 }
221
222 int
223 __elfN(remove_brand_entry)(Elf_Brandinfo *entry)
224 {
225         int i;
226
227         for (i = 0; i < MAX_BRANDS; i++) {
228                 if (elf_brand_list[i] == entry) {
229                         elf_brand_list[i] = NULL;
230                         break;
231                 }
232         }
233         if (i == MAX_BRANDS)
234                 return (-1);
235         return (0);
236 }
237
238 int
239 __elfN(brand_inuse)(Elf_Brandinfo *entry)
240 {
241         struct proc *p;
242         int rval = FALSE;
243
244         sx_slock(&allproc_lock);
245         FOREACH_PROC_IN_SYSTEM(p) {
246                 if (p->p_sysent == entry->sysvec) {
247                         rval = TRUE;
248                         break;
249                 }
250         }
251         sx_sunlock(&allproc_lock);
252
253         return (rval);
254 }
255
256 static Elf_Brandinfo *
257 __elfN(get_brandinfo)(struct image_params *imgp, const char *interp,
258     int interp_name_len, int32_t *osrel)
259 {
260         const Elf_Ehdr *hdr = (const Elf_Ehdr *)imgp->image_header;
261         Elf_Brandinfo *bi;
262         boolean_t ret;
263         int i;
264
265         /*
266          * We support four types of branding -- (1) the ELF EI_OSABI field
267          * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string
268          * branding w/in the ELF header, (3) path of the `interp_path'
269          * field, and (4) the ".note.ABI-tag" ELF section.
270          */
271
272         /* Look for an ".note.ABI-tag" ELF section */
273         for (i = 0; i < MAX_BRANDS; i++) {
274                 bi = elf_brand_list[i];
275                 if (bi == NULL)
276                         continue;
277                 if (hdr->e_machine == bi->machine && (bi->flags &
278                     (BI_BRAND_NOTE|BI_BRAND_NOTE_MANDATORY)) != 0) {
279                         ret = __elfN(check_note)(imgp, bi->brand_note, osrel);
280                         /* Give brand a chance to veto check_note's guess */
281                         if (ret && bi->header_supported)
282                                 ret = bi->header_supported(imgp);
283                         if (ret)
284                                 return (bi);
285                 }
286         }
287
288         /* If the executable has a brand, search for it in the brand list. */
289         for (i = 0; i < MAX_BRANDS; i++) {
290                 bi = elf_brand_list[i];
291                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
292                         continue;
293                 if (hdr->e_machine == bi->machine &&
294                     (hdr->e_ident[EI_OSABI] == bi->brand ||
295                     strncmp((const char *)&hdr->e_ident[OLD_EI_BRAND],
296                     bi->compat_3_brand, strlen(bi->compat_3_brand)) == 0)) {
297                         /* Looks good, but give brand a chance to veto */
298                         if (!bi->header_supported || bi->header_supported(imgp))
299                                 return (bi);
300                 }
301         }
302
303         /* No known brand, see if the header is recognized by any brand */
304         for (i = 0; i < MAX_BRANDS; i++) {
305                 bi = elf_brand_list[i];
306                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY ||
307                     bi->header_supported == NULL)
308                         continue;
309                 if (hdr->e_machine == bi->machine) {
310                         ret = bi->header_supported(imgp);
311                         if (ret)
312                                 return (bi);
313                 }
314         }
315
316         /* Lacking a known brand, search for a recognized interpreter. */
317         if (interp != NULL) {
318                 for (i = 0; i < MAX_BRANDS; i++) {
319                         bi = elf_brand_list[i];
320                         if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
321                                 continue;
322                         if (hdr->e_machine == bi->machine &&
323                             /* ELF image p_filesz includes terminating zero */
324                             strlen(bi->interp_path) + 1 == interp_name_len &&
325                             strncmp(interp, bi->interp_path, interp_name_len)
326                             == 0)
327                                 return (bi);
328                 }
329         }
330
331         /* Lacking a recognized interpreter, try the default brand */
332         for (i = 0; i < MAX_BRANDS; i++) {
333                 bi = elf_brand_list[i];
334                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY)
335                         continue;
336                 if (hdr->e_machine == bi->machine &&
337                     __elfN(fallback_brand) == bi->brand)
338                         return (bi);
339         }
340         return (NULL);
341 }
342
343 static int
344 __elfN(check_header)(const Elf_Ehdr *hdr)
345 {
346         Elf_Brandinfo *bi;
347         int i;
348
349         if (!IS_ELF(*hdr) ||
350             hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
351             hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
352             hdr->e_ident[EI_VERSION] != EV_CURRENT ||
353             hdr->e_phentsize != sizeof(Elf_Phdr) ||
354             hdr->e_version != ELF_TARG_VER)
355                 return (ENOEXEC);
356
357         /*
358          * Make sure we have at least one brand for this machine.
359          */
360
361         for (i = 0; i < MAX_BRANDS; i++) {
362                 bi = elf_brand_list[i];
363                 if (bi != NULL && bi->machine == hdr->e_machine)
364                         break;
365         }
366         if (i == MAX_BRANDS)
367                 return (ENOEXEC);
368
369         return (0);
370 }
371
372 static int
373 __elfN(map_partial)(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
374     vm_offset_t start, vm_offset_t end, vm_prot_t prot)
375 {
376         struct sf_buf *sf;
377         int error;
378         vm_offset_t off;
379
380         /*
381          * Create the page if it doesn't exist yet. Ignore errors.
382          */
383         vm_map_lock(map);
384         vm_map_insert(map, NULL, 0, trunc_page(start), round_page(end),
385             VM_PROT_ALL, VM_PROT_ALL, 0);
386         vm_map_unlock(map);
387
388         /*
389          * Find the page from the underlying object.
390          */
391         if (object) {
392                 sf = vm_imgact_map_page(object, offset);
393                 if (sf == NULL)
394                         return (KERN_FAILURE);
395                 off = offset - trunc_page(offset);
396                 error = copyout((caddr_t)sf_buf_kva(sf) + off, (caddr_t)start,
397                     end - start);
398                 vm_imgact_unmap_page(sf);
399                 if (error) {
400                         return (KERN_FAILURE);
401                 }
402         }
403
404         return (KERN_SUCCESS);
405 }
406
407 static int
408 __elfN(map_insert)(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
409     vm_offset_t start, vm_offset_t end, vm_prot_t prot, int cow)
410 {
411         struct sf_buf *sf;
412         vm_offset_t off;
413         vm_size_t sz;
414         int error, rv;
415
416         if (start != trunc_page(start)) {
417                 rv = __elfN(map_partial)(map, object, offset, start,
418                     round_page(start), prot);
419                 if (rv)
420                         return (rv);
421                 offset += round_page(start) - start;
422                 start = round_page(start);
423         }
424         if (end != round_page(end)) {
425                 rv = __elfN(map_partial)(map, object, offset +
426                     trunc_page(end) - start, trunc_page(end), end, prot);
427                 if (rv)
428                         return (rv);
429                 end = trunc_page(end);
430         }
431         if (end > start) {
432                 if (offset & PAGE_MASK) {
433                         /*
434                          * The mapping is not page aligned. This means we have
435                          * to copy the data. Sigh.
436                          */
437                         rv = vm_map_find(map, NULL, 0, &start, end - start, 0,
438                             VMFS_NO_SPACE, prot | VM_PROT_WRITE, VM_PROT_ALL,
439                             0);
440                         if (rv)
441                                 return (rv);
442                         if (object == NULL)
443                                 return (KERN_SUCCESS);
444                         for (; start < end; start += sz) {
445                                 sf = vm_imgact_map_page(object, offset);
446                                 if (sf == NULL)
447                                         return (KERN_FAILURE);
448                                 off = offset - trunc_page(offset);
449                                 sz = end - start;
450                                 if (sz > PAGE_SIZE - off)
451                                         sz = PAGE_SIZE - off;
452                                 error = copyout((caddr_t)sf_buf_kva(sf) + off,
453                                     (caddr_t)start, sz);
454                                 vm_imgact_unmap_page(sf);
455                                 if (error) {
456                                         return (KERN_FAILURE);
457                                 }
458                                 offset += sz;
459                         }
460                         rv = KERN_SUCCESS;
461                 } else {
462                         vm_object_reference(object);
463                         vm_map_lock(map);
464                         rv = vm_map_insert(map, object, offset, start, end,
465                             prot, VM_PROT_ALL, cow);
466                         vm_map_unlock(map);
467                         if (rv != KERN_SUCCESS)
468                                 vm_object_deallocate(object);
469                 }
470                 return (rv);
471         } else {
472                 return (KERN_SUCCESS);
473         }
474 }
475
476 static int
477 __elfN(load_section)(struct image_params *imgp, vm_offset_t offset,
478     caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot,
479     size_t pagesize)
480 {
481         struct sf_buf *sf;
482         size_t map_len;
483         vm_map_t map;
484         vm_object_t object;
485         vm_offset_t map_addr;
486         int error, rv, cow;
487         size_t copy_len;
488         vm_offset_t file_addr;
489
490         /*
491          * It's necessary to fail if the filsz + offset taken from the
492          * header is greater than the actual file pager object's size.
493          * If we were to allow this, then the vm_map_find() below would
494          * walk right off the end of the file object and into the ether.
495          *
496          * While I'm here, might as well check for something else that
497          * is invalid: filsz cannot be greater than memsz.
498          */
499         if ((off_t)filsz + offset > imgp->attr->va_size || filsz > memsz) {
500                 uprintf("elf_load_section: truncated ELF file\n");
501                 return (ENOEXEC);
502         }
503
504         object = imgp->object;
505         map = &imgp->proc->p_vmspace->vm_map;
506         map_addr = trunc_page_ps((vm_offset_t)vmaddr, pagesize);
507         file_addr = trunc_page_ps(offset, pagesize);
508
509         /*
510          * We have two choices.  We can either clear the data in the last page
511          * of an oversized mapping, or we can start the anon mapping a page
512          * early and copy the initialized data into that first page.  We
513          * choose the second..
514          */
515         if (memsz > filsz)
516                 map_len = trunc_page_ps(offset + filsz, pagesize) - file_addr;
517         else
518                 map_len = round_page_ps(offset + filsz, pagesize) - file_addr;
519
520         if (map_len != 0) {
521                 /* cow flags: don't dump readonly sections in core */
522                 cow = MAP_COPY_ON_WRITE | MAP_PREFAULT |
523                     (prot & VM_PROT_WRITE ? 0 : MAP_DISABLE_COREDUMP);
524
525                 rv = __elfN(map_insert)(map,
526                                       object,
527                                       file_addr,        /* file offset */
528                                       map_addr,         /* virtual start */
529                                       map_addr + map_len,/* virtual end */
530                                       prot,
531                                       cow);
532                 if (rv != KERN_SUCCESS)
533                         return (EINVAL);
534
535                 /* we can stop now if we've covered it all */
536                 if (memsz == filsz) {
537                         return (0);
538                 }
539         }
540
541
542         /*
543          * We have to get the remaining bit of the file into the first part
544          * of the oversized map segment.  This is normally because the .data
545          * segment in the file is extended to provide bss.  It's a neat idea
546          * to try and save a page, but it's a pain in the behind to implement.
547          */
548         copy_len = (offset + filsz) - trunc_page_ps(offset + filsz, pagesize);
549         map_addr = trunc_page_ps((vm_offset_t)vmaddr + filsz, pagesize);
550         map_len = round_page_ps((vm_offset_t)vmaddr + memsz, pagesize) -
551             map_addr;
552
553         /* This had damn well better be true! */
554         if (map_len != 0) {
555                 rv = __elfN(map_insert)(map, NULL, 0, map_addr, map_addr +
556                     map_len, VM_PROT_ALL, 0);
557                 if (rv != KERN_SUCCESS) {
558                         return (EINVAL);
559                 }
560         }
561
562         if (copy_len != 0) {
563                 vm_offset_t off;
564
565                 sf = vm_imgact_map_page(object, offset + filsz);
566                 if (sf == NULL)
567                         return (EIO);
568
569                 /* send the page fragment to user space */
570                 off = trunc_page_ps(offset + filsz, pagesize) -
571                     trunc_page(offset + filsz);
572                 error = copyout((caddr_t)sf_buf_kva(sf) + off,
573                     (caddr_t)map_addr, copy_len);
574                 vm_imgact_unmap_page(sf);
575                 if (error) {
576                         return (error);
577                 }
578         }
579
580         /*
581          * set it to the specified protection.
582          * XXX had better undo the damage from pasting over the cracks here!
583          */
584         vm_map_protect(map, trunc_page(map_addr), round_page(map_addr +
585             map_len), prot, FALSE);
586
587         return (0);
588 }
589
590 /*
591  * Load the file "file" into memory.  It may be either a shared object
592  * or an executable.
593  *
594  * The "addr" reference parameter is in/out.  On entry, it specifies
595  * the address where a shared object should be loaded.  If the file is
596  * an executable, this value is ignored.  On exit, "addr" specifies
597  * where the file was actually loaded.
598  *
599  * The "entry" reference parameter is out only.  On exit, it specifies
600  * the entry point for the loaded file.
601  */
602 static int
603 __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
604         u_long *entry, size_t pagesize)
605 {
606         struct {
607                 struct nameidata nd;
608                 struct vattr attr;
609                 struct image_params image_params;
610         } *tempdata;
611         const Elf_Ehdr *hdr = NULL;
612         const Elf_Phdr *phdr = NULL;
613         struct nameidata *nd;
614         struct vattr *attr;
615         struct image_params *imgp;
616         vm_prot_t prot;
617         u_long rbase;
618         u_long base_addr = 0;
619         int error, i, numsegs;
620
621 #ifdef CAPABILITY_MODE
622         /*
623          * XXXJA: This check can go away once we are sufficiently confident
624          * that the checks in namei() are correct.
625          */
626         if (IN_CAPABILITY_MODE(curthread))
627                 return (ECAPMODE);
628 #endif
629
630         tempdata = malloc(sizeof(*tempdata), M_TEMP, M_WAITOK);
631         nd = &tempdata->nd;
632         attr = &tempdata->attr;
633         imgp = &tempdata->image_params;
634
635         /*
636          * Initialize part of the common data
637          */
638         imgp->proc = p;
639         imgp->attr = attr;
640         imgp->firstpage = NULL;
641         imgp->image_header = NULL;
642         imgp->object = NULL;
643         imgp->execlabel = NULL;
644
645         NDINIT(nd, LOOKUP, LOCKLEAF | FOLLOW, UIO_SYSSPACE, file, curthread);
646         if ((error = namei(nd)) != 0) {
647                 nd->ni_vp = NULL;
648                 goto fail;
649         }
650         NDFREE(nd, NDF_ONLY_PNBUF);
651         imgp->vp = nd->ni_vp;
652
653         /*
654          * Check permissions, modes, uid, etc on the file, and "open" it.
655          */
656         error = exec_check_permissions(imgp);
657         if (error)
658                 goto fail;
659
660         error = exec_map_first_page(imgp);
661         if (error)
662                 goto fail;
663
664         /*
665          * Also make certain that the interpreter stays the same, so set
666          * its VV_TEXT flag, too.
667          */
668         VOP_SET_TEXT(nd->ni_vp);
669
670         imgp->object = nd->ni_vp->v_object;
671
672         hdr = (const Elf_Ehdr *)imgp->image_header;
673         if ((error = __elfN(check_header)(hdr)) != 0)
674                 goto fail;
675         if (hdr->e_type == ET_DYN)
676                 rbase = *addr;
677         else if (hdr->e_type == ET_EXEC)
678                 rbase = 0;
679         else {
680                 error = ENOEXEC;
681                 goto fail;
682         }
683
684         /* Only support headers that fit within first page for now      */
685         if ((hdr->e_phoff > PAGE_SIZE) ||
686             (u_int)hdr->e_phentsize * hdr->e_phnum > PAGE_SIZE - hdr->e_phoff) {
687                 error = ENOEXEC;
688                 goto fail;
689         }
690
691         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
692         if (!aligned(phdr, Elf_Addr)) {
693                 error = ENOEXEC;
694                 goto fail;
695         }
696
697         for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) {
698                 if (phdr[i].p_type == PT_LOAD && phdr[i].p_memsz != 0) {
699                         /* Loadable segment */
700                         prot = __elfN(trans_prot)(phdr[i].p_flags);
701                         error = __elfN(load_section)(imgp, phdr[i].p_offset,
702                             (caddr_t)(uintptr_t)phdr[i].p_vaddr + rbase,
703                             phdr[i].p_memsz, phdr[i].p_filesz, prot, pagesize);
704                         if (error != 0)
705                                 goto fail;
706                         /*
707                          * Establish the base address if this is the
708                          * first segment.
709                          */
710                         if (numsegs == 0)
711                                 base_addr = trunc_page(phdr[i].p_vaddr +
712                                     rbase);
713                         numsegs++;
714                 }
715         }
716         *addr = base_addr;
717         *entry = (unsigned long)hdr->e_entry + rbase;
718
719 fail:
720         if (imgp->firstpage)
721                 exec_unmap_first_page(imgp);
722
723         if (nd->ni_vp)
724                 vput(nd->ni_vp);
725
726         free(tempdata, M_TEMP);
727
728         return (error);
729 }
730
731 static int
732 __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp)
733 {
734         struct thread *td;
735         const Elf_Ehdr *hdr;
736         const Elf_Phdr *phdr;
737         Elf_Auxargs *elf_auxargs;
738         struct vmspace *vmspace;
739         const char *err_str, *newinterp;
740         char *interp, *interp_buf, *path;
741         Elf_Brandinfo *brand_info;
742         struct sysentvec *sv;
743         vm_prot_t prot;
744         u_long text_size, data_size, total_size, text_addr, data_addr;
745         u_long seg_size, seg_addr, addr, baddr, et_dyn_addr, entry, proghdr;
746         int32_t osrel;
747         int error, i, n, interp_name_len, have_interp;
748
749         hdr = (const Elf_Ehdr *)imgp->image_header;
750
751         /*
752          * Do we have a valid ELF header ?
753          *
754          * Only allow ET_EXEC & ET_DYN here, reject ET_DYN later
755          * if particular brand doesn't support it.
756          */
757         if (__elfN(check_header)(hdr) != 0 ||
758             (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN))
759                 return (-1);
760
761         /*
762          * From here on down, we return an errno, not -1, as we've
763          * detected an ELF file.
764          */
765
766         if ((hdr->e_phoff > PAGE_SIZE) ||
767             (u_int)hdr->e_phentsize * hdr->e_phnum > PAGE_SIZE - hdr->e_phoff) {
768                 /* Only support headers in first page for now */
769                 uprintf("Program headers not in the first page\n");
770                 return (ENOEXEC);
771         }
772         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff); 
773         if (!aligned(phdr, Elf_Addr)) {
774                 uprintf("Unaligned program headers\n");
775                 return (ENOEXEC);
776         }
777
778         n = error = 0;
779         baddr = 0;
780         osrel = 0;
781         text_size = data_size = total_size = text_addr = data_addr = 0;
782         entry = proghdr = 0;
783         interp_name_len = 0;
784         err_str = newinterp = NULL;
785         interp = interp_buf = NULL;
786         td = curthread;
787
788         for (i = 0; i < hdr->e_phnum; i++) {
789                 switch (phdr[i].p_type) {
790                 case PT_LOAD:
791                         if (n == 0)
792                                 baddr = phdr[i].p_vaddr;
793                         n++;
794                         break;
795                 case PT_INTERP:
796                         /* Path to interpreter */
797                         if (phdr[i].p_filesz > MAXPATHLEN) {
798                                 uprintf("Invalid PT_INTERP\n");
799                                 error = ENOEXEC;
800                                 goto ret;
801                         }
802                         if (interp != NULL) {
803                                 uprintf("Multiple PT_INTERP headers\n");
804                                 error = ENOEXEC;
805                                 goto ret;
806                         }
807                         interp_name_len = phdr[i].p_filesz;
808                         if (phdr[i].p_offset > PAGE_SIZE ||
809                             interp_name_len > PAGE_SIZE - phdr[i].p_offset) {
810                                 VOP_UNLOCK(imgp->vp, 0);
811                                 interp_buf = malloc(interp_name_len + 1, M_TEMP,
812                                     M_WAITOK);
813                                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
814                                 error = vn_rdwr(UIO_READ, imgp->vp, interp_buf,
815                                     interp_name_len, phdr[i].p_offset,
816                                     UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred,
817                                     NOCRED, NULL, td);
818                                 if (error != 0) {
819                                         uprintf("i/o error PT_INTERP\n");
820                                         goto ret;
821                                 }
822                                 interp_buf[interp_name_len] = '\0';
823                                 interp = interp_buf;
824                         } else {
825                                 interp = __DECONST(char *, imgp->image_header) +
826                                     phdr[i].p_offset;
827                         }
828                         break;
829                 case PT_GNU_STACK:
830                         if (__elfN(nxstack))
831                                 imgp->stack_prot =
832                                     __elfN(trans_prot)(phdr[i].p_flags);
833                         imgp->stack_sz = phdr[i].p_memsz;
834                         break;
835                 }
836         }
837
838         brand_info = __elfN(get_brandinfo)(imgp, interp, interp_name_len,
839             &osrel);
840         if (brand_info == NULL) {
841                 uprintf("ELF binary type \"%u\" not known.\n",
842                     hdr->e_ident[EI_OSABI]);
843                 error = ENOEXEC;
844                 goto ret;
845         }
846         if (hdr->e_type == ET_DYN) {
847                 if ((brand_info->flags & BI_CAN_EXEC_DYN) == 0) {
848                         uprintf("Cannot execute shared object\n");
849                         error = ENOEXEC;
850                         goto ret;
851                 }
852                 /*
853                  * Honour the base load address from the dso if it is
854                  * non-zero for some reason.
855                  */
856                 if (baddr == 0)
857                         et_dyn_addr = ET_DYN_LOAD_ADDR;
858                 else
859                         et_dyn_addr = 0;
860         } else
861                 et_dyn_addr = 0;
862         sv = brand_info->sysvec;
863         if (interp != NULL && brand_info->interp_newpath != NULL)
864                 newinterp = brand_info->interp_newpath;
865
866         /*
867          * Avoid a possible deadlock if the current address space is destroyed
868          * and that address space maps the locked vnode.  In the common case,
869          * the locked vnode's v_usecount is decremented but remains greater
870          * than zero.  Consequently, the vnode lock is not needed by vrele().
871          * However, in cases where the vnode lock is external, such as nullfs,
872          * v_usecount may become zero.
873          *
874          * The VV_TEXT flag prevents modifications to the executable while
875          * the vnode is unlocked.
876          */
877         VOP_UNLOCK(imgp->vp, 0);
878
879         error = exec_new_vmspace(imgp, sv);
880         imgp->proc->p_sysent = sv;
881
882         vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
883         if (error != 0)
884                 goto ret;
885
886         for (i = 0; i < hdr->e_phnum; i++) {
887                 switch (phdr[i].p_type) {
888                 case PT_LOAD:   /* Loadable segment */
889                         if (phdr[i].p_memsz == 0)
890                                 break;
891                         prot = __elfN(trans_prot)(phdr[i].p_flags);
892                         error = __elfN(load_section)(imgp, phdr[i].p_offset,
893                             (caddr_t)(uintptr_t)phdr[i].p_vaddr + et_dyn_addr,
894                             phdr[i].p_memsz, phdr[i].p_filesz, prot,
895                             sv->sv_pagesize);
896                         if (error != 0)
897                                 goto ret;
898
899                         /*
900                          * If this segment contains the program headers,
901                          * remember their virtual address for the AT_PHDR
902                          * aux entry. Static binaries don't usually include
903                          * a PT_PHDR entry.
904                          */
905                         if (phdr[i].p_offset == 0 &&
906                             hdr->e_phoff + hdr->e_phnum * hdr->e_phentsize
907                                 <= phdr[i].p_filesz)
908                                 proghdr = phdr[i].p_vaddr + hdr->e_phoff +
909                                     et_dyn_addr;
910
911                         seg_addr = trunc_page(phdr[i].p_vaddr + et_dyn_addr);
912                         seg_size = round_page(phdr[i].p_memsz +
913                             phdr[i].p_vaddr + et_dyn_addr - seg_addr);
914
915                         /*
916                          * Make the largest executable segment the official
917                          * text segment and all others data.
918                          *
919                          * Note that obreak() assumes that data_addr + 
920                          * data_size == end of data load area, and the ELF
921                          * file format expects segments to be sorted by
922                          * address.  If multiple data segments exist, the
923                          * last one will be used.
924                          */
925
926                         if (phdr[i].p_flags & PF_X && text_size < seg_size) {
927                                 text_size = seg_size;
928                                 text_addr = seg_addr;
929                         } else {
930                                 data_size = seg_size;
931                                 data_addr = seg_addr;
932                         }
933                         total_size += seg_size;
934                         break;
935                 case PT_PHDR:   /* Program header table info */
936                         proghdr = phdr[i].p_vaddr + et_dyn_addr;
937                         break;
938                 default:
939                         break;
940                 }
941         }
942         
943         if (data_addr == 0 && data_size == 0) {
944                 data_addr = text_addr;
945                 data_size = text_size;
946         }
947
948         entry = (u_long)hdr->e_entry + et_dyn_addr;
949
950         /*
951          * Check limits.  It should be safe to check the
952          * limits after loading the segments since we do
953          * not actually fault in all the segments pages.
954          */
955         PROC_LOCK(imgp->proc);
956         if (data_size > lim_cur_proc(imgp->proc, RLIMIT_DATA))
957                 err_str = "Data segment size exceeds process limit";
958         else if (text_size > maxtsiz)
959                 err_str = "Text segment size exceeds system limit";
960         else if (total_size > lim_cur_proc(imgp->proc, RLIMIT_VMEM))
961                 err_str = "Total segment size exceeds process limit";
962         else if (racct_set(imgp->proc, RACCT_DATA, data_size) != 0)
963                 err_str = "Data segment size exceeds resource limit";
964         else if (racct_set(imgp->proc, RACCT_VMEM, total_size) != 0)
965                 err_str = "Total segment size exceeds resource limit";
966         if (err_str != NULL) {
967                 PROC_UNLOCK(imgp->proc);
968                 uprintf("%s\n", err_str);
969                 error = ENOMEM;
970                 goto ret;
971         }
972
973         vmspace = imgp->proc->p_vmspace;
974         vmspace->vm_tsize = text_size >> PAGE_SHIFT;
975         vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr;
976         vmspace->vm_dsize = data_size >> PAGE_SHIFT;
977         vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr;
978
979         /*
980          * We load the dynamic linker where a userland call
981          * to mmap(0, ...) would put it.  The rationale behind this
982          * calculation is that it leaves room for the heap to grow to
983          * its maximum allowed size.
984          */
985         addr = round_page((vm_offset_t)vmspace->vm_daddr + lim_max(td,
986             RLIMIT_DATA));
987         PROC_UNLOCK(imgp->proc);
988
989         imgp->entry_addr = entry;
990
991         if (interp != NULL) {
992                 have_interp = FALSE;
993                 VOP_UNLOCK(imgp->vp, 0);
994                 if (brand_info->emul_path != NULL &&
995                     brand_info->emul_path[0] != '\0') {
996                         path = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
997                         snprintf(path, MAXPATHLEN, "%s%s",
998                             brand_info->emul_path, interp);
999                         error = __elfN(load_file)(imgp->proc, path, &addr,
1000                             &imgp->entry_addr, sv->sv_pagesize);
1001                         free(path, M_TEMP);
1002                         if (error == 0)
1003                                 have_interp = TRUE;
1004                 }
1005                 if (!have_interp && newinterp != NULL) {
1006                         error = __elfN(load_file)(imgp->proc, newinterp, &addr,
1007                             &imgp->entry_addr, sv->sv_pagesize);
1008                         if (error == 0)
1009                                 have_interp = TRUE;
1010                 }
1011                 if (!have_interp) {
1012                         error = __elfN(load_file)(imgp->proc, interp, &addr,
1013                             &imgp->entry_addr, sv->sv_pagesize);
1014                 }
1015                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
1016                 if (error != 0) {
1017                         uprintf("ELF interpreter %s not found, error %d\n",
1018                             interp, error);
1019                         goto ret;
1020                 }
1021         } else
1022                 addr = et_dyn_addr;
1023
1024         /*
1025          * Construct auxargs table (used by the fixup routine)
1026          */
1027         elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
1028         elf_auxargs->execfd = -1;
1029         elf_auxargs->phdr = proghdr;
1030         elf_auxargs->phent = hdr->e_phentsize;
1031         elf_auxargs->phnum = hdr->e_phnum;
1032         elf_auxargs->pagesz = PAGE_SIZE;
1033         elf_auxargs->base = addr;
1034         elf_auxargs->flags = 0;
1035         elf_auxargs->entry = entry;
1036         elf_auxargs->hdr_eflags = hdr->e_flags;
1037
1038         imgp->auxargs = elf_auxargs;
1039         imgp->interpreted = 0;
1040         imgp->reloc_base = addr;
1041         imgp->proc->p_osrel = osrel;
1042
1043  ret:
1044         free(interp_buf, M_TEMP);
1045         return (error);
1046 }
1047
1048 #define suword __CONCAT(suword, __ELF_WORD_SIZE)
1049
1050 int
1051 __elfN(freebsd_fixup)(register_t **stack_base, struct image_params *imgp)
1052 {
1053         Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
1054         Elf_Addr *base;
1055         Elf_Addr *pos;
1056
1057         base = (Elf_Addr *)*stack_base;
1058         pos = base + (imgp->args->argc + imgp->args->envc + 2);
1059
1060         if (args->execfd != -1)
1061                 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
1062         AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
1063         AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
1064         AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
1065         AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
1066         AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
1067         AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
1068         AUXARGS_ENTRY(pos, AT_BASE, args->base);
1069 #ifdef AT_EHDRFLAGS
1070         AUXARGS_ENTRY(pos, AT_EHDRFLAGS, args->hdr_eflags);
1071 #endif
1072         if (imgp->execpathp != 0)
1073                 AUXARGS_ENTRY(pos, AT_EXECPATH, imgp->execpathp);
1074         AUXARGS_ENTRY(pos, AT_OSRELDATE,
1075             imgp->proc->p_ucred->cr_prison->pr_osreldate);
1076         if (imgp->canary != 0) {
1077                 AUXARGS_ENTRY(pos, AT_CANARY, imgp->canary);
1078                 AUXARGS_ENTRY(pos, AT_CANARYLEN, imgp->canarylen);
1079         }
1080         AUXARGS_ENTRY(pos, AT_NCPUS, mp_ncpus);
1081         if (imgp->pagesizes != 0) {
1082                 AUXARGS_ENTRY(pos, AT_PAGESIZES, imgp->pagesizes);
1083                 AUXARGS_ENTRY(pos, AT_PAGESIZESLEN, imgp->pagesizeslen);
1084         }
1085         if (imgp->sysent->sv_timekeep_base != 0) {
1086                 AUXARGS_ENTRY(pos, AT_TIMEKEEP,
1087                     imgp->sysent->sv_timekeep_base);
1088         }
1089         AUXARGS_ENTRY(pos, AT_STACKPROT, imgp->sysent->sv_shared_page_obj
1090             != NULL && imgp->stack_prot != 0 ? imgp->stack_prot :
1091             imgp->sysent->sv_stackprot);
1092         AUXARGS_ENTRY(pos, AT_NULL, 0);
1093
1094         free(imgp->auxargs, M_TEMP);
1095         imgp->auxargs = NULL;
1096
1097         base--;
1098         suword(base, (long)imgp->args->argc);
1099         *stack_base = (register_t *)base;
1100         return (0);
1101 }
1102
1103 /*
1104  * Code for generating ELF core dumps.
1105  */
1106
1107 typedef void (*segment_callback)(vm_map_entry_t, void *);
1108
1109 /* Closure for cb_put_phdr(). */
1110 struct phdr_closure {
1111         Elf_Phdr *phdr;         /* Program header to fill in */
1112         Elf_Off offset;         /* Offset of segment in core file */
1113 };
1114
1115 /* Closure for cb_size_segment(). */
1116 struct sseg_closure {
1117         int count;              /* Count of writable segments. */
1118         size_t size;            /* Total size of all writable segments. */
1119 };
1120
1121 typedef void (*outfunc_t)(void *, struct sbuf *, size_t *);
1122
1123 struct note_info {
1124         int             type;           /* Note type. */
1125         outfunc_t       outfunc;        /* Output function. */
1126         void            *outarg;        /* Argument for the output function. */
1127         size_t          outsize;        /* Output size. */
1128         TAILQ_ENTRY(note_info) link;    /* Link to the next note info. */
1129 };
1130
1131 TAILQ_HEAD(note_info_list, note_info);
1132
1133 /* Coredump output parameters. */
1134 struct coredump_params {
1135         off_t           offset;
1136         struct ucred    *active_cred;
1137         struct ucred    *file_cred;
1138         struct thread   *td;
1139         struct vnode    *vp;
1140         struct gzio_stream *gzs;
1141 };
1142
1143 static void cb_put_phdr(vm_map_entry_t, void *);
1144 static void cb_size_segment(vm_map_entry_t, void *);
1145 static int core_write(struct coredump_params *, void *, size_t, off_t,
1146     enum uio_seg);
1147 static void each_writable_segment(struct thread *, segment_callback, void *);
1148 static int __elfN(corehdr)(struct coredump_params *, int, void *, size_t,
1149     struct note_info_list *, size_t);
1150 static void __elfN(prepare_notes)(struct thread *, struct note_info_list *,
1151     size_t *);
1152 static void __elfN(puthdr)(struct thread *, void *, size_t, int, size_t);
1153 static void __elfN(putnote)(struct note_info *, struct sbuf *);
1154 static size_t register_note(struct note_info_list *, int, outfunc_t, void *);
1155 static int sbuf_drain_core_output(void *, const char *, int);
1156 static int sbuf_drain_count(void *arg, const char *data, int len);
1157
1158 static void __elfN(note_fpregset)(void *, struct sbuf *, size_t *);
1159 static void __elfN(note_prpsinfo)(void *, struct sbuf *, size_t *);
1160 static void __elfN(note_prstatus)(void *, struct sbuf *, size_t *);
1161 static void __elfN(note_threadmd)(void *, struct sbuf *, size_t *);
1162 static void __elfN(note_thrmisc)(void *, struct sbuf *, size_t *);
1163 static void __elfN(note_procstat_auxv)(void *, struct sbuf *, size_t *);
1164 static void __elfN(note_procstat_proc)(void *, struct sbuf *, size_t *);
1165 static void __elfN(note_procstat_psstrings)(void *, struct sbuf *, size_t *);
1166 static void note_procstat_files(void *, struct sbuf *, size_t *);
1167 static void note_procstat_groups(void *, struct sbuf *, size_t *);
1168 static void note_procstat_osrel(void *, struct sbuf *, size_t *);
1169 static void note_procstat_rlimit(void *, struct sbuf *, size_t *);
1170 static void note_procstat_umask(void *, struct sbuf *, size_t *);
1171 static void note_procstat_vmmap(void *, struct sbuf *, size_t *);
1172
1173 #ifdef GZIO
1174 extern int compress_user_cores_gzlevel;
1175
1176 /*
1177  * Write out a core segment to the compression stream.
1178  */
1179 static int
1180 compress_chunk(struct coredump_params *p, char *base, char *buf, u_int len)
1181 {
1182         u_int chunk_len;
1183         int error;
1184
1185         while (len > 0) {
1186                 chunk_len = MIN(len, CORE_BUF_SIZE);
1187                 copyin(base, buf, chunk_len);
1188                 error = gzio_write(p->gzs, buf, chunk_len);
1189                 if (error != 0)
1190                         break;
1191                 base += chunk_len;
1192                 len -= chunk_len;
1193         }
1194         return (error);
1195 }
1196
1197 static int
1198 core_gz_write(void *base, size_t len, off_t offset, void *arg)
1199 {
1200
1201         return (core_write((struct coredump_params *)arg, base, len, offset,
1202             UIO_SYSSPACE));
1203 }
1204 #endif /* GZIO */
1205
1206 static int
1207 core_write(struct coredump_params *p, void *base, size_t len, off_t offset,
1208     enum uio_seg seg)
1209 {
1210
1211         return (vn_rdwr_inchunks(UIO_WRITE, p->vp, base, len, offset,
1212             seg, IO_UNIT | IO_DIRECT | IO_RANGELOCKED,
1213             p->active_cred, p->file_cred, NULL, p->td));
1214 }
1215
1216 static int
1217 core_output(void *base, size_t len, off_t offset, struct coredump_params *p,
1218     void *tmpbuf)
1219 {
1220
1221 #ifdef GZIO
1222         if (p->gzs != NULL)
1223                 return (compress_chunk(p, base, tmpbuf, len));
1224 #endif
1225         return (core_write(p, base, len, offset, UIO_USERSPACE));
1226 }
1227
1228 /*
1229  * Drain into a core file.
1230  */
1231 static int
1232 sbuf_drain_core_output(void *arg, const char *data, int len)
1233 {
1234         struct coredump_params *p;
1235         int error, locked;
1236
1237         p = (struct coredump_params *)arg;
1238
1239         /*
1240          * Some kern_proc out routines that print to this sbuf may
1241          * call us with the process lock held. Draining with the
1242          * non-sleepable lock held is unsafe. The lock is needed for
1243          * those routines when dumping a live process. In our case we
1244          * can safely release the lock before draining and acquire
1245          * again after.
1246          */
1247         locked = PROC_LOCKED(p->td->td_proc);
1248         if (locked)
1249                 PROC_UNLOCK(p->td->td_proc);
1250 #ifdef GZIO
1251         if (p->gzs != NULL)
1252                 error = gzio_write(p->gzs, __DECONST(char *, data), len);
1253         else
1254 #endif
1255                 error = core_write(p, __DECONST(void *, data), len, p->offset,
1256                     UIO_SYSSPACE);
1257         if (locked)
1258                 PROC_LOCK(p->td->td_proc);
1259         if (error != 0)
1260                 return (-error);
1261         p->offset += len;
1262         return (len);
1263 }
1264
1265 /*
1266  * Drain into a counter.
1267  */
1268 static int
1269 sbuf_drain_count(void *arg, const char *data __unused, int len)
1270 {
1271         size_t *sizep;
1272
1273         sizep = (size_t *)arg;
1274         *sizep += len;
1275         return (len);
1276 }
1277
1278 int
1279 __elfN(coredump)(struct thread *td, struct vnode *vp, off_t limit, int flags)
1280 {
1281         struct ucred *cred = td->td_ucred;
1282         int error = 0;
1283         struct sseg_closure seginfo;
1284         struct note_info_list notelst;
1285         struct coredump_params params;
1286         struct note_info *ninfo;
1287         void *hdr, *tmpbuf;
1288         size_t hdrsize, notesz, coresize;
1289 #ifdef GZIO
1290         boolean_t compress;
1291
1292         compress = (flags & IMGACT_CORE_COMPRESS) != 0;
1293 #endif
1294         hdr = NULL;
1295         tmpbuf = NULL;
1296         TAILQ_INIT(&notelst);
1297
1298         /* Size the program segments. */
1299         seginfo.count = 0;
1300         seginfo.size = 0;
1301         each_writable_segment(td, cb_size_segment, &seginfo);
1302
1303         /*
1304          * Collect info about the core file header area.
1305          */
1306         hdrsize = sizeof(Elf_Ehdr) + sizeof(Elf_Phdr) * (1 + seginfo.count);
1307         __elfN(prepare_notes)(td, &notelst, &notesz);
1308         coresize = round_page(hdrsize + notesz) + seginfo.size;
1309
1310         /* Set up core dump parameters. */
1311         params.offset = 0;
1312         params.active_cred = cred;
1313         params.file_cred = NOCRED;
1314         params.td = td;
1315         params.vp = vp;
1316         params.gzs = NULL;
1317
1318 #ifdef RACCT
1319         if (racct_enable) {
1320                 PROC_LOCK(td->td_proc);
1321                 error = racct_add(td->td_proc, RACCT_CORE, coresize);
1322                 PROC_UNLOCK(td->td_proc);
1323                 if (error != 0) {
1324                         error = EFAULT;
1325                         goto done;
1326                 }
1327         }
1328 #endif
1329         if (coresize >= limit) {
1330                 error = EFAULT;
1331                 goto done;
1332         }
1333
1334 #ifdef GZIO
1335         /* Create a compression stream if necessary. */
1336         if (compress) {
1337                 params.gzs = gzio_init(core_gz_write, GZIO_DEFLATE,
1338                     CORE_BUF_SIZE, compress_user_cores_gzlevel, &params);
1339                 if (params.gzs == NULL) {
1340                         error = EFAULT;
1341                         goto done;
1342                 }
1343                 tmpbuf = malloc(CORE_BUF_SIZE, M_TEMP, M_WAITOK | M_ZERO);
1344         }
1345 #endif
1346
1347         /*
1348          * Allocate memory for building the header, fill it up,
1349          * and write it out following the notes.
1350          */
1351         hdr = malloc(hdrsize, M_TEMP, M_WAITOK);
1352         if (hdr == NULL) {
1353                 error = EINVAL;
1354                 goto done;
1355         }
1356         error = __elfN(corehdr)(&params, seginfo.count, hdr, hdrsize, &notelst,
1357             notesz);
1358
1359         /* Write the contents of all of the writable segments. */
1360         if (error == 0) {
1361                 Elf_Phdr *php;
1362                 off_t offset;
1363                 int i;
1364
1365                 php = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr)) + 1;
1366                 offset = round_page(hdrsize + notesz);
1367                 for (i = 0; i < seginfo.count; i++) {
1368                         error = core_output((caddr_t)(uintptr_t)php->p_vaddr,
1369                             php->p_filesz, offset, &params, tmpbuf);
1370                         if (error != 0)
1371                                 break;
1372                         offset += php->p_filesz;
1373                         php++;
1374                 }
1375 #ifdef GZIO
1376                 if (error == 0 && compress)
1377                         error = gzio_flush(params.gzs);
1378 #endif
1379         }
1380         if (error) {
1381                 log(LOG_WARNING,
1382                     "Failed to write core file for process %s (error %d)\n",
1383                     curproc->p_comm, error);
1384         }
1385
1386 done:
1387 #ifdef GZIO
1388         if (compress) {
1389                 free(tmpbuf, M_TEMP);
1390                 if (params.gzs != NULL)
1391                         gzio_fini(params.gzs);
1392         }
1393 #endif
1394         while ((ninfo = TAILQ_FIRST(&notelst)) != NULL) {
1395                 TAILQ_REMOVE(&notelst, ninfo, link);
1396                 free(ninfo, M_TEMP);
1397         }
1398         if (hdr != NULL)
1399                 free(hdr, M_TEMP);
1400
1401         return (error);
1402 }
1403
1404 /*
1405  * A callback for each_writable_segment() to write out the segment's
1406  * program header entry.
1407  */
1408 static void
1409 cb_put_phdr(entry, closure)
1410         vm_map_entry_t entry;
1411         void *closure;
1412 {
1413         struct phdr_closure *phc = (struct phdr_closure *)closure;
1414         Elf_Phdr *phdr = phc->phdr;
1415
1416         phc->offset = round_page(phc->offset);
1417
1418         phdr->p_type = PT_LOAD;
1419         phdr->p_offset = phc->offset;
1420         phdr->p_vaddr = entry->start;
1421         phdr->p_paddr = 0;
1422         phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1423         phdr->p_align = PAGE_SIZE;
1424         phdr->p_flags = __elfN(untrans_prot)(entry->protection);
1425
1426         phc->offset += phdr->p_filesz;
1427         phc->phdr++;
1428 }
1429
1430 /*
1431  * A callback for each_writable_segment() to gather information about
1432  * the number of segments and their total size.
1433  */
1434 static void
1435 cb_size_segment(entry, closure)
1436         vm_map_entry_t entry;
1437         void *closure;
1438 {
1439         struct sseg_closure *ssc = (struct sseg_closure *)closure;
1440
1441         ssc->count++;
1442         ssc->size += entry->end - entry->start;
1443 }
1444
1445 /*
1446  * For each writable segment in the process's memory map, call the given
1447  * function with a pointer to the map entry and some arbitrary
1448  * caller-supplied data.
1449  */
1450 static void
1451 each_writable_segment(td, func, closure)
1452         struct thread *td;
1453         segment_callback func;
1454         void *closure;
1455 {
1456         struct proc *p = td->td_proc;
1457         vm_map_t map = &p->p_vmspace->vm_map;
1458         vm_map_entry_t entry;
1459         vm_object_t backing_object, object;
1460         boolean_t ignore_entry;
1461
1462         vm_map_lock_read(map);
1463         for (entry = map->header.next; entry != &map->header;
1464             entry = entry->next) {
1465                 /*
1466                  * Don't dump inaccessible mappings, deal with legacy
1467                  * coredump mode.
1468                  *
1469                  * Note that read-only segments related to the elf binary
1470                  * are marked MAP_ENTRY_NOCOREDUMP now so we no longer
1471                  * need to arbitrarily ignore such segments.
1472                  */
1473                 if (elf_legacy_coredump) {
1474                         if ((entry->protection & VM_PROT_RW) != VM_PROT_RW)
1475                                 continue;
1476                 } else {
1477                         if ((entry->protection & VM_PROT_ALL) == 0)
1478                                 continue;
1479                 }
1480
1481                 /*
1482                  * Dont include memory segment in the coredump if
1483                  * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
1484                  * madvise(2).  Do not dump submaps (i.e. parts of the
1485                  * kernel map).
1486                  */
1487                 if (entry->eflags & (MAP_ENTRY_NOCOREDUMP|MAP_ENTRY_IS_SUB_MAP))
1488                         continue;
1489
1490                 if ((object = entry->object.vm_object) == NULL)
1491                         continue;
1492
1493                 /* Ignore memory-mapped devices and such things. */
1494                 VM_OBJECT_RLOCK(object);
1495                 while ((backing_object = object->backing_object) != NULL) {
1496                         VM_OBJECT_RLOCK(backing_object);
1497                         VM_OBJECT_RUNLOCK(object);
1498                         object = backing_object;
1499                 }
1500                 ignore_entry = object->type != OBJT_DEFAULT &&
1501                     object->type != OBJT_SWAP && object->type != OBJT_VNODE &&
1502                     object->type != OBJT_PHYS;
1503                 VM_OBJECT_RUNLOCK(object);
1504                 if (ignore_entry)
1505                         continue;
1506
1507                 (*func)(entry, closure);
1508         }
1509         vm_map_unlock_read(map);
1510 }
1511
1512 /*
1513  * Write the core file header to the file, including padding up to
1514  * the page boundary.
1515  */
1516 static int
1517 __elfN(corehdr)(struct coredump_params *p, int numsegs, void *hdr,
1518     size_t hdrsize, struct note_info_list *notelst, size_t notesz)
1519 {
1520         struct note_info *ninfo;
1521         struct sbuf *sb;
1522         int error;
1523
1524         /* Fill in the header. */
1525         bzero(hdr, hdrsize);
1526         __elfN(puthdr)(p->td, hdr, hdrsize, numsegs, notesz);
1527
1528         sb = sbuf_new(NULL, NULL, CORE_BUF_SIZE, SBUF_FIXEDLEN);
1529         sbuf_set_drain(sb, sbuf_drain_core_output, p);
1530         sbuf_start_section(sb, NULL);
1531         sbuf_bcat(sb, hdr, hdrsize);
1532         TAILQ_FOREACH(ninfo, notelst, link)
1533             __elfN(putnote)(ninfo, sb);
1534         /* Align up to a page boundary for the program segments. */
1535         sbuf_end_section(sb, -1, PAGE_SIZE, 0);
1536         error = sbuf_finish(sb);
1537         sbuf_delete(sb);
1538
1539         return (error);
1540 }
1541
1542 static void
1543 __elfN(prepare_notes)(struct thread *td, struct note_info_list *list,
1544     size_t *sizep)
1545 {
1546         struct proc *p;
1547         struct thread *thr;
1548         size_t size;
1549
1550         p = td->td_proc;
1551         size = 0;
1552
1553         size += register_note(list, NT_PRPSINFO, __elfN(note_prpsinfo), p);
1554
1555         /*
1556          * To have the debugger select the right thread (LWP) as the initial
1557          * thread, we dump the state of the thread passed to us in td first.
1558          * This is the thread that causes the core dump and thus likely to
1559          * be the right thread one wants to have selected in the debugger.
1560          */
1561         thr = td;
1562         while (thr != NULL) {
1563                 size += register_note(list, NT_PRSTATUS,
1564                     __elfN(note_prstatus), thr);
1565                 size += register_note(list, NT_FPREGSET,
1566                     __elfN(note_fpregset), thr);
1567                 size += register_note(list, NT_THRMISC,
1568                     __elfN(note_thrmisc), thr);
1569                 size += register_note(list, -1,
1570                     __elfN(note_threadmd), thr);
1571
1572                 thr = (thr == td) ? TAILQ_FIRST(&p->p_threads) :
1573                     TAILQ_NEXT(thr, td_plist);
1574                 if (thr == td)
1575                         thr = TAILQ_NEXT(thr, td_plist);
1576         }
1577
1578         size += register_note(list, NT_PROCSTAT_PROC,
1579             __elfN(note_procstat_proc), p);
1580         size += register_note(list, NT_PROCSTAT_FILES,
1581             note_procstat_files, p);
1582         size += register_note(list, NT_PROCSTAT_VMMAP,
1583             note_procstat_vmmap, p);
1584         size += register_note(list, NT_PROCSTAT_GROUPS,
1585             note_procstat_groups, p);
1586         size += register_note(list, NT_PROCSTAT_UMASK,
1587             note_procstat_umask, p);
1588         size += register_note(list, NT_PROCSTAT_RLIMIT,
1589             note_procstat_rlimit, p);
1590         size += register_note(list, NT_PROCSTAT_OSREL,
1591             note_procstat_osrel, p);
1592         size += register_note(list, NT_PROCSTAT_PSSTRINGS,
1593             __elfN(note_procstat_psstrings), p);
1594         size += register_note(list, NT_PROCSTAT_AUXV,
1595             __elfN(note_procstat_auxv), p);
1596
1597         *sizep = size;
1598 }
1599
1600 static void
1601 __elfN(puthdr)(struct thread *td, void *hdr, size_t hdrsize, int numsegs,
1602     size_t notesz)
1603 {
1604         Elf_Ehdr *ehdr;
1605         Elf_Phdr *phdr;
1606         struct phdr_closure phc;
1607
1608         ehdr = (Elf_Ehdr *)hdr;
1609         phdr = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr));
1610
1611         ehdr->e_ident[EI_MAG0] = ELFMAG0;
1612         ehdr->e_ident[EI_MAG1] = ELFMAG1;
1613         ehdr->e_ident[EI_MAG2] = ELFMAG2;
1614         ehdr->e_ident[EI_MAG3] = ELFMAG3;
1615         ehdr->e_ident[EI_CLASS] = ELF_CLASS;
1616         ehdr->e_ident[EI_DATA] = ELF_DATA;
1617         ehdr->e_ident[EI_VERSION] = EV_CURRENT;
1618         ehdr->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
1619         ehdr->e_ident[EI_ABIVERSION] = 0;
1620         ehdr->e_ident[EI_PAD] = 0;
1621         ehdr->e_type = ET_CORE;
1622 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1623         ehdr->e_machine = ELF_ARCH32;
1624 #else
1625         ehdr->e_machine = ELF_ARCH;
1626 #endif
1627         ehdr->e_version = EV_CURRENT;
1628         ehdr->e_entry = 0;
1629         ehdr->e_phoff = sizeof(Elf_Ehdr);
1630         ehdr->e_flags = 0;
1631         ehdr->e_ehsize = sizeof(Elf_Ehdr);
1632         ehdr->e_phentsize = sizeof(Elf_Phdr);
1633         ehdr->e_phnum = numsegs + 1;
1634         ehdr->e_shentsize = sizeof(Elf_Shdr);
1635         ehdr->e_shnum = 0;
1636         ehdr->e_shstrndx = SHN_UNDEF;
1637
1638         /*
1639          * Fill in the program header entries.
1640          */
1641
1642         /* The note segement. */
1643         phdr->p_type = PT_NOTE;
1644         phdr->p_offset = hdrsize;
1645         phdr->p_vaddr = 0;
1646         phdr->p_paddr = 0;
1647         phdr->p_filesz = notesz;
1648         phdr->p_memsz = 0;
1649         phdr->p_flags = PF_R;
1650         phdr->p_align = ELF_NOTE_ROUNDSIZE;
1651         phdr++;
1652
1653         /* All the writable segments from the program. */
1654         phc.phdr = phdr;
1655         phc.offset = round_page(hdrsize + notesz);
1656         each_writable_segment(td, cb_put_phdr, &phc);
1657 }
1658
1659 static size_t
1660 register_note(struct note_info_list *list, int type, outfunc_t out, void *arg)
1661 {
1662         struct note_info *ninfo;
1663         size_t size, notesize;
1664
1665         size = 0;
1666         out(arg, NULL, &size);
1667         ninfo = malloc(sizeof(*ninfo), M_TEMP, M_ZERO | M_WAITOK);
1668         ninfo->type = type;
1669         ninfo->outfunc = out;
1670         ninfo->outarg = arg;
1671         ninfo->outsize = size;
1672         TAILQ_INSERT_TAIL(list, ninfo, link);
1673
1674         if (type == -1)
1675                 return (size);
1676
1677         notesize = sizeof(Elf_Note) +           /* note header */
1678             roundup2(sizeof(FREEBSD_ABI_VENDOR), ELF_NOTE_ROUNDSIZE) +
1679                                                 /* note name */
1680             roundup2(size, ELF_NOTE_ROUNDSIZE); /* note description */
1681
1682         return (notesize);
1683 }
1684
1685 static size_t
1686 append_note_data(const void *src, void *dst, size_t len)
1687 {
1688         size_t padded_len;
1689
1690         padded_len = roundup2(len, ELF_NOTE_ROUNDSIZE);
1691         if (dst != NULL) {
1692                 bcopy(src, dst, len);
1693                 bzero((char *)dst + len, padded_len - len);
1694         }
1695         return (padded_len);
1696 }
1697
1698 size_t
1699 __elfN(populate_note)(int type, void *src, void *dst, size_t size, void **descp)
1700 {
1701         Elf_Note *note;
1702         char *buf;
1703         size_t notesize;
1704
1705         buf = dst;
1706         if (buf != NULL) {
1707                 note = (Elf_Note *)buf;
1708                 note->n_namesz = sizeof(FREEBSD_ABI_VENDOR);
1709                 note->n_descsz = size;
1710                 note->n_type = type;
1711                 buf += sizeof(*note);
1712                 buf += append_note_data(FREEBSD_ABI_VENDOR, buf,
1713                     sizeof(FREEBSD_ABI_VENDOR));
1714                 append_note_data(src, buf, size);
1715                 if (descp != NULL)
1716                         *descp = buf;
1717         }
1718
1719         notesize = sizeof(Elf_Note) +           /* note header */
1720             roundup2(sizeof(FREEBSD_ABI_VENDOR), ELF_NOTE_ROUNDSIZE) +
1721                                                 /* note name */
1722             roundup2(size, ELF_NOTE_ROUNDSIZE); /* note description */
1723
1724         return (notesize);
1725 }
1726
1727 static void
1728 __elfN(putnote)(struct note_info *ninfo, struct sbuf *sb)
1729 {
1730         Elf_Note note;
1731         ssize_t old_len, sect_len;
1732         size_t new_len, descsz, i;
1733
1734         if (ninfo->type == -1) {
1735                 ninfo->outfunc(ninfo->outarg, sb, &ninfo->outsize);
1736                 return;
1737         }
1738
1739         note.n_namesz = sizeof(FREEBSD_ABI_VENDOR);
1740         note.n_descsz = ninfo->outsize;
1741         note.n_type = ninfo->type;
1742
1743         sbuf_bcat(sb, &note, sizeof(note));
1744         sbuf_start_section(sb, &old_len);
1745         sbuf_bcat(sb, FREEBSD_ABI_VENDOR, sizeof(FREEBSD_ABI_VENDOR));
1746         sbuf_end_section(sb, old_len, ELF_NOTE_ROUNDSIZE, 0);
1747         if (note.n_descsz == 0)
1748                 return;
1749         sbuf_start_section(sb, &old_len);
1750         ninfo->outfunc(ninfo->outarg, sb, &ninfo->outsize);
1751         sect_len = sbuf_end_section(sb, old_len, ELF_NOTE_ROUNDSIZE, 0);
1752         if (sect_len < 0)
1753                 return;
1754
1755         new_len = (size_t)sect_len;
1756         descsz = roundup(note.n_descsz, ELF_NOTE_ROUNDSIZE);
1757         if (new_len < descsz) {
1758                 /*
1759                  * It is expected that individual note emitters will correctly
1760                  * predict their expected output size and fill up to that size
1761                  * themselves, padding in a format-specific way if needed.
1762                  * However, in case they don't, just do it here with zeros.
1763                  */
1764                 for (i = 0; i < descsz - new_len; i++)
1765                         sbuf_putc(sb, 0);
1766         } else if (new_len > descsz) {
1767                 /*
1768                  * We can't always truncate sb -- we may have drained some
1769                  * of it already.
1770                  */
1771                 KASSERT(new_len == descsz, ("%s: Note type %u changed as we "
1772                     "read it (%zu > %zu).  Since it is longer than "
1773                     "expected, this coredump's notes are corrupt.  THIS "
1774                     "IS A BUG in the note_procstat routine for type %u.\n",
1775                     __func__, (unsigned)note.n_type, new_len, descsz,
1776                     (unsigned)note.n_type));
1777         }
1778 }
1779
1780 /*
1781  * Miscellaneous note out functions.
1782  */
1783
1784 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1785 #include <compat/freebsd32/freebsd32.h>
1786
1787 typedef struct prstatus32 elf_prstatus_t;
1788 typedef struct prpsinfo32 elf_prpsinfo_t;
1789 typedef struct fpreg32 elf_prfpregset_t;
1790 typedef struct fpreg32 elf_fpregset_t;
1791 typedef struct reg32 elf_gregset_t;
1792 typedef struct thrmisc32 elf_thrmisc_t;
1793 #define ELF_KERN_PROC_MASK      KERN_PROC_MASK32
1794 typedef struct kinfo_proc32 elf_kinfo_proc_t;
1795 typedef uint32_t elf_ps_strings_t;
1796 #else
1797 typedef prstatus_t elf_prstatus_t;
1798 typedef prpsinfo_t elf_prpsinfo_t;
1799 typedef prfpregset_t elf_prfpregset_t;
1800 typedef prfpregset_t elf_fpregset_t;
1801 typedef gregset_t elf_gregset_t;
1802 typedef thrmisc_t elf_thrmisc_t;
1803 #define ELF_KERN_PROC_MASK      0
1804 typedef struct kinfo_proc elf_kinfo_proc_t;
1805 typedef vm_offset_t elf_ps_strings_t;
1806 #endif
1807
1808 static void
1809 __elfN(note_prpsinfo)(void *arg, struct sbuf *sb, size_t *sizep)
1810 {
1811         struct proc *p;
1812         elf_prpsinfo_t *psinfo;
1813
1814         p = (struct proc *)arg;
1815         if (sb != NULL) {
1816                 KASSERT(*sizep == sizeof(*psinfo), ("invalid size"));
1817                 psinfo = malloc(sizeof(*psinfo), M_TEMP, M_ZERO | M_WAITOK);
1818                 psinfo->pr_version = PRPSINFO_VERSION;
1819                 psinfo->pr_psinfosz = sizeof(elf_prpsinfo_t);
1820                 strlcpy(psinfo->pr_fname, p->p_comm, sizeof(psinfo->pr_fname));
1821                 /*
1822                  * XXX - We don't fill in the command line arguments properly
1823                  * yet.
1824                  */
1825                 strlcpy(psinfo->pr_psargs, p->p_comm,
1826                     sizeof(psinfo->pr_psargs));
1827
1828                 sbuf_bcat(sb, psinfo, sizeof(*psinfo));
1829                 free(psinfo, M_TEMP);
1830         }
1831         *sizep = sizeof(*psinfo);
1832 }
1833
1834 static void
1835 __elfN(note_prstatus)(void *arg, struct sbuf *sb, size_t *sizep)
1836 {
1837         struct thread *td;
1838         elf_prstatus_t *status;
1839
1840         td = (struct thread *)arg;
1841         if (sb != NULL) {
1842                 KASSERT(*sizep == sizeof(*status), ("invalid size"));
1843                 status = malloc(sizeof(*status), M_TEMP, M_ZERO | M_WAITOK);
1844                 status->pr_version = PRSTATUS_VERSION;
1845                 status->pr_statussz = sizeof(elf_prstatus_t);
1846                 status->pr_gregsetsz = sizeof(elf_gregset_t);
1847                 status->pr_fpregsetsz = sizeof(elf_fpregset_t);
1848                 status->pr_osreldate = osreldate;
1849                 status->pr_cursig = td->td_proc->p_sig;
1850                 status->pr_pid = td->td_tid;
1851 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1852                 fill_regs32(td, &status->pr_reg);
1853 #else
1854                 fill_regs(td, &status->pr_reg);
1855 #endif
1856                 sbuf_bcat(sb, status, sizeof(*status));
1857                 free(status, M_TEMP);
1858         }
1859         *sizep = sizeof(*status);
1860 }
1861
1862 static void
1863 __elfN(note_fpregset)(void *arg, struct sbuf *sb, size_t *sizep)
1864 {
1865         struct thread *td;
1866         elf_prfpregset_t *fpregset;
1867
1868         td = (struct thread *)arg;
1869         if (sb != NULL) {
1870                 KASSERT(*sizep == sizeof(*fpregset), ("invalid size"));
1871                 fpregset = malloc(sizeof(*fpregset), M_TEMP, M_ZERO | M_WAITOK);
1872 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
1873                 fill_fpregs32(td, fpregset);
1874 #else
1875                 fill_fpregs(td, fpregset);
1876 #endif
1877                 sbuf_bcat(sb, fpregset, sizeof(*fpregset));
1878                 free(fpregset, M_TEMP);
1879         }
1880         *sizep = sizeof(*fpregset);
1881 }
1882
1883 static void
1884 __elfN(note_thrmisc)(void *arg, struct sbuf *sb, size_t *sizep)
1885 {
1886         struct thread *td;
1887         elf_thrmisc_t thrmisc;
1888
1889         td = (struct thread *)arg;
1890         if (sb != NULL) {
1891                 KASSERT(*sizep == sizeof(thrmisc), ("invalid size"));
1892                 bzero(&thrmisc._pad, sizeof(thrmisc._pad));
1893                 strcpy(thrmisc.pr_tname, td->td_name);
1894                 sbuf_bcat(sb, &thrmisc, sizeof(thrmisc));
1895         }
1896         *sizep = sizeof(thrmisc);
1897 }
1898
1899 /*
1900  * Allow for MD specific notes, as well as any MD
1901  * specific preparations for writing MI notes.
1902  */
1903 static void
1904 __elfN(note_threadmd)(void *arg, struct sbuf *sb, size_t *sizep)
1905 {
1906         struct thread *td;
1907         void *buf;
1908         size_t size;
1909
1910         td = (struct thread *)arg;
1911         size = *sizep;
1912         if (size != 0 && sb != NULL)
1913                 buf = malloc(size, M_TEMP, M_ZERO | M_WAITOK);
1914         else
1915                 buf = NULL;
1916         size = 0;
1917         __elfN(dump_thread)(td, buf, &size);
1918         KASSERT(sb == NULL || *sizep == size, ("invalid size"));
1919         if (size != 0 && sb != NULL)
1920                 sbuf_bcat(sb, buf, size);
1921         free(buf, M_TEMP);
1922         *sizep = size;
1923 }
1924
1925 #ifdef KINFO_PROC_SIZE
1926 CTASSERT(sizeof(struct kinfo_proc) == KINFO_PROC_SIZE);
1927 #endif
1928
1929 static void
1930 __elfN(note_procstat_proc)(void *arg, struct sbuf *sb, size_t *sizep)
1931 {
1932         struct proc *p;
1933         size_t size;
1934         int structsize;
1935
1936         p = (struct proc *)arg;
1937         size = sizeof(structsize) + p->p_numthreads *
1938             sizeof(elf_kinfo_proc_t);
1939
1940         if (sb != NULL) {
1941                 KASSERT(*sizep == size, ("invalid size"));
1942                 structsize = sizeof(elf_kinfo_proc_t);
1943                 sbuf_bcat(sb, &structsize, sizeof(structsize));
1944                 sx_slock(&proctree_lock);
1945                 PROC_LOCK(p);
1946                 kern_proc_out(p, sb, ELF_KERN_PROC_MASK);
1947                 sx_sunlock(&proctree_lock);
1948         }
1949         *sizep = size;
1950 }
1951
1952 #ifdef KINFO_FILE_SIZE
1953 CTASSERT(sizeof(struct kinfo_file) == KINFO_FILE_SIZE);
1954 #endif
1955
1956 static void
1957 note_procstat_files(void *arg, struct sbuf *sb, size_t *sizep)
1958 {
1959         struct proc *p;
1960         size_t size, sect_sz, i;
1961         ssize_t start_len, sect_len;
1962         int structsize, filedesc_flags;
1963
1964         if (coredump_pack_fileinfo)
1965                 filedesc_flags = KERN_FILEDESC_PACK_KINFO;
1966         else
1967                 filedesc_flags = 0;
1968
1969         p = (struct proc *)arg;
1970         structsize = sizeof(struct kinfo_file);
1971         if (sb == NULL) {
1972                 size = 0;
1973                 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
1974                 sbuf_set_drain(sb, sbuf_drain_count, &size);
1975                 sbuf_bcat(sb, &structsize, sizeof(structsize));
1976                 PROC_LOCK(p);
1977                 kern_proc_filedesc_out(p, sb, -1, filedesc_flags);
1978                 sbuf_finish(sb);
1979                 sbuf_delete(sb);
1980                 *sizep = size;
1981         } else {
1982                 sbuf_start_section(sb, &start_len);
1983
1984                 sbuf_bcat(sb, &structsize, sizeof(structsize));
1985                 PROC_LOCK(p);
1986                 kern_proc_filedesc_out(p, sb, *sizep - sizeof(structsize),
1987                     filedesc_flags);
1988
1989                 sect_len = sbuf_end_section(sb, start_len, 0, 0);
1990                 if (sect_len < 0)
1991                         return;
1992                 sect_sz = sect_len;
1993
1994                 KASSERT(sect_sz <= *sizep,
1995                     ("kern_proc_filedesc_out did not respect maxlen; "
1996                      "requested %zu, got %zu", *sizep - sizeof(structsize),
1997                      sect_sz - sizeof(structsize)));
1998
1999                 for (i = 0; i < *sizep - sect_sz && sb->s_error == 0; i++)
2000                         sbuf_putc(sb, 0);
2001         }
2002 }
2003
2004 #ifdef KINFO_VMENTRY_SIZE
2005 CTASSERT(sizeof(struct kinfo_vmentry) == KINFO_VMENTRY_SIZE);
2006 #endif
2007
2008 static void
2009 note_procstat_vmmap(void *arg, struct sbuf *sb, size_t *sizep)
2010 {
2011         struct proc *p;
2012         size_t size;
2013         int structsize, vmmap_flags;
2014
2015         if (coredump_pack_vmmapinfo)
2016                 vmmap_flags = KERN_VMMAP_PACK_KINFO;
2017         else
2018                 vmmap_flags = 0;
2019
2020         p = (struct proc *)arg;
2021         structsize = sizeof(struct kinfo_vmentry);
2022         if (sb == NULL) {
2023                 size = 0;
2024                 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2025                 sbuf_set_drain(sb, sbuf_drain_count, &size);
2026                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2027                 PROC_LOCK(p);
2028                 kern_proc_vmmap_out(p, sb, -1, vmmap_flags);
2029                 sbuf_finish(sb);
2030                 sbuf_delete(sb);
2031                 *sizep = size;
2032         } else {
2033                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2034                 PROC_LOCK(p);
2035                 kern_proc_vmmap_out(p, sb, *sizep - sizeof(structsize),
2036                     vmmap_flags);
2037         }
2038 }
2039
2040 static void
2041 note_procstat_groups(void *arg, struct sbuf *sb, size_t *sizep)
2042 {
2043         struct proc *p;
2044         size_t size;
2045         int structsize;
2046
2047         p = (struct proc *)arg;
2048         size = sizeof(structsize) + p->p_ucred->cr_ngroups * sizeof(gid_t);
2049         if (sb != NULL) {
2050                 KASSERT(*sizep == size, ("invalid size"));
2051                 structsize = sizeof(gid_t);
2052                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2053                 sbuf_bcat(sb, p->p_ucred->cr_groups, p->p_ucred->cr_ngroups *
2054                     sizeof(gid_t));
2055         }
2056         *sizep = size;
2057 }
2058
2059 static void
2060 note_procstat_umask(void *arg, struct sbuf *sb, size_t *sizep)
2061 {
2062         struct proc *p;
2063         size_t size;
2064         int structsize;
2065
2066         p = (struct proc *)arg;
2067         size = sizeof(structsize) + sizeof(p->p_fd->fd_cmask);
2068         if (sb != NULL) {
2069                 KASSERT(*sizep == size, ("invalid size"));
2070                 structsize = sizeof(p->p_fd->fd_cmask);
2071                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2072                 sbuf_bcat(sb, &p->p_fd->fd_cmask, sizeof(p->p_fd->fd_cmask));
2073         }
2074         *sizep = size;
2075 }
2076
2077 static void
2078 note_procstat_rlimit(void *arg, struct sbuf *sb, size_t *sizep)
2079 {
2080         struct proc *p;
2081         struct rlimit rlim[RLIM_NLIMITS];
2082         size_t size;
2083         int structsize, i;
2084
2085         p = (struct proc *)arg;
2086         size = sizeof(structsize) + sizeof(rlim);
2087         if (sb != NULL) {
2088                 KASSERT(*sizep == size, ("invalid size"));
2089                 structsize = sizeof(rlim);
2090                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2091                 PROC_LOCK(p);
2092                 for (i = 0; i < RLIM_NLIMITS; i++)
2093                         lim_rlimit_proc(p, i, &rlim[i]);
2094                 PROC_UNLOCK(p);
2095                 sbuf_bcat(sb, rlim, sizeof(rlim));
2096         }
2097         *sizep = size;
2098 }
2099
2100 static void
2101 note_procstat_osrel(void *arg, struct sbuf *sb, size_t *sizep)
2102 {
2103         struct proc *p;
2104         size_t size;
2105         int structsize;
2106
2107         p = (struct proc *)arg;
2108         size = sizeof(structsize) + sizeof(p->p_osrel);
2109         if (sb != NULL) {
2110                 KASSERT(*sizep == size, ("invalid size"));
2111                 structsize = sizeof(p->p_osrel);
2112                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2113                 sbuf_bcat(sb, &p->p_osrel, sizeof(p->p_osrel));
2114         }
2115         *sizep = size;
2116 }
2117
2118 static void
2119 __elfN(note_procstat_psstrings)(void *arg, struct sbuf *sb, size_t *sizep)
2120 {
2121         struct proc *p;
2122         elf_ps_strings_t ps_strings;
2123         size_t size;
2124         int structsize;
2125
2126         p = (struct proc *)arg;
2127         size = sizeof(structsize) + sizeof(ps_strings);
2128         if (sb != NULL) {
2129                 KASSERT(*sizep == size, ("invalid size"));
2130                 structsize = sizeof(ps_strings);
2131 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2132                 ps_strings = PTROUT(p->p_sysent->sv_psstrings);
2133 #else
2134                 ps_strings = p->p_sysent->sv_psstrings;
2135 #endif
2136                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2137                 sbuf_bcat(sb, &ps_strings, sizeof(ps_strings));
2138         }
2139         *sizep = size;
2140 }
2141
2142 static void
2143 __elfN(note_procstat_auxv)(void *arg, struct sbuf *sb, size_t *sizep)
2144 {
2145         struct proc *p;
2146         size_t size;
2147         int structsize;
2148
2149         p = (struct proc *)arg;
2150         if (sb == NULL) {
2151                 size = 0;
2152                 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2153                 sbuf_set_drain(sb, sbuf_drain_count, &size);
2154                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2155                 PHOLD(p);
2156                 proc_getauxv(curthread, p, sb);
2157                 PRELE(p);
2158                 sbuf_finish(sb);
2159                 sbuf_delete(sb);
2160                 *sizep = size;
2161         } else {
2162                 structsize = sizeof(Elf_Auxinfo);
2163                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2164                 PHOLD(p);
2165                 proc_getauxv(curthread, p, sb);
2166                 PRELE(p);
2167         }
2168 }
2169
2170 static boolean_t
2171 __elfN(parse_notes)(struct image_params *imgp, Elf_Brandnote *checknote,
2172     int32_t *osrel, const Elf_Phdr *pnote)
2173 {
2174         const Elf_Note *note, *note0, *note_end;
2175         const char *note_name;
2176         char *buf;
2177         int i, error;
2178         boolean_t res;
2179
2180         /* We need some limit, might as well use PAGE_SIZE. */
2181         if (pnote == NULL || pnote->p_filesz > PAGE_SIZE)
2182                 return (FALSE);
2183         ASSERT_VOP_LOCKED(imgp->vp, "parse_notes");
2184         if (pnote->p_offset > PAGE_SIZE ||
2185             pnote->p_filesz > PAGE_SIZE - pnote->p_offset) {
2186                 VOP_UNLOCK(imgp->vp, 0);
2187                 buf = malloc(pnote->p_filesz, M_TEMP, M_WAITOK);
2188                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
2189                 error = vn_rdwr(UIO_READ, imgp->vp, buf, pnote->p_filesz,
2190                     pnote->p_offset, UIO_SYSSPACE, IO_NODELOCKED,
2191                     curthread->td_ucred, NOCRED, NULL, curthread);
2192                 if (error != 0) {
2193                         uprintf("i/o error PT_NOTE\n");
2194                         res = FALSE;
2195                         goto ret;
2196                 }
2197                 note = note0 = (const Elf_Note *)buf;
2198                 note_end = (const Elf_Note *)(buf + pnote->p_filesz);
2199         } else {
2200                 note = note0 = (const Elf_Note *)(imgp->image_header +
2201                     pnote->p_offset);
2202                 note_end = (const Elf_Note *)(imgp->image_header +
2203                     pnote->p_offset + pnote->p_filesz);
2204                 buf = NULL;
2205         }
2206         for (i = 0; i < 100 && note >= note0 && note < note_end; i++) {
2207                 if (!aligned(note, Elf32_Addr) || (const char *)note_end -
2208                     (const char *)note < sizeof(Elf_Note)) {
2209                         res = FALSE;
2210                         goto ret;
2211                 }
2212                 if (note->n_namesz != checknote->hdr.n_namesz ||
2213                     note->n_descsz != checknote->hdr.n_descsz ||
2214                     note->n_type != checknote->hdr.n_type)
2215                         goto nextnote;
2216                 note_name = (const char *)(note + 1);
2217                 if (note_name + checknote->hdr.n_namesz >=
2218                     (const char *)note_end || strncmp(checknote->vendor,
2219                     note_name, checknote->hdr.n_namesz) != 0)
2220                         goto nextnote;
2221
2222                 /*
2223                  * Fetch the osreldate for binary
2224                  * from the ELF OSABI-note if necessary.
2225                  */
2226                 if ((checknote->flags & BN_TRANSLATE_OSREL) != 0 &&
2227                     checknote->trans_osrel != NULL) {
2228                         res = checknote->trans_osrel(note, osrel);
2229                         goto ret;
2230                 }
2231                 res = TRUE;
2232                 goto ret;
2233 nextnote:
2234                 note = (const Elf_Note *)((const char *)(note + 1) +
2235                     roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE) +
2236                     roundup2(note->n_descsz, ELF_NOTE_ROUNDSIZE));
2237         }
2238         res = FALSE;
2239 ret:
2240         free(buf, M_TEMP);
2241         return (res);
2242 }
2243
2244 /*
2245  * Try to find the appropriate ABI-note section for checknote,
2246  * fetch the osreldate for binary from the ELF OSABI-note. Only the
2247  * first page of the image is searched, the same as for headers.
2248  */
2249 static boolean_t
2250 __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *checknote,
2251     int32_t *osrel)
2252 {
2253         const Elf_Phdr *phdr;
2254         const Elf_Ehdr *hdr;
2255         int i;
2256
2257         hdr = (const Elf_Ehdr *)imgp->image_header;
2258         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
2259
2260         for (i = 0; i < hdr->e_phnum; i++) {
2261                 if (phdr[i].p_type == PT_NOTE &&
2262                     __elfN(parse_notes)(imgp, checknote, osrel, &phdr[i]))
2263                         return (TRUE);
2264         }
2265         return (FALSE);
2266
2267 }
2268
2269 /*
2270  * Tell kern_execve.c about it, with a little help from the linker.
2271  */
2272 static struct execsw __elfN(execsw) = {
2273         __CONCAT(exec_, __elfN(imgact)),
2274         __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
2275 };
2276 EXEC_SET(__CONCAT(elf, __ELF_WORD_SIZE), __elfN(execsw));
2277
2278 static vm_prot_t
2279 __elfN(trans_prot)(Elf_Word flags)
2280 {
2281         vm_prot_t prot;
2282
2283         prot = 0;
2284         if (flags & PF_X)
2285                 prot |= VM_PROT_EXECUTE;
2286         if (flags & PF_W)
2287                 prot |= VM_PROT_WRITE;
2288         if (flags & PF_R)
2289                 prot |= VM_PROT_READ;
2290 #if __ELF_WORD_SIZE == 32
2291 #if defined(__amd64__)
2292         if (i386_read_exec && (flags & PF_R))
2293                 prot |= VM_PROT_EXECUTE;
2294 #endif
2295 #endif
2296         return (prot);
2297 }
2298
2299 static Elf_Word
2300 __elfN(untrans_prot)(vm_prot_t prot)
2301 {
2302         Elf_Word flags;
2303
2304         flags = 0;
2305         if (prot & VM_PROT_EXECUTE)
2306                 flags |= PF_X;
2307         if (prot & VM_PROT_READ)
2308                 flags |= PF_R;
2309         if (prot & VM_PROT_WRITE)
2310                 flags |= PF_W;
2311         return (flags);
2312 }