sys/kern/kern_memio.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 | /*- * Copyright (c) 1988 University of Utah. * Copyright (c) 1982, 1986, 1990 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department, and code derived from software contributed to * Berkeley by William Jolitz. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: Utah $Hdr: mem.c 1.13 89/10/08$ * from: @(#)mem.c 7.2 (Berkeley) 5/9/91 * $FreeBSD: src/sys/i386/i386/mem.c,v 1.79.2.9 2003/01/04 22:58:01 njl Exp $ */ /* * Memory special file */ #include <sys/param.h> #include <sys/systm.h> #include <sys/buf.h> #include <sys/conf.h> #include <sys/fcntl.h> #include <sys/filio.h> #include <sys/interrupt.h> #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/memrange.h> #include <sys/proc.h> #include <sys/caps.h> #include <sys/queue.h> #include <sys/random.h> #include <sys/signalvar.h> #include <sys/uio.h> #include <sys/vnode.h> #include <sys/sysctl.h> #include <sys/signal2.h> #include <sys/spinlock2.h> #include <vm/vm.h> #include <vm/pmap.h> #include <vm/vm_map.h> #include <vm/vm_extern.h> static d_open_t mmopen; static d_close_t mmclose; static d_read_t mmread; static d_write_t mmwrite; static d_ioctl_t mmioctl; #if 0 static d_mmap_t memmmap; #endif static d_kqfilter_t mmkqfilter; static int memuksmap(vm_map_backing_t ba, int op, cdev_t dev, vm_page_t fake); #define CDEV_MAJOR 2 static struct dev_ops mem_ops = { { "mem", 0, D_MPSAFE | D_QUICK }, .d_open = mmopen, .d_close = mmclose, .d_read = mmread, .d_write = mmwrite, .d_ioctl = mmioctl, .d_kqfilter = mmkqfilter, #if 0 .d_mmap = memmmap, #endif .d_uksmap = memuksmap }; static struct dev_ops mem_ops_mem = { { "mem", 0, D_MEM | D_MPSAFE | D_QUICK }, .d_open = mmopen, .d_close = mmclose, .d_read = mmread, .d_write = mmwrite, .d_ioctl = mmioctl, .d_kqfilter = mmkqfilter, #if 0 .d_mmap = memmmap, #endif .d_uksmap = memuksmap }; static struct dev_ops mem_ops_noq = { { "mem", 0, D_MPSAFE }, .d_open = mmopen, .d_close = mmclose, .d_read = mmread, .d_write = mmwrite, .d_ioctl = mmioctl, .d_kqfilter = mmkqfilter, #if 0 .d_mmap = memmmap, #endif .d_uksmap = memuksmap }; static int rand_bolt; static caddr_t zbuf; static cdev_t zerodev = NULL; static struct lock mem_lock = LOCK_INITIALIZER("memlk", 0, 0); MALLOC_DEFINE(M_MEMDESC, "memdesc", "memory range descriptors"); static int mem_ioctl (cdev_t, u_long, caddr_t, int, struct ucred *); static int random_ioctl (cdev_t, u_long, caddr_t, int, struct ucred *); struct mem_range_softc mem_range_softc; static int seedenable; SYSCTL_INT(_kern, OID_AUTO, seedenable, CTLFLAG_RW, &seedenable, 0, ""); static int mmopen(struct dev_open_args *ap) { cdev_t dev = ap->a_head.a_dev; int error; switch (minor(dev)) { case 0: case 1: /* * /dev/mem and /dev/kmem */ error = caps_priv_check(ap->a_cred, SYSCAP_RESTRICTEDROOT | __SYSCAP_NOROOTTEST); if (error == 0) { if (ap->a_oflags & FWRITE) { if (securelevel > 0 || kernel_mem_readonly) error = EPERM; } } break; case 3: case 4: /* * /dev/random * /dev/urandom * * Cannot be written to from RESTRICTEDROOT environments. */ error = 0; if (ap->a_oflags & FWRITE) { error = caps_priv_check(ap->a_cred, SYSCAP_RESTRICTEDROOT | __SYSCAP_NOROOTTEST); } break; case 6: /* * /dev/kpmap can only be opened for reading. */ error = 0; if (ap->a_oflags & FWRITE) error = EPERM; break; case 14: /* * /dev/io */ error = caps_priv_check(ap->a_cred, SYSCAP_RESTRICTEDROOT); if (error == 0) { if (securelevel > 0 || kernel_mem_readonly) error = EPERM; else error = cpu_set_iopl(); } break; default: error = 0; break; } return (error); } static int mmclose(struct dev_close_args *ap) { cdev_t dev = ap->a_head.a_dev; int error; switch (minor(dev)) { case 14: error = cpu_clr_iopl(); break; default: error = 0; break; } return (error); } static int mmrw(cdev_t dev, struct uio *uio, int flags) { int o; u_int c; u_int poolsize; u_long v; struct iovec *iov; int error = 0; caddr_t buf = NULL; while (uio->uio_resid > 0 && error == 0) { iov = uio->uio_iov; if (iov->iov_len == 0) { uio->uio_iov++; uio->uio_iovcnt--; if (uio->uio_iovcnt < 0) panic("mmrw"); continue; } switch (minor(dev)) { case 0: /* * minor device 0 is physical memory, /dev/mem */ v = uio->uio_offset; v &= ~(long)PAGE_MASK; pmap_kenter((vm_offset_t)ptvmmap, v); o = (int)uio->uio_offset & PAGE_MASK; c = (u_int)(PAGE_SIZE - ((uintptr_t)iov->iov_base & PAGE_MASK)); c = min(c, (u_int)(PAGE_SIZE - o)); c = min(c, (u_int)iov->iov_len); error = uiomove((caddr_t)&ptvmmap[o], (int)c, uio); pmap_kremove((vm_offset_t)ptvmmap); continue; case 1: { /* * minor device 1 is kernel memory, /dev/kmem */ vm_offset_t saddr, eaddr; int prot; c = iov->iov_len; /* * Make sure that all of the pages are currently * resident so that we don't create any zero-fill * pages. */ saddr = trunc_page(uio->uio_offset); eaddr = round_page(uio->uio_offset + c); if (saddr > eaddr) return EFAULT; /* * Make sure the kernel addresses are mapped. * platform_direct_mapped() can be used to bypass * default mapping via the page table (virtual kernels * contain a lot of out-of-band data). */ prot = VM_PROT_READ; if (uio->uio_rw != UIO_READ) prot |= VM_PROT_WRITE; error = kvm_access_check(saddr, eaddr, prot); if (error) return (error); error = uiomove((caddr_t)(vm_offset_t)uio->uio_offset, (int)c, uio); continue; } case 2: /* * minor device 2 (/dev/null) is EOF/RATHOLE */ if (uio->uio_rw == UIO_READ) return (0); c = iov->iov_len; break; case 3: /* * minor device 3 (/dev/random) is source of filth * on read, seeder on write */ if (buf == NULL) buf = kmalloc(PAGE_SIZE, M_TEMP, M_WAITOK); c = min(iov->iov_len, PAGE_SIZE); if (uio->uio_rw == UIO_WRITE) { error = uiomove(buf, (int)c, uio); if (error == 0 && seedenable && securelevel <= 0) { error = add_buffer_randomness_src(buf, c, RAND_SRC_SEEDING); } else if (error == 0) { error = EPERM; } } else { poolsize = read_random(buf, c, 0); if (poolsize == 0) { if (buf) kfree(buf, M_TEMP); if ((flags & IO_NDELAY) != 0) return (EWOULDBLOCK); return (0); } c = min(c, poolsize); error = uiomove(buf, (int)c, uio); } continue; case 4: /* * minor device 4 (/dev/urandom) is source of muck * on read, writes are disallowed. */ c = min(iov->iov_len, PAGE_SIZE); if (uio->uio_rw == UIO_WRITE) { error = EPERM; break; } if (CURSIG(curthread->td_lwp) != 0) { /* * Use tsleep() to get the error code right. * It should return immediately. */ error = tsleep(&rand_bolt, PCATCH, "urand", 1); if (error != 0 && error != EWOULDBLOCK) continue; } if (buf == NULL) buf = kmalloc(PAGE_SIZE, M_TEMP, M_WAITOK); poolsize = read_random(buf, c, 1); c = min(c, poolsize); error = uiomove(buf, (int)c, uio); continue; /* case 5: read/write not supported, mmap only */ /* case 6: read/write not supported, mmap only */ case 12: /* * minor device 12 (/dev/zero) is source of nulls * on read, write are disallowed. */ if (uio->uio_rw == UIO_WRITE) { c = iov->iov_len; break; } if (zbuf == NULL) { zbuf = (caddr_t)kmalloc(PAGE_SIZE, M_TEMP, M_WAITOK | M_ZERO); } c = min(iov->iov_len, PAGE_SIZE); error = uiomove(zbuf, (int)c, uio); continue; default: return (ENODEV); } if (error) break; iov->iov_base = (char *)iov->iov_base + c; iov->iov_len -= c; uio->uio_offset += c; uio->uio_resid -= c; } if (buf) kfree(buf, M_TEMP); return (error); } static int mmread(struct dev_read_args *ap) { return(mmrw(ap->a_head.a_dev, ap->a_uio, ap->a_ioflag)); } static int mmwrite(struct dev_write_args *ap) { return(mmrw(ap->a_head.a_dev, ap->a_uio, ap->a_ioflag)); } /*******************************************************\ * allow user processes to MMAP some memory sections * * instead of going through read/write * \*******************************************************/ static int user_kernel_mapping(vm_map_backing_t ba, int num, vm_ooffset_t offset, vm_ooffset_t *resultp); static int memuksmap(vm_map_backing_t ba, int op, cdev_t dev, vm_page_t fake) { vm_ooffset_t result; int error; struct lwp *lp; error = 0; switch(op) { case UKSMAPOP_ADD: /* * We only need to track mappings for /dev/lpmap, all process * mappings will be deleted when the process exits and we * do not need to track kernel mappings. */ if (minor(dev) == 7) { lp = ba->aux_info; spin_lock(&lp->lwp_spin); TAILQ_INSERT_TAIL(&lp->lwp_lpmap_backing_list, ba, entry); spin_unlock(&lp->lwp_spin); } break; case UKSMAPOP_REM: /* * We only need to track mappings for /dev/lpmap, all process * mappings will be deleted when the process exits and we * do not need to track kernel mappings. */ if (minor(dev) == 7) { lp = ba->aux_info; spin_lock(&lp->lwp_spin); TAILQ_REMOVE(&lp->lwp_lpmap_backing_list, ba, entry); spin_unlock(&lp->lwp_spin); } break; case UKSMAPOP_FAULT: switch (minor(dev)) { case 0: /* * minor device 0 is physical memory */ fake->phys_addr = ptoa(fake->pindex); break; case 1: /* * minor device 1 is kernel memory */ fake->phys_addr = vtophys(ptoa(fake->pindex)); break; case 5: case 6: case 7: /* * minor device 5 is /dev/upmap (see sys/upmap.h) * minor device 6 is /dev/kpmap (see sys/upmap.h) * minor device 7 is /dev/lpmap (see sys/upmap.h) */ result = 0; error = user_kernel_mapping(ba, minor(dev), ptoa(fake->pindex), &result); fake->phys_addr = result; break; default: error = EINVAL; break; } break; default: error = EINVAL; break; } return error; } static int mmioctl(struct dev_ioctl_args *ap) { cdev_t dev = ap->a_head.a_dev; int error; lockmgr(&mem_lock, LK_EXCLUSIVE); switch (minor(dev)) { case 0: error = mem_ioctl(dev, ap->a_cmd, ap->a_data, ap->a_fflag, ap->a_cred); break; case 3: case 4: error = random_ioctl(dev, ap->a_cmd, ap->a_data, ap->a_fflag, ap->a_cred); break; default: error = ENODEV; break; } lockmgr(&mem_lock, LK_RELEASE); return (error); } /* * Operations for changing memory attributes. * * This is basically just an ioctl shim for mem_range_attr_get * and mem_range_attr_set. */ static int mem_ioctl(cdev_t dev, u_long cmd, caddr_t data, int flags, struct ucred *cred) { int nd, error = 0; struct mem_range_op *mo = (struct mem_range_op *)data; struct mem_range_desc *md; /* is this for us? */ if ((cmd != MEMRANGE_GET) && (cmd != MEMRANGE_SET)) return (ENOTTY); /* any chance we can handle this? */ if (mem_range_softc.mr_op == NULL) return (EOPNOTSUPP); /* do we have any descriptors? */ if (mem_range_softc.mr_ndesc == 0) return (ENXIO); switch (cmd) { case MEMRANGE_GET: nd = imin(mo->mo_arg[0], mem_range_softc.mr_ndesc); if (nd > 0) { md = (struct mem_range_desc *) kmalloc(nd * sizeof(struct mem_range_desc), M_MEMDESC, M_WAITOK); error = mem_range_attr_get(md, &nd); if (!error) error = copyout(md, mo->mo_desc, nd * sizeof(struct mem_range_desc)); kfree(md, M_MEMDESC); } else { nd = mem_range_softc.mr_ndesc; } mo->mo_arg[0] = nd; break; case MEMRANGE_SET: md = (struct mem_range_desc *)kmalloc(sizeof(struct mem_range_desc), M_MEMDESC, M_WAITOK); error = copyin(mo->mo_desc, md, sizeof(struct mem_range_desc)); /* clamp description string */ md->mr_owner[sizeof(md->mr_owner) - 1] = 0; if (error == 0) error = mem_range_attr_set(md, &mo->mo_arg[0]); kfree(md, M_MEMDESC); break; } return (error); } /* * Implementation-neutral, kernel-callable functions for manipulating * memory range attributes. */ int mem_range_attr_get(struct mem_range_desc *mrd, int *arg) { /* can we handle this? */ if (mem_range_softc.mr_op == NULL) return (EOPNOTSUPP); if (*arg == 0) { *arg = mem_range_softc.mr_ndesc; } else { bcopy(mem_range_softc.mr_desc, mrd, (*arg) * sizeof(struct mem_range_desc)); } return (0); } int mem_range_attr_set(struct mem_range_desc *mrd, int *arg) { /* can we handle this? */ if (mem_range_softc.mr_op == NULL) return (EOPNOTSUPP); return (mem_range_softc.mr_op->set(&mem_range_softc, mrd, arg)); } void mem_range_AP_init(void) { if (mem_range_softc.mr_op && mem_range_softc.mr_op->initAP) mem_range_softc.mr_op->initAP(&mem_range_softc); } static int random_ioctl(cdev_t dev, u_long cmd, caddr_t data, int flags, struct ucred *cred) { int error; int intr; /* * Even inspecting the state is privileged, since it gives a hint * about how easily the randomness might be guessed. */ error = 0; switch (cmd) { /* Really handled in upper layer */ case FIOASYNC: break; case MEM_SETIRQ: intr = *(int16_t *)data; if ((error = caps_priv_check(cred, SYSCAP_RESTRICTEDROOT)) != 0) break; if (intr < 0 || intr >= MAX_INTS) return (EINVAL); register_randintr(intr); break; case MEM_CLEARIRQ: intr = *(int16_t *)data; if ((error = caps_priv_check(cred, SYSCAP_RESTRICTEDROOT)) != 0) break; if (intr < 0 || intr >= MAX_INTS) return (EINVAL); unregister_randintr(intr); break; case MEM_RETURNIRQ: error = ENOTSUP; break; case MEM_FINDIRQ: intr = *(int16_t *)data; if ((error = caps_priv_check(cred, SYSCAP_RESTRICTEDROOT)) != 0) break; if (intr < 0 || intr >= MAX_INTS) return (EINVAL); intr = next_registered_randintr(intr); if (intr == MAX_INTS) return (ENOENT); *(u_int16_t *)data = intr; break; default: error = ENOTSUP; break; } return (error); } static int mm_filter_read(struct knote *kn, long hint) { return (1); } static int mm_filter_write(struct knote *kn, long hint) { return (1); } static void dummy_filter_detach(struct knote *kn) {} /* Implemented in kern_nrandom.c */ static struct filterops random_read_filtops = { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, dummy_filter_detach, random_filter_read }; static struct filterops mm_read_filtops = { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, dummy_filter_detach, mm_filter_read }; static struct filterops mm_write_filtops = { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, dummy_filter_detach, mm_filter_write }; static int mmkqfilter(struct dev_kqfilter_args *ap) { struct knote *kn = ap->a_kn; cdev_t dev = ap->a_head.a_dev; ap->a_result = 0; switch (kn->kn_filter) { case EVFILT_READ: switch (minor(dev)) { case 3: kn->kn_fop = &random_read_filtops; break; default: kn->kn_fop = &mm_read_filtops; break; } break; case EVFILT_WRITE: kn->kn_fop = &mm_write_filtops; break; default: ap->a_result = EOPNOTSUPP; return (0); } return (0); } int iszerodev(cdev_t dev) { return (zerodev == dev); } /* * /dev/lpmap, /dev/upmap, /dev/kpmap. */ static int user_kernel_mapping(vm_map_backing_t ba, int num, vm_ooffset_t offset, vm_ooffset_t *resultp) { struct proc *p; struct lwp *lp; int error; int invfork; if (offset < 0) return (EINVAL); error = EINVAL; switch(num) { case 5: /* * /dev/upmap - maps RW per-process shared user-kernel area. */ /* * If this is a child currently in vfork the pmap is shared * with the parent! We need to actually set-up the parent's * p_upmap, not the child's, and we need to set the invfork * flag. Userland will probably adjust its static state so * it must be consistent with the parent or userland will be * really badly confused. * * (this situation can happen when user code in vfork() calls * libc's getpid() or some other function which then decides * it wants the upmap). */ p = ba->aux_info; if (p == NULL) break; if (p->p_flags & P_PPWAIT) { p = p->p_pptr; if (p == NULL) return (EINVAL); invfork = 1; } else { invfork = 0; } /* * Create the kernel structure as required, set the invfork * flag if we are faulting in on a vfork(). */ if (p->p_upmap == NULL) proc_usermap(p, invfork); if (p->p_upmap && invfork) p->p_upmap->invfork = invfork; /* * Extract address for pmap */ if (p->p_upmap && offset < roundup2(sizeof(*p->p_upmap), PAGE_SIZE)) { /* only good for current process */ *resultp = pmap_kextract((vm_offset_t)p->p_upmap + offset); error = 0; } break; case 6: /* * /dev/kpmap - maps RO shared kernel global page * * Extract address for pmap */ if (kpmap && offset < roundup2(sizeof(*kpmap), PAGE_SIZE)) { *resultp = pmap_kextract((vm_offset_t)kpmap + offset); error = 0; } break; case 7: /* * /dev/lpmap - maps RW per-thread shared user-kernel area. */ lp = ba->aux_info; if (lp == NULL) break; /* * Create the kernel structure as required */ if (lp->lwp_lpmap == NULL) lwp_usermap(lp, -1); /* second arg not yet XXX */ /* * Extract address for pmap */ if (lp->lwp_lpmap && offset < roundup2(sizeof(*lp->lwp_lpmap), PAGE_SIZE)) { /* only good for current process */ *resultp = pmap_kextract((vm_offset_t)lp->lwp_lpmap + offset); error = 0; } break; default: break; } return error; } static void mem_drvinit(void *unused) { /* Initialise memory range handling */ if (mem_range_softc.mr_op != NULL) mem_range_softc.mr_op->init(&mem_range_softc); make_dev(&mem_ops_mem, 0, UID_ROOT, GID_KMEM, 0640, "mem"); make_dev(&mem_ops_mem, 1, UID_ROOT, GID_KMEM, 0640, "kmem"); make_dev(&mem_ops, 2, UID_ROOT, GID_WHEEL, 0666, "null"); make_dev(&mem_ops, 3, UID_ROOT, GID_WHEEL, 0644, "random"); make_dev(&mem_ops, 4, UID_ROOT, GID_WHEEL, 0644, "urandom"); make_dev(&mem_ops, 5, UID_ROOT, GID_WHEEL, 0666, "upmap"); make_dev(&mem_ops, 6, UID_ROOT, GID_WHEEL, 0444, "kpmap"); make_dev(&mem_ops, 7, UID_ROOT, GID_WHEEL, 0666, "lpmap"); zerodev = make_dev(&mem_ops, 12, UID_ROOT, GID_WHEEL, 0666, "zero"); make_dev(&mem_ops_noq, 14, UID_ROOT, GID_WHEEL, 0600, "io"); } SYSINIT(memdev, SI_SUB_DRIVERS, SI_ORDER_MIDDLE + CDEV_MAJOR, mem_drvinit, NULL); |