Home | History | Annotate | Line # | Download | only in dev
ld.c revision 1.54.6.5
      1  1.54.6.4       mjf /*	$NetBSD: ld.c,v 1.54.6.5 2008/06/29 09:33:04 mjf Exp $	*/
      2       1.1        ad 
      3       1.1        ad /*-
      4       1.1        ad  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5       1.1        ad  * All rights reserved.
      6       1.1        ad  *
      7       1.1        ad  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1        ad  * by Andrew Doran and Charles M. Hannum.
      9       1.1        ad  *
     10       1.1        ad  * Redistribution and use in source and binary forms, with or without
     11       1.1        ad  * modification, are permitted provided that the following conditions
     12       1.1        ad  * are met:
     13       1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14       1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15       1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17       1.1        ad  *    documentation and/or other materials provided with the distribution.
     18       1.1        ad  *
     19       1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1        ad  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1        ad  */
     31       1.1        ad 
     32       1.1        ad /*
     33       1.1        ad  * Disk driver for use by RAID controllers.
     34       1.1        ad  */
     35      1.12     lukem 
     36      1.12     lukem #include <sys/cdefs.h>
     37  1.54.6.4       mjf __KERNEL_RCSID(0, "$NetBSD: ld.c,v 1.54.6.5 2008/06/29 09:33:04 mjf Exp $");
     38       1.1        ad 
     39       1.1        ad #include "rnd.h"
     40       1.1        ad 
     41       1.1        ad #include <sys/param.h>
     42       1.1        ad #include <sys/systm.h>
     43       1.1        ad #include <sys/kernel.h>
     44       1.1        ad #include <sys/device.h>
     45       1.1        ad #include <sys/queue.h>
     46       1.1        ad #include <sys/proc.h>
     47       1.1        ad #include <sys/buf.h>
     48      1.33      yamt #include <sys/bufq.h>
     49       1.1        ad #include <sys/endian.h>
     50       1.1        ad #include <sys/disklabel.h>
     51       1.1        ad #include <sys/disk.h>
     52       1.1        ad #include <sys/dkio.h>
     53       1.1        ad #include <sys/stat.h>
     54       1.1        ad #include <sys/conf.h>
     55       1.1        ad #include <sys/fcntl.h>
     56       1.2        ad #include <sys/vnode.h>
     57       1.1        ad #include <sys/syslog.h>
     58      1.44        ad #include <sys/mutex.h>
     59       1.1        ad #if NRND > 0
     60       1.1        ad #include <sys/rnd.h>
     61       1.1        ad #endif
     62       1.1        ad 
     63       1.1        ad #include <dev/ldvar.h>
     64       1.1        ad 
     65      1.43       riz #include <prop/proplib.h>
     66      1.43       riz 
     67       1.1        ad static void	ldgetdefaultlabel(struct ld_softc *, struct disklabel *);
     68       1.1        ad static void	ldgetdisklabel(struct ld_softc *);
     69       1.1        ad static void	ldminphys(struct buf *bp);
     70  1.54.6.1       mjf static bool	ld_shutdown(device_t, int);
     71      1.44        ad static void	ldstart(struct ld_softc *, struct buf *);
     72      1.43       riz static void	ld_set_properties(struct ld_softc *);
     73      1.45       riz static void	ld_config_interrupts (struct device *);
     74       1.1        ad 
     75       1.1        ad extern struct	cfdriver ld_cd;
     76       1.1        ad 
     77      1.29   thorpej static dev_type_open(ldopen);
     78      1.29   thorpej static dev_type_close(ldclose);
     79      1.29   thorpej static dev_type_read(ldread);
     80      1.29   thorpej static dev_type_write(ldwrite);
     81      1.29   thorpej static dev_type_ioctl(ldioctl);
     82      1.29   thorpej static dev_type_strategy(ldstrategy);
     83      1.29   thorpej static dev_type_dump(lddump);
     84      1.29   thorpej static dev_type_size(ldsize);
     85      1.16   gehenna 
     86      1.16   gehenna const struct bdevsw ld_bdevsw = {
     87      1.16   gehenna 	ldopen, ldclose, ldstrategy, ldioctl, lddump, ldsize, D_DISK
     88      1.16   gehenna };
     89      1.16   gehenna 
     90      1.16   gehenna const struct cdevsw ld_cdevsw = {
     91      1.16   gehenna 	ldopen, ldclose, ldread, ldwrite, ldioctl,
     92      1.17  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter, D_DISK
     93      1.16   gehenna };
     94      1.16   gehenna 
     95      1.30   thorpej static struct	dkdriver lddkdriver = { ldstrategy, ldminphys };
     96       1.1        ad 
     97       1.1        ad void
     98       1.1        ad ldattach(struct ld_softc *sc)
     99       1.1        ad {
    100      1.37  christos 	char tbuf[9];
    101  1.54.6.2       mjf 	int i, unit, cmaj, bmaj;
    102       1.1        ad 
    103      1.53        ad 	mutex_init(&sc->sc_mutex, MUTEX_DEFAULT, IPL_VM);
    104      1.44        ad 
    105       1.7        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0) {
    106  1.54.6.4       mjf 		aprint_normal_dev(&sc->sc_dv, "disabled\n");
    107       1.7        ad 		return;
    108       1.7        ad 	}
    109       1.7        ad 
    110       1.1        ad 	/* Initialise and attach the disk structure. */
    111  1.54.6.4       mjf 	disk_init(&sc->sc_dk, device_xname(&sc->sc_dv), &lddkdriver);
    112       1.1        ad 	disk_attach(&sc->sc_dk);
    113       1.1        ad 
    114       1.1        ad 	if (sc->sc_maxxfer > MAXPHYS)
    115       1.1        ad 		sc->sc_maxxfer = MAXPHYS;
    116       1.9        ad 
    117      1.19   thorpej 	/* Build synthetic geometry if necessary. */
    118      1.19   thorpej 	if (sc->sc_nheads == 0 || sc->sc_nsectors == 0 ||
    119      1.19   thorpej 	    sc->sc_ncylinders == 0) {
    120      1.28       dbj 		uint64_t ncyl;
    121      1.28       dbj 
    122      1.19   thorpej 		if (sc->sc_secperunit <= 528 * 2048)		/* 528MB */
    123      1.19   thorpej 			sc->sc_nheads = 16;
    124      1.19   thorpej 		else if (sc->sc_secperunit <= 1024 * 2048)	/* 1GB */
    125      1.19   thorpej 			sc->sc_nheads = 32;
    126      1.19   thorpej 		else if (sc->sc_secperunit <= 21504 * 2048)	/* 21GB */
    127      1.19   thorpej 			sc->sc_nheads = 64;
    128      1.19   thorpej 		else if (sc->sc_secperunit <= 43008 * 2048)	/* 42GB */
    129      1.19   thorpej 			sc->sc_nheads = 128;
    130      1.19   thorpej 		else
    131      1.19   thorpej 			sc->sc_nheads = 255;
    132      1.19   thorpej 
    133      1.19   thorpej 		sc->sc_nsectors = 63;
    134      1.28       dbj 		sc->sc_ncylinders = INT_MAX;
    135      1.35     perry 		ncyl = sc->sc_secperunit /
    136      1.19   thorpej 		    (sc->sc_nheads * sc->sc_nsectors);
    137      1.28       dbj 		if (ncyl < INT_MAX)
    138      1.28       dbj 			sc->sc_ncylinders = (int)ncyl;
    139      1.19   thorpej 	}
    140       1.1        ad 
    141      1.37  christos 	format_bytes(tbuf, sizeof(tbuf), sc->sc_secperunit *
    142       1.1        ad 	    sc->sc_secsize);
    143  1.54.6.4       mjf 	aprint_normal_dev(&sc->sc_dv, "%s, %d cyl, %d head, %d sec, %d bytes/sect x %"PRIu64" sectors\n",
    144  1.54.6.4       mjf 	    tbuf, sc->sc_ncylinders, sc->sc_nheads,
    145       1.1        ad 	    sc->sc_nsectors, sc->sc_secsize, sc->sc_secperunit);
    146       1.1        ad 
    147      1.43       riz 	ld_set_properties(sc);
    148      1.43       riz 
    149       1.1        ad #if NRND > 0
    150       1.1        ad 	/* Attach the device into the rnd source list. */
    151  1.54.6.4       mjf 	rnd_attach_source(&sc->sc_rnd_source, device_xname(&sc->sc_dv),
    152       1.1        ad 	    RND_TYPE_DISK, 0);
    153       1.1        ad #endif
    154       1.1        ad 
    155  1.54.6.1       mjf 	/* Register with PMF */
    156  1.54.6.1       mjf 	if (!pmf_device_register1(&sc->sc_dv, NULL, NULL, ld_shutdown))
    157  1.54.6.1       mjf 		aprint_error_dev(&sc->sc_dv,
    158  1.54.6.1       mjf 		    "couldn't establish power handler\n");
    159  1.54.6.1       mjf 
    160      1.38      yamt 	bufq_alloc(&sc->sc_bufq, BUFQ_DISK_DEFAULT_STRAT, BUFQ_SORT_RAWBLOCK);
    161      1.30   thorpej 
    162      1.30   thorpej 	/* Discover wedges on this disk. */
    163      1.45       riz 	config_interrupts(&sc->sc_dv, ld_config_interrupts);
    164  1.54.6.2       mjf 
    165  1.54.6.2       mjf 	cmaj = cdevsw_lookup_major(&ld_cdevsw);
    166  1.54.6.2       mjf 	bmaj = bdevsw_lookup_major(&ld_bdevsw);
    167  1.54.6.2       mjf 	unit = device_unit(&sc->sc_dv);
    168  1.54.6.2       mjf 
    169  1.54.6.2       mjf 	for (i = 0; i < MAXPARTITIONS; i++) {
    170  1.54.6.2       mjf 		device_register_name(MAKEDISKDEV(cmaj, unit, i), &sc->sc_dv,
    171  1.54.6.2       mjf 		    true, DEV_DISK, "rld%d%c", unit, 'a' + i);
    172  1.54.6.2       mjf 		device_register_name(MAKEDISKDEV(bmaj, unit, i), &sc->sc_dv,
    173  1.54.6.2       mjf 		    false, DEV_DISK, "ld%d%c", unit, 'a' + i);
    174  1.54.6.2       mjf 	}
    175  1.54.6.2       mjf 
    176       1.1        ad }
    177       1.1        ad 
    178       1.3        ad int
    179      1.37  christos ldadjqparam(struct ld_softc *sc, int xmax)
    180       1.3        ad {
    181      1.24   thorpej 	int s;
    182       1.7        ad 
    183       1.7        ad 	s = splbio();
    184      1.37  christos 	sc->sc_maxqueuecnt = xmax;
    185       1.7        ad 	splx(s);
    186       1.7        ad 
    187      1.24   thorpej 	return (0);
    188       1.7        ad }
    189       1.7        ad 
    190       1.7        ad int
    191       1.7        ad ldbegindetach(struct ld_softc *sc, int flags)
    192       1.7        ad {
    193      1.24   thorpej 	int s, rv = 0;
    194       1.7        ad 
    195       1.7        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    196       1.7        ad 		return (0);
    197       1.3        ad 
    198       1.3        ad 	if ((flags & DETACH_FORCE) == 0 && sc->sc_dk.dk_openmask != 0)
    199       1.3        ad 		return (EBUSY);
    200       1.3        ad 
    201       1.3        ad 	s = splbio();
    202      1.24   thorpej 	sc->sc_maxqueuecnt = 0;
    203       1.7        ad 	sc->sc_flags |= LDF_DETACH;
    204      1.24   thorpej 	while (sc->sc_queuecnt > 0) {
    205      1.24   thorpej 		sc->sc_flags |= LDF_DRAIN;
    206      1.24   thorpej 		rv = tsleep(&sc->sc_queuecnt, PRIBIO, "lddrn", 0);
    207      1.24   thorpej 		if (rv)
    208      1.24   thorpej 			break;
    209      1.24   thorpej 	}
    210       1.3        ad 	splx(s);
    211       1.7        ad 
    212       1.7        ad 	return (rv);
    213       1.3        ad }
    214       1.3        ad 
    215       1.2        ad void
    216       1.7        ad ldenddetach(struct ld_softc *sc)
    217       1.2        ad {
    218      1.13  drochner 	int s, bmaj, cmaj, i, mn;
    219       1.2        ad 
    220       1.7        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    221       1.7        ad 		return;
    222       1.7        ad 
    223       1.2        ad 	/* Wait for commands queued with the hardware to complete. */
    224       1.2        ad 	if (sc->sc_queuecnt != 0)
    225       1.7        ad 		if (tsleep(&sc->sc_queuecnt, PRIBIO, "lddtch", 30 * hz))
    226  1.54.6.4       mjf 			printf("%s: not drained\n", device_xname(&sc->sc_dv));
    227       1.2        ad 
    228  1.54.6.3       mjf 	device_deregister_all(&sc->sc_dv);
    229  1.54.6.2       mjf 
    230       1.2        ad 	/* Locate the major numbers. */
    231      1.16   gehenna 	bmaj = bdevsw_lookup_major(&ld_bdevsw);
    232      1.16   gehenna 	cmaj = cdevsw_lookup_major(&ld_cdevsw);
    233       1.2        ad 
    234       1.2        ad 	/* Kill off any queued buffers. */
    235       1.2        ad 	s = splbio();
    236      1.38      yamt 	bufq_drain(sc->sc_bufq);
    237      1.36      yamt 	splx(s);
    238      1.36      yamt 
    239      1.38      yamt 	bufq_free(sc->sc_bufq);
    240       1.2        ad 
    241       1.2        ad 	/* Nuke the vnodes for any open instances. */
    242      1.13  drochner 	for (i = 0; i < MAXPARTITIONS; i++) {
    243      1.40   thorpej 		mn = DISKMINOR(device_unit(&sc->sc_dv), i);
    244      1.13  drochner 		vdevgone(bmaj, mn, mn, VBLK);
    245      1.13  drochner 		vdevgone(cmaj, mn, mn, VCHR);
    246      1.13  drochner 	}
    247      1.13  drochner 
    248      1.30   thorpej 	/* Delete all of our wedges. */
    249      1.30   thorpej 	dkwedge_delall(&sc->sc_dk);
    250      1.30   thorpej 
    251       1.2        ad 	/* Detach from the disk list. */
    252       1.2        ad 	disk_detach(&sc->sc_dk);
    253      1.50        ad 	disk_destroy(&sc->sc_dk);
    254       1.2        ad 
    255       1.2        ad #if NRND > 0
    256       1.2        ad 	/* Unhook the entropy source. */
    257       1.2        ad 	rnd_detach_source(&sc->sc_rnd_source);
    258       1.2        ad #endif
    259       1.2        ad 
    260  1.54.6.1       mjf 	/* Deregister with PMF */
    261  1.54.6.1       mjf 	pmf_device_deregister(&sc->sc_dv);
    262  1.54.6.1       mjf 
    263      1.24   thorpej 	/*
    264      1.24   thorpej 	 * XXX We can't really flush the cache here, beceause the
    265      1.24   thorpej 	 * XXX device may already be non-existent from the controller's
    266      1.24   thorpej 	 * XXX perspective.
    267      1.24   thorpej 	 */
    268      1.24   thorpej #if 0
    269       1.2        ad 	/* Flush the device's cache. */
    270       1.2        ad 	if (sc->sc_flush != NULL)
    271       1.2        ad 		if ((*sc->sc_flush)(sc) != 0)
    272  1.54.6.4       mjf 			aprint_error_dev(&sc->sc_dv, "unable to flush cache\n");
    273      1.24   thorpej #endif
    274       1.2        ad }
    275       1.2        ad 
    276       1.8     lukem /* ARGSUSED */
    277  1.54.6.1       mjf static bool
    278  1.54.6.1       mjf ld_shutdown(device_t dev, int flags)
    279       1.1        ad {
    280  1.54.6.1       mjf 	struct ld_softc *sc = device_private(dev);
    281       1.1        ad 
    282  1.54.6.1       mjf 	if (sc->sc_flush != NULL && (*sc->sc_flush)(sc) != 0) {
    283  1.54.6.1       mjf 		printf("%s: unable to flush cache\n", device_xname(dev));
    284  1.54.6.1       mjf 		return false;
    285       1.1        ad 	}
    286  1.54.6.1       mjf 
    287  1.54.6.1       mjf 	return true;
    288       1.1        ad }
    289       1.1        ad 
    290       1.8     lukem /* ARGSUSED */
    291      1.29   thorpej static int
    292      1.42  christos ldopen(dev_t dev, int flags, int fmt, struct lwp *l)
    293       1.1        ad {
    294       1.1        ad 	struct ld_softc *sc;
    295      1.30   thorpej 	int error, unit, part;
    296       1.1        ad 
    297       1.1        ad 	unit = DISKUNIT(dev);
    298  1.54.6.5       mjf 	if ((sc = device_lookup_private(&ld_cd, unit)) == NULL)
    299       1.1        ad 		return (ENXIO);
    300       1.1        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    301       1.1        ad 		return (ENODEV);
    302       1.1        ad 	part = DISKPART(dev);
    303      1.30   thorpej 
    304      1.48        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
    305       1.1        ad 
    306      1.22   thorpej 	if (sc->sc_dk.dk_openmask == 0) {
    307      1.22   thorpej 		/* Load the partition info if not already loaded. */
    308      1.22   thorpej 		if ((sc->sc_flags & LDF_VLABEL) == 0)
    309      1.22   thorpej 			ldgetdisklabel(sc);
    310      1.22   thorpej 	}
    311       1.1        ad 
    312       1.1        ad 	/* Check that the partition exists. */
    313       1.1        ad 	if (part != RAW_PART && (part >= sc->sc_dk.dk_label->d_npartitions ||
    314       1.1        ad 	    sc->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
    315      1.30   thorpej 		error = ENXIO;
    316      1.30   thorpej 		goto bad1;
    317       1.1        ad 	}
    318       1.1        ad 
    319       1.1        ad 	/* Ensure only one open at a time. */
    320       1.1        ad 	switch (fmt) {
    321       1.1        ad 	case S_IFCHR:
    322       1.1        ad 		sc->sc_dk.dk_copenmask |= (1 << part);
    323       1.1        ad 		break;
    324       1.1        ad 	case S_IFBLK:
    325       1.1        ad 		sc->sc_dk.dk_bopenmask |= (1 << part);
    326       1.1        ad 		break;
    327       1.1        ad 	}
    328       1.1        ad 	sc->sc_dk.dk_openmask =
    329       1.1        ad 	    sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    330       1.1        ad 
    331      1.48        ad 	error = 0;
    332      1.30   thorpej  bad1:
    333      1.48        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
    334      1.30   thorpej 	return (error);
    335       1.1        ad }
    336       1.1        ad 
    337       1.8     lukem /* ARGSUSED */
    338      1.29   thorpej static int
    339      1.42  christos ldclose(dev_t dev, int flags, int fmt, struct lwp *l)
    340       1.1        ad {
    341       1.1        ad 	struct ld_softc *sc;
    342      1.48        ad 	int part, unit;
    343       1.1        ad 
    344       1.1        ad 	unit = DISKUNIT(dev);
    345       1.1        ad 	part = DISKPART(dev);
    346  1.54.6.5       mjf 	sc = device_lookup_private(&ld_cd, unit);
    347      1.30   thorpej 
    348      1.48        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
    349       1.1        ad 
    350       1.1        ad 	switch (fmt) {
    351       1.1        ad 	case S_IFCHR:
    352       1.1        ad 		sc->sc_dk.dk_copenmask &= ~(1 << part);
    353       1.1        ad 		break;
    354       1.1        ad 	case S_IFBLK:
    355       1.1        ad 		sc->sc_dk.dk_bopenmask &= ~(1 << part);
    356       1.1        ad 		break;
    357       1.1        ad 	}
    358       1.1        ad 	sc->sc_dk.dk_openmask =
    359       1.1        ad 	    sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    360       1.1        ad 
    361      1.22   thorpej 	if (sc->sc_dk.dk_openmask == 0) {
    362      1.22   thorpej 		if (sc->sc_flush != NULL && (*sc->sc_flush)(sc) != 0)
    363  1.54.6.4       mjf 			aprint_error_dev(&sc->sc_dv, "unable to flush cache\n");
    364      1.22   thorpej 		if ((sc->sc_flags & LDF_KLABEL) == 0)
    365      1.22   thorpej 			sc->sc_flags &= ~LDF_VLABEL;
    366      1.22   thorpej 	}
    367       1.1        ad 
    368      1.48        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
    369       1.1        ad 	return (0);
    370       1.1        ad }
    371       1.1        ad 
    372       1.8     lukem /* ARGSUSED */
    373      1.29   thorpej static int
    374      1.42  christos ldread(dev_t dev, struct uio *uio, int ioflag)
    375       1.1        ad {
    376       1.1        ad 
    377       1.1        ad 	return (physio(ldstrategy, NULL, dev, B_READ, ldminphys, uio));
    378       1.1        ad }
    379       1.1        ad 
    380       1.8     lukem /* ARGSUSED */
    381      1.29   thorpej static int
    382      1.42  christos ldwrite(dev_t dev, struct uio *uio, int ioflag)
    383       1.1        ad {
    384       1.1        ad 
    385       1.1        ad 	return (physio(ldstrategy, NULL, dev, B_WRITE, ldminphys, uio));
    386       1.1        ad }
    387       1.1        ad 
    388       1.8     lukem /* ARGSUSED */
    389      1.29   thorpej static int
    390      1.46  christos ldioctl(dev_t dev, u_long cmd, void *addr, int32_t flag, struct lwp *l)
    391       1.1        ad {
    392       1.1        ad 	struct ld_softc *sc;
    393      1.52   xtraeme 	int part, unit, error;
    394       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    395       1.6    itojun 	struct disklabel newlabel;
    396       1.4      fvdl #endif
    397       1.6    itojun 	struct disklabel *lp;
    398       1.1        ad 
    399       1.1        ad 	unit = DISKUNIT(dev);
    400       1.1        ad 	part = DISKPART(dev);
    401  1.54.6.5       mjf 	sc = device_lookup_private(&ld_cd, unit);
    402       1.1        ad 
    403      1.43       riz 	error = disk_ioctl(&sc->sc_dk, cmd, addr, flag, l);
    404      1.43       riz 	if (error != EPASSTHROUGH)
    405      1.43       riz 		return (error);
    406      1.43       riz 
    407      1.47      tron 	error = 0;
    408       1.1        ad 	switch (cmd) {
    409       1.1        ad 	case DIOCGDINFO:
    410       1.1        ad 		memcpy(addr, sc->sc_dk.dk_label, sizeof(struct disklabel));
    411       1.1        ad 		return (0);
    412       1.1        ad 
    413       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    414       1.4      fvdl 	case ODIOCGDINFO:
    415       1.4      fvdl 		newlabel = *(sc->sc_dk.dk_label);
    416       1.4      fvdl 		if (newlabel.d_npartitions > OLDMAXPARTITIONS)
    417       1.5      fvdl 			return ENOTTY;
    418       1.4      fvdl 		memcpy(addr, &newlabel, sizeof(struct olddisklabel));
    419       1.4      fvdl 		return (0);
    420       1.4      fvdl #endif
    421       1.4      fvdl 
    422       1.1        ad 	case DIOCGPART:
    423       1.1        ad 		((struct partinfo *)addr)->disklab = sc->sc_dk.dk_label;
    424       1.1        ad 		((struct partinfo *)addr)->part =
    425       1.1        ad 		    &sc->sc_dk.dk_label->d_partitions[part];
    426       1.1        ad 		break;
    427       1.1        ad 
    428       1.1        ad 	case DIOCWDINFO:
    429       1.1        ad 	case DIOCSDINFO:
    430       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    431       1.4      fvdl 	case ODIOCWDINFO:
    432       1.4      fvdl 	case ODIOCSDINFO:
    433       1.4      fvdl 
    434       1.4      fvdl 		if (cmd == ODIOCSDINFO || cmd == ODIOCWDINFO) {
    435       1.4      fvdl 			memset(&newlabel, 0, sizeof newlabel);
    436       1.4      fvdl 			memcpy(&newlabel, addr, sizeof (struct olddisklabel));
    437       1.4      fvdl 			lp = &newlabel;
    438       1.4      fvdl 		} else
    439       1.4      fvdl #endif
    440       1.4      fvdl 		lp = (struct disklabel *)addr;
    441       1.4      fvdl 
    442       1.1        ad 		if ((flag & FWRITE) == 0)
    443       1.1        ad 			return (EBADF);
    444       1.1        ad 
    445      1.48        ad 		mutex_enter(&sc->sc_dk.dk_openlock);
    446       1.1        ad 		sc->sc_flags |= LDF_LABELLING;
    447       1.1        ad 
    448       1.1        ad 		error = setdisklabel(sc->sc_dk.dk_label,
    449       1.4      fvdl 		    lp, /*sc->sc_dk.dk_openmask : */0,
    450       1.1        ad 		    sc->sc_dk.dk_cpulabel);
    451       1.4      fvdl 		if (error == 0 && (cmd == DIOCWDINFO
    452       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    453       1.4      fvdl 		    || cmd == ODIOCWDINFO
    454       1.4      fvdl #endif
    455       1.4      fvdl 		    ))
    456       1.1        ad 			error = writedisklabel(
    457      1.35     perry 			    MAKEDISKDEV(major(dev), DISKUNIT(dev), RAW_PART),
    458      1.35     perry 			    ldstrategy, sc->sc_dk.dk_label,
    459       1.1        ad 			    sc->sc_dk.dk_cpulabel);
    460       1.1        ad 
    461       1.1        ad 		sc->sc_flags &= ~LDF_LABELLING;
    462      1.48        ad 		mutex_exit(&sc->sc_dk.dk_openlock);
    463       1.1        ad 		break;
    464       1.1        ad 
    465      1.22   thorpej 	case DIOCKLABEL:
    466      1.22   thorpej 		if ((flag & FWRITE) == 0)
    467      1.22   thorpej 			return (EBADF);
    468      1.22   thorpej 		if (*(int *)addr)
    469      1.22   thorpej 			sc->sc_flags |= LDF_KLABEL;
    470      1.22   thorpej 		else
    471      1.22   thorpej 			sc->sc_flags &= ~LDF_KLABEL;
    472      1.22   thorpej 		break;
    473      1.22   thorpej 
    474       1.1        ad 	case DIOCWLABEL:
    475       1.1        ad 		if ((flag & FWRITE) == 0)
    476       1.1        ad 			return (EBADF);
    477       1.1        ad 		if (*(int *)addr)
    478       1.1        ad 			sc->sc_flags |= LDF_WLABEL;
    479       1.1        ad 		else
    480       1.1        ad 			sc->sc_flags &= ~LDF_WLABEL;
    481       1.1        ad 		break;
    482       1.1        ad 
    483       1.1        ad 	case DIOCGDEFLABEL:
    484       1.1        ad 		ldgetdefaultlabel(sc, (struct disklabel *)addr);
    485       1.1        ad 		break;
    486       1.4      fvdl 
    487       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    488       1.4      fvdl 	case ODIOCGDEFLABEL:
    489       1.4      fvdl 		ldgetdefaultlabel(sc, &newlabel);
    490       1.4      fvdl 		if (newlabel.d_npartitions > OLDMAXPARTITIONS)
    491       1.5      fvdl 			return ENOTTY;
    492       1.4      fvdl 		memcpy(addr, &newlabel, sizeof (struct olddisklabel));
    493       1.4      fvdl 		break;
    494       1.4      fvdl #endif
    495       1.1        ad 
    496      1.32   thorpej 	case DIOCCACHESYNC:
    497      1.32   thorpej 		/*
    498      1.32   thorpej 		 * XXX Do we really need to care about having a writable
    499      1.32   thorpej 		 * file descriptor here?
    500      1.32   thorpej 		 */
    501      1.32   thorpej 		if ((flag & FWRITE) == 0)
    502      1.32   thorpej 			error = EBADF;
    503      1.32   thorpej 		else if (sc->sc_flush)
    504      1.32   thorpej 			error = (*sc->sc_flush)(sc);
    505      1.32   thorpej 		else
    506      1.32   thorpej 			error = 0;	/* XXX Error out instead? */
    507      1.32   thorpej 		break;
    508      1.32   thorpej 
    509      1.30   thorpej 	case DIOCAWEDGE:
    510      1.30   thorpej 	    {
    511      1.30   thorpej 	    	struct dkwedge_info *dkw = (void *) addr;
    512      1.30   thorpej 
    513      1.30   thorpej 		if ((flag & FWRITE) == 0)
    514      1.30   thorpej 			return (EBADF);
    515      1.30   thorpej 
    516      1.30   thorpej 		/* If the ioctl happens here, the parent is us. */
    517  1.54.6.4       mjf 		strlcpy(dkw->dkw_parent, device_xname(&sc->sc_dv),
    518  1.54.6.4       mjf 			sizeof(dkw->dkw_parent));
    519      1.30   thorpej 		return (dkwedge_add(dkw));
    520      1.30   thorpej 	    }
    521      1.35     perry 
    522      1.30   thorpej 	case DIOCDWEDGE:
    523      1.30   thorpej 	    {
    524      1.30   thorpej 	    	struct dkwedge_info *dkw = (void *) addr;
    525      1.30   thorpej 
    526      1.30   thorpej 		if ((flag & FWRITE) == 0)
    527      1.30   thorpej 			return (EBADF);
    528      1.30   thorpej 
    529      1.30   thorpej 		/* If the ioctl happens here, the parent is us. */
    530  1.54.6.4       mjf 		strlcpy(dkw->dkw_parent, device_xname(&sc->sc_dv),
    531  1.54.6.4       mjf 			sizeof(dkw->dkw_parent));
    532      1.30   thorpej 		return (dkwedge_del(dkw));
    533      1.30   thorpej 	    }
    534      1.35     perry 
    535      1.30   thorpej 	case DIOCLWEDGES:
    536      1.30   thorpej 	    {
    537      1.30   thorpej 	    	struct dkwedge_list *dkwl = (void *) addr;
    538      1.30   thorpej 
    539      1.39  christos 		return (dkwedge_list(&sc->sc_dk, dkwl, l));
    540      1.30   thorpej 	    }
    541      1.51   xtraeme 	case DIOCGSTRATEGY:
    542      1.51   xtraeme 	    {
    543      1.51   xtraeme 		struct disk_strategy *dks = (void *)addr;
    544      1.51   xtraeme 
    545      1.52   xtraeme 		mutex_enter(&sc->sc_mutex);
    546      1.51   xtraeme 		strlcpy(dks->dks_name, bufq_getstrategyname(sc->sc_bufq),
    547      1.51   xtraeme 		    sizeof(dks->dks_name));
    548      1.52   xtraeme 		mutex_exit(&sc->sc_mutex);
    549      1.51   xtraeme 		dks->dks_paramlen = 0;
    550      1.51   xtraeme 
    551      1.51   xtraeme 		return 0;
    552      1.51   xtraeme 	    }
    553      1.51   xtraeme 	case DIOCSSTRATEGY:
    554      1.51   xtraeme 	    {
    555      1.51   xtraeme 		struct disk_strategy *dks = (void *)addr;
    556      1.51   xtraeme 		struct bufq_state *new, *old;
    557      1.30   thorpej 
    558      1.51   xtraeme 		if ((flag & FWRITE) == 0)
    559      1.51   xtraeme 			return EPERM;
    560      1.51   xtraeme 
    561      1.51   xtraeme 		if (dks->dks_param != NULL)
    562      1.51   xtraeme 			return EINVAL;
    563      1.51   xtraeme 
    564      1.51   xtraeme 		dks->dks_name[sizeof(dks->dks_name) - 1] = 0; /* ensure term */
    565      1.51   xtraeme 		error = bufq_alloc(&new, dks->dks_name,
    566      1.51   xtraeme 		    BUFQ_EXACT|BUFQ_SORT_RAWBLOCK);
    567      1.51   xtraeme 		if (error)
    568      1.51   xtraeme 			return error;
    569      1.51   xtraeme 
    570      1.52   xtraeme 		mutex_enter(&sc->sc_mutex);
    571      1.51   xtraeme 		old = sc->sc_bufq;
    572      1.51   xtraeme 		bufq_move(new, old);
    573      1.51   xtraeme 		sc->sc_bufq = new;
    574      1.52   xtraeme 		mutex_exit(&sc->sc_mutex);
    575      1.51   xtraeme 		bufq_free(old);
    576      1.51   xtraeme 
    577      1.51   xtraeme 		return 0;
    578      1.51   xtraeme 	    }
    579       1.1        ad 	default:
    580       1.1        ad 		error = ENOTTY;
    581       1.1        ad 		break;
    582       1.1        ad 	}
    583       1.1        ad 
    584       1.1        ad 	return (error);
    585       1.1        ad }
    586       1.1        ad 
    587      1.29   thorpej static void
    588       1.1        ad ldstrategy(struct buf *bp)
    589       1.1        ad {
    590       1.1        ad 	struct ld_softc *sc;
    591      1.23   thorpej 	struct disklabel *lp;
    592      1.23   thorpej 	daddr_t blkno;
    593      1.23   thorpej 	int s, part;
    594       1.1        ad 
    595  1.54.6.5       mjf 	sc = device_lookup_private(&ld_cd, DISKUNIT(bp->b_dev));
    596      1.23   thorpej 	part = DISKPART(bp->b_dev);
    597       1.1        ad 
    598       1.7        ad 	if ((sc->sc_flags & LDF_DETACH) != 0) {
    599       1.2        ad 		bp->b_error = EIO;
    600      1.49        ad 		goto done;
    601       1.2        ad 	}
    602       1.2        ad 
    603       1.1        ad 	lp = sc->sc_dk.dk_label;
    604       1.1        ad 
    605       1.1        ad 	/*
    606       1.1        ad 	 * The transfer must be a whole number of blocks and the offset must
    607       1.1        ad 	 * not be negative.
    608       1.1        ad 	 */
    609       1.1        ad 	if ((bp->b_bcount % lp->d_secsize) != 0 || bp->b_blkno < 0) {
    610      1.23   thorpej 		bp->b_error = EINVAL;
    611      1.49        ad 		goto done;
    612       1.1        ad 	}
    613       1.1        ad 
    614      1.23   thorpej 	/* If it's a null transfer, return immediately. */
    615      1.23   thorpej 	if (bp->b_bcount == 0)
    616      1.23   thorpej 		goto done;
    617       1.1        ad 
    618       1.1        ad 	/*
    619       1.1        ad 	 * Do bounds checking and adjust the transfer.  If error, process.
    620       1.1        ad 	 * If past the end of partition, just return.
    621       1.1        ad 	 */
    622       1.1        ad 	if (part != RAW_PART &&
    623      1.20   thorpej 	    bounds_check_with_label(&sc->sc_dk, bp,
    624       1.1        ad 	    (sc->sc_flags & (LDF_WLABEL | LDF_LABELLING)) != 0) <= 0) {
    625      1.23   thorpej 		goto done;
    626       1.1        ad 	}
    627       1.1        ad 
    628       1.1        ad 	/*
    629      1.23   thorpej 	 * Convert the block number to absolute and put it in terms
    630      1.23   thorpej 	 * of the device's logical block size.
    631       1.1        ad 	 */
    632      1.23   thorpej 	if (lp->d_secsize == DEV_BSIZE)
    633      1.23   thorpej 		blkno = bp->b_blkno;
    634      1.23   thorpej 	else if (lp->d_secsize > DEV_BSIZE)
    635      1.23   thorpej 		blkno = bp->b_blkno / (lp->d_secsize / DEV_BSIZE);
    636       1.1        ad 	else
    637      1.23   thorpej 		blkno = bp->b_blkno * (DEV_BSIZE / lp->d_secsize);
    638       1.1        ad 
    639      1.11   thorpej 	if (part != RAW_PART)
    640      1.23   thorpej 		blkno += lp->d_partitions[part].p_offset;
    641      1.23   thorpej 
    642      1.23   thorpej 	bp->b_rawblkno = blkno;
    643       1.1        ad 
    644       1.1        ad 	s = splbio();
    645      1.44        ad 	ldstart(sc, bp);
    646       1.1        ad 	splx(s);
    647      1.23   thorpej 	return;
    648      1.23   thorpej 
    649      1.23   thorpej  done:
    650      1.23   thorpej 	bp->b_resid = bp->b_bcount;
    651      1.23   thorpej 	biodone(bp);
    652      1.23   thorpej }
    653      1.23   thorpej 
    654      1.23   thorpej static void
    655      1.44        ad ldstart(struct ld_softc *sc, struct buf *bp)
    656      1.23   thorpej {
    657      1.23   thorpej 	int error;
    658       1.1        ad 
    659      1.44        ad 	mutex_enter(&sc->sc_mutex);
    660      1.44        ad 
    661      1.44        ad 	if (bp != NULL)
    662      1.44        ad 		BUFQ_PUT(sc->sc_bufq, bp);
    663      1.44        ad 
    664      1.23   thorpej 	while (sc->sc_queuecnt < sc->sc_maxqueuecnt) {
    665      1.23   thorpej 		/* See if there is work to do. */
    666      1.38      yamt 		if ((bp = BUFQ_PEEK(sc->sc_bufq)) == NULL)
    667      1.23   thorpej 			break;
    668      1.23   thorpej 
    669      1.23   thorpej 		disk_busy(&sc->sc_dk);
    670      1.23   thorpej 		sc->sc_queuecnt++;
    671      1.23   thorpej 
    672      1.23   thorpej 		if (__predict_true((error = (*sc->sc_start)(sc, bp)) == 0)) {
    673      1.23   thorpej 			/*
    674      1.23   thorpej 			 * The back-end is running the job; remove it from
    675      1.23   thorpej 			 * the queue.
    676      1.23   thorpej 			 */
    677      1.38      yamt 			(void) BUFQ_GET(sc->sc_bufq);
    678      1.23   thorpej 		} else  {
    679      1.23   thorpej 			disk_unbusy(&sc->sc_dk, 0, (bp->b_flags & B_READ));
    680      1.23   thorpej 			sc->sc_queuecnt--;
    681      1.23   thorpej 			if (error == EAGAIN) {
    682      1.23   thorpej 				/*
    683      1.23   thorpej 				 * Temporary resource shortage in the
    684      1.23   thorpej 				 * back-end; just defer the job until
    685      1.23   thorpej 				 * later.
    686      1.23   thorpej 				 *
    687      1.23   thorpej 				 * XXX We might consider a watchdog timer
    688      1.23   thorpej 				 * XXX to make sure we are kicked into action.
    689      1.23   thorpej 				 */
    690      1.23   thorpej 				break;
    691      1.23   thorpej 			} else {
    692      1.38      yamt 				(void) BUFQ_GET(sc->sc_bufq);
    693      1.23   thorpej 				bp->b_error = error;
    694      1.23   thorpej 				bp->b_resid = bp->b_bcount;
    695      1.44        ad 				mutex_exit(&sc->sc_mutex);
    696      1.23   thorpej 				biodone(bp);
    697      1.44        ad 				mutex_enter(&sc->sc_mutex);
    698      1.23   thorpej 			}
    699      1.23   thorpej 		}
    700       1.1        ad 	}
    701      1.44        ad 
    702      1.44        ad 	mutex_exit(&sc->sc_mutex);
    703       1.1        ad }
    704       1.1        ad 
    705       1.1        ad void
    706       1.1        ad lddone(struct ld_softc *sc, struct buf *bp)
    707       1.1        ad {
    708       1.1        ad 
    709      1.49        ad 	if (bp->b_error != 0) {
    710       1.1        ad 		diskerr(bp, "ld", "error", LOG_PRINTF, 0, sc->sc_dk.dk_label);
    711       1.1        ad 		printf("\n");
    712       1.1        ad 	}
    713       1.1        ad 
    714      1.18       mrg 	disk_unbusy(&sc->sc_dk, bp->b_bcount - bp->b_resid,
    715      1.18       mrg 	    (bp->b_flags & B_READ));
    716       1.1        ad #if NRND > 0
    717       1.1        ad 	rnd_add_uint32(&sc->sc_rnd_source, bp->b_rawblkno);
    718       1.1        ad #endif
    719       1.1        ad 	biodone(bp);
    720       1.1        ad 
    721      1.44        ad 	mutex_enter(&sc->sc_mutex);
    722       1.7        ad 	if (--sc->sc_queuecnt <= sc->sc_maxqueuecnt) {
    723      1.24   thorpej 		if ((sc->sc_flags & LDF_DRAIN) != 0) {
    724      1.24   thorpej 			sc->sc_flags &= ~LDF_DRAIN;
    725       1.7        ad 			wakeup(&sc->sc_queuecnt);
    726      1.24   thorpej 		}
    727      1.44        ad 		mutex_exit(&sc->sc_mutex);
    728      1.44        ad 		ldstart(sc, NULL);
    729      1.44        ad 	} else
    730      1.44        ad 		mutex_exit(&sc->sc_mutex);
    731       1.1        ad }
    732       1.1        ad 
    733      1.29   thorpej static int
    734       1.1        ad ldsize(dev_t dev)
    735       1.1        ad {
    736       1.1        ad 	struct ld_softc *sc;
    737       1.1        ad 	int part, unit, omask, size;
    738       1.1        ad 
    739       1.1        ad 	unit = DISKUNIT(dev);
    740  1.54.6.5       mjf 	if ((sc = device_lookup_private(&ld_cd, unit)) == NULL)
    741       1.1        ad 		return (ENODEV);
    742       1.1        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    743       1.1        ad 		return (ENODEV);
    744       1.1        ad 	part = DISKPART(dev);
    745       1.1        ad 
    746       1.1        ad 	omask = sc->sc_dk.dk_openmask & (1 << part);
    747       1.1        ad 
    748       1.1        ad 	if (omask == 0 && ldopen(dev, 0, S_IFBLK, NULL) != 0)
    749       1.1        ad 		return (-1);
    750       1.1        ad 	else if (sc->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
    751       1.1        ad 		size = -1;
    752       1.1        ad 	else
    753       1.1        ad 		size = sc->sc_dk.dk_label->d_partitions[part].p_size *
    754       1.1        ad 		    (sc->sc_dk.dk_label->d_secsize / DEV_BSIZE);
    755       1.1        ad 	if (omask == 0 && ldclose(dev, 0, S_IFBLK, NULL) != 0)
    756       1.1        ad 		return (-1);
    757       1.1        ad 
    758       1.1        ad 	return (size);
    759       1.1        ad }
    760       1.1        ad 
    761       1.1        ad /*
    762       1.1        ad  * Load the label information from the specified device.
    763       1.1        ad  */
    764       1.1        ad static void
    765       1.1        ad ldgetdisklabel(struct ld_softc *sc)
    766       1.1        ad {
    767       1.1        ad 	const char *errstring;
    768       1.1        ad 
    769       1.1        ad 	ldgetdefaultlabel(sc, sc->sc_dk.dk_label);
    770       1.1        ad 
    771       1.1        ad 	/* Call the generic disklabel extraction routine. */
    772      1.40   thorpej 	errstring = readdisklabel(MAKEDISKDEV(0, device_unit(&sc->sc_dv),
    773      1.40   thorpej 	    RAW_PART), ldstrategy, sc->sc_dk.dk_label, sc->sc_dk.dk_cpulabel);
    774       1.1        ad 	if (errstring != NULL)
    775  1.54.6.4       mjf 		printf("%s: %s\n", device_xname(&sc->sc_dv), errstring);
    776      1.22   thorpej 
    777      1.22   thorpej 	/* In-core label now valid. */
    778      1.22   thorpej 	sc->sc_flags |= LDF_VLABEL;
    779       1.1        ad }
    780       1.1        ad 
    781       1.1        ad /*
    782       1.1        ad  * Construct a ficticious label.
    783       1.1        ad  */
    784       1.1        ad static void
    785       1.1        ad ldgetdefaultlabel(struct ld_softc *sc, struct disklabel *lp)
    786       1.1        ad {
    787       1.1        ad 
    788       1.1        ad 	memset(lp, 0, sizeof(struct disklabel));
    789       1.1        ad 
    790       1.1        ad 	lp->d_secsize = sc->sc_secsize;
    791       1.1        ad 	lp->d_ntracks = sc->sc_nheads;
    792       1.1        ad 	lp->d_nsectors = sc->sc_nsectors;
    793       1.1        ad 	lp->d_ncylinders = sc->sc_ncylinders;
    794       1.1        ad 	lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
    795       1.1        ad 	lp->d_type = DTYPE_LD;
    796      1.21    itojun 	strlcpy(lp->d_typename, "unknown", sizeof(lp->d_typename));
    797      1.21    itojun 	strlcpy(lp->d_packname, "fictitious", sizeof(lp->d_packname));
    798       1.1        ad 	lp->d_secperunit = sc->sc_secperunit;
    799       1.1        ad 	lp->d_rpm = 7200;
    800       1.1        ad 	lp->d_interleave = 1;
    801       1.1        ad 	lp->d_flags = 0;
    802       1.1        ad 
    803       1.1        ad 	lp->d_partitions[RAW_PART].p_offset = 0;
    804       1.1        ad 	lp->d_partitions[RAW_PART].p_size =
    805       1.1        ad 	    lp->d_secperunit * (lp->d_secsize / DEV_BSIZE);
    806       1.1        ad 	lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
    807       1.1        ad 	lp->d_npartitions = RAW_PART + 1;
    808       1.1        ad 
    809       1.1        ad 	lp->d_magic = DISKMAGIC;
    810       1.1        ad 	lp->d_magic2 = DISKMAGIC;
    811       1.1        ad 	lp->d_checksum = dkcksum(lp);
    812       1.1        ad }
    813       1.1        ad 
    814       1.1        ad /*
    815       1.1        ad  * Take a dump.
    816       1.1        ad  */
    817      1.29   thorpej static int
    818      1.46  christos lddump(dev_t dev, daddr_t blkno, void *vav, size_t size)
    819       1.1        ad {
    820      1.46  christos 	char *va = vav;
    821       1.1        ad 	struct ld_softc *sc;
    822       1.1        ad 	struct disklabel *lp;
    823       1.1        ad 	int unit, part, nsects, sectoff, towrt, nblk, maxblkcnt, rv;
    824       1.1        ad 	static int dumping;
    825       1.1        ad 
    826       1.1        ad 	unit = DISKUNIT(dev);
    827  1.54.6.5       mjf 	if ((sc = device_lookup_private(&ld_cd, unit)) == NULL)
    828       1.1        ad 		return (ENXIO);
    829       1.1        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    830       1.1        ad 		return (ENODEV);
    831       1.3        ad 	if (sc->sc_dump == NULL)
    832       1.3        ad 		return (ENXIO);
    833       1.3        ad 
    834       1.3        ad 	/* Check if recursive dump; if so, punt. */
    835       1.3        ad 	if (dumping)
    836       1.3        ad 		return (EFAULT);
    837       1.3        ad 	dumping = 1;
    838       1.1        ad 
    839       1.1        ad 	/* Convert to disk sectors.  Request must be a multiple of size. */
    840       1.3        ad 	part = DISKPART(dev);
    841       1.1        ad 	lp = sc->sc_dk.dk_label;
    842       1.1        ad 	if ((size % lp->d_secsize) != 0)
    843       1.1        ad 		return (EFAULT);
    844       1.1        ad 	towrt = size / lp->d_secsize;
    845       1.1        ad 	blkno = dbtob(blkno) / lp->d_secsize;	/* blkno in DEV_BSIZE units */
    846       1.1        ad 
    847       1.1        ad 	nsects = lp->d_partitions[part].p_size;
    848       1.1        ad 	sectoff = lp->d_partitions[part].p_offset;
    849       1.1        ad 
    850       1.1        ad 	/* Check transfer bounds against partition size. */
    851       1.1        ad 	if ((blkno < 0) || ((blkno + towrt) > nsects))
    852       1.1        ad 		return (EINVAL);
    853       1.1        ad 
    854       1.1        ad 	/* Offset block number to start of partition. */
    855       1.1        ad 	blkno += sectoff;
    856       1.1        ad 
    857       1.1        ad 	/* Start dumping and return when done. */
    858       1.3        ad 	maxblkcnt = sc->sc_maxxfer / sc->sc_secsize - 1;
    859       1.1        ad 	while (towrt > 0) {
    860       1.3        ad 		nblk = min(maxblkcnt, towrt);
    861       1.1        ad 
    862       1.1        ad 		if ((rv = (*sc->sc_dump)(sc, va, blkno, nblk)) != 0)
    863       1.1        ad 			return (rv);
    864       1.1        ad 
    865       1.1        ad 		towrt -= nblk;
    866       1.1        ad 		blkno += nblk;
    867       1.1        ad 		va += nblk * sc->sc_secsize;
    868       1.1        ad 	}
    869       1.1        ad 
    870       1.1        ad 	dumping = 0;
    871       1.1        ad 	return (0);
    872       1.1        ad }
    873       1.1        ad 
    874       1.1        ad /*
    875       1.1        ad  * Adjust the size of a transfer.
    876       1.1        ad  */
    877       1.1        ad static void
    878       1.1        ad ldminphys(struct buf *bp)
    879       1.1        ad {
    880       1.1        ad 	struct ld_softc *sc;
    881       1.1        ad 
    882  1.54.6.5       mjf 	sc = device_lookup_private(&ld_cd, DISKUNIT(bp->b_dev));
    883       1.1        ad 
    884       1.1        ad 	if (bp->b_bcount > sc->sc_maxxfer)
    885       1.1        ad 		bp->b_bcount = sc->sc_maxxfer;
    886       1.1        ad 	minphys(bp);
    887       1.1        ad }
    888      1.43       riz 
    889      1.43       riz static void
    890      1.43       riz ld_set_properties(struct ld_softc *ld)
    891      1.43       riz {
    892      1.43       riz 	prop_dictionary_t disk_info, odisk_info, geom;
    893      1.43       riz 
    894      1.43       riz 	disk_info = prop_dictionary_create();
    895      1.43       riz 
    896      1.43       riz 	geom = prop_dictionary_create();
    897      1.43       riz 
    898      1.43       riz 	prop_dictionary_set_uint64(geom, "sectors-per-unit",
    899      1.43       riz 	    ld->sc_secperunit);
    900      1.43       riz 
    901      1.43       riz 	prop_dictionary_set_uint32(geom, "sector-size",
    902      1.43       riz 	    ld->sc_secsize);
    903      1.43       riz 
    904      1.43       riz 	prop_dictionary_set_uint16(geom, "sectors-per-track",
    905      1.43       riz 	    ld->sc_nsectors);
    906      1.43       riz 
    907      1.43       riz 	prop_dictionary_set_uint16(geom, "tracks-per-cylinder",
    908      1.43       riz 	    ld->sc_nheads);
    909      1.43       riz 
    910      1.43       riz 	prop_dictionary_set_uint64(geom, "cylinders-per-unit",
    911      1.43       riz 	    ld->sc_ncylinders);
    912      1.43       riz 
    913      1.43       riz 	prop_dictionary_set(disk_info, "geometry", geom);
    914      1.43       riz 	prop_object_release(geom);
    915      1.43       riz 
    916      1.43       riz 	prop_dictionary_set(device_properties(&ld->sc_dv),
    917      1.43       riz 	    "disk-info", disk_info);
    918      1.43       riz 
    919      1.43       riz 	/*
    920      1.43       riz 	 * Don't release disk_info here; we keep a reference to it.
    921      1.43       riz 	 * disk_detach() will release it when we go away.
    922      1.43       riz 	 */
    923      1.43       riz 
    924      1.43       riz 	odisk_info = ld->sc_dk.dk_info;
    925      1.43       riz 	ld->sc_dk.dk_info = disk_info;
    926      1.43       riz 	if (odisk_info)
    927      1.43       riz 		prop_object_release(odisk_info);
    928      1.43       riz }
    929      1.45       riz 
    930      1.45       riz static void
    931      1.45       riz ld_config_interrupts (struct device *d)
    932      1.45       riz {
    933      1.45       riz 	struct ld_softc *sc = (struct ld_softc *)d;
    934      1.45       riz 	dkwedge_discover(&sc->sc_dk);
    935      1.45       riz }
    936