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