1 /*- 2 * ---------------------------------------------------------------------------- 3 * "THE BEER-WARE LICENSE" (Revision 42): 4 * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you 5 * can do whatever you want with this stuff. If we meet some day, and you think 6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 7 * ---------------------------------------------------------------------------- 8 * 9 * $FreeBSD$ 10 * 11 */ 12 13 /*- 14 * The following functions are based in the vn(4) driver: mdstart_swap(), 15 * mdstart_vnode(), mdcreate_swap(), mdcreate_vnode() and mddestroy(), 16 * and as such under the following copyright: 17 * 18 * Copyright (c) 1988 University of Utah. 19 * Copyright (c) 1990, 1993 20 * The Regents of the University of California. All rights reserved. 21 * 22 * This code is derived from software contributed to Berkeley by 23 * the Systems Programming Group of the University of Utah Computer 24 * Science Department. 25 * 26 * Redistribution and use in source and binary forms, with or without 27 * modification, are permitted provided that the following conditions 28 * are met: 29 * 1. Redistributions of source code must retain the above copyright 30 * notice, this list of conditions and the following disclaimer. 31 * 2. Redistributions in binary form must reproduce the above copyright 32 * notice, this list of conditions and the following disclaimer in the 33 * documentation and/or other materials provided with the distribution. 34 * 4. Neither the name of the University nor the names of its contributors 35 * may be used to endorse or promote products derived from this software 36 * without specific prior written permission. 37 * 38 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 39 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 40 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 41 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 42 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 43 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 44 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 46 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 47 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 48 * SUCH DAMAGE. 49 * 50 * from: Utah Hdr: vn.c 1.13 94/04/02 51 * 52 * from: @(#)vn.c 8.6 (Berkeley) 4/1/94 53 * From: src/sys/dev/vn/vn.c,v 1.122 2000/12/16 16:06:03 54 */ 55 56 #include "opt_geom.h" 57 #include "opt_md.h" 58 59 #include <sys/param.h> 60 #include <sys/systm.h> 61 #include <sys/bio.h> 62 #include <sys/conf.h> 63 #include <sys/fcntl.h> 64 #include <sys/kernel.h> 65 #include <sys/kthread.h> 66 #include <sys/linker.h> 67 #include <sys/lock.h> 68 #include <sys/malloc.h> 69 #include <sys/mdioctl.h> 70 #include <sys/mount.h> 71 #include <sys/mutex.h> 72 #include <sys/sx.h> 73 #include <sys/namei.h> 74 #include <sys/proc.h> 75 #include <sys/queue.h> 76 #include <sys/sched.h> 77 #include <sys/sf_buf.h> 78 #include <sys/sysctl.h> 79 #include <sys/vnode.h> 80 81 #include <geom/geom.h> 82 83 #include <vm/vm.h> 84 #include <vm/vm_object.h> 85 #include <vm/vm_page.h> 86 #include <vm/vm_pager.h> 87 #include <vm/swap_pager.h> 88 #include <vm/uma.h> 89 90 #define MD_MODVER 1 91 92 #define MD_SHUTDOWN 0x10000 /* Tell worker thread to terminate. */ 93 #define MD_EXITING 0x20000 /* Worker thread is exiting. */ 94 95 #ifndef MD_NSECT 96 #define MD_NSECT (10000 * 2) 97 #endif 98 99 static MALLOC_DEFINE(M_MD, "md_disk", "Memory Disk"); 100 static MALLOC_DEFINE(M_MDSECT, "md_sectors", "Memory Disk Sectors"); 101 102 static int md_debug; 103 SYSCTL_INT(_debug, OID_AUTO, mddebug, CTLFLAG_RW, &md_debug, 0, ""); 104 105 #if defined(MD_ROOT) && defined(MD_ROOT_SIZE) 106 /* 107 * Preloaded image gets put here. 108 * Applications that patch the object with the image can determine 109 * the size looking at the start and end markers (strings), 110 * so we want them contiguous. 111 */ 112 static struct { 113 u_char start[MD_ROOT_SIZE*1024]; 114 u_char end[128]; 115 } mfs_root = { 116 .start = "MFS Filesystem goes here", 117 .end = "MFS Filesystem had better STOP here", 118 }; 119 #endif 120 121 static g_init_t g_md_init; 122 static g_fini_t g_md_fini; 123 static g_start_t g_md_start; 124 static g_access_t g_md_access; 125 static void g_md_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, 126 struct g_consumer *cp __unused, struct g_provider *pp); 127 128 static int mdunits; 129 static struct cdev *status_dev = 0; 130 static struct sx md_sx; 131 132 static d_ioctl_t mdctlioctl; 133 134 static struct cdevsw mdctl_cdevsw = { 135 .d_version = D_VERSION, 136 .d_ioctl = mdctlioctl, 137 .d_name = MD_NAME, 138 }; 139 140 struct g_class g_md_class = { 141 .name = "MD", 142 .version = G_VERSION, 143 .init = g_md_init, 144 .fini = g_md_fini, 145 .start = g_md_start, 146 .access = g_md_access, 147 .dumpconf = g_md_dumpconf, 148 }; 149 150 DECLARE_GEOM_CLASS(g_md_class, g_md); 151 152 153 static LIST_HEAD(, md_s) md_softc_list = LIST_HEAD_INITIALIZER(&md_softc_list); 154 155 #define NINDIR (PAGE_SIZE / sizeof(uintptr_t)) 156 #define NMASK (NINDIR-1) 157 static int nshift; 158 159 struct indir { 160 uintptr_t *array; 161 u_int total; 162 u_int used; 163 u_int shift; 164 }; 165 166 struct md_s { 167 int unit; 168 LIST_ENTRY(md_s) list; 169 struct bio_queue_head bio_queue; 170 struct mtx queue_mtx; 171 struct cdev *dev; 172 enum md_types type; 173 off_t mediasize; 174 unsigned sectorsize; 175 unsigned opencount; 176 unsigned fwheads; 177 unsigned fwsectors; 178 unsigned flags; 179 char name[20]; 180 struct proc *procp; 181 struct g_geom *gp; 182 struct g_provider *pp; 183 int (*start)(struct md_s *sc, struct bio *bp); 184 185 /* MD_MALLOC related fields */ 186 struct indir *indir; 187 uma_zone_t uma; 188 189 /* MD_PRELOAD related fields */ 190 u_char *pl_ptr; 191 size_t pl_len; 192 193 /* MD_VNODE related fields */ 194 struct vnode *vnode; 195 char file[PATH_MAX]; 196 struct ucred *cred; 197 198 /* MD_SWAP related fields */ 199 vm_object_t object; 200 }; 201 202 static struct indir * 203 new_indir(u_int shift) 204 { 205 struct indir *ip; 206 207 ip = malloc(sizeof *ip, M_MD, M_NOWAIT | M_ZERO); 208 if (ip == NULL) 209 return (NULL); 210 ip->array = malloc(sizeof(uintptr_t) * NINDIR, 211 M_MDSECT, M_NOWAIT | M_ZERO); 212 if (ip->array == NULL) { 213 free(ip, M_MD); 214 return (NULL); 215 } 216 ip->total = NINDIR; 217 ip->shift = shift; 218 return (ip); 219 } 220 221 static void 222 del_indir(struct indir *ip) 223 { 224 225 free(ip->array, M_MDSECT); 226 free(ip, M_MD); 227 } 228 229 static void 230 destroy_indir(struct md_s *sc, struct indir *ip) 231 { 232 int i; 233 234 for (i = 0; i < NINDIR; i++) { 235 if (!ip->array[i]) 236 continue; 237 if (ip->shift) 238 destroy_indir(sc, (struct indir*)(ip->array[i])); 239 else if (ip->array[i] > 255) 240 uma_zfree(sc->uma, (void *)(ip->array[i])); 241 } 242 del_indir(ip); 243 } 244 245 /* 246 * This function does the math and allocates the top level "indir" structure 247 * for a device of "size" sectors. 248 */ 249 250 static struct indir * 251 dimension(off_t size) 252 { 253 off_t rcnt; 254 struct indir *ip; 255 int i, layer; 256 257 rcnt = size; 258 layer = 0; 259 while (rcnt > NINDIR) { 260 rcnt /= NINDIR; 261 layer++; 262 } 263 /* figure out log2(NINDIR) */ 264 for (i = NINDIR, nshift = -1; i; nshift++) 265 i >>= 1; 266 267 /* 268 * XXX: the top layer is probably not fully populated, so we allocate 269 * too much space for ip->array in here. 270 */ 271 ip = malloc(sizeof *ip, M_MD, M_WAITOK | M_ZERO); 272 ip->array = malloc(sizeof(uintptr_t) * NINDIR, 273 M_MDSECT, M_WAITOK | M_ZERO); 274 ip->total = NINDIR; 275 ip->shift = layer * nshift; 276 return (ip); 277 } 278 279 /* 280 * Read a given sector 281 */ 282 283 static uintptr_t 284 s_read(struct indir *ip, off_t offset) 285 { 286 struct indir *cip; 287 int idx; 288 uintptr_t up; 289 290 if (md_debug > 1) 291 printf("s_read(%jd)\n", (intmax_t)offset); 292 up = 0; 293 for (cip = ip; cip != NULL;) { 294 if (cip->shift) { 295 idx = (offset >> cip->shift) & NMASK; 296 up = cip->array[idx]; 297 cip = (struct indir *)up; 298 continue; 299 } 300 idx = offset & NMASK; 301 return (cip->array[idx]); 302 } 303 return (0); 304 } 305 306 /* 307 * Write a given sector, prune the tree if the value is 0 308 */ 309 310 static int 311 s_write(struct indir *ip, off_t offset, uintptr_t ptr) 312 { 313 struct indir *cip, *lip[10]; 314 int idx, li; 315 uintptr_t up; 316 317 if (md_debug > 1) 318 printf("s_write(%jd, %p)\n", (intmax_t)offset, (void *)ptr); 319 up = 0; 320 li = 0; 321 cip = ip; 322 for (;;) { 323 lip[li++] = cip; 324 if (cip->shift) { 325 idx = (offset >> cip->shift) & NMASK; 326 up = cip->array[idx]; 327 if (up != 0) { 328 cip = (struct indir *)up; 329 continue; 330 } 331 /* Allocate branch */ 332 cip->array[idx] = 333 (uintptr_t)new_indir(cip->shift - nshift); 334 if (cip->array[idx] == 0) 335 return (ENOSPC); 336 cip->used++; 337 up = cip->array[idx]; 338 cip = (struct indir *)up; 339 continue; 340 } 341 /* leafnode */ 342 idx = offset & NMASK; 343 up = cip->array[idx]; 344 if (up != 0) 345 cip->used--; 346 cip->array[idx] = ptr; 347 if (ptr != 0) 348 cip->used++; 349 break; 350 } 351 if (cip->used != 0 || li == 1) 352 return (0); 353 li--; 354 while (cip->used == 0 && cip != ip) { 355 li--; 356 idx = (offset >> lip[li]->shift) & NMASK; 357 up = lip[li]->array[idx]; 358 KASSERT(up == (uintptr_t)cip, ("md screwed up")); 359 del_indir(cip); 360 lip[li]->array[idx] = 0; 361 lip[li]->used--; 362 cip = lip[li]; 363 } 364 return (0); 365 } 366 367 368 static int 369 g_md_access(struct g_provider *pp, int r, int w, int e) 370 { 371 struct md_s *sc; 372 373 sc = pp->geom->softc; 374 if (sc == NULL) 375 return (ENXIO); 376 r += pp->acr; 377 w += pp->acw; 378 e += pp->ace; 379 if ((sc->flags & MD_READONLY) != 0 && w > 0) 380 return (EROFS); 381 if ((pp->acr + pp->acw + pp->ace) == 0 && (r + w + e) > 0) { 382 sc->opencount = 1; 383 } else if ((pp->acr + pp->acw + pp->ace) > 0 && (r + w + e) == 0) { 384 sc->opencount = 0; 385 } 386 return (0); 387 } 388 389 static void 390 g_md_start(struct bio *bp) 391 { 392 struct md_s *sc; 393 394 sc = bp->bio_to->geom->softc; 395 mtx_lock(&sc->queue_mtx); 396 bioq_disksort(&sc->bio_queue, bp); 397 mtx_unlock(&sc->queue_mtx); 398 wakeup(sc); 399 } 400 401 static int 402 mdstart_malloc(struct md_s *sc, struct bio *bp) 403 { 404 int i, error; 405 u_char *dst; 406 off_t secno, nsec, uc; 407 uintptr_t sp, osp; 408 409 nsec = bp->bio_length / sc->sectorsize; 410 secno = bp->bio_offset / sc->sectorsize; 411 dst = bp->bio_data; 412 error = 0; 413 while (nsec--) { 414 osp = s_read(sc->indir, secno); 415 if (bp->bio_cmd == BIO_DELETE) { 416 if (osp != 0) 417 error = s_write(sc->indir, secno, 0); 418 } else if (bp->bio_cmd == BIO_READ) { 419 if (osp == 0) 420 bzero(dst, sc->sectorsize); 421 else if (osp <= 255) 422 for (i = 0; i < sc->sectorsize; i++) 423 dst[i] = osp; 424 else 425 bcopy((void *)osp, dst, sc->sectorsize); 426 osp = 0; 427 } else if (bp->bio_cmd == BIO_WRITE) { 428 if (sc->flags & MD_COMPRESS) { 429 uc = dst[0]; 430 for (i = 1; i < sc->sectorsize; i++) 431 if (dst[i] != uc) 432 break; 433 } else { 434 i = 0; 435 uc = 0; 436 } 437 if (i == sc->sectorsize) { 438 if (osp != uc) 439 error = s_write(sc->indir, secno, uc); 440 } else { 441 if (osp <= 255) { 442 sp = (uintptr_t)uma_zalloc(sc->uma, 443 M_NOWAIT); 444 if (sp == 0) { 445 error = ENOSPC; 446 break; 447 } 448 bcopy(dst, (void *)sp, sc->sectorsize); 449 error = s_write(sc->indir, secno, sp); 450 } else { 451 bcopy(dst, (void *)osp, sc->sectorsize); 452 osp = 0; 453 } 454 } 455 } else { 456 error = EOPNOTSUPP; 457 } 458 if (osp > 255) 459 uma_zfree(sc->uma, (void*)osp); 460 if (error != 0) 461 break; 462 secno++; 463 dst += sc->sectorsize; 464 } 465 bp->bio_resid = 0; 466 return (error); 467 } 468 469 static int 470 mdstart_preload(struct md_s *sc, struct bio *bp) 471 { 472 473 switch (bp->bio_cmd) { 474 case BIO_READ: 475 bcopy(sc->pl_ptr + bp->bio_offset, bp->bio_data, 476 bp->bio_length); 477 break; 478 case BIO_WRITE: 479 bcopy(bp->bio_data, sc->pl_ptr + bp->bio_offset, 480 bp->bio_length); 481 break; 482 } 483 bp->bio_resid = 0; 484 return (0); 485 } 486 487 static int 488 mdstart_vnode(struct md_s *sc, struct bio *bp) 489 { 490 int error, vfslocked; 491 struct uio auio; 492 struct iovec aiov; 493 struct mount *mp; 494 495 /* 496 * VNODE I/O 497 * 498 * If an error occurs, we set BIO_ERROR but we do not set 499 * B_INVAL because (for a write anyway), the buffer is 500 * still valid. 501 */ 502 503 bzero(&auio, sizeof(auio)); 504 505 aiov.iov_base = bp->bio_data; 506 aiov.iov_len = bp->bio_length; 507 auio.uio_iov = &aiov; 508 auio.uio_iovcnt = 1; 509 auio.uio_offset = (vm_ooffset_t)bp->bio_offset; 510 auio.uio_segflg = UIO_SYSSPACE; 511 if(bp->bio_cmd == BIO_READ) 512 auio.uio_rw = UIO_READ; 513 else if(bp->bio_cmd == BIO_WRITE) 514 auio.uio_rw = UIO_WRITE; 515 else 516 panic("wrong BIO_OP in mdstart_vnode"); 517 auio.uio_resid = bp->bio_length; 518 auio.uio_td = curthread; 519 /* 520 * When reading set IO_DIRECT to try to avoid double-caching 521 * the data. When writing IO_DIRECT is not optimal. 522 */ 523 vfslocked = VFS_LOCK_GIANT(sc->vnode->v_mount); 524 if (bp->bio_cmd == BIO_READ) { 525 vn_lock(sc->vnode, LK_EXCLUSIVE | LK_RETRY, curthread); 526 error = VOP_READ(sc->vnode, &auio, IO_DIRECT, sc->cred); 527 VOP_UNLOCK(sc->vnode, 0, curthread); 528 } else { 529 (void) vn_start_write(sc->vnode, &mp, V_WAIT); 530 vn_lock(sc->vnode, LK_EXCLUSIVE | LK_RETRY, curthread); 531 error = VOP_WRITE(sc->vnode, &auio, 532 sc->flags & MD_ASYNC ? 0 : IO_SYNC, sc->cred); 533 VOP_UNLOCK(sc->vnode, 0, curthread); 534 vn_finished_write(mp); 535 } 536 VFS_UNLOCK_GIANT(vfslocked); 537 bp->bio_resid = auio.uio_resid; 538 return (error); 539 } 540 541 static int 542 mdstart_swap(struct md_s *sc, struct bio *bp) 543 { 544 struct sf_buf *sf; 545 int rv, offs, len, lastend; 546 vm_pindex_t i, lastp; 547 vm_page_t m; 548 u_char *p; 549 550 p = bp->bio_data; 551 552 /* 553 * offs is the offset at which to start operating on the 554 * next (ie, first) page. lastp is the last page on 555 * which we're going to operate. lastend is the ending 556 * position within that last page (ie, PAGE_SIZE if 557 * we're operating on complete aligned pages). 558 */ 559 offs = bp->bio_offset % PAGE_SIZE; 560 lastp = (bp->bio_offset + bp->bio_length - 1) / PAGE_SIZE; 561 lastend = (bp->bio_offset + bp->bio_length - 1) % PAGE_SIZE + 1; 562 563 rv = VM_PAGER_OK; 564 VM_OBJECT_LOCK(sc->object); 565 vm_object_pip_add(sc->object, 1); 566 for (i = bp->bio_offset / PAGE_SIZE; i <= lastp; i++) { 567 len = ((i == lastp) ? lastend : PAGE_SIZE) - offs; 568 569 m = vm_page_grab(sc->object, i, 570 VM_ALLOC_NORMAL|VM_ALLOC_RETRY); 571 VM_OBJECT_UNLOCK(sc->object); 572 sched_pin(); 573 sf = sf_buf_alloc(m, SFB_CPUPRIVATE); 574 VM_OBJECT_LOCK(sc->object); 575 if (bp->bio_cmd == BIO_READ) { 576 if (m->valid != VM_PAGE_BITS_ALL) 577 rv = vm_pager_get_pages(sc->object, &m, 1, 0); 578 if (rv == VM_PAGER_ERROR) { 579 sf_buf_free(sf); 580 sched_unpin(); 581 vm_page_lock_queues(); 582 vm_page_wakeup(m); 583 vm_page_unlock_queues(); 584 break; 585 } 586 bcopy((void *)(sf_buf_kva(sf) + offs), p, len); 587 } else if (bp->bio_cmd == BIO_WRITE) { 588 if (len != PAGE_SIZE && m->valid != VM_PAGE_BITS_ALL) 589 rv = vm_pager_get_pages(sc->object, &m, 1, 0); 590 if (rv == VM_PAGER_ERROR) { 591 sf_buf_free(sf); 592 sched_unpin(); 593 vm_page_lock_queues(); 594 vm_page_wakeup(m); 595 vm_page_unlock_queues(); 596 break; 597 } 598 bcopy(p, (void *)(sf_buf_kva(sf) + offs), len); 599 m->valid = VM_PAGE_BITS_ALL; 600 #if 0 601 } else if (bp->bio_cmd == BIO_DELETE) { 602 if (len != PAGE_SIZE && m->valid != VM_PAGE_BITS_ALL) 603 rv = vm_pager_get_pages(sc->object, &m, 1, 0); 604 if (rv == VM_PAGER_ERROR) { 605 sf_buf_free(sf); 606 sched_unpin(); 607 vm_page_lock_queues(); 608 vm_page_wakeup(m); 609 vm_page_unlock_queues(); 610 break; 611 } 612 bzero((void *)(sf_buf_kva(sf) + offs), len); 613 vm_page_dirty(m); 614 m->valid = VM_PAGE_BITS_ALL; 615 #endif 616 } 617 sf_buf_free(sf); 618 sched_unpin(); 619 vm_page_lock_queues(); 620 vm_page_wakeup(m); 621 vm_page_activate(m); 622 if (bp->bio_cmd == BIO_WRITE) 623 vm_page_dirty(m); 624 vm_page_unlock_queues(); 625 626 /* Actions on further pages start at offset 0 */ 627 p += PAGE_SIZE - offs; 628 offs = 0; 629 #if 0 630 if (bootverbose || bp->bio_offset / PAGE_SIZE < 17) 631 printf("wire_count %d busy %d flags %x hold_count %d act_count %d queue %d valid %d dirty %d @ %d\n", 632 m->wire_count, m->busy, 633 m->flags, m->hold_count, m->act_count, m->queue, m->valid, m->dirty, i); 634 #endif 635 } 636 vm_object_pip_subtract(sc->object, 1); 637 vm_object_set_writeable_dirty(sc->object); 638 VM_OBJECT_UNLOCK(sc->object); 639 return (rv != VM_PAGER_ERROR ? 0 : ENOSPC); 640 } 641 642 static void 643 md_kthread(void *arg) 644 { 645 struct md_s *sc; 646 struct bio *bp; 647 int error; 648 649 sc = arg; 650 mtx_lock_spin(&sched_lock); 651 sched_prio(curthread, PRIBIO); 652 mtx_unlock_spin(&sched_lock); 653 654 for (;;) { 655 mtx_lock(&sc->queue_mtx); 656 if (sc->flags & MD_SHUTDOWN) { 657 sc->flags |= MD_EXITING; 658 mtx_unlock(&sc->queue_mtx); 659 kthread_exit(0); 660 } 661 bp = bioq_takefirst(&sc->bio_queue); 662 if (!bp) { 663 msleep(sc, &sc->queue_mtx, PRIBIO | PDROP, "mdwait", 0); 664 continue; 665 } 666 mtx_unlock(&sc->queue_mtx); 667 if (bp->bio_cmd == BIO_GETATTR) { 668 if (sc->fwsectors && sc->fwheads && 669 (g_handleattr_int(bp, "GEOM::fwsectors", 670 sc->fwsectors) || 671 g_handleattr_int(bp, "GEOM::fwheads", 672 sc->fwheads))) 673 error = -1; 674 else 675 error = EOPNOTSUPP; 676 } else { 677 error = sc->start(sc, bp); 678 } 679 680 if (error != -1) { 681 bp->bio_completed = bp->bio_length; 682 g_io_deliver(bp, error); 683 } 684 } 685 } 686 687 static struct md_s * 688 mdfind(int unit) 689 { 690 struct md_s *sc; 691 692 LIST_FOREACH(sc, &md_softc_list, list) { 693 if (sc->unit == unit) 694 break; 695 } 696 return (sc); 697 } 698 699 static struct md_s * 700 mdnew(int unit, int *errp, enum md_types type) 701 { 702 struct md_s *sc, *sc2; 703 int error, max = -1; 704 705 *errp = 0; 706 LIST_FOREACH(sc2, &md_softc_list, list) { 707 if (unit == sc2->unit) { 708 *errp = EBUSY; 709 return (NULL); 710 } 711 if (unit == -1 && sc2->unit > max) 712 max = sc2->unit; 713 } 714 if (unit == -1) 715 unit = max + 1; 716 sc = (struct md_s *)malloc(sizeof *sc, M_MD, M_WAITOK | M_ZERO); 717 sc->type = type; 718 bioq_init(&sc->bio_queue); 719 mtx_init(&sc->queue_mtx, "md bio queue", NULL, MTX_DEF); 720 sc->unit = unit; 721 sprintf(sc->name, "md%d", unit); 722 LIST_INSERT_HEAD(&md_softc_list, sc, list); 723 error = kthread_create(md_kthread, sc, &sc->procp, 0, 0,"%s", sc->name); 724 if (error == 0) 725 return (sc); 726 LIST_REMOVE(sc, list); 727 mtx_destroy(&sc->queue_mtx); 728 free(sc, M_MD); 729 *errp = error; 730 return (NULL); 731 } 732 733 static void 734 mdinit(struct md_s *sc) 735 { 736 737 struct g_geom *gp; 738 struct g_provider *pp; 739 740 g_topology_lock(); 741 gp = g_new_geomf(&g_md_class, "md%d", sc->unit); 742 gp->softc = sc; 743 pp = g_new_providerf(gp, "md%d", sc->unit); 744 pp->mediasize = sc->mediasize; 745 pp->sectorsize = sc->sectorsize; 746 sc->gp = gp; 747 sc->pp = pp; 748 g_error_provider(pp, 0); 749 g_topology_unlock(); 750 } 751 752 /* 753 * XXX: we should check that the range they feed us is mapped. 754 * XXX: we should implement read-only. 755 */ 756 757 static int 758 mdcreate_preload(struct md_s *sc, struct md_ioctl *mdio) 759 { 760 761 if (mdio->md_options & ~(MD_AUTOUNIT | MD_FORCE)) 762 return (EINVAL); 763 sc->flags = mdio->md_options & MD_FORCE; 764 /* Cast to pointer size, then to pointer to avoid warning */ 765 sc->pl_ptr = (u_char *)(uintptr_t)mdio->md_base; 766 sc->pl_len = (size_t)sc->mediasize; 767 return (0); 768 } 769 770 771 static int 772 mdcreate_malloc(struct md_s *sc, struct md_ioctl *mdio) 773 { 774 uintptr_t sp; 775 int error; 776 off_t u; 777 778 error = 0; 779 if (mdio->md_options & ~(MD_AUTOUNIT | MD_COMPRESS | MD_RESERVE)) 780 return (EINVAL); 781 if (mdio->md_sectorsize != 0 && !powerof2(mdio->md_sectorsize)) 782 return (EINVAL); 783 /* Compression doesn't make sense if we have reserved space */ 784 if (mdio->md_options & MD_RESERVE) 785 mdio->md_options &= ~MD_COMPRESS; 786 if (mdio->md_fwsectors != 0) 787 sc->fwsectors = mdio->md_fwsectors; 788 if (mdio->md_fwheads != 0) 789 sc->fwheads = mdio->md_fwheads; 790 sc->flags = mdio->md_options & (MD_COMPRESS | MD_FORCE); 791 sc->indir = dimension(sc->mediasize / sc->sectorsize); 792 sc->uma = uma_zcreate(sc->name, sc->sectorsize, NULL, NULL, NULL, NULL, 793 0x1ff, 0); 794 if (mdio->md_options & MD_RESERVE) { 795 off_t nsectors; 796 797 nsectors = sc->mediasize / sc->sectorsize; 798 for (u = 0; u < nsectors; u++) { 799 sp = (uintptr_t)uma_zalloc(sc->uma, M_NOWAIT | M_ZERO); 800 if (sp != 0) 801 error = s_write(sc->indir, u, sp); 802 else 803 error = ENOMEM; 804 if (error != 0) 805 break; 806 } 807 } 808 return (error); 809 } 810 811 812 static int 813 mdsetcred(struct md_s *sc, struct ucred *cred) 814 { 815 char *tmpbuf; 816 int error = 0; 817 818 /* 819 * Set credits in our softc 820 */ 821 822 if (sc->cred) 823 crfree(sc->cred); 824 sc->cred = crhold(cred); 825 826 /* 827 * Horrible kludge to establish credentials for NFS XXX. 828 */ 829 830 if (sc->vnode) { 831 struct uio auio; 832 struct iovec aiov; 833 834 tmpbuf = malloc(sc->sectorsize, M_TEMP, M_WAITOK); 835 bzero(&auio, sizeof(auio)); 836 837 aiov.iov_base = tmpbuf; 838 aiov.iov_len = sc->sectorsize; 839 auio.uio_iov = &aiov; 840 auio.uio_iovcnt = 1; 841 auio.uio_offset = 0; 842 auio.uio_rw = UIO_READ; 843 auio.uio_segflg = UIO_SYSSPACE; 844 auio.uio_resid = aiov.iov_len; 845 vn_lock(sc->vnode, LK_EXCLUSIVE | LK_RETRY, curthread); 846 error = VOP_READ(sc->vnode, &auio, 0, sc->cred); 847 VOP_UNLOCK(sc->vnode, 0, curthread); 848 free(tmpbuf, M_TEMP); 849 } 850 return (error); 851 } 852 853 static int 854 mdcreate_vnode(struct md_s *sc, struct md_ioctl *mdio, struct thread *td) 855 { 856 struct vattr vattr; 857 struct nameidata nd; 858 int error, flags, vfslocked; 859 860 error = copyinstr(mdio->md_file, sc->file, sizeof(sc->file), NULL); 861 if (error != 0) 862 return (error); 863 flags = FREAD|FWRITE; 864 /* 865 * If the user specified that this is a read only device, unset the 866 * FWRITE mask before trying to open the backing store. 867 */ 868 if ((mdio->md_options & MD_READONLY) != 0) 869 flags &= ~FWRITE; 870 NDINIT(&nd, LOOKUP, FOLLOW | MPSAFE, UIO_SYSSPACE, sc->file, td); 871 error = vn_open(&nd, &flags, 0, -1); 872 if (error != 0) 873 return (error); 874 vfslocked = NDHASGIANT(&nd); 875 NDFREE(&nd, NDF_ONLY_PNBUF); 876 if (nd.ni_vp->v_type != VREG || 877 (error = VOP_GETATTR(nd.ni_vp, &vattr, td->td_ucred, td))) { 878 VOP_UNLOCK(nd.ni_vp, 0, td); 879 (void)vn_close(nd.ni_vp, flags, td->td_ucred, td); 880 VFS_UNLOCK_GIANT(vfslocked); 881 return (error ? error : EINVAL); 882 } 883 VOP_UNLOCK(nd.ni_vp, 0, td); 884 885 if (mdio->md_fwsectors != 0) 886 sc->fwsectors = mdio->md_fwsectors; 887 if (mdio->md_fwheads != 0) 888 sc->fwheads = mdio->md_fwheads; 889 sc->flags = mdio->md_options & (MD_FORCE | MD_ASYNC); 890 if (!(flags & FWRITE)) 891 sc->flags |= MD_READONLY; 892 sc->vnode = nd.ni_vp; 893 894 error = mdsetcred(sc, td->td_ucred); 895 if (error != 0) { 896 (void)vn_close(nd.ni_vp, flags, td->td_ucred, td); 897 VFS_UNLOCK_GIANT(vfslocked); 898 return (error); 899 } 900 VFS_UNLOCK_GIANT(vfslocked); 901 return (0); 902 } 903 904 static int 905 mddestroy(struct md_s *sc, struct thread *td) 906 { 907 int vfslocked; 908 909 if (sc->gp) { 910 sc->gp->softc = NULL; 911 g_topology_lock(); 912 g_wither_geom(sc->gp, ENXIO); 913 g_topology_unlock(); 914 sc->gp = NULL; 915 sc->pp = NULL; 916 } 917 mtx_lock(&sc->queue_mtx); 918 sc->flags |= MD_SHUTDOWN; 919 wakeup(sc); 920 while (!(sc->flags & MD_EXITING)) 921 msleep(sc->procp, &sc->queue_mtx, PRIBIO, "mddestroy", hz / 10); 922 mtx_unlock(&sc->queue_mtx); 923 mtx_destroy(&sc->queue_mtx); 924 if (sc->vnode != NULL) { 925 vfslocked = VFS_LOCK_GIANT(sc->vnode->v_mount); 926 (void)vn_close(sc->vnode, sc->flags & MD_READONLY ? 927 FREAD : (FREAD|FWRITE), sc->cred, td); 928 VFS_UNLOCK_GIANT(vfslocked); 929 } 930 if (sc->cred != NULL) 931 crfree(sc->cred); 932 if (sc->object != NULL) 933 vm_object_deallocate(sc->object); 934 if (sc->indir) 935 destroy_indir(sc, sc->indir); 936 if (sc->uma) 937 uma_zdestroy(sc->uma); 938 939 LIST_REMOVE(sc, list); 940 free(sc, M_MD); 941 return (0); 942 } 943 944 static int 945 mdcreate_swap(struct md_s *sc, struct md_ioctl *mdio, struct thread *td) 946 { 947 vm_ooffset_t npage; 948 int error; 949 950 /* 951 * Range check. Disallow negative sizes or any size less then the 952 * size of a page. Then round to a page. 953 */ 954 if (sc->mediasize == 0 || (sc->mediasize % PAGE_SIZE) != 0) 955 return (EDOM); 956 957 /* 958 * Allocate an OBJT_SWAP object. 959 * 960 * Note the truncation. 961 */ 962 963 npage = mdio->md_mediasize / PAGE_SIZE; 964 if (mdio->md_fwsectors != 0) 965 sc->fwsectors = mdio->md_fwsectors; 966 if (mdio->md_fwheads != 0) 967 sc->fwheads = mdio->md_fwheads; 968 sc->object = vm_pager_allocate(OBJT_SWAP, NULL, PAGE_SIZE * npage, 969 VM_PROT_DEFAULT, 0); 970 if (sc->object == NULL) 971 return (ENOMEM); 972 sc->flags = mdio->md_options & MD_FORCE; 973 if (mdio->md_options & MD_RESERVE) { 974 if (swap_pager_reserve(sc->object, 0, npage) < 0) { 975 vm_object_deallocate(sc->object); 976 sc->object = NULL; 977 return (EDOM); 978 } 979 } 980 error = mdsetcred(sc, td->td_ucred); 981 if (error != 0) { 982 vm_object_deallocate(sc->object); 983 sc->object = NULL; 984 } 985 return (error); 986 } 987 988 989 static int 990 xmdctlioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, struct thread *td) 991 { 992 struct md_ioctl *mdio; 993 struct md_s *sc; 994 int error, i; 995 996 if (md_debug) 997 printf("mdctlioctl(%s %lx %p %x %p)\n", 998 devtoname(dev), cmd, addr, flags, td); 999 1000 mdio = (struct md_ioctl *)addr; 1001 if (mdio->md_version != MDIOVERSION) 1002 return (EINVAL); 1003 1004 /* 1005 * We assert the version number in the individual ioctl 1006 * handlers instead of out here because (a) it is possible we 1007 * may add another ioctl in the future which doesn't read an 1008 * mdio, and (b) the correct return value for an unknown ioctl 1009 * is ENOIOCTL, not EINVAL. 1010 */ 1011 error = 0; 1012 switch (cmd) { 1013 case MDIOCATTACH: 1014 switch (mdio->md_type) { 1015 case MD_MALLOC: 1016 case MD_PRELOAD: 1017 case MD_VNODE: 1018 case MD_SWAP: 1019 break; 1020 default: 1021 return (EINVAL); 1022 } 1023 if (mdio->md_options & MD_AUTOUNIT) 1024 sc = mdnew(-1, &error, mdio->md_type); 1025 else 1026 sc = mdnew(mdio->md_unit, &error, mdio->md_type); 1027 if (sc == NULL) 1028 return (error); 1029 if (mdio->md_options & MD_AUTOUNIT) 1030 mdio->md_unit = sc->unit; 1031 sc->mediasize = mdio->md_mediasize; 1032 if (mdio->md_sectorsize == 0) 1033 sc->sectorsize = DEV_BSIZE; 1034 else 1035 sc->sectorsize = mdio->md_sectorsize; 1036 error = EDOOFUS; 1037 switch (sc->type) { 1038 case MD_MALLOC: 1039 sc->start = mdstart_malloc; 1040 error = mdcreate_malloc(sc, mdio); 1041 break; 1042 case MD_PRELOAD: 1043 sc->start = mdstart_preload; 1044 error = mdcreate_preload(sc, mdio); 1045 break; 1046 case MD_VNODE: 1047 sc->start = mdstart_vnode; 1048 error = mdcreate_vnode(sc, mdio, td); 1049 break; 1050 case MD_SWAP: 1051 sc->start = mdstart_swap; 1052 error = mdcreate_swap(sc, mdio, td); 1053 break; 1054 } 1055 if (error != 0) { 1056 mddestroy(sc, td); 1057 return (error); 1058 } 1059 1060 /* Prune off any residual fractional sector */ 1061 i = sc->mediasize % sc->sectorsize; 1062 sc->mediasize -= i; 1063 1064 mdinit(sc); 1065 return (0); 1066 case MDIOCDETACH: 1067 if (mdio->md_mediasize != 0 || mdio->md_options != 0) 1068 return (EINVAL); 1069 1070 sc = mdfind(mdio->md_unit); 1071 if (sc == NULL) 1072 return (ENOENT); 1073 if (sc->opencount != 0 && !(sc->flags & MD_FORCE)) 1074 return (EBUSY); 1075 return (mddestroy(sc, td)); 1076 case MDIOCQUERY: 1077 sc = mdfind(mdio->md_unit); 1078 if (sc == NULL) 1079 return (ENOENT); 1080 mdio->md_type = sc->type; 1081 mdio->md_options = sc->flags; 1082 mdio->md_mediasize = sc->mediasize; 1083 mdio->md_sectorsize = sc->sectorsize; 1084 if (sc->type == MD_VNODE) 1085 error = copyout(sc->file, mdio->md_file, 1086 strlen(sc->file) + 1); 1087 return (error); 1088 case MDIOCLIST: 1089 i = 1; 1090 LIST_FOREACH(sc, &md_softc_list, list) { 1091 if (i == MDNPAD - 1) 1092 mdio->md_pad[i] = -1; 1093 else 1094 mdio->md_pad[i++] = sc->unit; 1095 } 1096 mdio->md_pad[0] = i - 1; 1097 return (0); 1098 default: 1099 return (ENOIOCTL); 1100 }; 1101 } 1102 1103 static int 1104 mdctlioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, struct thread *td) 1105 { 1106 int error; 1107 1108 sx_xlock(&md_sx); 1109 error = xmdctlioctl(dev, cmd, addr, flags, td); 1110 sx_xunlock(&md_sx); 1111 return (error); 1112 } 1113 1114 static void 1115 md_preloaded(u_char *image, size_t length) 1116 { 1117 struct md_s *sc; 1118 int error; 1119 1120 sc = mdnew(-1, &error, MD_PRELOAD); 1121 if (sc == NULL) 1122 return; 1123 sc->mediasize = length; 1124 sc->sectorsize = DEV_BSIZE; 1125 sc->pl_ptr = image; 1126 sc->pl_len = length; 1127 sc->start = mdstart_preload; 1128 #ifdef MD_ROOT 1129 if (sc->unit == 0) 1130 rootdevnames[0] = "ufs:/dev/md0"; 1131 #endif 1132 mdinit(sc); 1133 } 1134 1135 static void 1136 g_md_init(struct g_class *mp __unused) 1137 { 1138 1139 caddr_t mod; 1140 caddr_t c; 1141 u_char *ptr, *name, *type; 1142 unsigned len; 1143 1144 mod = NULL; 1145 sx_init(&md_sx, "MD config lock"); 1146 g_topology_unlock(); 1147 #ifdef MD_ROOT_SIZE 1148 sx_xlock(&md_sx); 1149 md_preloaded(mfs_root.start, sizeof(mfs_root.start)); 1150 sx_xunlock(&md_sx); 1151 #endif 1152 /* XXX: are preload_* static or do they need Giant ? */ 1153 while ((mod = preload_search_next_name(mod)) != NULL) { 1154 name = (char *)preload_search_info(mod, MODINFO_NAME); 1155 if (name == NULL) 1156 continue; 1157 type = (char *)preload_search_info(mod, MODINFO_TYPE); 1158 if (type == NULL) 1159 continue; 1160 if (strcmp(type, "md_image") && strcmp(type, "mfs_root")) 1161 continue; 1162 c = preload_search_info(mod, MODINFO_ADDR); 1163 ptr = *(u_char **)c; 1164 c = preload_search_info(mod, MODINFO_SIZE); 1165 len = *(size_t *)c; 1166 printf("%s%d: Preloaded image <%s> %d bytes at %p\n", 1167 MD_NAME, mdunits, name, len, ptr); 1168 sx_xlock(&md_sx); 1169 md_preloaded(ptr, len); 1170 sx_xunlock(&md_sx); 1171 } 1172 status_dev = make_dev(&mdctl_cdevsw, MAXMINOR, UID_ROOT, GID_WHEEL, 1173 0600, MDCTL_NAME); 1174 g_topology_lock(); 1175 } 1176 1177 static void 1178 g_md_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, 1179 struct g_consumer *cp __unused, struct g_provider *pp) 1180 { 1181 struct md_s *mp; 1182 char *type; 1183 1184 mp = gp->softc; 1185 if (mp == NULL) 1186 return; 1187 1188 switch (mp->type) { 1189 case MD_MALLOC: 1190 type = "malloc"; 1191 break; 1192 case MD_PRELOAD: 1193 type = "preload"; 1194 break; 1195 case MD_VNODE: 1196 type = "vnode"; 1197 break; 1198 case MD_SWAP: 1199 type = "swap"; 1200 break; 1201 default: 1202 type = "unknown"; 1203 break; 1204 } 1205 1206 if (pp != NULL) { 1207 if (indent == NULL) { 1208 sbuf_printf(sb, " u %d", mp->unit); 1209 sbuf_printf(sb, " s %ju", (uintmax_t) mp->sectorsize); 1210 sbuf_printf(sb, " f %ju", (uintmax_t) mp->fwheads); 1211 sbuf_printf(sb, " fs %ju", (uintmax_t) mp->fwsectors); 1212 sbuf_printf(sb, " l %ju", (uintmax_t) mp->mediasize); 1213 sbuf_printf(sb, " t %s", type); 1214 if (mp->type == MD_VNODE && mp->vnode != NULL) 1215 sbuf_printf(sb, " file %s", mp->file); 1216 } else { 1217 sbuf_printf(sb, "%s<unit>%d</unit>\n", indent, 1218 mp->unit); 1219 sbuf_printf(sb, "%s<sectorsize>%ju</sectorsize>\n", 1220 indent, (uintmax_t) mp->sectorsize); 1221 sbuf_printf(sb, "%s<fwheads>%ju</fwheads>\n", 1222 indent, (uintmax_t) mp->fwheads); 1223 sbuf_printf(sb, "%s<fwsectors>%ju</fwsectors>\n", 1224 indent, (uintmax_t) mp->fwsectors); 1225 sbuf_printf(sb, "%s<length>%ju</length>\n", 1226 indent, (uintmax_t) mp->mediasize); 1227 sbuf_printf(sb, "%s<type>%s</type>\n", indent, 1228 type); 1229 if (mp->type == MD_VNODE && mp->vnode != NULL) 1230 sbuf_printf(sb, "%s<file>%s</file>\n", 1231 indent, mp->file); 1232 } 1233 } 1234 } 1235 1236 static void 1237 g_md_fini(struct g_class *mp __unused) 1238 { 1239 1240 sx_destroy(&md_sx); 1241 if (status_dev != NULL) 1242 destroy_dev(status_dev); 1243 } 1244