/* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * 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$ * */ #include #include #include #include #include #include #include #include #include MALLOC_DEFINE(M_DISK, "disk", "disk data"); static d_strategy_t diskstrategy; static d_open_t diskopen; static d_close_t diskclose; static d_ioctl_t diskioctl; static d_psize_t diskpsize; static struct cdevsw disk_cdevsw = { /* open */ diskopen, /* close */ diskclose, /* read */ physread, /* write */ physwrite, /* ioctl */ diskioctl, /* stop */ nostop, /* reset */ noreset, /* devtotty */ nodevtotty, /* poll */ nopoll, /* mmap */ nommap, /* strategy */ diskstrategy, /* name */ "disk", /* parms */ noparms, /* maj */ -1, /* dump */ nodump, /* psize */ diskpsize, /* flags */ D_DISK, /* maxio */ 0, /* bmaj */ -1, }; dev_t disk_create(int unit, struct disk *dp, int flags, struct cdevsw *cdevsw) { dev_t dev; struct cdevsw *cds; dev = makedev(cdevsw->d_maj, 0); cds = devsw(dev); if (!cds) { /* Build the "real" cdevsw */ MALLOC(cds, struct cdevsw *, sizeof(*cds), M_DISK, M_WAITOK); *cds = disk_cdevsw; cds->d_name = cdevsw->d_name; cds->d_maj = cdevsw->d_maj; cds->d_bmaj = cdevsw->d_bmaj; cds->d_flags = cdevsw->d_flags & ~D_TRACKCLOSE; cds->d_dump = cdevsw->d_dump; cdevsw_add(cds); } printf("Creating DISK %s%d\n", cds->d_name, unit); dev = make_dev(cds, dkmakeminor(unit, WHOLE_DISK_SLICE, RAW_PART), 0, 0, 0, "r%s%d", cds->d_name, unit); bzero(dp, sizeof(*dp)); dp->d_devsw = cdevsw; dev->si_disk = dp; dp->d_dev = dev; dp->d_flags = flags; return (dev); } int disk_dumpcheck(dev_t dev, u_int *count, u_int *blkno, u_int *secsize) { struct disk *dp; struct disklabel *dl; u_int boff; dp = dev->si_disk; if (!dp) return (ENXIO); if (!dp->d_slice) return (ENXIO); dl = dsgetlabel(dev, dp->d_slice); if (!dl) return (ENXIO); *count = (u_long)Maxmem * PAGE_SIZE / dl->d_secsize; if (dumplo < 0 || (dumplo + *count > dl->d_partitions[dkpart(dev)].p_size)) return (EINVAL); boff = dl->d_partitions[dkpart(dev)].p_offset + dp->d_slice->dss_slices[dkslice(dev)].ds_offset; *blkno = boff + dumplo; *secsize = dl->d_secsize; return (0); } void disk_invalidate (struct disk *disk) { dsgone(&disk->d_slice); } void disk_delete(dev_t dev) { return; } /* * The cdevsw functions */ static int diskopen(dev_t dev, int oflags, int devtype, struct proc *p) { dev_t pdev; struct disk *dp; int error; error = 0; pdev = dkmodpart(dkmodslice(dev, WHOLE_DISK_SLICE), RAW_PART); dp = pdev->si_disk; if (!dp) return (ENXIO); dev->si_disk = dp; dev->si_drv1 = pdev->si_drv1; dev->si_drv2 = pdev->si_drv2; if (!dsisopen(dp->d_slice)) error = dp->d_devsw->d_open(dev, oflags, devtype, p); if (error) return(error); error = dsopen(dev, devtype, dp->d_flags, &dp->d_slice, &dp->d_label); if (!dsisopen(dp->d_slice)) dp->d_devsw->d_close(dev, oflags, devtype, p); return(error); } static int diskclose(dev_t dev, int fflag, int devtype, struct proc *p) { struct disk *dp; int error; error = 0; dp = dev->si_disk; dsclose(dev, devtype, dp->d_slice); if (dsisopen(dp->d_slice)) error = dp->d_devsw->d_close(dev, fflag, devtype, p); return (error); } static void diskstrategy(struct buf *bp) { dev_t pdev; struct disk *dp; dp = bp->b_dev->si_disk; if (!dp) { pdev = dkmodpart(dkmodslice(bp->b_dev, WHOLE_DISK_SLICE), RAW_PART); dp = pdev->si_disk; bp->b_dev->si_drv1 = pdev->si_drv1; bp->b_dev->si_drv2 = pdev->si_drv2; /* XXX: don't set bp->b_dev->si_disk (?) */ } else { pdev = dp->d_dev; } if (!dp) { bp->b_error = ENXIO; bp->b_flags |= B_ERROR; biodone(bp); return; } if (dscheck(bp, dp->d_slice) < 0) { biodone(bp); return; } dp->d_devsw->d_strategy(bp); return; } static int diskioctl(dev_t dev, u_long cmd, caddr_t data, int fflag, struct proc *p) { struct disk *dp; int error; dp = dev->si_disk; error = dsioctl(dev, cmd, data, fflag, &dp->d_slice); if (error == ENOIOCTL) error = dp->d_devsw->d_ioctl(dev, cmd, data, fflag, p); return (error); } static int diskpsize(dev_t dev) { struct disk *dp; dev_t pdev; dp = dev->si_disk; if (!dp) { pdev = dkmodpart(dkmodslice(dev, WHOLE_DISK_SLICE), RAW_PART); dp = pdev->si_disk; dev->si_drv1 = pdev->si_drv1; dev->si_drv2 = pdev->si_drv2; /* XXX: don't set bp->b_dev->si_disk (?) */ } return (dssize(dev, &dp->d_slice)); }