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
sysctl_pie_base(SYSCTL_HANDLER_ARGS)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) = 1;
192 SYSCTL_INT(ASLR_NODE_OID, OID_AUTO, stack, CTLFLAG_RWTUN,
193 &__elfN(aslr_stack), 0,
194 __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
195 ": enable stack address randomization");
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
__elfN(freebsd_trans_osrel)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
kfreebsd_trans_osrel(const Elf_Note * note,int32_t * osrel)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
__elfN(insert_brand_entry)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
__elfN(remove_brand_entry)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
__elfN(brand_inuse)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 *
__elfN(get_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
__elfN(phdr_in_zero_page)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
__elfN(check_header)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
__elfN(map_partial)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
__elfN(map_insert)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
__elfN(load_section)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
__elfN(load_sections)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
__elfN(load_file)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
__CONCAT(rnd_,__elfN (base))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
__elfN(enforce_limits)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
__elfN(get_interp)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
__elfN(load_interp)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
__CONCAT(exec_,__elfN (imgact))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 if (__elfN(aslr_stack))
1294 imgp->map_flags |= MAP_ASLR_STACK;
1295 }
1296
1297 if ((!__elfN(allow_wx) && (fctl0 & NT_FREEBSD_FCTL_WXNEEDED) == 0 &&
1298 (imgp->proc->p_flag2 & P2_WXORX_DISABLE) == 0) ||
1299 (imgp->proc->p_flag2 & P2_WXORX_ENABLE_EXEC) != 0)
1300 imgp->map_flags |= MAP_WXORX;
1301
1302 error = exec_new_vmspace(imgp, sv);
1303
1304 imgp->proc->p_sysent = sv;
1305
1306 vmspace = imgp->proc->p_vmspace;
1307 map = &vmspace->vm_map;
1308 maxv = sv->sv_usrstack;
1309 if ((imgp->map_flags & MAP_ASLR_STACK) == 0)
1310 maxv -= lim_max(td, RLIMIT_STACK);
1311 if (error == 0 && mapsz >= maxv - vm_map_min(map)) {
1312 uprintf("Excessive mapping size\n");
1313 error = ENOEXEC;
1314 }
1315
1316 if (error == 0 && et_dyn_addr == ET_DYN_ADDR_RAND) {
1317 KASSERT((map->flags & MAP_ASLR) != 0,
1318 ("ET_DYN_ADDR_RAND but !MAP_ASLR"));
1319 error = __CONCAT(rnd_, __elfN(base))(map,
1320 vm_map_min(map) + mapsz + lim_max(td, RLIMIT_DATA),
1321 /* reserve half of the address space to interpreter */
1322 maxv / 2, maxalign, &et_dyn_addr);
1323 }
1324
1325 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
1326 if (error != 0)
1327 goto ret;
1328
1329 error = __elfN(load_sections)(imgp, hdr, phdr, et_dyn_addr, NULL);
1330 if (error != 0)
1331 goto ret;
1332
1333 error = __elfN(enforce_limits)(imgp, hdr, phdr, et_dyn_addr);
1334 if (error != 0)
1335 goto ret;
1336
1337 /*
1338 * We load the dynamic linker where a userland call
1339 * to mmap(0, ...) would put it. The rationale behind this
1340 * calculation is that it leaves room for the heap to grow to
1341 * its maximum allowed size.
1342 */
1343 addr = round_page((vm_offset_t)vmspace->vm_daddr + lim_max(td,
1344 RLIMIT_DATA));
1345 if ((map->flags & MAP_ASLR) != 0) {
1346 maxv1 = maxv / 2 + addr / 2;
1347 error = __CONCAT(rnd_, __elfN(base))(map, addr, maxv1,
1348 (MAXPAGESIZES > 1 && pagesizes[1] != 0) ?
1349 pagesizes[1] : pagesizes[0], &anon_loc);
1350 if (error != 0)
1351 goto ret;
1352 map->anon_loc = anon_loc;
1353 } else {
1354 map->anon_loc = addr;
1355 }
1356
1357 entry = (u_long)hdr->e_entry + et_dyn_addr;
1358 imgp->entry_addr = entry;
1359
1360 if (interp != NULL) {
1361 VOP_UNLOCK(imgp->vp);
1362 if ((map->flags & MAP_ASLR) != 0) {
1363 /* Assume that interpreter fits into 1/4 of AS */
1364 maxv1 = maxv / 2 + addr / 2;
1365 error = __CONCAT(rnd_, __elfN(base))(map, addr,
1366 maxv1, PAGE_SIZE, &addr);
1367 }
1368 if (error == 0) {
1369 error = __elfN(load_interp)(imgp, brand_info, interp,
1370 &addr, &imgp->entry_addr);
1371 }
1372 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
1373 if (error != 0)
1374 goto ret;
1375 } else
1376 addr = et_dyn_addr;
1377
1378 error = exec_map_stack(imgp);
1379 if (error != 0)
1380 goto ret;
1381
1382 /*
1383 * Construct auxargs table (used by the copyout_auxargs routine)
1384 */
1385 elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_NOWAIT);
1386 if (elf_auxargs == NULL) {
1387 VOP_UNLOCK(imgp->vp);
1388 elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
1389 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
1390 }
1391 elf_auxargs->execfd = -1;
1392 elf_auxargs->phdr = proghdr + et_dyn_addr;
1393 elf_auxargs->phent = hdr->e_phentsize;
1394 elf_auxargs->phnum = hdr->e_phnum;
1395 elf_auxargs->pagesz = PAGE_SIZE;
1396 elf_auxargs->base = addr;
1397 elf_auxargs->flags = 0;
1398 elf_auxargs->entry = entry;
1399 elf_auxargs->hdr_eflags = hdr->e_flags;
1400
1401 imgp->auxargs = elf_auxargs;
1402 imgp->interpreted = 0;
1403 imgp->reloc_base = addr;
1404 imgp->proc->p_osrel = osrel;
1405 imgp->proc->p_fctl0 = fctl0;
1406 imgp->proc->p_elf_machine = hdr->e_machine;
1407 imgp->proc->p_elf_flags = hdr->e_flags;
1408
1409 ret:
1410 ASSERT_VOP_LOCKED(imgp->vp, "skipped relock");
1411 if (free_interp)
1412 free(interp, M_TEMP);
1413 return (error);
1414 }
1415
1416 #define elf_suword __CONCAT(suword, __ELF_WORD_SIZE)
1417
1418 int
__elfN(freebsd_copyout_auxargs)1419 __elfN(freebsd_copyout_auxargs)(struct image_params *imgp, uintptr_t base)
1420 {
1421 Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
1422 Elf_Auxinfo *argarray, *pos;
1423 int error;
1424
1425 argarray = pos = malloc(AT_COUNT * sizeof(*pos), M_TEMP,
1426 M_WAITOK | M_ZERO);
1427
1428 if (args->execfd != -1)
1429 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
1430 AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
1431 AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
1432 AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
1433 AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
1434 AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
1435 AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
1436 AUXARGS_ENTRY(pos, AT_BASE, args->base);
1437 AUXARGS_ENTRY(pos, AT_EHDRFLAGS, args->hdr_eflags);
1438 if (imgp->execpathp != 0)
1439 AUXARGS_ENTRY_PTR(pos, AT_EXECPATH, imgp->execpathp);
1440 AUXARGS_ENTRY(pos, AT_OSRELDATE,
1441 imgp->proc->p_ucred->cr_prison->pr_osreldate);
1442 if (imgp->canary != 0) {
1443 AUXARGS_ENTRY_PTR(pos, AT_CANARY, imgp->canary);
1444 AUXARGS_ENTRY(pos, AT_CANARYLEN, imgp->canarylen);
1445 }
1446 AUXARGS_ENTRY(pos, AT_NCPUS, mp_ncpus);
1447 if (imgp->pagesizes != 0) {
1448 AUXARGS_ENTRY_PTR(pos, AT_PAGESIZES, imgp->pagesizes);
1449 AUXARGS_ENTRY(pos, AT_PAGESIZESLEN, imgp->pagesizeslen);
1450 }
1451 if (imgp->sysent->sv_timekeep_base != 0) {
1452 AUXARGS_ENTRY(pos, AT_TIMEKEEP,
1453 imgp->sysent->sv_timekeep_base);
1454 }
1455 AUXARGS_ENTRY(pos, AT_STACKPROT, imgp->sysent->sv_shared_page_obj
1456 != NULL && imgp->stack_prot != 0 ? imgp->stack_prot :
1457 imgp->sysent->sv_stackprot);
1458 if (imgp->sysent->sv_hwcap != NULL)
1459 AUXARGS_ENTRY(pos, AT_HWCAP, *imgp->sysent->sv_hwcap);
1460 if (imgp->sysent->sv_hwcap2 != NULL)
1461 AUXARGS_ENTRY(pos, AT_HWCAP2, *imgp->sysent->sv_hwcap2);
1462 AUXARGS_ENTRY(pos, AT_BSDFLAGS, __elfN(sigfastblock) ?
1463 ELF_BSDF_SIGFASTBLK : 0);
1464 AUXARGS_ENTRY(pos, AT_ARGC, imgp->args->argc);
1465 AUXARGS_ENTRY_PTR(pos, AT_ARGV, imgp->argv);
1466 AUXARGS_ENTRY(pos, AT_ENVC, imgp->args->envc);
1467 AUXARGS_ENTRY_PTR(pos, AT_ENVV, imgp->envv);
1468 AUXARGS_ENTRY_PTR(pos, AT_PS_STRINGS, imgp->ps_strings);
1469 if (imgp->sysent->sv_fxrng_gen_base != 0)
1470 AUXARGS_ENTRY(pos, AT_FXRNG, imgp->sysent->sv_fxrng_gen_base);
1471 if (imgp->sysent->sv_vdso_base != 0 && __elfN(vdso) != 0)
1472 AUXARGS_ENTRY(pos, AT_KPRELOAD, imgp->sysent->sv_vdso_base);
1473 AUXARGS_ENTRY(pos, AT_NULL, 0);
1474
1475 free(imgp->auxargs, M_TEMP);
1476 imgp->auxargs = NULL;
1477 KASSERT(pos - argarray <= AT_COUNT, ("Too many auxargs"));
1478
1479 error = copyout(argarray, (void *)base, sizeof(*argarray) * AT_COUNT);
1480 free(argarray, M_TEMP);
1481 return (error);
1482 }
1483
1484 int
__elfN(freebsd_fixup)1485 __elfN(freebsd_fixup)(uintptr_t *stack_base, struct image_params *imgp)
1486 {
1487 Elf_Addr *base;
1488
1489 base = (Elf_Addr *)*stack_base;
1490 base--;
1491 if (elf_suword(base, imgp->args->argc) == -1)
1492 return (EFAULT);
1493 *stack_base = (uintptr_t)base;
1494 return (0);
1495 }
1496
1497 /*
1498 * Code for generating ELF core dumps.
1499 */
1500
1501 typedef void (*segment_callback)(vm_map_entry_t, void *);
1502
1503 /* Closure for cb_put_phdr(). */
1504 struct phdr_closure {
1505 Elf_Phdr *phdr; /* Program header to fill in */
1506 Elf_Off offset; /* Offset of segment in core file */
1507 };
1508
1509 /* Closure for cb_size_segment(). */
1510 struct sseg_closure {
1511 int count; /* Count of writable segments. */
1512 size_t size; /* Total size of all writable segments. */
1513 };
1514
1515 typedef void (*outfunc_t)(void *, struct sbuf *, size_t *);
1516
1517 struct note_info {
1518 int type; /* Note type. */
1519 outfunc_t outfunc; /* Output function. */
1520 void *outarg; /* Argument for the output function. */
1521 size_t outsize; /* Output size. */
1522 TAILQ_ENTRY(note_info) link; /* Link to the next note info. */
1523 };
1524
1525 TAILQ_HEAD(note_info_list, note_info);
1526
1527 /* Coredump output parameters. */
1528 struct coredump_params {
1529 off_t offset;
1530 struct ucred *active_cred;
1531 struct ucred *file_cred;
1532 struct thread *td;
1533 struct vnode *vp;
1534 struct compressor *comp;
1535 };
1536
1537 extern int compress_user_cores;
1538 extern int compress_user_cores_level;
1539
1540 static void cb_put_phdr(vm_map_entry_t, void *);
1541 static void cb_size_segment(vm_map_entry_t, void *);
1542 static int core_write(struct coredump_params *, const void *, size_t, off_t,
1543 enum uio_seg, size_t *);
1544 static void each_dumpable_segment(struct thread *, segment_callback, void *,
1545 int);
1546 static int __elfN(corehdr)(struct coredump_params *, int, void *, size_t,
1547 struct note_info_list *, size_t, int);
1548 static void __elfN(prepare_notes)(struct thread *, struct note_info_list *,
1549 size_t *);
1550 static void __elfN(puthdr)(struct thread *, void *, size_t, int, size_t, int);
1551 static void __elfN(putnote)(struct note_info *, struct sbuf *);
1552 static size_t register_note(struct note_info_list *, int, outfunc_t, void *);
1553 static int sbuf_drain_core_output(void *, const char *, int);
1554
1555 static void __elfN(note_fpregset)(void *, struct sbuf *, size_t *);
1556 static void __elfN(note_prpsinfo)(void *, struct sbuf *, size_t *);
1557 static void __elfN(note_prstatus)(void *, struct sbuf *, size_t *);
1558 static void __elfN(note_threadmd)(void *, struct sbuf *, size_t *);
1559 static void __elfN(note_thrmisc)(void *, struct sbuf *, size_t *);
1560 static void __elfN(note_ptlwpinfo)(void *, struct sbuf *, size_t *);
1561 static void __elfN(note_procstat_auxv)(void *, struct sbuf *, size_t *);
1562 static void __elfN(note_procstat_proc)(void *, struct sbuf *, size_t *);
1563 static void __elfN(note_procstat_psstrings)(void *, struct sbuf *, size_t *);
1564 static void note_procstat_files(void *, struct sbuf *, size_t *);
1565 static void note_procstat_groups(void *, struct sbuf *, size_t *);
1566 static void note_procstat_osrel(void *, struct sbuf *, size_t *);
1567 static void note_procstat_rlimit(void *, struct sbuf *, size_t *);
1568 static void note_procstat_umask(void *, struct sbuf *, size_t *);
1569 static void note_procstat_vmmap(void *, struct sbuf *, size_t *);
1570
1571 /*
1572 * Write out a core segment to the compression stream.
1573 */
1574 static int
compress_chunk(struct coredump_params * p,char * base,char * buf,size_t len)1575 compress_chunk(struct coredump_params *p, char *base, char *buf, size_t len)
1576 {
1577 size_t chunk_len;
1578 int error;
1579
1580 while (len > 0) {
1581 chunk_len = MIN(len, CORE_BUF_SIZE);
1582
1583 /*
1584 * We can get EFAULT error here.
1585 * In that case zero out the current chunk of the segment.
1586 */
1587 error = copyin(base, buf, chunk_len);
1588 if (error != 0)
1589 bzero(buf, chunk_len);
1590 error = compressor_write(p->comp, buf, chunk_len);
1591 if (error != 0)
1592 break;
1593 base += chunk_len;
1594 len -= chunk_len;
1595 }
1596 return (error);
1597 }
1598
1599 static int
core_compressed_write(void * base,size_t len,off_t offset,void * arg)1600 core_compressed_write(void *base, size_t len, off_t offset, void *arg)
1601 {
1602
1603 return (core_write((struct coredump_params *)arg, base, len, offset,
1604 UIO_SYSSPACE, NULL));
1605 }
1606
1607 static int
core_write(struct coredump_params * p,const void * base,size_t len,off_t offset,enum uio_seg seg,size_t * resid)1608 core_write(struct coredump_params *p, const void *base, size_t len,
1609 off_t offset, enum uio_seg seg, size_t *resid)
1610 {
1611
1612 return (vn_rdwr_inchunks(UIO_WRITE, p->vp, __DECONST(void *, base),
1613 len, offset, seg, IO_UNIT | IO_DIRECT | IO_RANGELOCKED,
1614 p->active_cred, p->file_cred, resid, p->td));
1615 }
1616
1617 extern int core_dump_can_intr;
1618
1619 static int
core_output(char * base,size_t len,off_t offset,struct coredump_params * p,void * tmpbuf)1620 core_output(char *base, size_t len, off_t offset, struct coredump_params *p,
1621 void *tmpbuf)
1622 {
1623 vm_map_t map;
1624 struct mount *mp;
1625 size_t resid, runlen;
1626 int error;
1627 bool success;
1628
1629 KASSERT((uintptr_t)base % PAGE_SIZE == 0,
1630 ("%s: user address %p is not page-aligned", __func__, base));
1631
1632 if (p->comp != NULL)
1633 return (compress_chunk(p, base, tmpbuf, len));
1634
1635 map = &p->td->td_proc->p_vmspace->vm_map;
1636 for (; len > 0; base += runlen, offset += runlen, len -= runlen) {
1637 /*
1638 * Attempt to page in all virtual pages in the range. If a
1639 * virtual page is not backed by the pager, it is represented as
1640 * a hole in the file. This can occur with zero-filled
1641 * anonymous memory or truncated files, for example.
1642 */
1643 for (runlen = 0; runlen < len; runlen += PAGE_SIZE) {
1644 if (core_dump_can_intr && curproc_sigkilled())
1645 return (EINTR);
1646 error = vm_fault(map, (uintptr_t)base + runlen,
1647 VM_PROT_READ, VM_FAULT_NOFILL, NULL);
1648 if (runlen == 0)
1649 success = error == KERN_SUCCESS;
1650 else if ((error == KERN_SUCCESS) != success)
1651 break;
1652 }
1653
1654 if (success) {
1655 error = core_write(p, base, runlen, offset,
1656 UIO_USERSPACE, &resid);
1657 if (error != 0) {
1658 if (error != EFAULT)
1659 break;
1660
1661 /*
1662 * EFAULT may be returned if the user mapping
1663 * could not be accessed, e.g., because a mapped
1664 * file has been truncated. Skip the page if no
1665 * progress was made, to protect against a
1666 * hypothetical scenario where vm_fault() was
1667 * successful but core_write() returns EFAULT
1668 * anyway.
1669 */
1670 runlen -= resid;
1671 if (runlen == 0) {
1672 success = false;
1673 runlen = PAGE_SIZE;
1674 }
1675 }
1676 }
1677 if (!success) {
1678 error = vn_start_write(p->vp, &mp, V_WAIT);
1679 if (error != 0)
1680 break;
1681 vn_lock(p->vp, LK_EXCLUSIVE | LK_RETRY);
1682 error = vn_truncate_locked(p->vp, offset + runlen,
1683 false, p->td->td_ucred);
1684 VOP_UNLOCK(p->vp);
1685 vn_finished_write(mp);
1686 if (error != 0)
1687 break;
1688 }
1689 }
1690 return (error);
1691 }
1692
1693 /*
1694 * Drain into a core file.
1695 */
1696 static int
sbuf_drain_core_output(void * arg,const char * data,int len)1697 sbuf_drain_core_output(void *arg, const char *data, int len)
1698 {
1699 struct coredump_params *p;
1700 int error, locked;
1701
1702 p = (struct coredump_params *)arg;
1703
1704 /*
1705 * Some kern_proc out routines that print to this sbuf may
1706 * call us with the process lock held. Draining with the
1707 * non-sleepable lock held is unsafe. The lock is needed for
1708 * those routines when dumping a live process. In our case we
1709 * can safely release the lock before draining and acquire
1710 * again after.
1711 */
1712 locked = PROC_LOCKED(p->td->td_proc);
1713 if (locked)
1714 PROC_UNLOCK(p->td->td_proc);
1715 if (p->comp != NULL)
1716 error = compressor_write(p->comp, __DECONST(char *, data), len);
1717 else
1718 error = core_write(p, __DECONST(void *, data), len, p->offset,
1719 UIO_SYSSPACE, NULL);
1720 if (locked)
1721 PROC_LOCK(p->td->td_proc);
1722 if (error != 0)
1723 return (-error);
1724 p->offset += len;
1725 return (len);
1726 }
1727
1728 int
__elfN(coredump)1729 __elfN(coredump)(struct thread *td, struct vnode *vp, off_t limit, int flags)
1730 {
1731 struct ucred *cred = td->td_ucred;
1732 int compm, error = 0;
1733 struct sseg_closure seginfo;
1734 struct note_info_list notelst;
1735 struct coredump_params params;
1736 struct note_info *ninfo;
1737 void *hdr, *tmpbuf;
1738 size_t hdrsize, notesz, coresize;
1739
1740 hdr = NULL;
1741 tmpbuf = NULL;
1742 TAILQ_INIT(¬elst);
1743
1744 /* Size the program segments. */
1745 seginfo.count = 0;
1746 seginfo.size = 0;
1747 each_dumpable_segment(td, cb_size_segment, &seginfo, flags);
1748
1749 /*
1750 * Collect info about the core file header area.
1751 */
1752 hdrsize = sizeof(Elf_Ehdr) + sizeof(Elf_Phdr) * (1 + seginfo.count);
1753 if (seginfo.count + 1 >= PN_XNUM)
1754 hdrsize += sizeof(Elf_Shdr);
1755 __elfN(prepare_notes)(td, ¬elst, ¬esz);
1756 coresize = round_page(hdrsize + notesz) + seginfo.size;
1757
1758 /* Set up core dump parameters. */
1759 params.offset = 0;
1760 params.active_cred = cred;
1761 params.file_cred = NOCRED;
1762 params.td = td;
1763 params.vp = vp;
1764 params.comp = NULL;
1765
1766 #ifdef RACCT
1767 if (racct_enable) {
1768 PROC_LOCK(td->td_proc);
1769 error = racct_add(td->td_proc, RACCT_CORE, coresize);
1770 PROC_UNLOCK(td->td_proc);
1771 if (error != 0) {
1772 error = EFAULT;
1773 goto done;
1774 }
1775 }
1776 #endif
1777 if (coresize >= limit) {
1778 error = EFAULT;
1779 goto done;
1780 }
1781
1782 /* Create a compression stream if necessary. */
1783 compm = compress_user_cores;
1784 if ((flags & (SVC_PT_COREDUMP | SVC_NOCOMPRESS)) == SVC_PT_COREDUMP &&
1785 compm == 0)
1786 compm = COMPRESS_GZIP;
1787 if (compm != 0) {
1788 params.comp = compressor_init(core_compressed_write,
1789 compm, CORE_BUF_SIZE,
1790 compress_user_cores_level, ¶ms);
1791 if (params.comp == NULL) {
1792 error = EFAULT;
1793 goto done;
1794 }
1795 tmpbuf = malloc(CORE_BUF_SIZE, M_TEMP, M_WAITOK | M_ZERO);
1796 }
1797
1798 /*
1799 * Allocate memory for building the header, fill it up,
1800 * and write it out following the notes.
1801 */
1802 hdr = malloc(hdrsize, M_TEMP, M_WAITOK);
1803 error = __elfN(corehdr)(¶ms, seginfo.count, hdr, hdrsize, ¬elst,
1804 notesz, flags);
1805
1806 /* Write the contents of all of the writable segments. */
1807 if (error == 0) {
1808 Elf_Phdr *php;
1809 off_t offset;
1810 int i;
1811
1812 php = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr)) + 1;
1813 offset = round_page(hdrsize + notesz);
1814 for (i = 0; i < seginfo.count; i++) {
1815 error = core_output((char *)(uintptr_t)php->p_vaddr,
1816 php->p_filesz, offset, ¶ms, tmpbuf);
1817 if (error != 0)
1818 break;
1819 offset += php->p_filesz;
1820 php++;
1821 }
1822 if (error == 0 && params.comp != NULL)
1823 error = compressor_flush(params.comp);
1824 }
1825 if (error) {
1826 log(LOG_WARNING,
1827 "Failed to write core file for process %s (error %d)\n",
1828 curproc->p_comm, error);
1829 }
1830
1831 done:
1832 free(tmpbuf, M_TEMP);
1833 if (params.comp != NULL)
1834 compressor_fini(params.comp);
1835 while ((ninfo = TAILQ_FIRST(¬elst)) != NULL) {
1836 TAILQ_REMOVE(¬elst, ninfo, link);
1837 free(ninfo, M_TEMP);
1838 }
1839 if (hdr != NULL)
1840 free(hdr, M_TEMP);
1841
1842 return (error);
1843 }
1844
1845 /*
1846 * A callback for each_dumpable_segment() to write out the segment's
1847 * program header entry.
1848 */
1849 static void
cb_put_phdr(vm_map_entry_t entry,void * closure)1850 cb_put_phdr(vm_map_entry_t entry, void *closure)
1851 {
1852 struct phdr_closure *phc = (struct phdr_closure *)closure;
1853 Elf_Phdr *phdr = phc->phdr;
1854
1855 phc->offset = round_page(phc->offset);
1856
1857 phdr->p_type = PT_LOAD;
1858 phdr->p_offset = phc->offset;
1859 phdr->p_vaddr = entry->start;
1860 phdr->p_paddr = 0;
1861 phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1862 phdr->p_align = PAGE_SIZE;
1863 phdr->p_flags = __elfN(untrans_prot)(entry->protection);
1864
1865 phc->offset += phdr->p_filesz;
1866 phc->phdr++;
1867 }
1868
1869 /*
1870 * A callback for each_dumpable_segment() to gather information about
1871 * the number of segments and their total size.
1872 */
1873 static void
cb_size_segment(vm_map_entry_t entry,void * closure)1874 cb_size_segment(vm_map_entry_t entry, void *closure)
1875 {
1876 struct sseg_closure *ssc = (struct sseg_closure *)closure;
1877
1878 ssc->count++;
1879 ssc->size += entry->end - entry->start;
1880 }
1881
1882 /*
1883 * For each writable segment in the process's memory map, call the given
1884 * function with a pointer to the map entry and some arbitrary
1885 * caller-supplied data.
1886 */
1887 static void
each_dumpable_segment(struct thread * td,segment_callback func,void * closure,int flags)1888 each_dumpable_segment(struct thread *td, segment_callback func, void *closure,
1889 int flags)
1890 {
1891 struct proc *p = td->td_proc;
1892 vm_map_t map = &p->p_vmspace->vm_map;
1893 vm_map_entry_t entry;
1894 vm_object_t backing_object, object;
1895 bool ignore_entry;
1896
1897 vm_map_lock_read(map);
1898 VM_MAP_ENTRY_FOREACH(entry, map) {
1899 /*
1900 * Don't dump inaccessible mappings, deal with legacy
1901 * coredump mode.
1902 *
1903 * Note that read-only segments related to the elf binary
1904 * are marked MAP_ENTRY_NOCOREDUMP now so we no longer
1905 * need to arbitrarily ignore such segments.
1906 */
1907 if ((flags & SVC_ALL) == 0) {
1908 if (elf_legacy_coredump) {
1909 if ((entry->protection & VM_PROT_RW) !=
1910 VM_PROT_RW)
1911 continue;
1912 } else {
1913 if ((entry->protection & VM_PROT_ALL) == 0)
1914 continue;
1915 }
1916 }
1917
1918 /*
1919 * Dont include memory segment in the coredump if
1920 * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
1921 * madvise(2). Do not dump submaps (i.e. parts of the
1922 * kernel map).
1923 */
1924 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0)
1925 continue;
1926 if ((entry->eflags & MAP_ENTRY_NOCOREDUMP) != 0 &&
1927 (flags & SVC_ALL) == 0)
1928 continue;
1929 if ((object = entry->object.vm_object) == NULL)
1930 continue;
1931
1932 /* Ignore memory-mapped devices and such things. */
1933 VM_OBJECT_RLOCK(object);
1934 while ((backing_object = object->backing_object) != NULL) {
1935 VM_OBJECT_RLOCK(backing_object);
1936 VM_OBJECT_RUNLOCK(object);
1937 object = backing_object;
1938 }
1939 ignore_entry = (object->flags & OBJ_FICTITIOUS) != 0;
1940 VM_OBJECT_RUNLOCK(object);
1941 if (ignore_entry)
1942 continue;
1943
1944 (*func)(entry, closure);
1945 }
1946 vm_map_unlock_read(map);
1947 }
1948
1949 /*
1950 * Write the core file header to the file, including padding up to
1951 * the page boundary.
1952 */
1953 static int
__elfN(corehdr)1954 __elfN(corehdr)(struct coredump_params *p, int numsegs, void *hdr,
1955 size_t hdrsize, struct note_info_list *notelst, size_t notesz,
1956 int flags)
1957 {
1958 struct note_info *ninfo;
1959 struct sbuf *sb;
1960 int error;
1961
1962 /* Fill in the header. */
1963 bzero(hdr, hdrsize);
1964 __elfN(puthdr)(p->td, hdr, hdrsize, numsegs, notesz, flags);
1965
1966 sb = sbuf_new(NULL, NULL, CORE_BUF_SIZE, SBUF_FIXEDLEN);
1967 sbuf_set_drain(sb, sbuf_drain_core_output, p);
1968 sbuf_start_section(sb, NULL);
1969 sbuf_bcat(sb, hdr, hdrsize);
1970 TAILQ_FOREACH(ninfo, notelst, link)
1971 __elfN(putnote)(ninfo, sb);
1972 /* Align up to a page boundary for the program segments. */
1973 sbuf_end_section(sb, -1, PAGE_SIZE, 0);
1974 error = sbuf_finish(sb);
1975 sbuf_delete(sb);
1976
1977 return (error);
1978 }
1979
1980 static void
__elfN(prepare_notes)1981 __elfN(prepare_notes)(struct thread *td, struct note_info_list *list,
1982 size_t *sizep)
1983 {
1984 struct proc *p;
1985 struct thread *thr;
1986 size_t size;
1987
1988 p = td->td_proc;
1989 size = 0;
1990
1991 size += register_note(list, NT_PRPSINFO, __elfN(note_prpsinfo), p);
1992
1993 /*
1994 * To have the debugger select the right thread (LWP) as the initial
1995 * thread, we dump the state of the thread passed to us in td first.
1996 * This is the thread that causes the core dump and thus likely to
1997 * be the right thread one wants to have selected in the debugger.
1998 */
1999 thr = td;
2000 while (thr != NULL) {
2001 size += register_note(list, NT_PRSTATUS,
2002 __elfN(note_prstatus), thr);
2003 size += register_note(list, NT_FPREGSET,
2004 __elfN(note_fpregset), thr);
2005 size += register_note(list, NT_THRMISC,
2006 __elfN(note_thrmisc), thr);
2007 size += register_note(list, NT_PTLWPINFO,
2008 __elfN(note_ptlwpinfo), thr);
2009 size += register_note(list, -1,
2010 __elfN(note_threadmd), thr);
2011
2012 thr = (thr == td) ? TAILQ_FIRST(&p->p_threads) :
2013 TAILQ_NEXT(thr, td_plist);
2014 if (thr == td)
2015 thr = TAILQ_NEXT(thr, td_plist);
2016 }
2017
2018 size += register_note(list, NT_PROCSTAT_PROC,
2019 __elfN(note_procstat_proc), p);
2020 size += register_note(list, NT_PROCSTAT_FILES,
2021 note_procstat_files, p);
2022 size += register_note(list, NT_PROCSTAT_VMMAP,
2023 note_procstat_vmmap, p);
2024 size += register_note(list, NT_PROCSTAT_GROUPS,
2025 note_procstat_groups, p);
2026 size += register_note(list, NT_PROCSTAT_UMASK,
2027 note_procstat_umask, p);
2028 size += register_note(list, NT_PROCSTAT_RLIMIT,
2029 note_procstat_rlimit, p);
2030 size += register_note(list, NT_PROCSTAT_OSREL,
2031 note_procstat_osrel, p);
2032 size += register_note(list, NT_PROCSTAT_PSSTRINGS,
2033 __elfN(note_procstat_psstrings), p);
2034 size += register_note(list, NT_PROCSTAT_AUXV,
2035 __elfN(note_procstat_auxv), p);
2036
2037 *sizep = size;
2038 }
2039
2040 static void
__elfN(puthdr)2041 __elfN(puthdr)(struct thread *td, void *hdr, size_t hdrsize, int numsegs,
2042 size_t notesz, int flags)
2043 {
2044 Elf_Ehdr *ehdr;
2045 Elf_Phdr *phdr;
2046 Elf_Shdr *shdr;
2047 struct phdr_closure phc;
2048
2049 ehdr = (Elf_Ehdr *)hdr;
2050
2051 ehdr->e_ident[EI_MAG0] = ELFMAG0;
2052 ehdr->e_ident[EI_MAG1] = ELFMAG1;
2053 ehdr->e_ident[EI_MAG2] = ELFMAG2;
2054 ehdr->e_ident[EI_MAG3] = ELFMAG3;
2055 ehdr->e_ident[EI_CLASS] = ELF_CLASS;
2056 ehdr->e_ident[EI_DATA] = ELF_DATA;
2057 ehdr->e_ident[EI_VERSION] = EV_CURRENT;
2058 ehdr->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
2059 ehdr->e_ident[EI_ABIVERSION] = 0;
2060 ehdr->e_ident[EI_PAD] = 0;
2061 ehdr->e_type = ET_CORE;
2062 ehdr->e_machine = td->td_proc->p_elf_machine;
2063 ehdr->e_version = EV_CURRENT;
2064 ehdr->e_entry = 0;
2065 ehdr->e_phoff = sizeof(Elf_Ehdr);
2066 ehdr->e_flags = td->td_proc->p_elf_flags;
2067 ehdr->e_ehsize = sizeof(Elf_Ehdr);
2068 ehdr->e_phentsize = sizeof(Elf_Phdr);
2069 ehdr->e_shentsize = sizeof(Elf_Shdr);
2070 ehdr->e_shstrndx = SHN_UNDEF;
2071 if (numsegs + 1 < PN_XNUM) {
2072 ehdr->e_phnum = numsegs + 1;
2073 ehdr->e_shnum = 0;
2074 } else {
2075 ehdr->e_phnum = PN_XNUM;
2076 ehdr->e_shnum = 1;
2077
2078 ehdr->e_shoff = ehdr->e_phoff +
2079 (numsegs + 1) * ehdr->e_phentsize;
2080 KASSERT(ehdr->e_shoff == hdrsize - sizeof(Elf_Shdr),
2081 ("e_shoff: %zu, hdrsize - shdr: %zu",
2082 (size_t)ehdr->e_shoff, hdrsize - sizeof(Elf_Shdr)));
2083
2084 shdr = (Elf_Shdr *)((char *)hdr + ehdr->e_shoff);
2085 memset(shdr, 0, sizeof(*shdr));
2086 /*
2087 * A special first section is used to hold large segment and
2088 * section counts. This was proposed by Sun Microsystems in
2089 * Solaris and has been adopted by Linux; the standard ELF
2090 * tools are already familiar with the technique.
2091 *
2092 * See table 7-7 of the Solaris "Linker and Libraries Guide"
2093 * (or 12-7 depending on the version of the document) for more
2094 * details.
2095 */
2096 shdr->sh_type = SHT_NULL;
2097 shdr->sh_size = ehdr->e_shnum;
2098 shdr->sh_link = ehdr->e_shstrndx;
2099 shdr->sh_info = numsegs + 1;
2100 }
2101
2102 /*
2103 * Fill in the program header entries.
2104 */
2105 phdr = (Elf_Phdr *)((char *)hdr + ehdr->e_phoff);
2106
2107 /* The note segement. */
2108 phdr->p_type = PT_NOTE;
2109 phdr->p_offset = hdrsize;
2110 phdr->p_vaddr = 0;
2111 phdr->p_paddr = 0;
2112 phdr->p_filesz = notesz;
2113 phdr->p_memsz = 0;
2114 phdr->p_flags = PF_R;
2115 phdr->p_align = ELF_NOTE_ROUNDSIZE;
2116 phdr++;
2117
2118 /* All the writable segments from the program. */
2119 phc.phdr = phdr;
2120 phc.offset = round_page(hdrsize + notesz);
2121 each_dumpable_segment(td, cb_put_phdr, &phc, flags);
2122 }
2123
2124 static size_t
register_note(struct note_info_list * list,int type,outfunc_t out,void * arg)2125 register_note(struct note_info_list *list, int type, outfunc_t out, void *arg)
2126 {
2127 struct note_info *ninfo;
2128 size_t size, notesize;
2129
2130 size = 0;
2131 out(arg, NULL, &size);
2132 ninfo = malloc(sizeof(*ninfo), M_TEMP, M_ZERO | M_WAITOK);
2133 ninfo->type = type;
2134 ninfo->outfunc = out;
2135 ninfo->outarg = arg;
2136 ninfo->outsize = size;
2137 TAILQ_INSERT_TAIL(list, ninfo, link);
2138
2139 if (type == -1)
2140 return (size);
2141
2142 notesize = sizeof(Elf_Note) + /* note header */
2143 roundup2(sizeof(FREEBSD_ABI_VENDOR), ELF_NOTE_ROUNDSIZE) +
2144 /* note name */
2145 roundup2(size, ELF_NOTE_ROUNDSIZE); /* note description */
2146
2147 return (notesize);
2148 }
2149
2150 static size_t
append_note_data(const void * src,void * dst,size_t len)2151 append_note_data(const void *src, void *dst, size_t len)
2152 {
2153 size_t padded_len;
2154
2155 padded_len = roundup2(len, ELF_NOTE_ROUNDSIZE);
2156 if (dst != NULL) {
2157 bcopy(src, dst, len);
2158 bzero((char *)dst + len, padded_len - len);
2159 }
2160 return (padded_len);
2161 }
2162
2163 size_t
__elfN(populate_note)2164 __elfN(populate_note)(int type, void *src, void *dst, size_t size, void **descp)
2165 {
2166 Elf_Note *note;
2167 char *buf;
2168 size_t notesize;
2169
2170 buf = dst;
2171 if (buf != NULL) {
2172 note = (Elf_Note *)buf;
2173 note->n_namesz = sizeof(FREEBSD_ABI_VENDOR);
2174 note->n_descsz = size;
2175 note->n_type = type;
2176 buf += sizeof(*note);
2177 buf += append_note_data(FREEBSD_ABI_VENDOR, buf,
2178 sizeof(FREEBSD_ABI_VENDOR));
2179 append_note_data(src, buf, size);
2180 if (descp != NULL)
2181 *descp = buf;
2182 }
2183
2184 notesize = sizeof(Elf_Note) + /* note header */
2185 roundup2(sizeof(FREEBSD_ABI_VENDOR), ELF_NOTE_ROUNDSIZE) +
2186 /* note name */
2187 roundup2(size, ELF_NOTE_ROUNDSIZE); /* note description */
2188
2189 return (notesize);
2190 }
2191
2192 static void
__elfN(putnote)2193 __elfN(putnote)(struct note_info *ninfo, struct sbuf *sb)
2194 {
2195 Elf_Note note;
2196 ssize_t old_len, sect_len;
2197 size_t new_len, descsz, i;
2198
2199 if (ninfo->type == -1) {
2200 ninfo->outfunc(ninfo->outarg, sb, &ninfo->outsize);
2201 return;
2202 }
2203
2204 note.n_namesz = sizeof(FREEBSD_ABI_VENDOR);
2205 note.n_descsz = ninfo->outsize;
2206 note.n_type = ninfo->type;
2207
2208 sbuf_bcat(sb, ¬e, sizeof(note));
2209 sbuf_start_section(sb, &old_len);
2210 sbuf_bcat(sb, FREEBSD_ABI_VENDOR, sizeof(FREEBSD_ABI_VENDOR));
2211 sbuf_end_section(sb, old_len, ELF_NOTE_ROUNDSIZE, 0);
2212 if (note.n_descsz == 0)
2213 return;
2214 sbuf_start_section(sb, &old_len);
2215 ninfo->outfunc(ninfo->outarg, sb, &ninfo->outsize);
2216 sect_len = sbuf_end_section(sb, old_len, ELF_NOTE_ROUNDSIZE, 0);
2217 if (sect_len < 0)
2218 return;
2219
2220 new_len = (size_t)sect_len;
2221 descsz = roundup(note.n_descsz, ELF_NOTE_ROUNDSIZE);
2222 if (new_len < descsz) {
2223 /*
2224 * It is expected that individual note emitters will correctly
2225 * predict their expected output size and fill up to that size
2226 * themselves, padding in a format-specific way if needed.
2227 * However, in case they don't, just do it here with zeros.
2228 */
2229 for (i = 0; i < descsz - new_len; i++)
2230 sbuf_putc(sb, 0);
2231 } else if (new_len > descsz) {
2232 /*
2233 * We can't always truncate sb -- we may have drained some
2234 * of it already.
2235 */
2236 KASSERT(new_len == descsz, ("%s: Note type %u changed as we "
2237 "read it (%zu > %zu). Since it is longer than "
2238 "expected, this coredump's notes are corrupt. THIS "
2239 "IS A BUG in the note_procstat routine for type %u.\n",
2240 __func__, (unsigned)note.n_type, new_len, descsz,
2241 (unsigned)note.n_type));
2242 }
2243 }
2244
2245 /*
2246 * Miscellaneous note out functions.
2247 */
2248
2249 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2250 #include <compat/freebsd32/freebsd32.h>
2251 #include <compat/freebsd32/freebsd32_signal.h>
2252
2253 typedef struct prstatus32 elf_prstatus_t;
2254 typedef struct prpsinfo32 elf_prpsinfo_t;
2255 typedef struct fpreg32 elf_prfpregset_t;
2256 typedef struct fpreg32 elf_fpregset_t;
2257 typedef struct reg32 elf_gregset_t;
2258 typedef struct thrmisc32 elf_thrmisc_t;
2259 #define ELF_KERN_PROC_MASK KERN_PROC_MASK32
2260 typedef struct kinfo_proc32 elf_kinfo_proc_t;
2261 typedef uint32_t elf_ps_strings_t;
2262 #else
2263 typedef prstatus_t elf_prstatus_t;
2264 typedef prpsinfo_t elf_prpsinfo_t;
2265 typedef prfpregset_t elf_prfpregset_t;
2266 typedef prfpregset_t elf_fpregset_t;
2267 typedef gregset_t elf_gregset_t;
2268 typedef thrmisc_t elf_thrmisc_t;
2269 #define ELF_KERN_PROC_MASK 0
2270 typedef struct kinfo_proc elf_kinfo_proc_t;
2271 typedef vm_offset_t elf_ps_strings_t;
2272 #endif
2273
2274 static void
__elfN(note_prpsinfo)2275 __elfN(note_prpsinfo)(void *arg, struct sbuf *sb, size_t *sizep)
2276 {
2277 struct sbuf sbarg;
2278 size_t len;
2279 char *cp, *end;
2280 struct proc *p;
2281 elf_prpsinfo_t *psinfo;
2282 int error;
2283
2284 p = (struct proc *)arg;
2285 if (sb != NULL) {
2286 KASSERT(*sizep == sizeof(*psinfo), ("invalid size"));
2287 psinfo = malloc(sizeof(*psinfo), M_TEMP, M_ZERO | M_WAITOK);
2288 psinfo->pr_version = PRPSINFO_VERSION;
2289 psinfo->pr_psinfosz = sizeof(elf_prpsinfo_t);
2290 strlcpy(psinfo->pr_fname, p->p_comm, sizeof(psinfo->pr_fname));
2291 PROC_LOCK(p);
2292 if (p->p_args != NULL) {
2293 len = sizeof(psinfo->pr_psargs) - 1;
2294 if (len > p->p_args->ar_length)
2295 len = p->p_args->ar_length;
2296 memcpy(psinfo->pr_psargs, p->p_args->ar_args, len);
2297 PROC_UNLOCK(p);
2298 error = 0;
2299 } else {
2300 _PHOLD(p);
2301 PROC_UNLOCK(p);
2302 sbuf_new(&sbarg, psinfo->pr_psargs,
2303 sizeof(psinfo->pr_psargs), SBUF_FIXEDLEN);
2304 error = proc_getargv(curthread, p, &sbarg);
2305 PRELE(p);
2306 if (sbuf_finish(&sbarg) == 0) {
2307 len = sbuf_len(&sbarg);
2308 if (len > 0)
2309 len--;
2310 } else {
2311 len = sizeof(psinfo->pr_psargs) - 1;
2312 }
2313 sbuf_delete(&sbarg);
2314 }
2315 if (error != 0 || len == 0 || (ssize_t)len == -1)
2316 strlcpy(psinfo->pr_psargs, p->p_comm,
2317 sizeof(psinfo->pr_psargs));
2318 else {
2319 KASSERT(len < sizeof(psinfo->pr_psargs),
2320 ("len is too long: %zu vs %zu", len,
2321 sizeof(psinfo->pr_psargs)));
2322 cp = psinfo->pr_psargs;
2323 end = cp + len - 1;
2324 for (;;) {
2325 cp = memchr(cp, '\0', end - cp);
2326 if (cp == NULL)
2327 break;
2328 *cp = ' ';
2329 }
2330 }
2331 psinfo->pr_pid = p->p_pid;
2332 sbuf_bcat(sb, psinfo, sizeof(*psinfo));
2333 free(psinfo, M_TEMP);
2334 }
2335 *sizep = sizeof(*psinfo);
2336 }
2337
2338 static void
__elfN(note_prstatus)2339 __elfN(note_prstatus)(void *arg, struct sbuf *sb, size_t *sizep)
2340 {
2341 struct thread *td;
2342 elf_prstatus_t *status;
2343
2344 td = (struct thread *)arg;
2345 if (sb != NULL) {
2346 KASSERT(*sizep == sizeof(*status), ("invalid size"));
2347 status = malloc(sizeof(*status), M_TEMP, M_ZERO | M_WAITOK);
2348 status->pr_version = PRSTATUS_VERSION;
2349 status->pr_statussz = sizeof(elf_prstatus_t);
2350 status->pr_gregsetsz = sizeof(elf_gregset_t);
2351 status->pr_fpregsetsz = sizeof(elf_fpregset_t);
2352 status->pr_osreldate = osreldate;
2353 status->pr_cursig = td->td_proc->p_sig;
2354 status->pr_pid = td->td_tid;
2355 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2356 fill_regs32(td, &status->pr_reg);
2357 #else
2358 fill_regs(td, &status->pr_reg);
2359 #endif
2360 sbuf_bcat(sb, status, sizeof(*status));
2361 free(status, M_TEMP);
2362 }
2363 *sizep = sizeof(*status);
2364 }
2365
2366 static void
__elfN(note_fpregset)2367 __elfN(note_fpregset)(void *arg, struct sbuf *sb, size_t *sizep)
2368 {
2369 struct thread *td;
2370 elf_prfpregset_t *fpregset;
2371
2372 td = (struct thread *)arg;
2373 if (sb != NULL) {
2374 KASSERT(*sizep == sizeof(*fpregset), ("invalid size"));
2375 fpregset = malloc(sizeof(*fpregset), M_TEMP, M_ZERO | M_WAITOK);
2376 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2377 fill_fpregs32(td, fpregset);
2378 #else
2379 fill_fpregs(td, fpregset);
2380 #endif
2381 sbuf_bcat(sb, fpregset, sizeof(*fpregset));
2382 free(fpregset, M_TEMP);
2383 }
2384 *sizep = sizeof(*fpregset);
2385 }
2386
2387 static void
__elfN(note_thrmisc)2388 __elfN(note_thrmisc)(void *arg, struct sbuf *sb, size_t *sizep)
2389 {
2390 struct thread *td;
2391 elf_thrmisc_t thrmisc;
2392
2393 td = (struct thread *)arg;
2394 if (sb != NULL) {
2395 KASSERT(*sizep == sizeof(thrmisc), ("invalid size"));
2396 bzero(&thrmisc, sizeof(thrmisc));
2397 strcpy(thrmisc.pr_tname, td->td_name);
2398 sbuf_bcat(sb, &thrmisc, sizeof(thrmisc));
2399 }
2400 *sizep = sizeof(thrmisc);
2401 }
2402
2403 static void
__elfN(note_ptlwpinfo)2404 __elfN(note_ptlwpinfo)(void *arg, struct sbuf *sb, size_t *sizep)
2405 {
2406 struct thread *td;
2407 size_t size;
2408 int structsize;
2409 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2410 struct ptrace_lwpinfo32 pl;
2411 #else
2412 struct ptrace_lwpinfo pl;
2413 #endif
2414
2415 td = (struct thread *)arg;
2416 size = sizeof(structsize) + sizeof(pl);
2417 if (sb != NULL) {
2418 KASSERT(*sizep == size, ("invalid size"));
2419 structsize = sizeof(pl);
2420 sbuf_bcat(sb, &structsize, sizeof(structsize));
2421 bzero(&pl, sizeof(pl));
2422 pl.pl_lwpid = td->td_tid;
2423 pl.pl_event = PL_EVENT_NONE;
2424 pl.pl_sigmask = td->td_sigmask;
2425 pl.pl_siglist = td->td_siglist;
2426 if (td->td_si.si_signo != 0) {
2427 pl.pl_event = PL_EVENT_SIGNAL;
2428 pl.pl_flags |= PL_FLAG_SI;
2429 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2430 siginfo_to_siginfo32(&td->td_si, &pl.pl_siginfo);
2431 #else
2432 pl.pl_siginfo = td->td_si;
2433 #endif
2434 }
2435 strcpy(pl.pl_tdname, td->td_name);
2436 /* XXX TODO: supply more information in struct ptrace_lwpinfo*/
2437 sbuf_bcat(sb, &pl, sizeof(pl));
2438 }
2439 *sizep = size;
2440 }
2441
2442 /*
2443 * Allow for MD specific notes, as well as any MD
2444 * specific preparations for writing MI notes.
2445 */
2446 static void
__elfN(note_threadmd)2447 __elfN(note_threadmd)(void *arg, struct sbuf *sb, size_t *sizep)
2448 {
2449 struct thread *td;
2450 void *buf;
2451 size_t size;
2452
2453 td = (struct thread *)arg;
2454 size = *sizep;
2455 if (size != 0 && sb != NULL)
2456 buf = malloc(size, M_TEMP, M_ZERO | M_WAITOK);
2457 else
2458 buf = NULL;
2459 size = 0;
2460 __elfN(dump_thread)(td, buf, &size);
2461 KASSERT(sb == NULL || *sizep == size, ("invalid size"));
2462 if (size != 0 && sb != NULL)
2463 sbuf_bcat(sb, buf, size);
2464 free(buf, M_TEMP);
2465 *sizep = size;
2466 }
2467
2468 #ifdef KINFO_PROC_SIZE
2469 CTASSERT(sizeof(struct kinfo_proc) == KINFO_PROC_SIZE);
2470 #endif
2471
2472 static void
__elfN(note_procstat_proc)2473 __elfN(note_procstat_proc)(void *arg, struct sbuf *sb, size_t *sizep)
2474 {
2475 struct proc *p;
2476 size_t size;
2477 int structsize;
2478
2479 p = (struct proc *)arg;
2480 size = sizeof(structsize) + p->p_numthreads *
2481 sizeof(elf_kinfo_proc_t);
2482
2483 if (sb != NULL) {
2484 KASSERT(*sizep == size, ("invalid size"));
2485 structsize = sizeof(elf_kinfo_proc_t);
2486 sbuf_bcat(sb, &structsize, sizeof(structsize));
2487 sx_slock(&proctree_lock);
2488 PROC_LOCK(p);
2489 kern_proc_out(p, sb, ELF_KERN_PROC_MASK);
2490 sx_sunlock(&proctree_lock);
2491 }
2492 *sizep = size;
2493 }
2494
2495 #ifdef KINFO_FILE_SIZE
2496 CTASSERT(sizeof(struct kinfo_file) == KINFO_FILE_SIZE);
2497 #endif
2498
2499 static void
note_procstat_files(void * arg,struct sbuf * sb,size_t * sizep)2500 note_procstat_files(void *arg, struct sbuf *sb, size_t *sizep)
2501 {
2502 struct proc *p;
2503 size_t size, sect_sz, i;
2504 ssize_t start_len, sect_len;
2505 int structsize, filedesc_flags;
2506
2507 if (coredump_pack_fileinfo)
2508 filedesc_flags = KERN_FILEDESC_PACK_KINFO;
2509 else
2510 filedesc_flags = 0;
2511
2512 p = (struct proc *)arg;
2513 structsize = sizeof(struct kinfo_file);
2514 if (sb == NULL) {
2515 size = 0;
2516 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2517 sbuf_set_drain(sb, sbuf_count_drain, &size);
2518 sbuf_bcat(sb, &structsize, sizeof(structsize));
2519 PROC_LOCK(p);
2520 kern_proc_filedesc_out(p, sb, -1, filedesc_flags);
2521 sbuf_finish(sb);
2522 sbuf_delete(sb);
2523 *sizep = size;
2524 } else {
2525 sbuf_start_section(sb, &start_len);
2526
2527 sbuf_bcat(sb, &structsize, sizeof(structsize));
2528 PROC_LOCK(p);
2529 kern_proc_filedesc_out(p, sb, *sizep - sizeof(structsize),
2530 filedesc_flags);
2531
2532 sect_len = sbuf_end_section(sb, start_len, 0, 0);
2533 if (sect_len < 0)
2534 return;
2535 sect_sz = sect_len;
2536
2537 KASSERT(sect_sz <= *sizep,
2538 ("kern_proc_filedesc_out did not respect maxlen; "
2539 "requested %zu, got %zu", *sizep - sizeof(structsize),
2540 sect_sz - sizeof(structsize)));
2541
2542 for (i = 0; i < *sizep - sect_sz && sb->s_error == 0; i++)
2543 sbuf_putc(sb, 0);
2544 }
2545 }
2546
2547 #ifdef KINFO_VMENTRY_SIZE
2548 CTASSERT(sizeof(struct kinfo_vmentry) == KINFO_VMENTRY_SIZE);
2549 #endif
2550
2551 static void
note_procstat_vmmap(void * arg,struct sbuf * sb,size_t * sizep)2552 note_procstat_vmmap(void *arg, struct sbuf *sb, size_t *sizep)
2553 {
2554 struct proc *p;
2555 size_t size;
2556 int structsize, vmmap_flags;
2557
2558 if (coredump_pack_vmmapinfo)
2559 vmmap_flags = KERN_VMMAP_PACK_KINFO;
2560 else
2561 vmmap_flags = 0;
2562
2563 p = (struct proc *)arg;
2564 structsize = sizeof(struct kinfo_vmentry);
2565 if (sb == NULL) {
2566 size = 0;
2567 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2568 sbuf_set_drain(sb, sbuf_count_drain, &size);
2569 sbuf_bcat(sb, &structsize, sizeof(structsize));
2570 PROC_LOCK(p);
2571 kern_proc_vmmap_out(p, sb, -1, vmmap_flags);
2572 sbuf_finish(sb);
2573 sbuf_delete(sb);
2574 *sizep = size;
2575 } else {
2576 sbuf_bcat(sb, &structsize, sizeof(structsize));
2577 PROC_LOCK(p);
2578 kern_proc_vmmap_out(p, sb, *sizep - sizeof(structsize),
2579 vmmap_flags);
2580 }
2581 }
2582
2583 static void
note_procstat_groups(void * arg,struct sbuf * sb,size_t * sizep)2584 note_procstat_groups(void *arg, struct sbuf *sb, size_t *sizep)
2585 {
2586 struct proc *p;
2587 size_t size;
2588 int structsize;
2589
2590 p = (struct proc *)arg;
2591 size = sizeof(structsize) + p->p_ucred->cr_ngroups * sizeof(gid_t);
2592 if (sb != NULL) {
2593 KASSERT(*sizep == size, ("invalid size"));
2594 structsize = sizeof(gid_t);
2595 sbuf_bcat(sb, &structsize, sizeof(structsize));
2596 sbuf_bcat(sb, p->p_ucred->cr_groups, p->p_ucred->cr_ngroups *
2597 sizeof(gid_t));
2598 }
2599 *sizep = size;
2600 }
2601
2602 static void
note_procstat_umask(void * arg,struct sbuf * sb,size_t * sizep)2603 note_procstat_umask(void *arg, struct sbuf *sb, size_t *sizep)
2604 {
2605 struct proc *p;
2606 size_t size;
2607 int structsize;
2608
2609 p = (struct proc *)arg;
2610 size = sizeof(structsize) + sizeof(p->p_pd->pd_cmask);
2611 if (sb != NULL) {
2612 KASSERT(*sizep == size, ("invalid size"));
2613 structsize = sizeof(p->p_pd->pd_cmask);
2614 sbuf_bcat(sb, &structsize, sizeof(structsize));
2615 sbuf_bcat(sb, &p->p_pd->pd_cmask, sizeof(p->p_pd->pd_cmask));
2616 }
2617 *sizep = size;
2618 }
2619
2620 static void
note_procstat_rlimit(void * arg,struct sbuf * sb,size_t * sizep)2621 note_procstat_rlimit(void *arg, struct sbuf *sb, size_t *sizep)
2622 {
2623 struct proc *p;
2624 struct rlimit rlim[RLIM_NLIMITS];
2625 size_t size;
2626 int structsize, i;
2627
2628 p = (struct proc *)arg;
2629 size = sizeof(structsize) + sizeof(rlim);
2630 if (sb != NULL) {
2631 KASSERT(*sizep == size, ("invalid size"));
2632 structsize = sizeof(rlim);
2633 sbuf_bcat(sb, &structsize, sizeof(structsize));
2634 PROC_LOCK(p);
2635 for (i = 0; i < RLIM_NLIMITS; i++)
2636 lim_rlimit_proc(p, i, &rlim[i]);
2637 PROC_UNLOCK(p);
2638 sbuf_bcat(sb, rlim, sizeof(rlim));
2639 }
2640 *sizep = size;
2641 }
2642
2643 static void
note_procstat_osrel(void * arg,struct sbuf * sb,size_t * sizep)2644 note_procstat_osrel(void *arg, struct sbuf *sb, size_t *sizep)
2645 {
2646 struct proc *p;
2647 size_t size;
2648 int structsize;
2649
2650 p = (struct proc *)arg;
2651 size = sizeof(structsize) + sizeof(p->p_osrel);
2652 if (sb != NULL) {
2653 KASSERT(*sizep == size, ("invalid size"));
2654 structsize = sizeof(p->p_osrel);
2655 sbuf_bcat(sb, &structsize, sizeof(structsize));
2656 sbuf_bcat(sb, &p->p_osrel, sizeof(p->p_osrel));
2657 }
2658 *sizep = size;
2659 }
2660
2661 static void
__elfN(note_procstat_psstrings)2662 __elfN(note_procstat_psstrings)(void *arg, struct sbuf *sb, size_t *sizep)
2663 {
2664 struct proc *p;
2665 elf_ps_strings_t ps_strings;
2666 size_t size;
2667 int structsize;
2668
2669 p = (struct proc *)arg;
2670 size = sizeof(structsize) + sizeof(ps_strings);
2671 if (sb != NULL) {
2672 KASSERT(*sizep == size, ("invalid size"));
2673 structsize = sizeof(ps_strings);
2674 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2675 ps_strings = PTROUT(PROC_PS_STRINGS(p));
2676 #else
2677 ps_strings = PROC_PS_STRINGS(p);
2678 #endif
2679 sbuf_bcat(sb, &structsize, sizeof(structsize));
2680 sbuf_bcat(sb, &ps_strings, sizeof(ps_strings));
2681 }
2682 *sizep = size;
2683 }
2684
2685 static void
__elfN(note_procstat_auxv)2686 __elfN(note_procstat_auxv)(void *arg, struct sbuf *sb, size_t *sizep)
2687 {
2688 struct proc *p;
2689 size_t size;
2690 int structsize;
2691
2692 p = (struct proc *)arg;
2693 if (sb == NULL) {
2694 size = 0;
2695 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2696 sbuf_set_drain(sb, sbuf_count_drain, &size);
2697 sbuf_bcat(sb, &structsize, sizeof(structsize));
2698 PHOLD(p);
2699 proc_getauxv(curthread, p, sb);
2700 PRELE(p);
2701 sbuf_finish(sb);
2702 sbuf_delete(sb);
2703 *sizep = size;
2704 } else {
2705 structsize = sizeof(Elf_Auxinfo);
2706 sbuf_bcat(sb, &structsize, sizeof(structsize));
2707 PHOLD(p);
2708 proc_getauxv(curthread, p, sb);
2709 PRELE(p);
2710 }
2711 }
2712
2713 static boolean_t
__elfN(parse_notes)2714 __elfN(parse_notes)(struct image_params *imgp, Elf_Note *checknote,
2715 const char *note_vendor, const Elf_Phdr *pnote,
2716 boolean_t (*cb)(const Elf_Note *, void *, boolean_t *), void *cb_arg)
2717 {
2718 const Elf_Note *note, *note0, *note_end;
2719 const char *note_name;
2720 char *buf;
2721 int i, error;
2722 boolean_t res;
2723
2724 /* We need some limit, might as well use PAGE_SIZE. */
2725 if (pnote == NULL || pnote->p_filesz > PAGE_SIZE)
2726 return (FALSE);
2727 ASSERT_VOP_LOCKED(imgp->vp, "parse_notes");
2728 if (pnote->p_offset > PAGE_SIZE ||
2729 pnote->p_filesz > PAGE_SIZE - pnote->p_offset) {
2730 buf = malloc(pnote->p_filesz, M_TEMP, M_NOWAIT);
2731 if (buf == NULL) {
2732 VOP_UNLOCK(imgp->vp);
2733 buf = malloc(pnote->p_filesz, M_TEMP, M_WAITOK);
2734 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
2735 }
2736 error = vn_rdwr(UIO_READ, imgp->vp, buf, pnote->p_filesz,
2737 pnote->p_offset, UIO_SYSSPACE, IO_NODELOCKED,
2738 curthread->td_ucred, NOCRED, NULL, curthread);
2739 if (error != 0) {
2740 uprintf("i/o error PT_NOTE\n");
2741 goto retf;
2742 }
2743 note = note0 = (const Elf_Note *)buf;
2744 note_end = (const Elf_Note *)(buf + pnote->p_filesz);
2745 } else {
2746 note = note0 = (const Elf_Note *)(imgp->image_header +
2747 pnote->p_offset);
2748 note_end = (const Elf_Note *)(imgp->image_header +
2749 pnote->p_offset + pnote->p_filesz);
2750 buf = NULL;
2751 }
2752 for (i = 0; i < 100 && note >= note0 && note < note_end; i++) {
2753 if (!aligned(note, Elf32_Addr) || (const char *)note_end -
2754 (const char *)note < sizeof(Elf_Note)) {
2755 goto retf;
2756 }
2757 if (note->n_namesz != checknote->n_namesz ||
2758 note->n_descsz != checknote->n_descsz ||
2759 note->n_type != checknote->n_type)
2760 goto nextnote;
2761 note_name = (const char *)(note + 1);
2762 if (note_name + checknote->n_namesz >=
2763 (const char *)note_end || strncmp(note_vendor,
2764 note_name, checknote->n_namesz) != 0)
2765 goto nextnote;
2766
2767 if (cb(note, cb_arg, &res))
2768 goto ret;
2769 nextnote:
2770 note = (const Elf_Note *)((const char *)(note + 1) +
2771 roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE) +
2772 roundup2(note->n_descsz, ELF_NOTE_ROUNDSIZE));
2773 }
2774 retf:
2775 res = FALSE;
2776 ret:
2777 free(buf, M_TEMP);
2778 return (res);
2779 }
2780
2781 struct brandnote_cb_arg {
2782 Elf_Brandnote *brandnote;
2783 int32_t *osrel;
2784 };
2785
2786 static boolean_t
brandnote_cb(const Elf_Note * note,void * arg0,boolean_t * res)2787 brandnote_cb(const Elf_Note *note, void *arg0, boolean_t *res)
2788 {
2789 struct brandnote_cb_arg *arg;
2790
2791 arg = arg0;
2792
2793 /*
2794 * Fetch the osreldate for binary from the ELF OSABI-note if
2795 * necessary.
2796 */
2797 *res = (arg->brandnote->flags & BN_TRANSLATE_OSREL) != 0 &&
2798 arg->brandnote->trans_osrel != NULL ?
2799 arg->brandnote->trans_osrel(note, arg->osrel) : TRUE;
2800
2801 return (TRUE);
2802 }
2803
2804 static Elf_Note fctl_note = {
2805 .n_namesz = sizeof(FREEBSD_ABI_VENDOR),
2806 .n_descsz = sizeof(uint32_t),
2807 .n_type = NT_FREEBSD_FEATURE_CTL,
2808 };
2809
2810 struct fctl_cb_arg {
2811 boolean_t *has_fctl0;
2812 uint32_t *fctl0;
2813 };
2814
2815 static boolean_t
note_fctl_cb(const Elf_Note * note,void * arg0,boolean_t * res)2816 note_fctl_cb(const Elf_Note *note, void *arg0, boolean_t *res)
2817 {
2818 struct fctl_cb_arg *arg;
2819 const Elf32_Word *desc;
2820 uintptr_t p;
2821
2822 arg = arg0;
2823 p = (uintptr_t)(note + 1);
2824 p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE);
2825 desc = (const Elf32_Word *)p;
2826 *arg->has_fctl0 = TRUE;
2827 *arg->fctl0 = desc[0];
2828 *res = TRUE;
2829 return (TRUE);
2830 }
2831
2832 /*
2833 * Try to find the appropriate ABI-note section for checknote, fetch
2834 * the osreldate and feature control flags for binary from the ELF
2835 * OSABI-note. Only the first page of the image is searched, the same
2836 * as for headers.
2837 */
2838 static boolean_t
__elfN(check_note)2839 __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *brandnote,
2840 int32_t *osrel, boolean_t *has_fctl0, uint32_t *fctl0)
2841 {
2842 const Elf_Phdr *phdr;
2843 const Elf_Ehdr *hdr;
2844 struct brandnote_cb_arg b_arg;
2845 struct fctl_cb_arg f_arg;
2846 int i, j;
2847
2848 hdr = (const Elf_Ehdr *)imgp->image_header;
2849 phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
2850 b_arg.brandnote = brandnote;
2851 b_arg.osrel = osrel;
2852 f_arg.has_fctl0 = has_fctl0;
2853 f_arg.fctl0 = fctl0;
2854
2855 for (i = 0; i < hdr->e_phnum; i++) {
2856 if (phdr[i].p_type == PT_NOTE && __elfN(parse_notes)(imgp,
2857 &brandnote->hdr, brandnote->vendor, &phdr[i], brandnote_cb,
2858 &b_arg)) {
2859 for (j = 0; j < hdr->e_phnum; j++) {
2860 if (phdr[j].p_type == PT_NOTE &&
2861 __elfN(parse_notes)(imgp, &fctl_note,
2862 FREEBSD_ABI_VENDOR, &phdr[j],
2863 note_fctl_cb, &f_arg))
2864 break;
2865 }
2866 return (TRUE);
2867 }
2868 }
2869 return (FALSE);
2870
2871 }
2872
2873 /*
2874 * Tell kern_execve.c about it, with a little help from the linker.
2875 */
2876 static struct execsw __elfN(execsw) = {
2877 .ex_imgact = __CONCAT(exec_, __elfN(imgact)),
2878 .ex_name = __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
2879 };
2880 EXEC_SET(__CONCAT(elf, __ELF_WORD_SIZE), __elfN(execsw));
2881
2882 static vm_prot_t
__elfN(trans_prot)2883 __elfN(trans_prot)(Elf_Word flags)
2884 {
2885 vm_prot_t prot;
2886
2887 prot = 0;
2888 if (flags & PF_X)
2889 prot |= VM_PROT_EXECUTE;
2890 if (flags & PF_W)
2891 prot |= VM_PROT_WRITE;
2892 if (flags & PF_R)
2893 prot |= VM_PROT_READ;
2894 #if __ELF_WORD_SIZE == 32 && (defined(__amd64__) || defined(__i386__))
2895 if (i386_read_exec && (flags & PF_R))
2896 prot |= VM_PROT_EXECUTE;
2897 #endif
2898 return (prot);
2899 }
2900
2901 static Elf_Word
__elfN(untrans_prot)2902 __elfN(untrans_prot)(vm_prot_t prot)
2903 {
2904 Elf_Word flags;
2905
2906 flags = 0;
2907 if (prot & VM_PROT_EXECUTE)
2908 flags |= PF_X;
2909 if (prot & VM_PROT_READ)
2910 flags |= PF_R;
2911 if (prot & VM_PROT_WRITE)
2912 flags |= PF_W;
2913 return (flags);
2914 }
2915