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