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