1 /*- 2 * SPDX-License-Identifier: (Beerware AND BSD-3-Clause) 3 * 4 * ---------------------------------------------------------------------------- 5 * "THE BEER-WARE LICENSE" (Revision 42): 6 * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you 7 * can do whatever you want with this stuff. If we meet some day, and you think 8 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 9 * ---------------------------------------------------------------------------- 10 * 11 * $FreeBSD$ 12 * 13 */ 14 15 /*- 16 * The following functions are based in the vn(4) driver: mdstart_swap(), 17 * mdstart_vnode(), mdcreate_swap(), mdcreate_vnode() and mddestroy(), 18 * and as such under the following copyright: 19 * 20 * Copyright (c) 1988 University of Utah. 21 * Copyright (c) 1990, 1993 22 * The Regents of the University of California. All rights reserved. 23 * Copyright (c) 2013 The FreeBSD Foundation 24 * All rights reserved. 25 * 26 * This code is derived from software contributed to Berkeley by 27 * the Systems Programming Group of the University of Utah Computer 28 * Science Department. 29 * 30 * Portions of this software were developed by Konstantin Belousov 31 * under sponsorship from the FreeBSD Foundation. 32 * 33 * Redistribution and use in source and binary forms, with or without 34 * modification, are permitted provided that the following conditions 35 * are met: 36 * 1. Redistributions of source code must retain the above copyright 37 * notice, this list of conditions and the following disclaimer. 38 * 2. Redistributions in binary form must reproduce the above copyright 39 * notice, this list of conditions and the following disclaimer in the 40 * documentation and/or other materials provided with the distribution. 41 * 3. Neither the name of the University nor the names of its contributors 42 * may be used to endorse or promote products derived from this software 43 * without specific prior written permission. 44 * 45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 55 * SUCH DAMAGE. 56 * 57 * from: Utah Hdr: vn.c 1.13 94/04/02 58 * 59 * from: @(#)vn.c 8.6 (Berkeley) 4/1/94 60 * From: src/sys/dev/vn/vn.c,v 1.122 2000/12/16 16:06:03 61 */ 62 63 #include "opt_rootdevname.h" 64 #include "opt_geom.h" 65 #include "opt_md.h" 66 67 #include <sys/param.h> 68 #include <sys/systm.h> 69 #include <sys/bio.h> 70 #include <sys/buf.h> 71 #include <sys/conf.h> 72 #include <sys/devicestat.h> 73 #include <sys/fcntl.h> 74 #include <sys/kernel.h> 75 #include <sys/kthread.h> 76 #include <sys/limits.h> 77 #include <sys/linker.h> 78 #include <sys/lock.h> 79 #include <sys/malloc.h> 80 #include <sys/mdioctl.h> 81 #include <sys/mount.h> 82 #include <sys/mutex.h> 83 #include <sys/sx.h> 84 #include <sys/namei.h> 85 #include <sys/proc.h> 86 #include <sys/queue.h> 87 #include <sys/rwlock.h> 88 #include <sys/sbuf.h> 89 #include <sys/sched.h> 90 #include <sys/sf_buf.h> 91 #include <sys/sysctl.h> 92 #include <sys/uio.h> 93 #include <sys/vnode.h> 94 #include <sys/disk.h> 95 96 #include <geom/geom.h> 97 #include <geom/geom_int.h> 98 99 #include <vm/vm.h> 100 #include <vm/vm_param.h> 101 #include <vm/vm_object.h> 102 #include <vm/vm_page.h> 103 #include <vm/vm_pager.h> 104 #include <vm/swap_pager.h> 105 #include <vm/uma.h> 106 107 #include <machine/bus.h> 108 109 #define MD_MODVER 1 110 111 #define MD_SHUTDOWN 0x10000 /* Tell worker thread to terminate. */ 112 #define MD_EXITING 0x20000 /* Worker thread is exiting. */ 113 #define MD_PROVIDERGONE 0x40000 /* Safe to free the softc */ 114 115 #ifndef MD_NSECT 116 #define MD_NSECT (10000 * 2) 117 #endif 118 119 struct md_req { 120 unsigned md_unit; /* unit number */ 121 enum md_types md_type; /* type of disk */ 122 off_t md_mediasize; /* size of disk in bytes */ 123 unsigned md_sectorsize; /* sectorsize */ 124 unsigned md_options; /* options */ 125 int md_fwheads; /* firmware heads */ 126 int md_fwsectors; /* firmware sectors */ 127 char *md_file; /* pathname of file to mount */ 128 enum uio_seg md_file_seg; /* location of md_file */ 129 char *md_label; /* label of the device (userspace) */ 130 int *md_units; /* pointer to units array (kernel) */ 131 size_t md_units_nitems; /* items in md_units array */ 132 }; 133 134 #ifdef COMPAT_FREEBSD32 135 struct md_ioctl32 { 136 unsigned md_version; 137 unsigned md_unit; 138 enum md_types md_type; 139 uint32_t md_file; 140 off_t md_mediasize; 141 unsigned md_sectorsize; 142 unsigned md_options; 143 uint64_t md_base; 144 int md_fwheads; 145 int md_fwsectors; 146 uint32_t md_label; 147 int md_pad[MDNPAD]; 148 } __attribute__((__packed__)); 149 CTASSERT((sizeof(struct md_ioctl32)) == 436); 150 151 #define MDIOCATTACH_32 _IOC_NEWTYPE(MDIOCATTACH, struct md_ioctl32) 152 #define MDIOCDETACH_32 _IOC_NEWTYPE(MDIOCDETACH, struct md_ioctl32) 153 #define MDIOCQUERY_32 _IOC_NEWTYPE(MDIOCQUERY, struct md_ioctl32) 154 #define MDIOCRESIZE_32 _IOC_NEWTYPE(MDIOCRESIZE, struct md_ioctl32) 155 #endif /* COMPAT_FREEBSD32 */ 156 157 static MALLOC_DEFINE(M_MD, "md_disk", "Memory Disk"); 158 static MALLOC_DEFINE(M_MDSECT, "md_sectors", "Memory Disk Sectors"); 159 160 static int md_debug; 161 SYSCTL_INT(_debug, OID_AUTO, mddebug, CTLFLAG_RW, &md_debug, 0, 162 "Enable md(4) debug messages"); 163 static int md_malloc_wait; 164 SYSCTL_INT(_vm, OID_AUTO, md_malloc_wait, CTLFLAG_RW, &md_malloc_wait, 0, 165 "Allow malloc to wait for memory allocations"); 166 167 #if defined(MD_ROOT) && !defined(MD_ROOT_FSTYPE) 168 #define MD_ROOT_FSTYPE "ufs" 169 #endif 170 171 #if defined(MD_ROOT) 172 /* 173 * Preloaded image gets put here. 174 */ 175 #if defined(MD_ROOT_SIZE) 176 /* 177 * We put the mfs_root symbol into the oldmfs section of the kernel object file. 178 * Applications that patch the object with the image can determine 179 * the size looking at the oldmfs section size within the kernel. 180 */ 181 u_char mfs_root[MD_ROOT_SIZE*1024] __attribute__ ((section ("oldmfs"))); 182 const int mfs_root_size = sizeof(mfs_root); 183 #elif defined(MD_ROOT_MEM) 184 /* MD region already mapped in the memory */ 185 u_char *mfs_root; 186 int mfs_root_size; 187 #else 188 extern volatile u_char __weak_symbol mfs_root; 189 extern volatile u_char __weak_symbol mfs_root_end; 190 __GLOBL(mfs_root); 191 __GLOBL(mfs_root_end); 192 #define mfs_root_size ((uintptr_t)(&mfs_root_end - &mfs_root)) 193 #endif 194 #endif 195 196 static g_init_t g_md_init; 197 static g_fini_t g_md_fini; 198 static g_start_t g_md_start; 199 static g_access_t g_md_access; 200 static void g_md_dumpconf(struct sbuf *sb, const char *indent, 201 struct g_geom *gp, struct g_consumer *cp __unused, struct g_provider *pp); 202 static g_provgone_t g_md_providergone; 203 204 static struct cdev *status_dev = NULL; 205 static struct sx md_sx; 206 static struct unrhdr *md_uh; 207 208 static d_ioctl_t mdctlioctl; 209 210 static struct cdevsw mdctl_cdevsw = { 211 .d_version = D_VERSION, 212 .d_ioctl = mdctlioctl, 213 .d_name = MD_NAME, 214 }; 215 216 struct g_class g_md_class = { 217 .name = "MD", 218 .version = G_VERSION, 219 .init = g_md_init, 220 .fini = g_md_fini, 221 .start = g_md_start, 222 .access = g_md_access, 223 .dumpconf = g_md_dumpconf, 224 .providergone = g_md_providergone, 225 }; 226 227 DECLARE_GEOM_CLASS(g_md_class, g_md); 228 229 230 static LIST_HEAD(, md_s) md_softc_list = LIST_HEAD_INITIALIZER(md_softc_list); 231 232 #define NINDIR (PAGE_SIZE / sizeof(uintptr_t)) 233 #define NMASK (NINDIR-1) 234 static int nshift; 235 236 static uma_zone_t md_pbuf_zone; 237 238 struct indir { 239 uintptr_t *array; 240 u_int total; 241 u_int used; 242 u_int shift; 243 }; 244 245 struct md_s { 246 int unit; 247 LIST_ENTRY(md_s) list; 248 struct bio_queue_head bio_queue; 249 struct mtx queue_mtx; 250 struct cdev *dev; 251 enum md_types type; 252 off_t mediasize; 253 unsigned sectorsize; 254 unsigned opencount; 255 unsigned fwheads; 256 unsigned fwsectors; 257 char ident[32]; 258 unsigned flags; 259 char name[20]; 260 struct proc *procp; 261 struct g_geom *gp; 262 struct g_provider *pp; 263 int (*start)(struct md_s *sc, struct bio *bp); 264 struct devstat *devstat; 265 266 /* MD_MALLOC related fields */ 267 struct indir *indir; 268 uma_zone_t uma; 269 270 /* MD_PRELOAD related fields */ 271 u_char *pl_ptr; 272 size_t pl_len; 273 274 /* MD_VNODE related fields */ 275 struct vnode *vnode; 276 char file[PATH_MAX]; 277 char label[PATH_MAX]; 278 struct ucred *cred; 279 280 /* MD_SWAP related fields */ 281 vm_object_t object; 282 }; 283 284 static struct indir * 285 new_indir(u_int shift) 286 { 287 struct indir *ip; 288 289 ip = malloc(sizeof *ip, M_MD, (md_malloc_wait ? M_WAITOK : M_NOWAIT) 290 | M_ZERO); 291 if (ip == NULL) 292 return (NULL); 293 ip->array = malloc(sizeof(uintptr_t) * NINDIR, 294 M_MDSECT, (md_malloc_wait ? M_WAITOK : M_NOWAIT) | M_ZERO); 295 if (ip->array == NULL) { 296 free(ip, M_MD); 297 return (NULL); 298 } 299 ip->total = NINDIR; 300 ip->shift = shift; 301 return (ip); 302 } 303 304 static void 305 del_indir(struct indir *ip) 306 { 307 308 free(ip->array, M_MDSECT); 309 free(ip, M_MD); 310 } 311 312 static void 313 destroy_indir(struct md_s *sc, struct indir *ip) 314 { 315 int i; 316 317 for (i = 0; i < NINDIR; i++) { 318 if (!ip->array[i]) 319 continue; 320 if (ip->shift) 321 destroy_indir(sc, (struct indir*)(ip->array[i])); 322 else if (ip->array[i] > 255) 323 uma_zfree(sc->uma, (void *)(ip->array[i])); 324 } 325 del_indir(ip); 326 } 327 328 /* 329 * This function does the math and allocates the top level "indir" structure 330 * for a device of "size" sectors. 331 */ 332 333 static struct indir * 334 dimension(off_t size) 335 { 336 off_t rcnt; 337 struct indir *ip; 338 int layer; 339 340 rcnt = size; 341 layer = 0; 342 while (rcnt > NINDIR) { 343 rcnt /= NINDIR; 344 layer++; 345 } 346 347 /* 348 * XXX: the top layer is probably not fully populated, so we allocate 349 * too much space for ip->array in here. 350 */ 351 ip = malloc(sizeof *ip, M_MD, M_WAITOK | M_ZERO); 352 ip->array = malloc(sizeof(uintptr_t) * NINDIR, 353 M_MDSECT, M_WAITOK | M_ZERO); 354 ip->total = NINDIR; 355 ip->shift = layer * nshift; 356 return (ip); 357 } 358 359 /* 360 * Read a given sector 361 */ 362 363 static uintptr_t 364 s_read(struct indir *ip, off_t offset) 365 { 366 struct indir *cip; 367 int idx; 368 uintptr_t up; 369 370 if (md_debug > 1) 371 printf("s_read(%jd)\n", (intmax_t)offset); 372 up = 0; 373 for (cip = ip; cip != NULL;) { 374 if (cip->shift) { 375 idx = (offset >> cip->shift) & NMASK; 376 up = cip->array[idx]; 377 cip = (struct indir *)up; 378 continue; 379 } 380 idx = offset & NMASK; 381 return (cip->array[idx]); 382 } 383 return (0); 384 } 385 386 /* 387 * Write a given sector, prune the tree if the value is 0 388 */ 389 390 static int 391 s_write(struct indir *ip, off_t offset, uintptr_t ptr) 392 { 393 struct indir *cip, *lip[10]; 394 int idx, li; 395 uintptr_t up; 396 397 if (md_debug > 1) 398 printf("s_write(%jd, %p)\n", (intmax_t)offset, (void *)ptr); 399 up = 0; 400 li = 0; 401 cip = ip; 402 for (;;) { 403 lip[li++] = cip; 404 if (cip->shift) { 405 idx = (offset >> cip->shift) & NMASK; 406 up = cip->array[idx]; 407 if (up != 0) { 408 cip = (struct indir *)up; 409 continue; 410 } 411 /* Allocate branch */ 412 cip->array[idx] = 413 (uintptr_t)new_indir(cip->shift - nshift); 414 if (cip->array[idx] == 0) 415 return (ENOSPC); 416 cip->used++; 417 up = cip->array[idx]; 418 cip = (struct indir *)up; 419 continue; 420 } 421 /* leafnode */ 422 idx = offset & NMASK; 423 up = cip->array[idx]; 424 if (up != 0) 425 cip->used--; 426 cip->array[idx] = ptr; 427 if (ptr != 0) 428 cip->used++; 429 break; 430 } 431 if (cip->used != 0 || li == 1) 432 return (0); 433 li--; 434 while (cip->used == 0 && cip != ip) { 435 li--; 436 idx = (offset >> lip[li]->shift) & NMASK; 437 up = lip[li]->array[idx]; 438 KASSERT(up == (uintptr_t)cip, ("md screwed up")); 439 del_indir(cip); 440 lip[li]->array[idx] = 0; 441 lip[li]->used--; 442 cip = lip[li]; 443 } 444 return (0); 445 } 446 447 448 static int 449 g_md_access(struct g_provider *pp, int r, int w, int e) 450 { 451 struct md_s *sc; 452 453 sc = pp->geom->softc; 454 if (sc == NULL) { 455 if (r <= 0 && w <= 0 && e <= 0) 456 return (0); 457 return (ENXIO); 458 } 459 r += pp->acr; 460 w += pp->acw; 461 e += pp->ace; 462 if ((sc->flags & MD_READONLY) != 0 && w > 0) 463 return (EROFS); 464 if ((pp->acr + pp->acw + pp->ace) == 0 && (r + w + e) > 0) { 465 sc->opencount = 1; 466 } else if ((pp->acr + pp->acw + pp->ace) > 0 && (r + w + e) == 0) { 467 sc->opencount = 0; 468 } 469 return (0); 470 } 471 472 static void 473 g_md_start(struct bio *bp) 474 { 475 struct md_s *sc; 476 477 sc = bp->bio_to->geom->softc; 478 if ((bp->bio_cmd == BIO_READ) || (bp->bio_cmd == BIO_WRITE)) { 479 devstat_start_transaction_bio(sc->devstat, bp); 480 } 481 mtx_lock(&sc->queue_mtx); 482 bioq_disksort(&sc->bio_queue, bp); 483 wakeup(sc); 484 mtx_unlock(&sc->queue_mtx); 485 } 486 487 #define MD_MALLOC_MOVE_ZERO 1 488 #define MD_MALLOC_MOVE_FILL 2 489 #define MD_MALLOC_MOVE_READ 3 490 #define MD_MALLOC_MOVE_WRITE 4 491 #define MD_MALLOC_MOVE_CMP 5 492 493 static int 494 md_malloc_move_ma(vm_page_t **mp, int *ma_offs, unsigned sectorsize, 495 void *ptr, u_char fill, int op) 496 { 497 struct sf_buf *sf; 498 vm_page_t m, *mp1; 499 char *p, first; 500 off_t *uc; 501 unsigned n; 502 int error, i, ma_offs1, sz, first_read; 503 504 m = NULL; 505 error = 0; 506 sf = NULL; 507 /* if (op == MD_MALLOC_MOVE_CMP) { gcc */ 508 first = 0; 509 first_read = 0; 510 uc = ptr; 511 mp1 = *mp; 512 ma_offs1 = *ma_offs; 513 /* } */ 514 sched_pin(); 515 for (n = sectorsize; n != 0; n -= sz) { 516 sz = imin(PAGE_SIZE - *ma_offs, n); 517 if (m != **mp) { 518 if (sf != NULL) 519 sf_buf_free(sf); 520 m = **mp; 521 sf = sf_buf_alloc(m, SFB_CPUPRIVATE | 522 (md_malloc_wait ? 0 : SFB_NOWAIT)); 523 if (sf == NULL) { 524 error = ENOMEM; 525 break; 526 } 527 } 528 p = (char *)sf_buf_kva(sf) + *ma_offs; 529 switch (op) { 530 case MD_MALLOC_MOVE_ZERO: 531 bzero(p, sz); 532 break; 533 case MD_MALLOC_MOVE_FILL: 534 memset(p, fill, sz); 535 break; 536 case MD_MALLOC_MOVE_READ: 537 bcopy(ptr, p, sz); 538 cpu_flush_dcache(p, sz); 539 break; 540 case MD_MALLOC_MOVE_WRITE: 541 bcopy(p, ptr, sz); 542 break; 543 case MD_MALLOC_MOVE_CMP: 544 for (i = 0; i < sz; i++, p++) { 545 if (!first_read) { 546 *uc = (u_char)*p; 547 first = *p; 548 first_read = 1; 549 } else if (*p != first) { 550 error = EDOOFUS; 551 break; 552 } 553 } 554 break; 555 default: 556 KASSERT(0, ("md_malloc_move_ma unknown op %d\n", op)); 557 break; 558 } 559 if (error != 0) 560 break; 561 *ma_offs += sz; 562 *ma_offs %= PAGE_SIZE; 563 if (*ma_offs == 0) 564 (*mp)++; 565 ptr = (char *)ptr + sz; 566 } 567 568 if (sf != NULL) 569 sf_buf_free(sf); 570 sched_unpin(); 571 if (op == MD_MALLOC_MOVE_CMP && error != 0) { 572 *mp = mp1; 573 *ma_offs = ma_offs1; 574 } 575 return (error); 576 } 577 578 static int 579 md_malloc_move_vlist(bus_dma_segment_t **pvlist, int *pma_offs, 580 unsigned len, void *ptr, u_char fill, int op) 581 { 582 bus_dma_segment_t *vlist; 583 uint8_t *p, *end, first; 584 off_t *uc; 585 int ma_offs, seg_len; 586 587 vlist = *pvlist; 588 ma_offs = *pma_offs; 589 uc = ptr; 590 591 for (; len != 0; len -= seg_len) { 592 seg_len = imin(vlist->ds_len - ma_offs, len); 593 p = (uint8_t *)(uintptr_t)vlist->ds_addr + ma_offs; 594 switch (op) { 595 case MD_MALLOC_MOVE_ZERO: 596 bzero(p, seg_len); 597 break; 598 case MD_MALLOC_MOVE_FILL: 599 memset(p, fill, seg_len); 600 break; 601 case MD_MALLOC_MOVE_READ: 602 bcopy(ptr, p, seg_len); 603 cpu_flush_dcache(p, seg_len); 604 break; 605 case MD_MALLOC_MOVE_WRITE: 606 bcopy(p, ptr, seg_len); 607 break; 608 case MD_MALLOC_MOVE_CMP: 609 end = p + seg_len; 610 first = *uc = *p; 611 /* Confirm all following bytes match the first */ 612 while (++p < end) { 613 if (*p != first) 614 return (EDOOFUS); 615 } 616 break; 617 default: 618 KASSERT(0, ("md_malloc_move_vlist unknown op %d\n", op)); 619 break; 620 } 621 622 ma_offs += seg_len; 623 if (ma_offs == vlist->ds_len) { 624 ma_offs = 0; 625 vlist++; 626 } 627 ptr = (uint8_t *)ptr + seg_len; 628 } 629 *pvlist = vlist; 630 *pma_offs = ma_offs; 631 632 return (0); 633 } 634 635 static int 636 mdstart_malloc(struct md_s *sc, struct bio *bp) 637 { 638 u_char *dst; 639 vm_page_t *m; 640 bus_dma_segment_t *vlist; 641 int i, error, error1, ma_offs, notmapped; 642 off_t secno, nsec, uc; 643 uintptr_t sp, osp; 644 645 switch (bp->bio_cmd) { 646 case BIO_READ: 647 case BIO_WRITE: 648 case BIO_DELETE: 649 break; 650 default: 651 return (EOPNOTSUPP); 652 } 653 654 notmapped = (bp->bio_flags & BIO_UNMAPPED) != 0; 655 vlist = (bp->bio_flags & BIO_VLIST) != 0 ? 656 (bus_dma_segment_t *)bp->bio_data : NULL; 657 if (notmapped) { 658 m = bp->bio_ma; 659 ma_offs = bp->bio_ma_offset; 660 dst = NULL; 661 KASSERT(vlist == NULL, ("vlists cannot be unmapped")); 662 } else if (vlist != NULL) { 663 ma_offs = bp->bio_ma_offset; 664 dst = NULL; 665 } else { 666 dst = bp->bio_data; 667 } 668 669 nsec = bp->bio_length / sc->sectorsize; 670 secno = bp->bio_offset / sc->sectorsize; 671 error = 0; 672 while (nsec--) { 673 osp = s_read(sc->indir, secno); 674 if (bp->bio_cmd == BIO_DELETE) { 675 if (osp != 0) 676 error = s_write(sc->indir, secno, 0); 677 } else if (bp->bio_cmd == BIO_READ) { 678 if (osp == 0) { 679 if (notmapped) { 680 error = md_malloc_move_ma(&m, &ma_offs, 681 sc->sectorsize, NULL, 0, 682 MD_MALLOC_MOVE_ZERO); 683 } else if (vlist != NULL) { 684 error = md_malloc_move_vlist(&vlist, 685 &ma_offs, sc->sectorsize, NULL, 0, 686 MD_MALLOC_MOVE_ZERO); 687 } else 688 bzero(dst, sc->sectorsize); 689 } else if (osp <= 255) { 690 if (notmapped) { 691 error = md_malloc_move_ma(&m, &ma_offs, 692 sc->sectorsize, NULL, osp, 693 MD_MALLOC_MOVE_FILL); 694 } else if (vlist != NULL) { 695 error = md_malloc_move_vlist(&vlist, 696 &ma_offs, sc->sectorsize, NULL, osp, 697 MD_MALLOC_MOVE_FILL); 698 } else 699 memset(dst, osp, sc->sectorsize); 700 } else { 701 if (notmapped) { 702 error = md_malloc_move_ma(&m, &ma_offs, 703 sc->sectorsize, (void *)osp, 0, 704 MD_MALLOC_MOVE_READ); 705 } else if (vlist != NULL) { 706 error = md_malloc_move_vlist(&vlist, 707 &ma_offs, sc->sectorsize, 708 (void *)osp, 0, 709 MD_MALLOC_MOVE_READ); 710 } else { 711 bcopy((void *)osp, dst, sc->sectorsize); 712 cpu_flush_dcache(dst, sc->sectorsize); 713 } 714 } 715 osp = 0; 716 } else if (bp->bio_cmd == BIO_WRITE) { 717 if (sc->flags & MD_COMPRESS) { 718 if (notmapped) { 719 error1 = md_malloc_move_ma(&m, &ma_offs, 720 sc->sectorsize, &uc, 0, 721 MD_MALLOC_MOVE_CMP); 722 i = error1 == 0 ? sc->sectorsize : 0; 723 } else if (vlist != NULL) { 724 error1 = md_malloc_move_vlist(&vlist, 725 &ma_offs, sc->sectorsize, &uc, 0, 726 MD_MALLOC_MOVE_CMP); 727 i = error1 == 0 ? sc->sectorsize : 0; 728 } else { 729 uc = dst[0]; 730 for (i = 1; i < sc->sectorsize; i++) { 731 if (dst[i] != uc) 732 break; 733 } 734 } 735 } else { 736 i = 0; 737 uc = 0; 738 } 739 if (i == sc->sectorsize) { 740 if (osp != uc) 741 error = s_write(sc->indir, secno, uc); 742 } else { 743 if (osp <= 255) { 744 sp = (uintptr_t)uma_zalloc(sc->uma, 745 md_malloc_wait ? M_WAITOK : 746 M_NOWAIT); 747 if (sp == 0) { 748 error = ENOSPC; 749 break; 750 } 751 if (notmapped) { 752 error = md_malloc_move_ma(&m, 753 &ma_offs, sc->sectorsize, 754 (void *)sp, 0, 755 MD_MALLOC_MOVE_WRITE); 756 } else if (vlist != NULL) { 757 error = md_malloc_move_vlist( 758 &vlist, &ma_offs, 759 sc->sectorsize, (void *)sp, 760 0, MD_MALLOC_MOVE_WRITE); 761 } else { 762 bcopy(dst, (void *)sp, 763 sc->sectorsize); 764 } 765 error = s_write(sc->indir, secno, sp); 766 } else { 767 if (notmapped) { 768 error = md_malloc_move_ma(&m, 769 &ma_offs, sc->sectorsize, 770 (void *)osp, 0, 771 MD_MALLOC_MOVE_WRITE); 772 } else if (vlist != NULL) { 773 error = md_malloc_move_vlist( 774 &vlist, &ma_offs, 775 sc->sectorsize, (void *)osp, 776 0, MD_MALLOC_MOVE_WRITE); 777 } else { 778 bcopy(dst, (void *)osp, 779 sc->sectorsize); 780 } 781 osp = 0; 782 } 783 } 784 } else { 785 error = EOPNOTSUPP; 786 } 787 if (osp > 255) 788 uma_zfree(sc->uma, (void*)osp); 789 if (error != 0) 790 break; 791 secno++; 792 if (!notmapped && vlist == NULL) 793 dst += sc->sectorsize; 794 } 795 bp->bio_resid = 0; 796 return (error); 797 } 798 799 static void 800 mdcopyto_vlist(void *src, bus_dma_segment_t *vlist, off_t offset, off_t len) 801 { 802 off_t seg_len; 803 804 while (offset >= vlist->ds_len) { 805 offset -= vlist->ds_len; 806 vlist++; 807 } 808 809 while (len != 0) { 810 seg_len = omin(len, vlist->ds_len - offset); 811 bcopy(src, (void *)(uintptr_t)(vlist->ds_addr + offset), 812 seg_len); 813 offset = 0; 814 src = (uint8_t *)src + seg_len; 815 len -= seg_len; 816 vlist++; 817 } 818 } 819 820 static void 821 mdcopyfrom_vlist(bus_dma_segment_t *vlist, off_t offset, void *dst, off_t len) 822 { 823 off_t seg_len; 824 825 while (offset >= vlist->ds_len) { 826 offset -= vlist->ds_len; 827 vlist++; 828 } 829 830 while (len != 0) { 831 seg_len = omin(len, vlist->ds_len - offset); 832 bcopy((void *)(uintptr_t)(vlist->ds_addr + offset), dst, 833 seg_len); 834 offset = 0; 835 dst = (uint8_t *)dst + seg_len; 836 len -= seg_len; 837 vlist++; 838 } 839 } 840 841 static int 842 mdstart_preload(struct md_s *sc, struct bio *bp) 843 { 844 uint8_t *p; 845 846 p = sc->pl_ptr + bp->bio_offset; 847 switch (bp->bio_cmd) { 848 case BIO_READ: 849 if ((bp->bio_flags & BIO_VLIST) != 0) { 850 mdcopyto_vlist(p, (bus_dma_segment_t *)bp->bio_data, 851 bp->bio_ma_offset, bp->bio_length); 852 } else { 853 bcopy(p, bp->bio_data, bp->bio_length); 854 } 855 cpu_flush_dcache(bp->bio_data, bp->bio_length); 856 break; 857 case BIO_WRITE: 858 if ((bp->bio_flags & BIO_VLIST) != 0) { 859 mdcopyfrom_vlist((bus_dma_segment_t *)bp->bio_data, 860 bp->bio_ma_offset, p, bp->bio_length); 861 } else { 862 bcopy(bp->bio_data, p, bp->bio_length); 863 } 864 break; 865 } 866 bp->bio_resid = 0; 867 return (0); 868 } 869 870 static int 871 mdstart_vnode(struct md_s *sc, struct bio *bp) 872 { 873 int error; 874 struct uio auio; 875 struct iovec aiov; 876 struct iovec *piov; 877 struct mount *mp; 878 struct vnode *vp; 879 struct buf *pb; 880 bus_dma_segment_t *vlist; 881 struct thread *td; 882 off_t iolen, iostart, len, zerosize; 883 int ma_offs, npages; 884 885 switch (bp->bio_cmd) { 886 case BIO_READ: 887 auio.uio_rw = UIO_READ; 888 break; 889 case BIO_WRITE: 890 case BIO_DELETE: 891 auio.uio_rw = UIO_WRITE; 892 break; 893 case BIO_FLUSH: 894 break; 895 default: 896 return (EOPNOTSUPP); 897 } 898 899 td = curthread; 900 vp = sc->vnode; 901 pb = NULL; 902 piov = NULL; 903 ma_offs = bp->bio_ma_offset; 904 len = bp->bio_length; 905 906 /* 907 * VNODE I/O 908 * 909 * If an error occurs, we set BIO_ERROR but we do not set 910 * B_INVAL because (for a write anyway), the buffer is 911 * still valid. 912 */ 913 914 if (bp->bio_cmd == BIO_FLUSH) { 915 (void) vn_start_write(vp, &mp, V_WAIT); 916 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); 917 error = VOP_FSYNC(vp, MNT_WAIT, td); 918 VOP_UNLOCK(vp); 919 vn_finished_write(mp); 920 return (error); 921 } 922 923 auio.uio_offset = (vm_ooffset_t)bp->bio_offset; 924 auio.uio_resid = bp->bio_length; 925 auio.uio_segflg = UIO_SYSSPACE; 926 auio.uio_td = td; 927 928 if (bp->bio_cmd == BIO_DELETE) { 929 /* 930 * Emulate BIO_DELETE by writing zeros. 931 */ 932 zerosize = ZERO_REGION_SIZE - 933 (ZERO_REGION_SIZE % sc->sectorsize); 934 auio.uio_iovcnt = howmany(bp->bio_length, zerosize); 935 piov = malloc(sizeof(*piov) * auio.uio_iovcnt, M_MD, M_WAITOK); 936 auio.uio_iov = piov; 937 while (len > 0) { 938 piov->iov_base = __DECONST(void *, zero_region); 939 piov->iov_len = len; 940 if (len > zerosize) 941 piov->iov_len = zerosize; 942 len -= piov->iov_len; 943 piov++; 944 } 945 piov = auio.uio_iov; 946 } else if ((bp->bio_flags & BIO_VLIST) != 0) { 947 piov = malloc(sizeof(*piov) * bp->bio_ma_n, M_MD, M_WAITOK); 948 auio.uio_iov = piov; 949 vlist = (bus_dma_segment_t *)bp->bio_data; 950 while (len > 0) { 951 piov->iov_base = (void *)(uintptr_t)(vlist->ds_addr + 952 ma_offs); 953 piov->iov_len = vlist->ds_len - ma_offs; 954 if (piov->iov_len > len) 955 piov->iov_len = len; 956 len -= piov->iov_len; 957 ma_offs = 0; 958 vlist++; 959 piov++; 960 } 961 auio.uio_iovcnt = piov - auio.uio_iov; 962 piov = auio.uio_iov; 963 } else if ((bp->bio_flags & BIO_UNMAPPED) != 0) { 964 pb = uma_zalloc(md_pbuf_zone, M_WAITOK); 965 bp->bio_resid = len; 966 unmapped_step: 967 npages = atop(min(MAXPHYS, round_page(len + (ma_offs & 968 PAGE_MASK)))); 969 iolen = min(ptoa(npages) - (ma_offs & PAGE_MASK), len); 970 KASSERT(iolen > 0, ("zero iolen")); 971 pmap_qenter((vm_offset_t)pb->b_data, 972 &bp->bio_ma[atop(ma_offs)], npages); 973 aiov.iov_base = (void *)((vm_offset_t)pb->b_data + 974 (ma_offs & PAGE_MASK)); 975 aiov.iov_len = iolen; 976 auio.uio_iov = &aiov; 977 auio.uio_iovcnt = 1; 978 auio.uio_resid = iolen; 979 } else { 980 aiov.iov_base = bp->bio_data; 981 aiov.iov_len = bp->bio_length; 982 auio.uio_iov = &aiov; 983 auio.uio_iovcnt = 1; 984 } 985 iostart = auio.uio_offset; 986 if (auio.uio_rw == UIO_READ) { 987 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); 988 error = VOP_READ(vp, &auio, 0, sc->cred); 989 VOP_UNLOCK(vp); 990 } else { 991 (void) vn_start_write(vp, &mp, V_WAIT); 992 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); 993 error = VOP_WRITE(vp, &auio, sc->flags & MD_ASYNC ? 0 : IO_SYNC, 994 sc->cred); 995 VOP_UNLOCK(vp); 996 vn_finished_write(mp); 997 if (error == 0) 998 sc->flags &= ~MD_VERIFY; 999 } 1000 1001 /* When MD_CACHE is set, try to avoid double-caching the data. */ 1002 if (error == 0 && (sc->flags & MD_CACHE) == 0) 1003 VOP_ADVISE(vp, iostart, auio.uio_offset - 1, 1004 POSIX_FADV_DONTNEED); 1005 1006 if (pb != NULL) { 1007 pmap_qremove((vm_offset_t)pb->b_data, npages); 1008 if (error == 0) { 1009 len -= iolen; 1010 bp->bio_resid -= iolen; 1011 ma_offs += iolen; 1012 if (len > 0) 1013 goto unmapped_step; 1014 } 1015 uma_zfree(md_pbuf_zone, pb); 1016 } 1017 1018 free(piov, M_MD); 1019 if (pb == NULL) 1020 bp->bio_resid = auio.uio_resid; 1021 return (error); 1022 } 1023 1024 static int 1025 mdstart_swap(struct md_s *sc, struct bio *bp) 1026 { 1027 vm_page_t m; 1028 u_char *p; 1029 vm_pindex_t i, lastp; 1030 bus_dma_segment_t *vlist; 1031 int rv, ma_offs, offs, len, lastend; 1032 1033 switch (bp->bio_cmd) { 1034 case BIO_READ: 1035 case BIO_WRITE: 1036 case BIO_DELETE: 1037 break; 1038 default: 1039 return (EOPNOTSUPP); 1040 } 1041 1042 p = bp->bio_data; 1043 ma_offs = (bp->bio_flags & (BIO_UNMAPPED|BIO_VLIST)) != 0 ? 1044 bp->bio_ma_offset : 0; 1045 vlist = (bp->bio_flags & BIO_VLIST) != 0 ? 1046 (bus_dma_segment_t *)bp->bio_data : NULL; 1047 1048 /* 1049 * offs is the offset at which to start operating on the 1050 * next (ie, first) page. lastp is the last page on 1051 * which we're going to operate. lastend is the ending 1052 * position within that last page (ie, PAGE_SIZE if 1053 * we're operating on complete aligned pages). 1054 */ 1055 offs = bp->bio_offset % PAGE_SIZE; 1056 lastp = (bp->bio_offset + bp->bio_length - 1) / PAGE_SIZE; 1057 lastend = (bp->bio_offset + bp->bio_length - 1) % PAGE_SIZE + 1; 1058 1059 rv = VM_PAGER_OK; 1060 VM_OBJECT_WLOCK(sc->object); 1061 vm_object_pip_add(sc->object, 1); 1062 for (i = bp->bio_offset / PAGE_SIZE; i <= lastp; i++) { 1063 len = ((i == lastp) ? lastend : PAGE_SIZE) - offs; 1064 m = vm_page_grab(sc->object, i, VM_ALLOC_SYSTEM); 1065 if (bp->bio_cmd == BIO_READ) { 1066 if (vm_page_all_valid(m)) 1067 rv = VM_PAGER_OK; 1068 else 1069 rv = vm_pager_get_pages(sc->object, &m, 1, 1070 NULL, NULL); 1071 if (rv == VM_PAGER_ERROR) { 1072 vm_page_free(m); 1073 break; 1074 } else if (rv == VM_PAGER_FAIL) { 1075 /* 1076 * Pager does not have the page. Zero 1077 * the allocated page, and mark it as 1078 * valid. Do not set dirty, the page 1079 * can be recreated if thrown out. 1080 */ 1081 pmap_zero_page(m); 1082 vm_page_valid(m); 1083 } 1084 if ((bp->bio_flags & BIO_UNMAPPED) != 0) { 1085 pmap_copy_pages(&m, offs, bp->bio_ma, 1086 ma_offs, len); 1087 } else if ((bp->bio_flags & BIO_VLIST) != 0) { 1088 physcopyout_vlist(VM_PAGE_TO_PHYS(m) + offs, 1089 vlist, ma_offs, len); 1090 cpu_flush_dcache(p, len); 1091 } else { 1092 physcopyout(VM_PAGE_TO_PHYS(m) + offs, p, len); 1093 cpu_flush_dcache(p, len); 1094 } 1095 } else if (bp->bio_cmd == BIO_WRITE) { 1096 if (len == PAGE_SIZE || vm_page_all_valid(m)) 1097 rv = VM_PAGER_OK; 1098 else 1099 rv = vm_pager_get_pages(sc->object, &m, 1, 1100 NULL, NULL); 1101 if (rv == VM_PAGER_ERROR) { 1102 vm_page_free(m); 1103 break; 1104 } else if (rv == VM_PAGER_FAIL) 1105 pmap_zero_page(m); 1106 1107 if ((bp->bio_flags & BIO_UNMAPPED) != 0) { 1108 pmap_copy_pages(bp->bio_ma, ma_offs, &m, 1109 offs, len); 1110 } else if ((bp->bio_flags & BIO_VLIST) != 0) { 1111 physcopyin_vlist(vlist, ma_offs, 1112 VM_PAGE_TO_PHYS(m) + offs, len); 1113 } else { 1114 physcopyin(p, VM_PAGE_TO_PHYS(m) + offs, len); 1115 } 1116 1117 vm_page_valid(m); 1118 vm_page_set_dirty(m); 1119 } else if (bp->bio_cmd == BIO_DELETE) { 1120 if (len == PAGE_SIZE || vm_page_all_valid(m)) 1121 rv = VM_PAGER_OK; 1122 else 1123 rv = vm_pager_get_pages(sc->object, &m, 1, 1124 NULL, NULL); 1125 if (rv == VM_PAGER_ERROR) { 1126 vm_page_free(m); 1127 break; 1128 } else if (rv == VM_PAGER_FAIL) { 1129 vm_page_free(m); 1130 m = NULL; 1131 } else { 1132 /* Page is valid. */ 1133 if (len != PAGE_SIZE) { 1134 pmap_zero_page_area(m, offs, len); 1135 vm_page_set_dirty(m); 1136 } else { 1137 vm_pager_page_unswapped(m); 1138 vm_page_free(m); 1139 m = NULL; 1140 } 1141 } 1142 } 1143 if (m != NULL) { 1144 vm_page_xunbusy(m); 1145 1146 /* 1147 * The page may be deactivated prior to setting 1148 * PGA_REFERENCED, but in this case it will be 1149 * reactivated by the page daemon. 1150 */ 1151 if (vm_page_active(m)) 1152 vm_page_reference(m); 1153 else 1154 vm_page_activate(m); 1155 } 1156 1157 /* Actions on further pages start at offset 0 */ 1158 p += PAGE_SIZE - offs; 1159 offs = 0; 1160 ma_offs += len; 1161 } 1162 vm_object_pip_wakeup(sc->object); 1163 VM_OBJECT_WUNLOCK(sc->object); 1164 return (rv != VM_PAGER_ERROR ? 0 : ENOSPC); 1165 } 1166 1167 static int 1168 mdstart_null(struct md_s *sc, struct bio *bp) 1169 { 1170 1171 switch (bp->bio_cmd) { 1172 case BIO_READ: 1173 bzero(bp->bio_data, bp->bio_length); 1174 cpu_flush_dcache(bp->bio_data, bp->bio_length); 1175 break; 1176 case BIO_WRITE: 1177 break; 1178 } 1179 bp->bio_resid = 0; 1180 return (0); 1181 } 1182 1183 static void 1184 md_kthread(void *arg) 1185 { 1186 struct md_s *sc; 1187 struct bio *bp; 1188 int error; 1189 1190 sc = arg; 1191 thread_lock(curthread); 1192 sched_prio(curthread, PRIBIO); 1193 thread_unlock(curthread); 1194 if (sc->type == MD_VNODE) 1195 curthread->td_pflags |= TDP_NORUNNINGBUF; 1196 1197 for (;;) { 1198 mtx_lock(&sc->queue_mtx); 1199 if (sc->flags & MD_SHUTDOWN) { 1200 sc->flags |= MD_EXITING; 1201 mtx_unlock(&sc->queue_mtx); 1202 kproc_exit(0); 1203 } 1204 bp = bioq_takefirst(&sc->bio_queue); 1205 if (!bp) { 1206 msleep(sc, &sc->queue_mtx, PRIBIO | PDROP, "mdwait", 0); 1207 continue; 1208 } 1209 mtx_unlock(&sc->queue_mtx); 1210 if (bp->bio_cmd == BIO_GETATTR) { 1211 int isv = ((sc->flags & MD_VERIFY) != 0); 1212 1213 if ((sc->fwsectors && sc->fwheads && 1214 (g_handleattr_int(bp, "GEOM::fwsectors", 1215 sc->fwsectors) || 1216 g_handleattr_int(bp, "GEOM::fwheads", 1217 sc->fwheads))) || 1218 g_handleattr_int(bp, "GEOM::candelete", 1)) 1219 error = -1; 1220 else if (sc->ident[0] != '\0' && 1221 g_handleattr_str(bp, "GEOM::ident", sc->ident)) 1222 error = -1; 1223 else if (g_handleattr_int(bp, "MNT::verified", isv)) 1224 error = -1; 1225 else 1226 error = EOPNOTSUPP; 1227 } else { 1228 error = sc->start(sc, bp); 1229 } 1230 1231 if (bp->bio_cmd == BIO_READ || bp->bio_cmd == BIO_WRITE) { 1232 /* 1233 * Devstat uses (bio_bcount, bio_resid) for 1234 * determining the length of the completed part of 1235 * the i/o. g_io_deliver() will translate from 1236 * bio_completed to that, but it also destroys the 1237 * bio so we must do our own translation. 1238 */ 1239 bp->bio_bcount = bp->bio_length; 1240 bp->bio_resid = (error == -1 ? bp->bio_bcount : 0); 1241 devstat_end_transaction_bio(sc->devstat, bp); 1242 } 1243 if (error != -1) { 1244 bp->bio_completed = bp->bio_length; 1245 g_io_deliver(bp, error); 1246 } 1247 } 1248 } 1249 1250 static struct md_s * 1251 mdfind(int unit) 1252 { 1253 struct md_s *sc; 1254 1255 LIST_FOREACH(sc, &md_softc_list, list) { 1256 if (sc->unit == unit) 1257 break; 1258 } 1259 return (sc); 1260 } 1261 1262 static struct md_s * 1263 mdnew(int unit, int *errp, enum md_types type) 1264 { 1265 struct md_s *sc; 1266 int error; 1267 1268 *errp = 0; 1269 if (unit == -1) 1270 unit = alloc_unr(md_uh); 1271 else 1272 unit = alloc_unr_specific(md_uh, unit); 1273 1274 if (unit == -1) { 1275 *errp = EBUSY; 1276 return (NULL); 1277 } 1278 1279 sc = (struct md_s *)malloc(sizeof *sc, M_MD, M_WAITOK | M_ZERO); 1280 sc->type = type; 1281 bioq_init(&sc->bio_queue); 1282 mtx_init(&sc->queue_mtx, "md bio queue", NULL, MTX_DEF); 1283 sc->unit = unit; 1284 sprintf(sc->name, "md%d", unit); 1285 LIST_INSERT_HEAD(&md_softc_list, sc, list); 1286 error = kproc_create(md_kthread, sc, &sc->procp, 0, 0,"%s", sc->name); 1287 if (error == 0) 1288 return (sc); 1289 LIST_REMOVE(sc, list); 1290 mtx_destroy(&sc->queue_mtx); 1291 free_unr(md_uh, sc->unit); 1292 free(sc, M_MD); 1293 *errp = error; 1294 return (NULL); 1295 } 1296 1297 static void 1298 mdinit(struct md_s *sc) 1299 { 1300 struct g_geom *gp; 1301 struct g_provider *pp; 1302 1303 g_topology_lock(); 1304 gp = g_new_geomf(&g_md_class, "md%d", sc->unit); 1305 gp->softc = sc; 1306 pp = g_new_providerf(gp, "md%d", sc->unit); 1307 devstat_remove_entry(pp->stat); 1308 pp->stat = NULL; 1309 pp->flags |= G_PF_DIRECT_SEND | G_PF_DIRECT_RECEIVE; 1310 pp->mediasize = sc->mediasize; 1311 pp->sectorsize = sc->sectorsize; 1312 switch (sc->type) { 1313 case MD_MALLOC: 1314 case MD_VNODE: 1315 case MD_SWAP: 1316 pp->flags |= G_PF_ACCEPT_UNMAPPED; 1317 break; 1318 case MD_PRELOAD: 1319 case MD_NULL: 1320 break; 1321 } 1322 sc->gp = gp; 1323 sc->pp = pp; 1324 sc->devstat = devstat_new_entry("md", sc->unit, sc->sectorsize, 1325 DEVSTAT_ALL_SUPPORTED, DEVSTAT_TYPE_DIRECT, DEVSTAT_PRIORITY_MAX); 1326 sc->devstat->id = pp; 1327 g_error_provider(pp, 0); 1328 g_topology_unlock(); 1329 } 1330 1331 static int 1332 mdcreate_malloc(struct md_s *sc, struct md_req *mdr) 1333 { 1334 uintptr_t sp; 1335 int error; 1336 off_t u; 1337 1338 error = 0; 1339 if (mdr->md_options & ~(MD_AUTOUNIT | MD_COMPRESS | MD_RESERVE)) 1340 return (EINVAL); 1341 if (mdr->md_sectorsize != 0 && !powerof2(mdr->md_sectorsize)) 1342 return (EINVAL); 1343 /* Compression doesn't make sense if we have reserved space */ 1344 if (mdr->md_options & MD_RESERVE) 1345 mdr->md_options &= ~MD_COMPRESS; 1346 if (mdr->md_fwsectors != 0) 1347 sc->fwsectors = mdr->md_fwsectors; 1348 if (mdr->md_fwheads != 0) 1349 sc->fwheads = mdr->md_fwheads; 1350 sc->flags = mdr->md_options & (MD_COMPRESS | MD_FORCE); 1351 sc->indir = dimension(sc->mediasize / sc->sectorsize); 1352 sc->uma = uma_zcreate(sc->name, sc->sectorsize, NULL, NULL, NULL, NULL, 1353 0x1ff, 0); 1354 if (mdr->md_options & MD_RESERVE) { 1355 off_t nsectors; 1356 1357 nsectors = sc->mediasize / sc->sectorsize; 1358 for (u = 0; u < nsectors; u++) { 1359 sp = (uintptr_t)uma_zalloc(sc->uma, (md_malloc_wait ? 1360 M_WAITOK : M_NOWAIT) | M_ZERO); 1361 if (sp != 0) 1362 error = s_write(sc->indir, u, sp); 1363 else 1364 error = ENOMEM; 1365 if (error != 0) 1366 break; 1367 } 1368 } 1369 return (error); 1370 } 1371 1372 1373 static int 1374 mdsetcred(struct md_s *sc, struct ucred *cred) 1375 { 1376 char *tmpbuf; 1377 int error = 0; 1378 1379 /* 1380 * Set credits in our softc 1381 */ 1382 1383 if (sc->cred) 1384 crfree(sc->cred); 1385 sc->cred = crhold(cred); 1386 1387 /* 1388 * Horrible kludge to establish credentials for NFS XXX. 1389 */ 1390 1391 if (sc->vnode) { 1392 struct uio auio; 1393 struct iovec aiov; 1394 1395 tmpbuf = malloc(sc->sectorsize, M_TEMP, M_WAITOK); 1396 bzero(&auio, sizeof(auio)); 1397 1398 aiov.iov_base = tmpbuf; 1399 aiov.iov_len = sc->sectorsize; 1400 auio.uio_iov = &aiov; 1401 auio.uio_iovcnt = 1; 1402 auio.uio_offset = 0; 1403 auio.uio_rw = UIO_READ; 1404 auio.uio_segflg = UIO_SYSSPACE; 1405 auio.uio_resid = aiov.iov_len; 1406 vn_lock(sc->vnode, LK_EXCLUSIVE | LK_RETRY); 1407 error = VOP_READ(sc->vnode, &auio, 0, sc->cred); 1408 VOP_UNLOCK(sc->vnode); 1409 free(tmpbuf, M_TEMP); 1410 } 1411 return (error); 1412 } 1413 1414 static int 1415 mdcreate_vnode(struct md_s *sc, struct md_req *mdr, struct thread *td) 1416 { 1417 struct vattr vattr; 1418 struct nameidata nd; 1419 char *fname; 1420 int error, flags; 1421 1422 fname = mdr->md_file; 1423 if (mdr->md_file_seg == UIO_USERSPACE) { 1424 error = copyinstr(fname, sc->file, sizeof(sc->file), NULL); 1425 if (error != 0) 1426 return (error); 1427 } else if (mdr->md_file_seg == UIO_SYSSPACE) 1428 strlcpy(sc->file, fname, sizeof(sc->file)); 1429 else 1430 return (EDOOFUS); 1431 1432 /* 1433 * If the user specified that this is a read only device, don't 1434 * set the FWRITE mask before trying to open the backing store. 1435 */ 1436 flags = FREAD | ((mdr->md_options & MD_READONLY) ? 0 : FWRITE) \ 1437 | ((mdr->md_options & MD_VERIFY) ? O_VERIFY : 0); 1438 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, sc->file, td); 1439 error = vn_open(&nd, &flags, 0, NULL); 1440 if (error != 0) 1441 return (error); 1442 NDFREE(&nd, NDF_ONLY_PNBUF); 1443 if (nd.ni_vp->v_type != VREG) { 1444 error = EINVAL; 1445 goto bad; 1446 } 1447 error = VOP_GETATTR(nd.ni_vp, &vattr, td->td_ucred); 1448 if (error != 0) 1449 goto bad; 1450 if (VOP_ISLOCKED(nd.ni_vp) != LK_EXCLUSIVE) { 1451 vn_lock(nd.ni_vp, LK_UPGRADE | LK_RETRY); 1452 if (VN_IS_DOOMED(nd.ni_vp)) { 1453 /* Forced unmount. */ 1454 error = EBADF; 1455 goto bad; 1456 } 1457 } 1458 nd.ni_vp->v_vflag |= VV_MD; 1459 VOP_UNLOCK(nd.ni_vp); 1460 1461 if (mdr->md_fwsectors != 0) 1462 sc->fwsectors = mdr->md_fwsectors; 1463 if (mdr->md_fwheads != 0) 1464 sc->fwheads = mdr->md_fwheads; 1465 snprintf(sc->ident, sizeof(sc->ident), "MD-DEV%ju-INO%ju", 1466 (uintmax_t)vattr.va_fsid, (uintmax_t)vattr.va_fileid); 1467 sc->flags = mdr->md_options & (MD_ASYNC | MD_CACHE | MD_FORCE | 1468 MD_VERIFY); 1469 if (!(flags & FWRITE)) 1470 sc->flags |= MD_READONLY; 1471 sc->vnode = nd.ni_vp; 1472 1473 error = mdsetcred(sc, td->td_ucred); 1474 if (error != 0) { 1475 sc->vnode = NULL; 1476 vn_lock(nd.ni_vp, LK_EXCLUSIVE | LK_RETRY); 1477 nd.ni_vp->v_vflag &= ~VV_MD; 1478 goto bad; 1479 } 1480 return (0); 1481 bad: 1482 VOP_UNLOCK(nd.ni_vp); 1483 (void)vn_close(nd.ni_vp, flags, td->td_ucred, td); 1484 return (error); 1485 } 1486 1487 static void 1488 g_md_providergone(struct g_provider *pp) 1489 { 1490 struct md_s *sc = pp->geom->softc; 1491 1492 mtx_lock(&sc->queue_mtx); 1493 sc->flags |= MD_PROVIDERGONE; 1494 wakeup(&sc->flags); 1495 mtx_unlock(&sc->queue_mtx); 1496 } 1497 1498 static int 1499 mddestroy(struct md_s *sc, struct thread *td) 1500 { 1501 1502 if (sc->gp) { 1503 g_topology_lock(); 1504 g_wither_geom(sc->gp, ENXIO); 1505 g_topology_unlock(); 1506 1507 mtx_lock(&sc->queue_mtx); 1508 while (!(sc->flags & MD_PROVIDERGONE)) 1509 msleep(&sc->flags, &sc->queue_mtx, PRIBIO, "mddestroy", 0); 1510 mtx_unlock(&sc->queue_mtx); 1511 } 1512 if (sc->devstat) { 1513 devstat_remove_entry(sc->devstat); 1514 sc->devstat = NULL; 1515 } 1516 mtx_lock(&sc->queue_mtx); 1517 sc->flags |= MD_SHUTDOWN; 1518 wakeup(sc); 1519 while (!(sc->flags & MD_EXITING)) 1520 msleep(sc->procp, &sc->queue_mtx, PRIBIO, "mddestroy", hz / 10); 1521 mtx_unlock(&sc->queue_mtx); 1522 mtx_destroy(&sc->queue_mtx); 1523 if (sc->vnode != NULL) { 1524 vn_lock(sc->vnode, LK_EXCLUSIVE | LK_RETRY); 1525 sc->vnode->v_vflag &= ~VV_MD; 1526 VOP_UNLOCK(sc->vnode); 1527 (void)vn_close(sc->vnode, sc->flags & MD_READONLY ? 1528 FREAD : (FREAD|FWRITE), sc->cred, td); 1529 } 1530 if (sc->cred != NULL) 1531 crfree(sc->cred); 1532 if (sc->object != NULL) 1533 vm_object_deallocate(sc->object); 1534 if (sc->indir) 1535 destroy_indir(sc, sc->indir); 1536 if (sc->uma) 1537 uma_zdestroy(sc->uma); 1538 1539 LIST_REMOVE(sc, list); 1540 free_unr(md_uh, sc->unit); 1541 free(sc, M_MD); 1542 return (0); 1543 } 1544 1545 static int 1546 mdresize(struct md_s *sc, struct md_req *mdr) 1547 { 1548 int error, res; 1549 vm_pindex_t oldpages, newpages; 1550 1551 switch (sc->type) { 1552 case MD_VNODE: 1553 case MD_NULL: 1554 break; 1555 case MD_SWAP: 1556 if (mdr->md_mediasize <= 0 || 1557 (mdr->md_mediasize % PAGE_SIZE) != 0) 1558 return (EDOM); 1559 oldpages = OFF_TO_IDX(round_page(sc->mediasize)); 1560 newpages = OFF_TO_IDX(round_page(mdr->md_mediasize)); 1561 if (newpages < oldpages) { 1562 VM_OBJECT_WLOCK(sc->object); 1563 vm_object_page_remove(sc->object, newpages, 0, 0); 1564 swap_pager_freespace(sc->object, newpages, 1565 oldpages - newpages); 1566 swap_release_by_cred(IDX_TO_OFF(oldpages - 1567 newpages), sc->cred); 1568 sc->object->charge = IDX_TO_OFF(newpages); 1569 sc->object->size = newpages; 1570 VM_OBJECT_WUNLOCK(sc->object); 1571 } else if (newpages > oldpages) { 1572 res = swap_reserve_by_cred(IDX_TO_OFF(newpages - 1573 oldpages), sc->cred); 1574 if (!res) 1575 return (ENOMEM); 1576 if ((mdr->md_options & MD_RESERVE) || 1577 (sc->flags & MD_RESERVE)) { 1578 error = swap_pager_reserve(sc->object, 1579 oldpages, newpages - oldpages); 1580 if (error < 0) { 1581 swap_release_by_cred( 1582 IDX_TO_OFF(newpages - oldpages), 1583 sc->cred); 1584 return (EDOM); 1585 } 1586 } 1587 VM_OBJECT_WLOCK(sc->object); 1588 sc->object->charge = IDX_TO_OFF(newpages); 1589 sc->object->size = newpages; 1590 VM_OBJECT_WUNLOCK(sc->object); 1591 } 1592 break; 1593 default: 1594 return (EOPNOTSUPP); 1595 } 1596 1597 sc->mediasize = mdr->md_mediasize; 1598 g_topology_lock(); 1599 g_resize_provider(sc->pp, sc->mediasize); 1600 g_topology_unlock(); 1601 return (0); 1602 } 1603 1604 static int 1605 mdcreate_swap(struct md_s *sc, struct md_req *mdr, struct thread *td) 1606 { 1607 vm_ooffset_t npage; 1608 int error; 1609 1610 /* 1611 * Range check. Disallow negative sizes and sizes not being 1612 * multiple of page size. 1613 */ 1614 if (sc->mediasize <= 0 || (sc->mediasize % PAGE_SIZE) != 0) 1615 return (EDOM); 1616 1617 /* 1618 * Allocate an OBJT_SWAP object. 1619 * 1620 * Note the truncation. 1621 */ 1622 1623 if ((mdr->md_options & MD_VERIFY) != 0) 1624 return (EINVAL); 1625 npage = mdr->md_mediasize / PAGE_SIZE; 1626 if (mdr->md_fwsectors != 0) 1627 sc->fwsectors = mdr->md_fwsectors; 1628 if (mdr->md_fwheads != 0) 1629 sc->fwheads = mdr->md_fwheads; 1630 sc->object = vm_pager_allocate(OBJT_SWAP, NULL, PAGE_SIZE * npage, 1631 VM_PROT_DEFAULT, 0, td->td_ucred); 1632 if (sc->object == NULL) 1633 return (ENOMEM); 1634 sc->flags = mdr->md_options & (MD_FORCE | MD_RESERVE); 1635 if (mdr->md_options & MD_RESERVE) { 1636 if (swap_pager_reserve(sc->object, 0, npage) < 0) { 1637 error = EDOM; 1638 goto finish; 1639 } 1640 } 1641 error = mdsetcred(sc, td->td_ucred); 1642 finish: 1643 if (error != 0) { 1644 vm_object_deallocate(sc->object); 1645 sc->object = NULL; 1646 } 1647 return (error); 1648 } 1649 1650 static int 1651 mdcreate_null(struct md_s *sc, struct md_req *mdr, struct thread *td) 1652 { 1653 1654 /* 1655 * Range check. Disallow negative sizes and sizes not being 1656 * multiple of page size. 1657 */ 1658 if (sc->mediasize <= 0 || (sc->mediasize % PAGE_SIZE) != 0) 1659 return (EDOM); 1660 1661 return (0); 1662 } 1663 1664 static int 1665 kern_mdattach_locked(struct thread *td, struct md_req *mdr) 1666 { 1667 struct md_s *sc; 1668 unsigned sectsize; 1669 int error, i; 1670 1671 sx_assert(&md_sx, SA_XLOCKED); 1672 1673 switch (mdr->md_type) { 1674 case MD_MALLOC: 1675 case MD_PRELOAD: 1676 case MD_VNODE: 1677 case MD_SWAP: 1678 case MD_NULL: 1679 break; 1680 default: 1681 return (EINVAL); 1682 } 1683 if (mdr->md_sectorsize == 0) 1684 sectsize = DEV_BSIZE; 1685 else 1686 sectsize = mdr->md_sectorsize; 1687 if (sectsize > MAXPHYS || mdr->md_mediasize < sectsize) 1688 return (EINVAL); 1689 if (mdr->md_options & MD_AUTOUNIT) 1690 sc = mdnew(-1, &error, mdr->md_type); 1691 else { 1692 if (mdr->md_unit > INT_MAX) 1693 return (EINVAL); 1694 sc = mdnew(mdr->md_unit, &error, mdr->md_type); 1695 } 1696 if (sc == NULL) 1697 return (error); 1698 if (mdr->md_label != NULL) 1699 error = copyinstr(mdr->md_label, sc->label, 1700 sizeof(sc->label), NULL); 1701 if (error != 0) 1702 goto err_after_new; 1703 if (mdr->md_options & MD_AUTOUNIT) 1704 mdr->md_unit = sc->unit; 1705 sc->mediasize = mdr->md_mediasize; 1706 sc->sectorsize = sectsize; 1707 error = EDOOFUS; 1708 switch (sc->type) { 1709 case MD_MALLOC: 1710 sc->start = mdstart_malloc; 1711 error = mdcreate_malloc(sc, mdr); 1712 break; 1713 case MD_PRELOAD: 1714 /* 1715 * We disallow attaching preloaded memory disks via 1716 * ioctl. Preloaded memory disks are automatically 1717 * attached in g_md_init(). 1718 */ 1719 error = EOPNOTSUPP; 1720 break; 1721 case MD_VNODE: 1722 sc->start = mdstart_vnode; 1723 error = mdcreate_vnode(sc, mdr, td); 1724 break; 1725 case MD_SWAP: 1726 sc->start = mdstart_swap; 1727 error = mdcreate_swap(sc, mdr, td); 1728 break; 1729 case MD_NULL: 1730 sc->start = mdstart_null; 1731 error = mdcreate_null(sc, mdr, td); 1732 break; 1733 } 1734 err_after_new: 1735 if (error != 0) { 1736 mddestroy(sc, td); 1737 return (error); 1738 } 1739 1740 /* Prune off any residual fractional sector */ 1741 i = sc->mediasize % sc->sectorsize; 1742 sc->mediasize -= i; 1743 1744 mdinit(sc); 1745 return (0); 1746 } 1747 1748 static int 1749 kern_mdattach(struct thread *td, struct md_req *mdr) 1750 { 1751 int error; 1752 1753 sx_xlock(&md_sx); 1754 error = kern_mdattach_locked(td, mdr); 1755 sx_xunlock(&md_sx); 1756 return (error); 1757 } 1758 1759 static int 1760 kern_mddetach_locked(struct thread *td, struct md_req *mdr) 1761 { 1762 struct md_s *sc; 1763 1764 sx_assert(&md_sx, SA_XLOCKED); 1765 1766 if (mdr->md_mediasize != 0 || 1767 (mdr->md_options & ~MD_FORCE) != 0) 1768 return (EINVAL); 1769 1770 sc = mdfind(mdr->md_unit); 1771 if (sc == NULL) 1772 return (ENOENT); 1773 if (sc->opencount != 0 && !(sc->flags & MD_FORCE) && 1774 !(mdr->md_options & MD_FORCE)) 1775 return (EBUSY); 1776 return (mddestroy(sc, td)); 1777 } 1778 1779 static int 1780 kern_mddetach(struct thread *td, struct md_req *mdr) 1781 { 1782 int error; 1783 1784 sx_xlock(&md_sx); 1785 error = kern_mddetach_locked(td, mdr); 1786 sx_xunlock(&md_sx); 1787 return (error); 1788 } 1789 1790 static int 1791 kern_mdresize_locked(struct md_req *mdr) 1792 { 1793 struct md_s *sc; 1794 1795 sx_assert(&md_sx, SA_XLOCKED); 1796 1797 if ((mdr->md_options & ~(MD_FORCE | MD_RESERVE)) != 0) 1798 return (EINVAL); 1799 1800 sc = mdfind(mdr->md_unit); 1801 if (sc == NULL) 1802 return (ENOENT); 1803 if (mdr->md_mediasize < sc->sectorsize) 1804 return (EINVAL); 1805 if (mdr->md_mediasize < sc->mediasize && 1806 !(sc->flags & MD_FORCE) && 1807 !(mdr->md_options & MD_FORCE)) 1808 return (EBUSY); 1809 return (mdresize(sc, mdr)); 1810 } 1811 1812 static int 1813 kern_mdresize(struct md_req *mdr) 1814 { 1815 int error; 1816 1817 sx_xlock(&md_sx); 1818 error = kern_mdresize_locked(mdr); 1819 sx_xunlock(&md_sx); 1820 return (error); 1821 } 1822 1823 static int 1824 kern_mdquery_locked(struct md_req *mdr) 1825 { 1826 struct md_s *sc; 1827 int error; 1828 1829 sx_assert(&md_sx, SA_XLOCKED); 1830 1831 sc = mdfind(mdr->md_unit); 1832 if (sc == NULL) 1833 return (ENOENT); 1834 mdr->md_type = sc->type; 1835 mdr->md_options = sc->flags; 1836 mdr->md_mediasize = sc->mediasize; 1837 mdr->md_sectorsize = sc->sectorsize; 1838 error = 0; 1839 if (mdr->md_label != NULL) { 1840 error = copyout(sc->label, mdr->md_label, 1841 strlen(sc->label) + 1); 1842 if (error != 0) 1843 return (error); 1844 } 1845 if (sc->type == MD_VNODE || 1846 (sc->type == MD_PRELOAD && mdr->md_file != NULL)) 1847 error = copyout(sc->file, mdr->md_file, 1848 strlen(sc->file) + 1); 1849 return (error); 1850 } 1851 1852 static int 1853 kern_mdquery(struct md_req *mdr) 1854 { 1855 int error; 1856 1857 sx_xlock(&md_sx); 1858 error = kern_mdquery_locked(mdr); 1859 sx_xunlock(&md_sx); 1860 return (error); 1861 } 1862 1863 /* Copy members that are not userspace pointers. */ 1864 #define MD_IOCTL2REQ(mdio, mdr) do { \ 1865 (mdr)->md_unit = (mdio)->md_unit; \ 1866 (mdr)->md_type = (mdio)->md_type; \ 1867 (mdr)->md_mediasize = (mdio)->md_mediasize; \ 1868 (mdr)->md_sectorsize = (mdio)->md_sectorsize; \ 1869 (mdr)->md_options = (mdio)->md_options; \ 1870 (mdr)->md_fwheads = (mdio)->md_fwheads; \ 1871 (mdr)->md_fwsectors = (mdio)->md_fwsectors; \ 1872 (mdr)->md_units = &(mdio)->md_pad[0]; \ 1873 (mdr)->md_units_nitems = nitems((mdio)->md_pad); \ 1874 } while(0) 1875 1876 /* Copy members that might have been updated */ 1877 #define MD_REQ2IOCTL(mdr, mdio) do { \ 1878 (mdio)->md_unit = (mdr)->md_unit; \ 1879 (mdio)->md_type = (mdr)->md_type; \ 1880 (mdio)->md_mediasize = (mdr)->md_mediasize; \ 1881 (mdio)->md_sectorsize = (mdr)->md_sectorsize; \ 1882 (mdio)->md_options = (mdr)->md_options; \ 1883 (mdio)->md_fwheads = (mdr)->md_fwheads; \ 1884 (mdio)->md_fwsectors = (mdr)->md_fwsectors; \ 1885 } while(0) 1886 1887 static int 1888 mdctlioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, 1889 struct thread *td) 1890 { 1891 struct md_req mdr; 1892 int error; 1893 1894 if (md_debug) 1895 printf("mdctlioctl(%s %lx %p %x %p)\n", 1896 devtoname(dev), cmd, addr, flags, td); 1897 1898 bzero(&mdr, sizeof(mdr)); 1899 switch (cmd) { 1900 case MDIOCATTACH: 1901 case MDIOCDETACH: 1902 case MDIOCRESIZE: 1903 case MDIOCQUERY: { 1904 struct md_ioctl *mdio = (struct md_ioctl *)addr; 1905 if (mdio->md_version != MDIOVERSION) 1906 return (EINVAL); 1907 MD_IOCTL2REQ(mdio, &mdr); 1908 mdr.md_file = mdio->md_file; 1909 mdr.md_file_seg = UIO_USERSPACE; 1910 /* If the file is adjacent to the md_ioctl it's in kernel. */ 1911 if ((void *)mdio->md_file == (void *)(mdio + 1)) 1912 mdr.md_file_seg = UIO_SYSSPACE; 1913 mdr.md_label = mdio->md_label; 1914 break; 1915 } 1916 #ifdef COMPAT_FREEBSD32 1917 case MDIOCATTACH_32: 1918 case MDIOCDETACH_32: 1919 case MDIOCRESIZE_32: 1920 case MDIOCQUERY_32: { 1921 struct md_ioctl32 *mdio = (struct md_ioctl32 *)addr; 1922 if (mdio->md_version != MDIOVERSION) 1923 return (EINVAL); 1924 MD_IOCTL2REQ(mdio, &mdr); 1925 mdr.md_file = (void *)(uintptr_t)mdio->md_file; 1926 mdr.md_file_seg = UIO_USERSPACE; 1927 mdr.md_label = (void *)(uintptr_t)mdio->md_label; 1928 break; 1929 } 1930 #endif 1931 default: 1932 /* Fall through to handler switch. */ 1933 break; 1934 } 1935 1936 error = 0; 1937 switch (cmd) { 1938 case MDIOCATTACH: 1939 #ifdef COMPAT_FREEBSD32 1940 case MDIOCATTACH_32: 1941 #endif 1942 error = kern_mdattach(td, &mdr); 1943 break; 1944 case MDIOCDETACH: 1945 #ifdef COMPAT_FREEBSD32 1946 case MDIOCDETACH_32: 1947 #endif 1948 error = kern_mddetach(td, &mdr); 1949 break; 1950 case MDIOCRESIZE: 1951 #ifdef COMPAT_FREEBSD32 1952 case MDIOCRESIZE_32: 1953 #endif 1954 error = kern_mdresize(&mdr); 1955 break; 1956 case MDIOCQUERY: 1957 #ifdef COMPAT_FREEBSD32 1958 case MDIOCQUERY_32: 1959 #endif 1960 error = kern_mdquery(&mdr); 1961 break; 1962 default: 1963 error = ENOIOCTL; 1964 } 1965 1966 switch (cmd) { 1967 case MDIOCATTACH: 1968 case MDIOCQUERY: { 1969 struct md_ioctl *mdio = (struct md_ioctl *)addr; 1970 MD_REQ2IOCTL(&mdr, mdio); 1971 break; 1972 } 1973 #ifdef COMPAT_FREEBSD32 1974 case MDIOCATTACH_32: 1975 case MDIOCQUERY_32: { 1976 struct md_ioctl32 *mdio = (struct md_ioctl32 *)addr; 1977 MD_REQ2IOCTL(&mdr, mdio); 1978 break; 1979 } 1980 #endif 1981 default: 1982 /* Other commands to not alter mdr. */ 1983 break; 1984 } 1985 1986 return (error); 1987 } 1988 1989 static void 1990 md_preloaded(u_char *image, size_t length, const char *name) 1991 { 1992 struct md_s *sc; 1993 int error; 1994 1995 sc = mdnew(-1, &error, MD_PRELOAD); 1996 if (sc == NULL) 1997 return; 1998 sc->mediasize = length; 1999 sc->sectorsize = DEV_BSIZE; 2000 sc->pl_ptr = image; 2001 sc->pl_len = length; 2002 sc->start = mdstart_preload; 2003 if (name != NULL) 2004 strlcpy(sc->file, name, sizeof(sc->file)); 2005 #ifdef MD_ROOT 2006 if (sc->unit == 0) { 2007 #ifndef ROOTDEVNAME 2008 rootdevnames[0] = MD_ROOT_FSTYPE ":/dev/md0"; 2009 #endif 2010 #ifdef MD_ROOT_READONLY 2011 sc->flags |= MD_READONLY; 2012 #endif 2013 } 2014 #endif 2015 mdinit(sc); 2016 if (name != NULL) { 2017 printf("%s%d: Preloaded image <%s> %zd bytes at %p\n", 2018 MD_NAME, sc->unit, name, length, image); 2019 } else { 2020 printf("%s%d: Embedded image %zd bytes at %p\n", 2021 MD_NAME, sc->unit, length, image); 2022 } 2023 } 2024 2025 static void 2026 g_md_init(struct g_class *mp __unused) 2027 { 2028 caddr_t mod; 2029 u_char *ptr, *name, *type; 2030 unsigned len; 2031 int i; 2032 2033 /* figure out log2(NINDIR) */ 2034 for (i = NINDIR, nshift = -1; i; nshift++) 2035 i >>= 1; 2036 2037 mod = NULL; 2038 sx_init(&md_sx, "MD config lock"); 2039 g_topology_unlock(); 2040 md_uh = new_unrhdr(0, INT_MAX, NULL); 2041 #ifdef MD_ROOT 2042 if (mfs_root_size != 0) { 2043 sx_xlock(&md_sx); 2044 #ifdef MD_ROOT_MEM 2045 md_preloaded(mfs_root, mfs_root_size, NULL); 2046 #else 2047 md_preloaded(__DEVOLATILE(u_char *, &mfs_root), mfs_root_size, 2048 NULL); 2049 #endif 2050 sx_xunlock(&md_sx); 2051 } 2052 #endif 2053 /* XXX: are preload_* static or do they need Giant ? */ 2054 while ((mod = preload_search_next_name(mod)) != NULL) { 2055 name = (char *)preload_search_info(mod, MODINFO_NAME); 2056 if (name == NULL) 2057 continue; 2058 type = (char *)preload_search_info(mod, MODINFO_TYPE); 2059 if (type == NULL) 2060 continue; 2061 if (strcmp(type, "md_image") && strcmp(type, "mfs_root")) 2062 continue; 2063 ptr = preload_fetch_addr(mod); 2064 len = preload_fetch_size(mod); 2065 if (ptr != NULL && len != 0) { 2066 sx_xlock(&md_sx); 2067 md_preloaded(ptr, len, name); 2068 sx_xunlock(&md_sx); 2069 } 2070 } 2071 md_pbuf_zone = pbuf_zsecond_create("mdpbuf", nswbuf / 10); 2072 status_dev = make_dev(&mdctl_cdevsw, INT_MAX, UID_ROOT, GID_WHEEL, 2073 0600, MDCTL_NAME); 2074 g_topology_lock(); 2075 } 2076 2077 static void 2078 g_md_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, 2079 struct g_consumer *cp __unused, struct g_provider *pp) 2080 { 2081 struct md_s *mp; 2082 char *type; 2083 2084 mp = gp->softc; 2085 if (mp == NULL) 2086 return; 2087 2088 switch (mp->type) { 2089 case MD_MALLOC: 2090 type = "malloc"; 2091 break; 2092 case MD_PRELOAD: 2093 type = "preload"; 2094 break; 2095 case MD_VNODE: 2096 type = "vnode"; 2097 break; 2098 case MD_SWAP: 2099 type = "swap"; 2100 break; 2101 case MD_NULL: 2102 type = "null"; 2103 break; 2104 default: 2105 type = "unknown"; 2106 break; 2107 } 2108 2109 if (pp != NULL) { 2110 if (indent == NULL) { 2111 sbuf_printf(sb, " u %d", mp->unit); 2112 sbuf_printf(sb, " s %ju", (uintmax_t) mp->sectorsize); 2113 sbuf_printf(sb, " f %ju", (uintmax_t) mp->fwheads); 2114 sbuf_printf(sb, " fs %ju", (uintmax_t) mp->fwsectors); 2115 sbuf_printf(sb, " l %ju", (uintmax_t) mp->mediasize); 2116 sbuf_printf(sb, " t %s", type); 2117 if ((mp->type == MD_VNODE && mp->vnode != NULL) || 2118 (mp->type == MD_PRELOAD && mp->file[0] != '\0')) 2119 sbuf_printf(sb, " file %s", mp->file); 2120 sbuf_printf(sb, " label %s", mp->label); 2121 } else { 2122 sbuf_printf(sb, "%s<unit>%d</unit>\n", indent, 2123 mp->unit); 2124 sbuf_printf(sb, "%s<sectorsize>%ju</sectorsize>\n", 2125 indent, (uintmax_t) mp->sectorsize); 2126 sbuf_printf(sb, "%s<fwheads>%ju</fwheads>\n", 2127 indent, (uintmax_t) mp->fwheads); 2128 sbuf_printf(sb, "%s<fwsectors>%ju</fwsectors>\n", 2129 indent, (uintmax_t) mp->fwsectors); 2130 if (mp->ident[0] != '\0') { 2131 sbuf_printf(sb, "%s<ident>", indent); 2132 g_conf_printf_escaped(sb, "%s", mp->ident); 2133 sbuf_printf(sb, "</ident>\n"); 2134 } 2135 sbuf_printf(sb, "%s<length>%ju</length>\n", 2136 indent, (uintmax_t) mp->mediasize); 2137 sbuf_printf(sb, "%s<compression>%s</compression>\n", indent, 2138 (mp->flags & MD_COMPRESS) == 0 ? "off": "on"); 2139 sbuf_printf(sb, "%s<access>%s</access>\n", indent, 2140 (mp->flags & MD_READONLY) == 0 ? "read-write": 2141 "read-only"); 2142 sbuf_printf(sb, "%s<type>%s</type>\n", indent, 2143 type); 2144 if ((mp->type == MD_VNODE && mp->vnode != NULL) || 2145 (mp->type == MD_PRELOAD && mp->file[0] != '\0')) { 2146 sbuf_printf(sb, "%s<file>", indent); 2147 g_conf_printf_escaped(sb, "%s", mp->file); 2148 sbuf_printf(sb, "</file>\n"); 2149 } 2150 if (mp->type == MD_VNODE) 2151 sbuf_printf(sb, "%s<cache>%s</cache>\n", indent, 2152 (mp->flags & MD_CACHE) == 0 ? "off": "on"); 2153 sbuf_printf(sb, "%s<label>", indent); 2154 g_conf_printf_escaped(sb, "%s", mp->label); 2155 sbuf_printf(sb, "</label>\n"); 2156 } 2157 } 2158 } 2159 2160 static void 2161 g_md_fini(struct g_class *mp __unused) 2162 { 2163 2164 sx_destroy(&md_sx); 2165 if (status_dev != NULL) 2166 destroy_dev(status_dev); 2167 uma_zdestroy(md_pbuf_zone); 2168 delete_unrhdr(md_uh); 2169 } 2170