sys/dev/disk/md/md.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 | /* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * * $FreeBSD: src/sys/dev/md/md.c,v 1.8.2.2 2002/08/19 17:43:34 jdp Exp $ * */ #include "opt_md.h" /* We have adopted some tasks from MFS */ #include <sys/param.h> #include <sys/systm.h> #include <sys/buf.h> #include <sys/conf.h> #include <sys/devicestat.h> #include <sys/disk.h> #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/sysctl.h> #include <sys/linker.h> #include <sys/proc.h> #include <sys/buf2.h> #include <sys/thread2.h> #include <sys/queue.h> #include <sys/udev.h> #ifndef MD_NSECT #define MD_NSECT (10000 * 2) #endif MALLOC_DEFINE(M_MD, "MD disk", "Memory Disk"); MALLOC_DEFINE(M_MDSECT, "MD sectors", "Memory Disk Sectors"); static int md_debug; SYSCTL_INT(_debug, OID_AUTO, mddebug, CTLFLAG_RW, &md_debug, 0, "Enable debug output for memory disk devices"); #if defined(MD_ROOT) && defined(MD_ROOT_SIZE) /* Image gets put here: */ static u_char mfs_root[MD_ROOT_SIZE*1024] = "MFS Filesystem goes here"; static u_char end_mfs_root[] __unused = "MFS Filesystem had better STOP here"; #endif static int mdrootready; static d_strategy_t mdstrategy; static d_strategy_t mdstrategy_preload; static d_strategy_t mdstrategy_malloc; static d_open_t mdopen; static d_close_t mdclose; static d_ioctl_t mdioctl; static struct dev_ops md_ops = { { "md", 0, D_DISK | D_CANFREE | D_MEMDISK | D_TRACKCLOSE | D_MPSAFE}, .d_open = mdopen, .d_close = mdclose, .d_read = physread, .d_write = physwrite, .d_ioctl = mdioctl, .d_strategy = mdstrategy, }; struct md_s { struct lwkt_token tok; int unit; struct devstat stats; struct bio_queue_head bio_queue; struct disk disk; cdev_t dev; int busy; enum { /* Memory disk type */ MD_MALLOC, MD_PRELOAD } type; unsigned nsect; /* MD_MALLOC related fields */ unsigned nsecp; u_char **secp; /* MD_PRELOAD related fields */ u_char *pl_ptr; unsigned pl_len; TAILQ_ENTRY(md_s) link; }; TAILQ_HEAD(mdshead, md_s) mdlist = TAILQ_HEAD_INITIALIZER(mdlist); static int mdunits; static int refcnt; static struct md_s *mdcreate(unsigned); static void mdcreate_malloc(void); static int mdinit(module_t, int, void *); static void md_drvinit(void *); static int md_drvcleanup(void); static int mdinit(module_t mod, int cmd, void *arg) { int ret = 0; switch(cmd) { case MOD_LOAD: TAILQ_INIT(&mdlist); md_drvinit(NULL); break; case MOD_UNLOAD: ret = md_drvcleanup(); break; default: ret = EINVAL; break; } return (ret); } static int mdopen(struct dev_open_args *ap) { cdev_t dev = ap->a_head.a_dev; struct md_s *sc; if (md_debug) { kprintf("mdopen(%s %x %x)\n", devtoname(dev), ap->a_oflags, ap->a_devtype); } sc = dev->si_drv1; lwkt_gettoken(&sc->tok); if (sc->unit + 1 == mdunits) mdcreate_malloc(); atomic_add_int(&refcnt, 1); lwkt_reltoken(&sc->tok); return (0); } static int mdclose(struct dev_close_args *ap) { cdev_t dev = ap->a_head.a_dev; struct md_s *sc; if (md_debug) { kprintf("mdclose(%s %x %x)\n", devtoname(dev), ap->a_fflag, ap->a_devtype); } sc = dev->si_drv1; lwkt_gettoken(&sc->tok); atomic_add_int(&refcnt, -1); lwkt_reltoken(&sc->tok); return (0); } static int mdioctl(struct dev_ioctl_args *ap) { cdev_t dev = ap->a_head.a_dev; if (md_debug) { kprintf("mdioctl(%s %lx %p %x)\n", devtoname(dev), ap->a_cmd, ap->a_data, ap->a_fflag); } return (ENOIOCTL); } static int mdstrategy(struct dev_strategy_args *ap) { cdev_t dev = ap->a_head.a_dev; struct bio *bio = ap->a_bio; struct buf *bp = bio->bio_buf; struct md_s *sc; if (md_debug > 1) { kprintf("mdstrategy(%p) %s %08x, %lld, %d, %p)\n", bp, devtoname(dev), bp->b_flags, (long long)bio->bio_offset, bp->b_bcount, bp->b_data); } bio->bio_driver_info = dev; sc = dev->si_drv1; lwkt_gettoken(&sc->tok); if (sc->type == MD_MALLOC) { mdstrategy_malloc(ap); } else { mdstrategy_preload(ap); } lwkt_reltoken(&sc->tok); return(0); } static int mdstrategy_malloc(struct dev_strategy_args *ap) { cdev_t dev = ap->a_head.a_dev; struct bio *bio = ap->a_bio; struct buf *bp = bio->bio_buf; unsigned secno, nsec, secval, uc; u_char *secp, **secpp, *dst; struct md_s *sc; int i; if (md_debug > 1) kprintf("mdstrategy_malloc(%p) %s %08xx, %lld, %d, %p)\n", bp, devtoname(dev), bp->b_flags, (long long)bio->bio_offset, bp->b_bcount, bp->b_data); sc = dev->si_drv1; crit_enter(); bioqdisksort(&sc->bio_queue, bio); if (sc->busy) { crit_exit(); return(0); } sc->busy++; while (1) { bio = bioq_first(&sc->bio_queue); if (bio == NULL) { crit_exit(); break; } crit_exit(); bioq_remove(&sc->bio_queue, bio); bp = bio->bio_buf; devstat_start_transaction(&sc->stats); switch (bp->b_cmd) { case BUF_CMD_FREEBLKS: case BUF_CMD_READ: case BUF_CMD_WRITE: break; default: panic("md: bad b_cmd %d", bp->b_cmd); } nsec = bp->b_bcount >> DEV_BSHIFT; secno = (unsigned)(bio->bio_offset >> DEV_BSHIFT); dst = bp->b_data; while (nsec--) { if (secno < sc->nsecp) { secpp = &sc->secp[secno]; if ((u_int)(uintptr_t)*secpp > 255) { secp = *secpp; secval = 0; } else { secp = NULL; secval = (u_int)(uintptr_t)*secpp; } } else { secpp = NULL; secp = NULL; secval = 0; } if (md_debug > 2) kprintf("%08x %p %p %d\n", bp->b_flags, secpp, secp, secval); switch (bp->b_cmd) { case BUF_CMD_FREEBLKS: if (secpp) { if (secp) kfree(secp, M_MDSECT); *secpp = NULL; } break; case BUF_CMD_READ: if (secp) { bcopy(secp, dst, DEV_BSIZE); } else if (secval) { for (i = 0; i < DEV_BSIZE; i++) dst[i] = secval; } else { bzero(dst, DEV_BSIZE); } break; case BUF_CMD_WRITE: uc = dst[0]; for (i = 1; i < DEV_BSIZE; i++) if (dst[i] != uc) break; if (i == DEV_BSIZE && !uc) { if (secp) kfree(secp, M_MDSECT); if (secpp) *secpp = (u_char *)(uintptr_t)uc; } else { if (!secpp) { secpp = kmalloc((secno + nsec + 1) * sizeof(u_char *), M_MD, M_WAITOK | M_ZERO); bcopy(sc->secp, secpp, sc->nsecp * sizeof(u_char *)); kfree(sc->secp, M_MD); sc->secp = secpp; sc->nsecp = secno + nsec + 1; secpp = &sc->secp[secno]; } if (i == DEV_BSIZE) { if (secp) kfree(secp, M_MDSECT); *secpp = (u_char *)(uintptr_t)uc; } else { if (!secp) secp = kmalloc(DEV_BSIZE, M_MDSECT, M_WAITOK); bcopy(dst, secp, DEV_BSIZE); *secpp = secp; } } break; default: panic("md: bad b_cmd %d", bp->b_cmd); } secno++; dst += DEV_BSIZE; } bp->b_resid = 0; devstat_end_transaction_buf(&sc->stats, bp); biodone(bio); crit_enter(); } sc->busy = 0; return(0); } static int mdstrategy_preload(struct dev_strategy_args *ap) { cdev_t dev = ap->a_head.a_dev; struct bio *bio = ap->a_bio; struct buf *bp = bio->bio_buf; struct md_s *sc; if (md_debug > 1) kprintf("mdstrategy_preload(%p) %s %08x, %lld, %d, %p)\n", bp, devtoname(dev), bp->b_flags, (long long)bio->bio_offset, bp->b_bcount, bp->b_data); sc = dev->si_drv1; crit_enter(); bioqdisksort(&sc->bio_queue, bio); if (sc->busy) { crit_exit(); return(0); } sc->busy++; while (1) { bio = bioq_takefirst(&sc->bio_queue); crit_exit(); if (bio == NULL) break; devstat_start_transaction(&sc->stats); switch (bp->b_cmd) { case BUF_CMD_FREEBLKS: break; case BUF_CMD_READ: bcopy(sc->pl_ptr + bio->bio_offset, bp->b_data, bp->b_bcount); break; case BUF_CMD_WRITE: bcopy(bp->b_data, sc->pl_ptr + bio->bio_offset, bp->b_bcount); break; default: panic("md: bad cmd %d", bp->b_cmd); } bp->b_resid = 0; devstat_end_transaction_buf(&sc->stats, bp); biodone(bio); crit_enter(); } sc->busy = 0; return(0); } static struct md_s * mdcreate(unsigned length) { struct md_s *sc; struct disk_info info; sc = kmalloc(sizeof(*sc), M_MD, M_WAITOK | M_ZERO); lwkt_token_init(&sc->tok, "md"); sc->unit = mdunits++; bioq_init(&sc->bio_queue); devstat_add_entry(&sc->stats, "md", sc->unit, DEV_BSIZE, DEVSTAT_NO_ORDERED_TAGS, DEVSTAT_TYPE_DIRECT | DEVSTAT_TYPE_IF_OTHER, DEVSTAT_PRIORITY_OTHER); sc->dev = disk_create(sc->unit, &sc->disk, &md_ops); sc->dev->si_drv1 = sc; sc->dev->si_iosize_max = MAXPHYS; disk_setdisktype(&sc->disk, "memory"); bzero(&info, sizeof(info)); info.d_media_blksize = DEV_BSIZE; /* mandatory */ info.d_media_blocks = length / DEV_BSIZE; info.d_secpertrack = 1024; /* optional */ info.d_nheads = 1; info.d_secpercyl = info.d_secpertrack * info.d_nheads; info.d_ncylinders = (u_int)(info.d_media_blocks / info.d_secpercyl); disk_setdiskinfo(&sc->disk, &info); TAILQ_INSERT_HEAD(&mdlist, sc, link); return (sc); } static void mdcreate_preload(u_char *image, unsigned length) { struct md_s *sc; sc = mdcreate(length); sc->type = MD_PRELOAD; sc->nsect = length / DEV_BSIZE; sc->pl_ptr = image; sc->pl_len = length; if (sc->unit == 0) mdrootready = 1; } static void mdcreate_malloc(void) { struct md_s *sc; sc = mdcreate(MD_NSECT*DEV_BSIZE); sc->type = MD_MALLOC; sc->nsect = MD_NSECT; /* for now */ sc->secp = kmalloc(sizeof(u_char *), M_MD, M_WAITOK | M_ZERO); sc->nsecp = 1; kprintf("md%d: Malloc disk\n", sc->unit); } static int md_drvcleanup(void) { int secno; struct md_s *sc, *sc_temp; if (atomic_fetchadd_int(&refcnt, 0) != 0) return EBUSY; /* * Go through all the md devices, freeing up all the * memory allocated for sectors, and the md_s struct * itself. */ TAILQ_FOREACH_MUTABLE(sc, &mdlist, link, sc_temp) { for (secno = 0; secno < sc->nsecp; secno++) { if ((u_int)(uintptr_t)sc->secp[secno] > 255) kfree(sc->secp[secno], M_MDSECT); } if (sc->dev != NULL) disk_destroy(&sc->disk); devstat_remove_entry(&sc->stats); TAILQ_REMOVE(&mdlist, sc, link); kfree(sc->secp, M_MD); kfree(sc, M_MD); } return 0; } static void md_drvinit(void *unused) { caddr_t mod; caddr_t c; u_char *ptr, *name, *type; unsigned len; #ifdef MD_ROOT_SIZE mdcreate_preload(mfs_root, MD_ROOT_SIZE*1024); #endif mod = NULL; while ((mod = preload_search_next_name(mod)) != NULL) { name = (char *)preload_search_info(mod, MODINFO_NAME); type = (char *)preload_search_info(mod, MODINFO_TYPE); if (name == NULL) continue; if (type == NULL) continue; if (strcmp(type, "md_image") && strcmp(type, "mfs_root")) continue; c = preload_search_info(mod, MODINFO_ADDR); ptr = *(u_char **)c; c = preload_search_info(mod, MODINFO_SIZE); len = *(unsigned *)c; kprintf("md%d: Preloaded image <%s> %d bytes at %p\n", mdunits, name, len, ptr); mdcreate_preload(ptr, len); } mdcreate_malloc(); } DEV_MODULE(md, mdinit, NULL); #ifdef MD_ROOT static void md_takeroot(void *junk) { if (mdrootready) rootdevnames[0] = "ufs:/dev/md0s0"; } SYSINIT(md_root, SI_SUB_MOUNT_ROOT, SI_ORDER_FIRST, md_takeroot, NULL); #endif |