Home | History | Annotate | Line # | Download | only in dkwedge
dk.c revision 1.1
      1  1.1  thorpej /*	$NetBSD: dk.c,v 1.1 2004/10/04 01:07:25 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*-
      4  1.1  thorpej  * Copyright (c) 2004 The NetBSD Foundation, Inc.
      5  1.1  thorpej  * All rights reserved.
      6  1.1  thorpej  *
      7  1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  thorpej  * by Jason R. Thorpe.
      9  1.1  thorpej  *
     10  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11  1.1  thorpej  * modification, are permitted provided that the following conditions
     12  1.1  thorpej  * are met:
     13  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     19  1.1  thorpej  *    must display the following acknowledgement:
     20  1.1  thorpej  *	This product includes software developed by the NetBSD
     21  1.1  thorpej  *	Foundation, Inc. and its contributors.
     22  1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  thorpej  *    contributors may be used to endorse or promote products derived
     24  1.1  thorpej  *    from this software without specific prior written permission.
     25  1.1  thorpej  *
     26  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  thorpej  */
     38  1.1  thorpej 
     39  1.1  thorpej #include <sys/cdefs.h>
     40  1.1  thorpej __KERNEL_RCSID(0, "$NetBSD: dk.c,v 1.1 2004/10/04 01:07:25 thorpej Exp $");
     41  1.1  thorpej 
     42  1.1  thorpej #include "opt_dkwedge.h"
     43  1.1  thorpej 
     44  1.1  thorpej #include <sys/param.h>
     45  1.1  thorpej #include <sys/systm.h>
     46  1.1  thorpej #include <sys/proc.h>
     47  1.1  thorpej #include <sys/errno.h>
     48  1.1  thorpej #include <sys/pool.h>
     49  1.1  thorpej #include <sys/ioctl.h>
     50  1.1  thorpej #include <sys/disklabel.h>
     51  1.1  thorpej #include <sys/disk.h>
     52  1.1  thorpej #include <sys/fcntl.h>
     53  1.1  thorpej #include <sys/vnode.h>
     54  1.1  thorpej #include <sys/conf.h>
     55  1.1  thorpej #include <sys/callout.h>
     56  1.1  thorpej #include <sys/kernel.h>
     57  1.1  thorpej #include <sys/lock.h>
     58  1.1  thorpej #include <sys/malloc.h>
     59  1.1  thorpej 
     60  1.1  thorpej #include <miscfs/specfs/specdev.h>
     61  1.1  thorpej 
     62  1.1  thorpej MALLOC_DEFINE(M_DKWEDGE, "dkwedge", "Disk wedge structures");
     63  1.1  thorpej 
     64  1.1  thorpej typedef enum {
     65  1.1  thorpej 	DKW_STATE_LARVAL	= 0,
     66  1.1  thorpej 	DKW_STATE_RUNNING	= 1,
     67  1.1  thorpej 	DKW_STATE_DYING		= 2,
     68  1.1  thorpej 	DKW_STATE_DEAD		= 666
     69  1.1  thorpej } dkwedge_state_t;
     70  1.1  thorpej 
     71  1.1  thorpej struct dkwedge_softc {
     72  1.1  thorpej 	char		sc_devname[16];	/* device-style name (e.g. "dk0") */
     73  1.1  thorpej 	uint8_t		sc_wname[128];	/* wedge name (Unicode, UTF-8) */
     74  1.1  thorpej 	u_int		sc_unit;	/* our unit # */
     75  1.1  thorpej 
     76  1.1  thorpej 	dkwedge_state_t sc_state;	/* state this wedge is in */
     77  1.1  thorpej 
     78  1.1  thorpej 	struct disk	*sc_parent;	/* parent disk */
     79  1.1  thorpej 	daddr_t		sc_offset;	/* LBA offset of wedge in parent */
     80  1.1  thorpej 	uint64_t	sc_size;	/* size of wedge in blocks */
     81  1.1  thorpej 	char		sc_ptype[32];	/* partition type */
     82  1.1  thorpej 	dev_t		sc_pdev;	/* cached parent's dev_t */
     83  1.1  thorpej 					/* link on parent's wedge list */
     84  1.1  thorpej 	LIST_ENTRY(dkwedge_softc) sc_plink;
     85  1.1  thorpej 
     86  1.1  thorpej 	int		sc_open;	/* locked by parent's rawlock */
     87  1.1  thorpej 
     88  1.1  thorpej 	struct disk	sc_dk;		/* our own disk structure */
     89  1.1  thorpej 	struct bufq_state sc_bufq;	/* buffer queue */
     90  1.1  thorpej 	struct callout	sc_restart_ch;	/* callout to restart I/O */
     91  1.1  thorpej 
     92  1.1  thorpej 	u_int		sc_iopend;	/* I/Os pending */
     93  1.1  thorpej 	int		sc_flags;	/* flags (splbio) */
     94  1.1  thorpej };
     95  1.1  thorpej 
     96  1.1  thorpej #define	DK_F_WAIT_DRAIN		0x0001	/* waiting for I/O to drain */
     97  1.1  thorpej 
     98  1.1  thorpej static void	dkstart(struct dkwedge_softc *);
     99  1.1  thorpej static void	dkiodone(struct buf *);
    100  1.1  thorpej static void	dkrestart(void *);
    101  1.1  thorpej 
    102  1.1  thorpej static dev_type_open(dkopen);
    103  1.1  thorpej static dev_type_close(dkclose);
    104  1.1  thorpej static dev_type_read(dkread);
    105  1.1  thorpej static dev_type_write(dkwrite);
    106  1.1  thorpej static dev_type_ioctl(dkioctl);
    107  1.1  thorpej static dev_type_strategy(dkstrategy);
    108  1.1  thorpej static dev_type_dump(dkdump);
    109  1.1  thorpej static dev_type_size(dksize);
    110  1.1  thorpej 
    111  1.1  thorpej const struct bdevsw dk_bdevsw = {
    112  1.1  thorpej 	dkopen, dkclose, dkstrategy, dkioctl, dkdump, dksize, D_DISK
    113  1.1  thorpej };
    114  1.1  thorpej 
    115  1.1  thorpej const struct cdevsw dk_cdevsw = {
    116  1.1  thorpej 	dkopen, dkclose, dkread, dkwrite, dkioctl,
    117  1.1  thorpej 	    nostop, notty, nopoll, nommap, nokqfilter, D_DISK
    118  1.1  thorpej };
    119  1.1  thorpej 
    120  1.1  thorpej static struct dkwedge_softc **dkwedges;
    121  1.1  thorpej static u_int ndkwedges;
    122  1.1  thorpej static struct lock dkwedges_lock = LOCK_INITIALIZER(PRIBIO, "dkwgs", 0, 0);
    123  1.1  thorpej 
    124  1.1  thorpej static LIST_HEAD(, dkwedge_discovery_method) dkwedge_discovery_methods;
    125  1.1  thorpej static int dkwedge_discovery_methods_initialized;
    126  1.1  thorpej static struct lock dkwedge_discovery_methods_lock =
    127  1.1  thorpej     LOCK_INITIALIZER(PRIBIO, "dkddm", 0, 0);
    128  1.1  thorpej 
    129  1.1  thorpej /*
    130  1.1  thorpej  * dkwedge_wait_drain:
    131  1.1  thorpej  *
    132  1.1  thorpej  *	Wait for I/O on the wedge to drain.
    133  1.1  thorpej  *	NOTE: Must be called at splbio()!
    134  1.1  thorpej  */
    135  1.1  thorpej static void
    136  1.1  thorpej dkwedge_wait_drain(struct dkwedge_softc *sc)
    137  1.1  thorpej {
    138  1.1  thorpej 
    139  1.1  thorpej 	while (sc->sc_iopend != 0) {
    140  1.1  thorpej 		sc->sc_flags |= DK_F_WAIT_DRAIN;
    141  1.1  thorpej 		(void) tsleep(&sc->sc_iopend, PRIBIO, "dkdrn", 0);
    142  1.1  thorpej 	}
    143  1.1  thorpej }
    144  1.1  thorpej 
    145  1.1  thorpej /*
    146  1.1  thorpej  * dkwedge_compute_pdev:
    147  1.1  thorpej  *
    148  1.1  thorpej  *	Compute the parent disk's dev_t.
    149  1.1  thorpej  */
    150  1.1  thorpej static int
    151  1.1  thorpej dkwedge_compute_pdev(const char *pname, dev_t *pdevp)
    152  1.1  thorpej {
    153  1.1  thorpej 	const char *name, *cp;
    154  1.1  thorpej 	int punit, pmaj;
    155  1.1  thorpej 	char devname[16];
    156  1.1  thorpej 
    157  1.1  thorpej 	name = pname;
    158  1.1  thorpej 	if ((pmaj = devsw_name2blk(name, devname, sizeof(devname))) == -1)
    159  1.1  thorpej 		return (ENODEV);
    160  1.1  thorpej 
    161  1.1  thorpej 	name += strlen(devname);
    162  1.1  thorpej 	for (cp = name, punit = 0; *cp >= '0' && *cp <= '9'; cp++)
    163  1.1  thorpej 		punit = (punit * 10) + (*cp - '0');
    164  1.1  thorpej 	if (cp == name) {
    165  1.1  thorpej 		/* Invalid parent disk name. */
    166  1.1  thorpej 		return (ENODEV);
    167  1.1  thorpej 	}
    168  1.1  thorpej 
    169  1.1  thorpej 	*pdevp = MAKEDISKDEV(pmaj, punit, RAW_PART);
    170  1.1  thorpej 
    171  1.1  thorpej 	return (0);
    172  1.1  thorpej }
    173  1.1  thorpej 
    174  1.1  thorpej /*
    175  1.1  thorpej  * dkwedge_array_expand:
    176  1.1  thorpej  *
    177  1.1  thorpej  *	Expand the dkwedges array.
    178  1.1  thorpej  */
    179  1.1  thorpej static void
    180  1.1  thorpej dkwedge_array_expand(void)
    181  1.1  thorpej {
    182  1.1  thorpej 	int newcnt = ndkwedges + 16;
    183  1.1  thorpej 	struct dkwedge_softc **newarray, **oldarray;
    184  1.1  thorpej 
    185  1.1  thorpej 	newarray = malloc(newcnt * sizeof(*newarray), M_DKWEDGE,
    186  1.1  thorpej 	    M_WAITOK|M_ZERO);
    187  1.1  thorpej 	if ((oldarray = dkwedges) != NULL)
    188  1.1  thorpej 		memcpy(newarray, dkwedges, ndkwedges * sizeof(*newarray));
    189  1.1  thorpej 	dkwedges = newarray;
    190  1.1  thorpej 	ndkwedges = newcnt;
    191  1.1  thorpej 	if (oldarray != NULL)
    192  1.1  thorpej 		free(oldarray, M_DKWEDGE);
    193  1.1  thorpej }
    194  1.1  thorpej 
    195  1.1  thorpej /*
    196  1.1  thorpej  * dkwedge_add:		[exported function]
    197  1.1  thorpej  *
    198  1.1  thorpej  *	Add a disk wedge based on the provided information.
    199  1.1  thorpej  *
    200  1.1  thorpej  *	The incoming dkw_devname[] is ignored, instead being
    201  1.1  thorpej  *	filled in and returned to the caller.
    202  1.1  thorpej  */
    203  1.1  thorpej int
    204  1.1  thorpej dkwedge_add(struct dkwedge_info *dkw)
    205  1.1  thorpej {
    206  1.1  thorpej 	struct dkwedge_softc *sc, *lsc;
    207  1.1  thorpej 	struct disk *pdk;
    208  1.1  thorpej 	u_int unit;
    209  1.1  thorpej 	int error;
    210  1.1  thorpej 	dev_t pdev;
    211  1.1  thorpej 
    212  1.1  thorpej 	dkw->dkw_parent[sizeof(dkw->dkw_parent) - 1] = '\0';
    213  1.1  thorpej 	pdk = disk_find(dkw->dkw_parent);
    214  1.1  thorpej 	if (pdk == NULL)
    215  1.1  thorpej 		return (ENODEV);
    216  1.1  thorpej 
    217  1.1  thorpej 	error = dkwedge_compute_pdev(pdk->dk_name, &pdev);
    218  1.1  thorpej 	if (error)
    219  1.1  thorpej 		return (error);
    220  1.1  thorpej 
    221  1.1  thorpej 	if (dkw->dkw_offset < 0)
    222  1.1  thorpej 		return (EINVAL);
    223  1.1  thorpej 
    224  1.1  thorpej 	sc = malloc(sizeof(*sc), M_DKWEDGE, M_WAITOK|M_ZERO);
    225  1.1  thorpej 	sc->sc_state = DKW_STATE_LARVAL;
    226  1.1  thorpej 	sc->sc_parent = pdk;
    227  1.1  thorpej 	sc->sc_pdev = pdev;
    228  1.1  thorpej 	sc->sc_offset = dkw->dkw_offset;
    229  1.1  thorpej 	sc->sc_size = dkw->dkw_size;
    230  1.1  thorpej 
    231  1.1  thorpej 	memcpy(sc->sc_wname, dkw->dkw_wname, sizeof(sc->sc_wname));
    232  1.1  thorpej 	sc->sc_wname[sizeof(sc->sc_wname) - 1] = '\0';
    233  1.1  thorpej 
    234  1.1  thorpej 	memcpy(sc->sc_ptype, dkw->dkw_ptype, sizeof(sc->sc_ptype));
    235  1.1  thorpej 	sc->sc_ptype[sizeof(sc->sc_ptype) - 1] = '\0';
    236  1.1  thorpej 
    237  1.1  thorpej 	bufq_alloc(&sc->sc_bufq, BUFQ_FCFS);
    238  1.1  thorpej 
    239  1.1  thorpej 	callout_init(&sc->sc_restart_ch);
    240  1.1  thorpej 	callout_setfunc(&sc->sc_restart_ch, dkrestart, sc);
    241  1.1  thorpej 
    242  1.1  thorpej 	/*
    243  1.1  thorpej 	 * Wedge will be added; increment the wedge count for the parent.
    244  1.1  thorpej 	 * Only allow this to happend if RAW_PART is the only thing open.
    245  1.1  thorpej 	 */
    246  1.1  thorpej 	(void) lockmgr(&pdk->dk_openlock, LK_EXCLUSIVE, NULL);
    247  1.1  thorpej 	if (pdk->dk_openmask & ~(1 << RAW_PART))
    248  1.1  thorpej 		error = EBUSY;
    249  1.1  thorpej 	else {
    250  1.1  thorpej 		/* Check for wedge overlap. */
    251  1.1  thorpej 		LIST_FOREACH(lsc, &pdk->dk_wedges, sc_plink) {
    252  1.1  thorpej 			daddr_t lastblk = sc->sc_offset + sc->sc_size - 1;
    253  1.1  thorpej 			daddr_t llastblk = lsc->sc_offset + lsc->sc_size - 1;
    254  1.1  thorpej 
    255  1.1  thorpej 			if (sc->sc_offset >= lsc->sc_offset &&
    256  1.1  thorpej 			    sc->sc_offset <= llastblk) {
    257  1.1  thorpej 				/* Overlaps the tail of the exsiting wedge. */
    258  1.1  thorpej 				break;
    259  1.1  thorpej 			}
    260  1.1  thorpej 			if (lastblk >= lsc->sc_offset &&
    261  1.1  thorpej 			    lastblk <= llastblk) {
    262  1.1  thorpej 				/* Overlaps the head of the existing wedge. */
    263  1.1  thorpej 			    	break;
    264  1.1  thorpej 			}
    265  1.1  thorpej 		}
    266  1.1  thorpej 		if (lsc != NULL)
    267  1.1  thorpej 			error = EINVAL;
    268  1.1  thorpej 		else {
    269  1.1  thorpej 			pdk->dk_nwedges++;
    270  1.1  thorpej 			LIST_INSERT_HEAD(&pdk->dk_wedges, sc, sc_plink);
    271  1.1  thorpej 		}
    272  1.1  thorpej 	}
    273  1.1  thorpej 	(void) lockmgr(&pdk->dk_openlock, LK_RELEASE, NULL);
    274  1.1  thorpej 	if (error) {
    275  1.1  thorpej 		bufq_free(&sc->sc_bufq);
    276  1.1  thorpej 		free(sc, M_DKWEDGE);
    277  1.1  thorpej 		return (error);
    278  1.1  thorpej 	}
    279  1.1  thorpej 
    280  1.1  thorpej 	/* Insert the larval wedge into the array. */
    281  1.1  thorpej 	(void) lockmgr(&dkwedges_lock, LK_EXCLUSIVE, NULL);
    282  1.1  thorpej 	for (error = 0;;) {
    283  1.1  thorpej 		struct dkwedge_softc **scpp;
    284  1.1  thorpej 
    285  1.1  thorpej 		/*
    286  1.1  thorpej 		 * Check for a duplicate wname while searching for
    287  1.1  thorpej 		 * a slot.
    288  1.1  thorpej 		 */
    289  1.1  thorpej 		for (scpp = NULL, unit = 0; unit < ndkwedges; unit++) {
    290  1.1  thorpej 			if (dkwedges[unit] == NULL) {
    291  1.1  thorpej 				if (scpp == NULL) {
    292  1.1  thorpej 					scpp = &dkwedges[unit];
    293  1.1  thorpej 					sc->sc_unit = unit;
    294  1.1  thorpej 				}
    295  1.1  thorpej 			} else {
    296  1.1  thorpej 				/* XXX Unicode. */
    297  1.1  thorpej 				if (strcmp(dkwedges[unit]->sc_wname,
    298  1.1  thorpej 					   sc->sc_wname) == 0) {
    299  1.1  thorpej 					error = EEXIST;
    300  1.1  thorpej 					break;
    301  1.1  thorpej 				}
    302  1.1  thorpej 			}
    303  1.1  thorpej 		}
    304  1.1  thorpej 		if (error)
    305  1.1  thorpej 			break;
    306  1.1  thorpej 		KASSERT(unit == ndkwedges);
    307  1.1  thorpej 		if (scpp == NULL)
    308  1.1  thorpej 			dkwedge_array_expand();
    309  1.1  thorpej 		else {
    310  1.1  thorpej 			KASSERT(scpp == &dkwedges[sc->sc_unit]);
    311  1.1  thorpej 			*scpp = sc;
    312  1.1  thorpej 			break;
    313  1.1  thorpej 		}
    314  1.1  thorpej 	}
    315  1.1  thorpej 	(void) lockmgr(&dkwedges_lock, LK_RELEASE, NULL);
    316  1.1  thorpej 	if (error) {
    317  1.1  thorpej 		(void) lockmgr(&pdk->dk_openlock, LK_EXCLUSIVE, NULL);
    318  1.1  thorpej 		pdk->dk_nwedges--;
    319  1.1  thorpej 		LIST_REMOVE(sc, sc_plink);
    320  1.1  thorpej 		(void) lockmgr(&pdk->dk_openlock, LK_RELEASE, NULL);
    321  1.1  thorpej 
    322  1.1  thorpej 		bufq_free(&sc->sc_bufq);
    323  1.1  thorpej 		free(sc, M_DKWEDGE);
    324  1.1  thorpej 		return (error);
    325  1.1  thorpej 	}
    326  1.1  thorpej 
    327  1.1  thorpej 	/* Now that we know the unit #, set the devname. */
    328  1.1  thorpej 	sprintf(sc->sc_devname, "dk%u", sc->sc_unit);
    329  1.1  thorpej 	sc->sc_dk.dk_name = sc->sc_devname;
    330  1.1  thorpej 
    331  1.1  thorpej 	/* Return the devname to the caller. */
    332  1.1  thorpej 	strcpy(dkw->dkw_devname, sc->sc_devname);
    333  1.1  thorpej 
    334  1.1  thorpej 	/*
    335  1.1  thorpej 	 * XXX Really ought to make the disk_attach() and the changing
    336  1.1  thorpej 	 * of state to RUNNING atomic.
    337  1.1  thorpej 	 */
    338  1.1  thorpej 
    339  1.1  thorpej 	disk_attach(&sc->sc_dk);
    340  1.1  thorpej 
    341  1.1  thorpej 	/* Disk wedge is ready for use! */
    342  1.1  thorpej 	sc->sc_state = DKW_STATE_RUNNING;
    343  1.1  thorpej 
    344  1.1  thorpej 	/* Announce our arrival. */
    345  1.1  thorpej 	aprint_normal("%s at %s: %s\n", sc->sc_devname, pdk->dk_name,
    346  1.1  thorpej 	    sc->sc_wname);	/* XXX Unicode */
    347  1.1  thorpej 	aprint_normal("%s: %"PRIu64" blocks at %"PRId64", type: %s\n",
    348  1.1  thorpej 	    sc->sc_devname, sc->sc_size, sc->sc_offset, sc->sc_ptype);
    349  1.1  thorpej 
    350  1.1  thorpej 	return (0);
    351  1.1  thorpej }
    352  1.1  thorpej 
    353  1.1  thorpej /*
    354  1.1  thorpej  * dkwedge_del:		[exported function]
    355  1.1  thorpej  *
    356  1.1  thorpej  *	Delete a disk wedge based on the provided information.
    357  1.1  thorpej  *	NOTE: We look up the wedge based on the wedge devname,
    358  1.1  thorpej  *	not wname.
    359  1.1  thorpej  */
    360  1.1  thorpej int
    361  1.1  thorpej dkwedge_del(struct dkwedge_info *dkw)
    362  1.1  thorpej {
    363  1.1  thorpej 	struct dkwedge_softc *sc = NULL;
    364  1.1  thorpej 	u_int unit;
    365  1.1  thorpej 	int bmaj, cmaj, i, mn, s;
    366  1.1  thorpej 
    367  1.1  thorpej 	/* Find our softc. */
    368  1.1  thorpej 	dkw->dkw_devname[sizeof(dkw->dkw_devname) - 1] = '\0';
    369  1.1  thorpej 	(void) lockmgr(&dkwedges_lock, LK_EXCLUSIVE, NULL);
    370  1.1  thorpej 	for (unit = 0; unit < ndkwedges; unit++) {
    371  1.1  thorpej 		if ((sc = dkwedges[unit]) != NULL &&
    372  1.1  thorpej 		    strcmp(sc->sc_devname, dkw->dkw_devname) == 0 &&
    373  1.1  thorpej 		    strcmp(sc->sc_parent->dk_name, dkw->dkw_parent) == 0) {
    374  1.1  thorpej 			/* Mark the wedge as dying. */
    375  1.1  thorpej 			sc->sc_state = DKW_STATE_DYING;
    376  1.1  thorpej 			break;
    377  1.1  thorpej 		}
    378  1.1  thorpej 	}
    379  1.1  thorpej 	(void) lockmgr(&dkwedges_lock, LK_RELEASE, NULL);
    380  1.1  thorpej 	if (unit == ndkwedges)
    381  1.1  thorpej 		return (ESRCH);
    382  1.1  thorpej 
    383  1.1  thorpej 	KASSERT(sc != NULL);
    384  1.1  thorpej 
    385  1.1  thorpej 	/* Locate the wedge major numbers. */
    386  1.1  thorpej 	bmaj = bdevsw_lookup_major(&dk_bdevsw);
    387  1.1  thorpej 	cmaj = cdevsw_lookup_major(&dk_cdevsw);
    388  1.1  thorpej 
    389  1.1  thorpej 	/* Kill any pending restart. */
    390  1.1  thorpej 	callout_stop(&sc->sc_restart_ch);
    391  1.1  thorpej 
    392  1.1  thorpej 	/*
    393  1.1  thorpej 	 * dkstart() will kill any queued buffers now that the
    394  1.1  thorpej 	 * state of the wedge is not RUNNING.  Once we've done
    395  1.1  thorpej 	 * that, wait for any other pending I/O to complete.
    396  1.1  thorpej 	 */
    397  1.1  thorpej 	s = splbio();
    398  1.1  thorpej 	dkstart(sc);
    399  1.1  thorpej 	dkwedge_wait_drain(sc);
    400  1.1  thorpej 	splx(s);
    401  1.1  thorpej 
    402  1.1  thorpej 	/* Nuke the vnodes for any open instances. */
    403  1.1  thorpej 	for (i = 0; i < MAXPARTITIONS; i++) {
    404  1.1  thorpej 		mn = DISKMINOR(unit, i);
    405  1.1  thorpej 		vdevgone(bmaj, mn, mn, VBLK);
    406  1.1  thorpej 		vdevgone(cmaj, mn, mn, VCHR);
    407  1.1  thorpej 	}
    408  1.1  thorpej 
    409  1.1  thorpej 	/* Clean up the parent. */
    410  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_EXCLUSIVE, NULL);
    411  1.1  thorpej 	if (sc->sc_open) {
    412  1.1  thorpej 		if (sc->sc_parent->dk_rawopens-- == 1) {
    413  1.1  thorpej 			KASSERT(sc->sc_parent->dk_rawvp != NULL);
    414  1.1  thorpej 			(void) vn_close(sc->sc_parent->dk_rawvp, FREAD | FWRITE,
    415  1.1  thorpej 					NOCRED, curproc);
    416  1.1  thorpej 			sc->sc_parent->dk_rawvp = NULL;
    417  1.1  thorpej 		}
    418  1.1  thorpej 		sc->sc_open = 0;
    419  1.1  thorpej 	}
    420  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_RELEASE, NULL);
    421  1.1  thorpej 
    422  1.1  thorpej 	/* Announce our departure. */
    423  1.1  thorpej 	aprint_normal("%s at %s (%s) deleted\n", sc->sc_devname,
    424  1.1  thorpej 	    sc->sc_parent->dk_name,
    425  1.1  thorpej 	    sc->sc_wname);	/* XXX Unicode */
    426  1.1  thorpej 
    427  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_openlock, LK_EXCLUSIVE, NULL);
    428  1.1  thorpej 	sc->sc_parent->dk_nwedges--;
    429  1.1  thorpej 	LIST_REMOVE(sc, sc_plink);
    430  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_openlock, LK_RELEASE, NULL);
    431  1.1  thorpej 
    432  1.1  thorpej 	/* Delete our buffer queue. */
    433  1.1  thorpej 	bufq_free(&sc->sc_bufq);
    434  1.1  thorpej 
    435  1.1  thorpej 	/* Detach from the disk list. */
    436  1.1  thorpej 	disk_detach(&sc->sc_dk);
    437  1.1  thorpej 
    438  1.1  thorpej 	/* Poof. */
    439  1.1  thorpej 	(void) lockmgr(&dkwedges_lock, LK_EXCLUSIVE, NULL);
    440  1.1  thorpej 	dkwedges[unit] = NULL;
    441  1.1  thorpej 	sc->sc_state = DKW_STATE_DEAD;
    442  1.1  thorpej 	(void) lockmgr(&dkwedges_lock, LK_RELEASE, NULL);
    443  1.1  thorpej 
    444  1.1  thorpej 	free(sc, M_DKWEDGE);
    445  1.1  thorpej 
    446  1.1  thorpej 	return (0);
    447  1.1  thorpej }
    448  1.1  thorpej 
    449  1.1  thorpej /*
    450  1.1  thorpej  * dkwedge_delall:	[exported function]
    451  1.1  thorpej  *
    452  1.1  thorpej  *	Delete all of the wedges on the specified disk.  Used when
    453  1.1  thorpej  *	a disk is being detached.
    454  1.1  thorpej  */
    455  1.1  thorpej void
    456  1.1  thorpej dkwedge_delall(struct disk *pdk)
    457  1.1  thorpej {
    458  1.1  thorpej 	struct dkwedge_info dkw;
    459  1.1  thorpej 	struct dkwedge_softc *sc;
    460  1.1  thorpej 
    461  1.1  thorpej 	for (;;) {
    462  1.1  thorpej 		(void) lockmgr(&pdk->dk_openlock, LK_EXCLUSIVE, NULL);
    463  1.1  thorpej 		if ((sc = LIST_FIRST(&pdk->dk_wedges)) == NULL) {
    464  1.1  thorpej 			KASSERT(pdk->dk_nwedges == 0);
    465  1.1  thorpej 			(void) lockmgr(&pdk->dk_openlock, LK_RELEASE, NULL);
    466  1.1  thorpej 			return;
    467  1.1  thorpej 		}
    468  1.1  thorpej 		strcpy(dkw.dkw_parent, pdk->dk_name);
    469  1.1  thorpej 		strcpy(dkw.dkw_devname, sc->sc_devname);
    470  1.1  thorpej 		(void) lockmgr(&pdk->dk_openlock, LK_RELEASE, NULL);
    471  1.1  thorpej 		(void) dkwedge_del(&dkw);
    472  1.1  thorpej 	}
    473  1.1  thorpej }
    474  1.1  thorpej 
    475  1.1  thorpej /*
    476  1.1  thorpej  * dkwedge_list:	[exported function]
    477  1.1  thorpej  *
    478  1.1  thorpej  *	List all of the wedges on a particular disk.
    479  1.1  thorpej  *	If p == NULL, the buffer is in kernel space.  Otherwise, it is
    480  1.1  thorpej  *	in user space of the specified process.
    481  1.1  thorpej  */
    482  1.1  thorpej int
    483  1.1  thorpej dkwedge_list(struct disk *pdk, struct dkwedge_list *dkwl, struct proc *p)
    484  1.1  thorpej {
    485  1.1  thorpej 	struct uio uio;
    486  1.1  thorpej 	struct iovec iov;
    487  1.1  thorpej 	struct dkwedge_softc *sc;
    488  1.1  thorpej 	struct dkwedge_info dkw;
    489  1.1  thorpej 	int error = 0;
    490  1.1  thorpej 
    491  1.1  thorpej 	iov.iov_base = dkwl->dkwl_buf;
    492  1.1  thorpej 	iov.iov_len = dkwl->dkwl_bufsize;
    493  1.1  thorpej 
    494  1.1  thorpej 	uio.uio_iov = &iov;
    495  1.1  thorpej 	uio.uio_iovcnt = 1;
    496  1.1  thorpej 	uio.uio_offset = 0;
    497  1.1  thorpej 	uio.uio_resid = dkwl->dkwl_bufsize;
    498  1.1  thorpej 	uio.uio_segflg = p != NULL ? UIO_USERSPACE : UIO_SYSSPACE;
    499  1.1  thorpej 	uio.uio_rw = UIO_READ;
    500  1.1  thorpej 	uio.uio_procp = p;
    501  1.1  thorpej 
    502  1.1  thorpej 	dkwl->dkwl_ncopied = 0;
    503  1.1  thorpej 
    504  1.1  thorpej 	(void) lockmgr(&pdk->dk_openlock, LK_EXCLUSIVE, NULL);
    505  1.1  thorpej 	LIST_FOREACH(sc, &pdk->dk_wedges, sc_plink) {
    506  1.1  thorpej 		if (uio.uio_resid < sizeof(dkw))
    507  1.1  thorpej 			break;
    508  1.1  thorpej 
    509  1.1  thorpej 		if (sc->sc_state != DKW_STATE_RUNNING)
    510  1.1  thorpej 			continue;
    511  1.1  thorpej 
    512  1.1  thorpej 		strcpy(dkw.dkw_devname, sc->sc_devname);
    513  1.1  thorpej 		memcpy(dkw.dkw_wname, sc->sc_wname, sizeof(dkw.dkw_wname));
    514  1.1  thorpej 		dkw.dkw_wname[sizeof(dkw.dkw_wname) - 1] = '\0';
    515  1.1  thorpej 		strcpy(dkw.dkw_parent, sc->sc_parent->dk_name);
    516  1.1  thorpej 		dkw.dkw_offset = sc->sc_offset;
    517  1.1  thorpej 		dkw.dkw_size = sc->sc_size;
    518  1.1  thorpej 		strcpy(dkw.dkw_ptype, sc->sc_ptype);
    519  1.1  thorpej 
    520  1.1  thorpej 		error = uiomove(&dkw, sizeof(dkw), &uio);
    521  1.1  thorpej 		if (error)
    522  1.1  thorpej 			break;
    523  1.1  thorpej 		dkwl->dkwl_ncopied++;
    524  1.1  thorpej 	}
    525  1.1  thorpej 	dkwl->dkwl_nwedges = pdk->dk_nwedges;
    526  1.1  thorpej 	(void) lockmgr(&pdk->dk_openlock, LK_RELEASE, NULL);
    527  1.1  thorpej 
    528  1.1  thorpej 	return (error);
    529  1.1  thorpej }
    530  1.1  thorpej 
    531  1.1  thorpej /*
    532  1.1  thorpej  * We need a dummy objet to stuff into the dkwedge discovery method link
    533  1.1  thorpej  * set to ensure that there is always at least one object in the set.
    534  1.1  thorpej  */
    535  1.1  thorpej static struct dkwedge_discovery_method dummy_discovery_method;
    536  1.1  thorpej __link_set_add_bss(dkwedge_methods, dummy_discovery_method);
    537  1.1  thorpej 
    538  1.1  thorpej /*
    539  1.1  thorpej  * dkwedge_discover_init:
    540  1.1  thorpej  *
    541  1.1  thorpej  *	Initialize the disk wedge discovery method list.
    542  1.1  thorpej  */
    543  1.1  thorpej static void
    544  1.1  thorpej dkwedge_discover_init(void)
    545  1.1  thorpej {
    546  1.1  thorpej 	__link_set_decl(dkwedge_methods, struct dkwedge_discovery_method);
    547  1.1  thorpej 	struct dkwedge_discovery_method * const *ddmp;
    548  1.1  thorpej 	struct dkwedge_discovery_method *lddm, *ddm;
    549  1.1  thorpej 
    550  1.1  thorpej 	(void) lockmgr(&dkwedge_discovery_methods_lock, LK_EXCLUSIVE, NULL);
    551  1.1  thorpej 
    552  1.1  thorpej 	if (dkwedge_discovery_methods_initialized) {
    553  1.1  thorpej 		(void) lockmgr(&dkwedge_discovery_methods_lock, LK_RELEASE,
    554  1.1  thorpej 			       NULL);
    555  1.1  thorpej 		return;
    556  1.1  thorpej 	}
    557  1.1  thorpej 
    558  1.1  thorpej 	LIST_INIT(&dkwedge_discovery_methods);
    559  1.1  thorpej 
    560  1.1  thorpej 	__link_set_foreach(ddmp, dkwedge_methods) {
    561  1.1  thorpej 		ddm = *ddmp;
    562  1.1  thorpej 		if (ddm == &dummy_discovery_method)
    563  1.1  thorpej 			continue;
    564  1.1  thorpej 		if (LIST_EMPTY(&dkwedge_discovery_methods)) {
    565  1.1  thorpej 			LIST_INSERT_HEAD(&dkwedge_discovery_methods,
    566  1.1  thorpej 					 ddm, ddm_list);
    567  1.1  thorpej 			continue;
    568  1.1  thorpej 		}
    569  1.1  thorpej 		LIST_FOREACH(lddm, &dkwedge_discovery_methods, ddm_list) {
    570  1.1  thorpej 			if (ddm->ddm_priority == lddm->ddm_priority) {
    571  1.1  thorpej 				aprint_error("dk-method-%s: method \"%s\" "
    572  1.1  thorpej 				    "already exists at priority %d\n",
    573  1.1  thorpej 				    ddm->ddm_name, lddm->ddm_name,
    574  1.1  thorpej 				    lddm->ddm_priority);
    575  1.1  thorpej 				/* Not inserted. */
    576  1.1  thorpej 				break;
    577  1.1  thorpej 			}
    578  1.1  thorpej 			if (ddm->ddm_priority < lddm->ddm_priority) {
    579  1.1  thorpej 				/* Higher priority; insert before. */
    580  1.1  thorpej 				LIST_INSERT_BEFORE(lddm, ddm, ddm_list);
    581  1.1  thorpej 				break;
    582  1.1  thorpej 			}
    583  1.1  thorpej 			if (LIST_NEXT(lddm, ddm_list) == NULL) {
    584  1.1  thorpej 				/* Last one; insert after. */
    585  1.1  thorpej 				KASSERT(lddm->ddm_priority < ddm->ddm_priority);
    586  1.1  thorpej 				LIST_INSERT_AFTER(lddm, ddm, ddm_list);
    587  1.1  thorpej 				break;
    588  1.1  thorpej 			}
    589  1.1  thorpej 		}
    590  1.1  thorpej 	}
    591  1.1  thorpej 
    592  1.1  thorpej 	dkwedge_discovery_methods_initialized = 1;
    593  1.1  thorpej 
    594  1.1  thorpej 	(void) lockmgr(&dkwedge_discovery_methods_lock, LK_RELEASE, NULL);
    595  1.1  thorpej }
    596  1.1  thorpej 
    597  1.1  thorpej #ifdef DKWEDGE_AUTODISCOVER
    598  1.1  thorpej int	dkwedge_autodiscover = 1;
    599  1.1  thorpej #else
    600  1.1  thorpej int	dkwedge_autodiscover = 0;
    601  1.1  thorpej #endif
    602  1.1  thorpej 
    603  1.1  thorpej /*
    604  1.1  thorpej  * dkwedge_discover:	[exported function]
    605  1.1  thorpej  *
    606  1.1  thorpej  *	Discover the wedges on a newly attached disk.
    607  1.1  thorpej  */
    608  1.1  thorpej void
    609  1.1  thorpej dkwedge_discover(struct disk *pdk)
    610  1.1  thorpej {
    611  1.1  thorpej 	struct dkwedge_discovery_method *ddm;
    612  1.1  thorpej 	struct vnode *vp;
    613  1.1  thorpej 	int error;
    614  1.1  thorpej 	dev_t pdev;
    615  1.1  thorpej 
    616  1.1  thorpej 	/*
    617  1.1  thorpej 	 * Require people playing with wedges to enable this explicitly.
    618  1.1  thorpej 	 */
    619  1.1  thorpej 	if (dkwedge_autodiscover == 0)
    620  1.1  thorpej 		return;
    621  1.1  thorpej 
    622  1.1  thorpej 	if (dkwedge_discovery_methods_initialized == 0)
    623  1.1  thorpej 		dkwedge_discover_init();
    624  1.1  thorpej 
    625  1.1  thorpej 	(void) lockmgr(&dkwedge_discovery_methods_lock, LK_SHARED, NULL);
    626  1.1  thorpej 
    627  1.1  thorpej 	error = dkwedge_compute_pdev(pdk->dk_name, &pdev);
    628  1.1  thorpej 	if (error) {
    629  1.1  thorpej 		aprint_error("%s: unable to compute pdev, error = %d\n",
    630  1.1  thorpej 		    pdk->dk_name, error);
    631  1.1  thorpej 		goto out;
    632  1.1  thorpej 	}
    633  1.1  thorpej 
    634  1.1  thorpej 	error = bdevvp(pdev, &vp);
    635  1.1  thorpej 	if (error) {
    636  1.1  thorpej 		aprint_error("%s: unable to find vnode for pdev, error = %d\n",
    637  1.1  thorpej 		    pdk->dk_name, error);
    638  1.1  thorpej 		goto out;
    639  1.1  thorpej 	}
    640  1.1  thorpej 
    641  1.1  thorpej 	error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    642  1.1  thorpej 	if (error) {
    643  1.1  thorpej 		aprint_error("%s: unable to lock vnode for pdev, error = %d\n",
    644  1.1  thorpej 		    pdk->dk_name, error);
    645  1.1  thorpej 		vrele(vp);
    646  1.1  thorpej 		goto out;
    647  1.1  thorpej 	}
    648  1.1  thorpej 
    649  1.1  thorpej 	error = VOP_OPEN(vp, FREAD | FWRITE, NOCRED, 0);
    650  1.1  thorpej 	if (error) {
    651  1.1  thorpej 		aprint_error("%s: unable to open device, error = %d\n",
    652  1.1  thorpej 		    pdk->dk_name, error);
    653  1.1  thorpej 		vput(vp);
    654  1.1  thorpej 		goto out;
    655  1.1  thorpej 	}
    656  1.1  thorpej 	/* VOP_OPEN() doesn't do this for us. */
    657  1.1  thorpej 	vp->v_writecount++;
    658  1.1  thorpej 	VOP_UNLOCK(vp, 0);
    659  1.1  thorpej 
    660  1.1  thorpej 	/*
    661  1.1  thorpej 	 * For each supported partition map type, look to see if
    662  1.1  thorpej 	 * this map type exists.  If so, parse it and add the
    663  1.1  thorpej 	 * corresponding wedges.
    664  1.1  thorpej 	 */
    665  1.1  thorpej 	LIST_FOREACH(ddm, &dkwedge_discovery_methods, ddm_list) {
    666  1.1  thorpej 		error = (*ddm->ddm_discover)(pdk, vp);
    667  1.1  thorpej 		if (error == 0) {
    668  1.1  thorpej 			/* Successfully created wedges; we're done. */
    669  1.1  thorpej 			break;
    670  1.1  thorpej 		}
    671  1.1  thorpej 	}
    672  1.1  thorpej 
    673  1.1  thorpej 	error = vn_close(vp, FREAD | FWRITE, NOCRED, curproc);
    674  1.1  thorpej 	if (error) {
    675  1.1  thorpej 		aprint_error("%s: unable to close device, error = %d\n",
    676  1.1  thorpej 		    pdk->dk_name, error);
    677  1.1  thorpej 		/* We'll just assume the vnode has been cleaned up. */
    678  1.1  thorpej 	}
    679  1.1  thorpej  out:
    680  1.1  thorpej 	(void) lockmgr(&dkwedge_discovery_methods_lock, LK_RELEASE, NULL);
    681  1.1  thorpej }
    682  1.1  thorpej 
    683  1.1  thorpej /*
    684  1.1  thorpej  * dkwedge_read:
    685  1.1  thorpej  *
    686  1.1  thorpej  *	Read the some data from the specified disk, used for
    687  1.1  thorpej  *	partition discovery.
    688  1.1  thorpej  */
    689  1.1  thorpej int
    690  1.1  thorpej dkwedge_read(struct disk *pdk, struct vnode *vp, daddr_t blkno, void *buf,
    691  1.1  thorpej     size_t len)
    692  1.1  thorpej {
    693  1.1  thorpej 	struct buf b;
    694  1.1  thorpej 
    695  1.1  thorpej 	BUF_INIT(&b);
    696  1.1  thorpej 
    697  1.1  thorpej 	b.b_vp = vp;
    698  1.1  thorpej 	b.b_dev = vp->v_rdev;
    699  1.1  thorpej 	b.b_blkno = blkno;
    700  1.1  thorpej 	b.b_bcount = b.b_resid = len;
    701  1.1  thorpej 	b.b_flags = B_READ;
    702  1.1  thorpej 	b.b_proc = curproc;
    703  1.1  thorpej 	b.b_data = buf;
    704  1.1  thorpej 
    705  1.1  thorpej 	VOP_STRATEGY(vp, &b);
    706  1.1  thorpej 	return (biowait(&b));
    707  1.1  thorpej }
    708  1.1  thorpej 
    709  1.1  thorpej /*
    710  1.1  thorpej  * dkwedge_lookup:
    711  1.1  thorpej  *
    712  1.1  thorpej  *	Look up a dkwedge_softc based on the provided dev_t.
    713  1.1  thorpej  */
    714  1.1  thorpej static struct dkwedge_softc *
    715  1.1  thorpej dkwedge_lookup(dev_t dev)
    716  1.1  thorpej {
    717  1.1  thorpej 	int unit = DISKUNIT(dev);
    718  1.1  thorpej 
    719  1.1  thorpej 	if (unit >= ndkwedges)
    720  1.1  thorpej 		return (NULL);
    721  1.1  thorpej 
    722  1.1  thorpej 	KASSERT(dkwedges != NULL);
    723  1.1  thorpej 
    724  1.1  thorpej 	return (dkwedges[unit]);
    725  1.1  thorpej }
    726  1.1  thorpej 
    727  1.1  thorpej /*
    728  1.1  thorpej  * dkopen:		[devsw entry point]
    729  1.1  thorpej  *
    730  1.1  thorpej  *	Open a wedge.
    731  1.1  thorpej  */
    732  1.1  thorpej static int
    733  1.1  thorpej dkopen(dev_t dev, int flags, int fmt, struct proc *p)
    734  1.1  thorpej {
    735  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
    736  1.1  thorpej 	struct vnode *vp;
    737  1.1  thorpej 	int error;
    738  1.1  thorpej 
    739  1.1  thorpej 	if (sc == NULL)
    740  1.1  thorpej 		return (ENODEV);
    741  1.1  thorpej 
    742  1.1  thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
    743  1.1  thorpej 		return (ENXIO);
    744  1.1  thorpej 
    745  1.1  thorpej 	/*
    746  1.1  thorpej 	 * We go through a complicated little dance to only open the parent
    747  1.1  thorpej 	 * vnode once per wedge, no matter how many times the wedge is
    748  1.1  thorpej 	 * opened.  The reason?  We see one dkopen() per open call, but
    749  1.1  thorpej 	 * only dkclose() on the last close.
    750  1.1  thorpej 	 */
    751  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_EXCLUSIVE, NULL);
    752  1.1  thorpej 	if (sc->sc_open == 0) {
    753  1.1  thorpej 		if (sc->sc_parent->dk_rawopens++ == 0) {
    754  1.1  thorpej 			KASSERT(sc->sc_parent->dk_rawvp == NULL);
    755  1.1  thorpej 			error = bdevvp(sc->sc_pdev, &vp);
    756  1.1  thorpej 			if (error)
    757  1.1  thorpej 				goto popen_fail;
    758  1.1  thorpej 			error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    759  1.1  thorpej 			if (error) {
    760  1.1  thorpej 				vrele(vp);
    761  1.1  thorpej 				goto popen_fail;
    762  1.1  thorpej 			}
    763  1.1  thorpej 			error = VOP_OPEN(vp, FREAD | FWRITE, NOCRED, 0);
    764  1.1  thorpej 			if (error) {
    765  1.1  thorpej 				vput(vp);
    766  1.1  thorpej 				goto popen_fail;
    767  1.1  thorpej 			}
    768  1.1  thorpej 			/* VOP_OPEN() doesn't do this for us. */
    769  1.1  thorpej 			vp->v_writecount++;
    770  1.1  thorpej 			VOP_UNLOCK(vp, 0);
    771  1.1  thorpej 			sc->sc_parent->dk_rawvp = vp;
    772  1.1  thorpej 		}
    773  1.1  thorpej 		sc->sc_open = 1;
    774  1.1  thorpej 	}
    775  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_RELEASE, NULL);
    776  1.1  thorpej 
    777  1.1  thorpej 	return (0);
    778  1.1  thorpej 
    779  1.1  thorpej  popen_fail:
    780  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_RELEASE, NULL);
    781  1.1  thorpej 	return (error);
    782  1.1  thorpej }
    783  1.1  thorpej 
    784  1.1  thorpej /*
    785  1.1  thorpej  * dkclose:		[devsw entry point]
    786  1.1  thorpej  *
    787  1.1  thorpej  *	Close a wedge.
    788  1.1  thorpej  */
    789  1.1  thorpej static int
    790  1.1  thorpej dkclose(dev_t dev, int flags, int fmt, struct proc *p)
    791  1.1  thorpej {
    792  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
    793  1.1  thorpej 	int error = 0;
    794  1.1  thorpej 
    795  1.1  thorpej 	KASSERT(sc->sc_open);
    796  1.1  thorpej 
    797  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_EXCLUSIVE, NULL);
    798  1.1  thorpej 
    799  1.1  thorpej 	if (sc->sc_parent->dk_rawopens-- == 1) {
    800  1.1  thorpej 		KASSERT(sc->sc_parent->dk_rawvp != NULL);
    801  1.1  thorpej 		error = vn_close(sc->sc_parent->dk_rawvp, FREAD | FWRITE,
    802  1.1  thorpej 				 NOCRED, p);
    803  1.1  thorpej 		sc->sc_parent->dk_rawvp = NULL;
    804  1.1  thorpej 	}
    805  1.1  thorpej 	sc->sc_open = 0;
    806  1.1  thorpej 
    807  1.1  thorpej 	(void) lockmgr(&sc->sc_parent->dk_rawlock, LK_RELEASE, NULL);
    808  1.1  thorpej 
    809  1.1  thorpej 	return (error);
    810  1.1  thorpej }
    811  1.1  thorpej 
    812  1.1  thorpej /*
    813  1.1  thorpej  * dkstragegy:		[devsw entry point]
    814  1.1  thorpej  *
    815  1.1  thorpej  *	Perform I/O based on the wedge I/O strategy.
    816  1.1  thorpej  */
    817  1.1  thorpej static void
    818  1.1  thorpej dkstrategy(struct buf *bp)
    819  1.1  thorpej {
    820  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(bp->b_dev);
    821  1.1  thorpej 	int s;
    822  1.1  thorpej 
    823  1.1  thorpej 	if (sc->sc_state != DKW_STATE_RUNNING) {
    824  1.1  thorpej 		bp->b_error = ENXIO;
    825  1.1  thorpej 		bp->b_flags |= B_ERROR;
    826  1.1  thorpej 		goto done;
    827  1.1  thorpej 	}
    828  1.1  thorpej 
    829  1.1  thorpej 	/* If it's an empty transfer, wake up the top half now. */
    830  1.1  thorpej 	if (bp->b_bcount == 0)
    831  1.1  thorpej 		goto done;
    832  1.1  thorpej 
    833  1.1  thorpej 	/* Make sure it's in-range. */
    834  1.1  thorpej 	if (bounds_check_with_mediasize(bp, DEV_BSIZE, sc->sc_size) <= 0)
    835  1.1  thorpej 		goto done;
    836  1.1  thorpej 
    837  1.1  thorpej 	/* Translate it to the parent's raw LBA. */
    838  1.1  thorpej 	bp->b_rawblkno = bp->b_blkno + sc->sc_offset;
    839  1.1  thorpej 
    840  1.1  thorpej 	/* Place it in the queue and start I/O on the unit. */
    841  1.1  thorpej 	s = splbio();
    842  1.1  thorpej 	sc->sc_iopend++;
    843  1.1  thorpej 	BUFQ_PUT(&sc->sc_bufq, bp);
    844  1.1  thorpej 	dkstart(sc);
    845  1.1  thorpej 	splx(s);
    846  1.1  thorpej 	return;
    847  1.1  thorpej 
    848  1.1  thorpej  done:
    849  1.1  thorpej 	bp->b_resid = bp->b_bcount;
    850  1.1  thorpej 	biodone(bp);
    851  1.1  thorpej }
    852  1.1  thorpej 
    853  1.1  thorpej /*
    854  1.1  thorpej  * dkstart:
    855  1.1  thorpej  *
    856  1.1  thorpej  *	Start I/O that has been enqueued on the wedge.
    857  1.1  thorpej  *	NOTE: Must be called at splbio()!
    858  1.1  thorpej  */
    859  1.1  thorpej static void
    860  1.1  thorpej dkstart(struct dkwedge_softc *sc)
    861  1.1  thorpej {
    862  1.1  thorpej 	struct buf *bp, *nbp;
    863  1.1  thorpej 
    864  1.1  thorpej 	/* Do as much work as has been enqueued. */
    865  1.1  thorpej 	while ((bp = BUFQ_PEEK(&sc->sc_bufq)) != NULL) {
    866  1.1  thorpej 		if (sc->sc_state != DKW_STATE_RUNNING) {
    867  1.1  thorpej 			(void) BUFQ_GET(&sc->sc_bufq);
    868  1.1  thorpej 			if (sc->sc_iopend-- == 1 &&
    869  1.1  thorpej 			    (sc->sc_flags & DK_F_WAIT_DRAIN) != 0) {
    870  1.1  thorpej 				sc->sc_flags &= ~DK_F_WAIT_DRAIN;
    871  1.1  thorpej 				wakeup(&sc->sc_iopend);
    872  1.1  thorpej 			}
    873  1.1  thorpej 			bp->b_error = ENXIO;
    874  1.1  thorpej 			bp->b_flags |= B_ERROR;
    875  1.1  thorpej 			bp->b_resid = bp->b_bcount;
    876  1.1  thorpej 			biodone(bp);
    877  1.1  thorpej 		}
    878  1.1  thorpej 
    879  1.1  thorpej 		/* Instrumentation. */
    880  1.1  thorpej 		disk_busy(&sc->sc_dk);
    881  1.1  thorpej 
    882  1.1  thorpej 		nbp = pool_get(&bufpool, PR_NOWAIT);
    883  1.1  thorpej 		if (nbp == NULL) {
    884  1.1  thorpej 			/*
    885  1.1  thorpej 			 * No resources to run this request; leave the
    886  1.1  thorpej 			 * buffer queued up, and schedule a timer to
    887  1.1  thorpej 			 * restart the queue in 1/2 a second.
    888  1.1  thorpej 			 */
    889  1.1  thorpej 			disk_unbusy(&sc->sc_dk, 0, bp->b_flags & B_READ);
    890  1.1  thorpej 			callout_schedule(&sc->sc_restart_ch, hz / 2);
    891  1.1  thorpej 			return;
    892  1.1  thorpej 		}
    893  1.1  thorpej 
    894  1.1  thorpej 		(void) BUFQ_GET(&sc->sc_bufq);
    895  1.1  thorpej 
    896  1.1  thorpej 		BUF_INIT(nbp);
    897  1.1  thorpej 		nbp->b_data = bp->b_data;
    898  1.1  thorpej 		nbp->b_flags = bp->b_flags | B_CALL;
    899  1.1  thorpej 		nbp->b_iodone = dkiodone;
    900  1.1  thorpej 		nbp->b_proc = bp->b_proc;
    901  1.1  thorpej 		nbp->b_blkno = bp->b_rawblkno;
    902  1.1  thorpej 		nbp->b_dev = sc->sc_parent->dk_rawvp->v_rdev;
    903  1.1  thorpej 		nbp->b_vp = sc->sc_parent->dk_rawvp;
    904  1.1  thorpej 		nbp->b_bcount = bp->b_bcount;
    905  1.1  thorpej 		nbp->b_private = bp;
    906  1.1  thorpej 		BIO_COPYPRIO(nbp, bp);
    907  1.1  thorpej 
    908  1.1  thorpej 		if ((nbp->b_flags & B_READ) == 0)
    909  1.1  thorpej 			V_INCR_NUMOUTPUT(nbp->b_vp);
    910  1.1  thorpej 		VOP_STRATEGY(nbp->b_vp, nbp);
    911  1.1  thorpej 	}
    912  1.1  thorpej }
    913  1.1  thorpej 
    914  1.1  thorpej /*
    915  1.1  thorpej  * dkiodone:
    916  1.1  thorpej  *
    917  1.1  thorpej  *	I/O to a wedge has completed; alert the top half.
    918  1.1  thorpej  *	NOTE: Must be called at splbio()!
    919  1.1  thorpej  */
    920  1.1  thorpej static void
    921  1.1  thorpej dkiodone(struct buf *bp)
    922  1.1  thorpej {
    923  1.1  thorpej 	struct buf *obp = bp->b_private;
    924  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(obp->b_dev);
    925  1.1  thorpej 
    926  1.1  thorpej 	if (bp->b_flags & B_ERROR) {
    927  1.1  thorpej 		obp->b_flags |= B_ERROR;
    928  1.1  thorpej 		obp->b_error = bp->b_error;
    929  1.1  thorpej 	}
    930  1.1  thorpej 	obp->b_resid = bp->b_resid;
    931  1.1  thorpej 	pool_put(&bufpool, bp);
    932  1.1  thorpej 
    933  1.1  thorpej 	if (sc->sc_iopend-- == 1 && (sc->sc_flags & DK_F_WAIT_DRAIN) != 0) {
    934  1.1  thorpej 		sc->sc_flags &= ~DK_F_WAIT_DRAIN;
    935  1.1  thorpej 		wakeup(&sc->sc_iopend);
    936  1.1  thorpej 	}
    937  1.1  thorpej 
    938  1.1  thorpej 	disk_unbusy(&sc->sc_dk, obp->b_bcount - obp->b_resid,
    939  1.1  thorpej 	    obp->b_flags & B_READ);
    940  1.1  thorpej 
    941  1.1  thorpej 	biodone(obp);
    942  1.1  thorpej 
    943  1.1  thorpej 	/* Kick the queue in case there is more work we can do. */
    944  1.1  thorpej 	dkstart(sc);
    945  1.1  thorpej }
    946  1.1  thorpej 
    947  1.1  thorpej /*
    948  1.1  thorpej  * dkrestart:
    949  1.1  thorpej  *
    950  1.1  thorpej  *	Restart the work queue after it was stalled due to
    951  1.1  thorpej  *	a resource shortage.  Invoked via a callout.
    952  1.1  thorpej  */
    953  1.1  thorpej static void
    954  1.1  thorpej dkrestart(void *v)
    955  1.1  thorpej {
    956  1.1  thorpej 	struct dkwedge_softc *sc = v;
    957  1.1  thorpej 	int s;
    958  1.1  thorpej 
    959  1.1  thorpej 	s = splbio();
    960  1.1  thorpej 	dkstart(sc);
    961  1.1  thorpej 	splx(s);
    962  1.1  thorpej }
    963  1.1  thorpej 
    964  1.1  thorpej /*
    965  1.1  thorpej  * dkread:		[devsw entry point]
    966  1.1  thorpej  *
    967  1.1  thorpej  *	Read from a wedge.
    968  1.1  thorpej  */
    969  1.1  thorpej static int
    970  1.1  thorpej dkread(dev_t dev, struct uio *uio, int flags)
    971  1.1  thorpej {
    972  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
    973  1.1  thorpej 
    974  1.1  thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
    975  1.1  thorpej 		return (ENXIO);
    976  1.1  thorpej 
    977  1.1  thorpej 	return (physio(dkstrategy, NULL, dev, B_READ,
    978  1.1  thorpej 		       sc->sc_parent->dk_driver->d_minphys, uio));
    979  1.1  thorpej }
    980  1.1  thorpej 
    981  1.1  thorpej /*
    982  1.1  thorpej  * dkwrite:		[devsw entry point]
    983  1.1  thorpej  *
    984  1.1  thorpej  *	Write to a wedge.
    985  1.1  thorpej  */
    986  1.1  thorpej static int
    987  1.1  thorpej dkwrite(dev_t dev, struct uio *uio, int flags)
    988  1.1  thorpej {
    989  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
    990  1.1  thorpej 
    991  1.1  thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
    992  1.1  thorpej 		return (ENXIO);
    993  1.1  thorpej 
    994  1.1  thorpej 	return (physio(dkstrategy, NULL, dev, B_WRITE,
    995  1.1  thorpej 		       sc->sc_parent->dk_driver->d_minphys, uio));
    996  1.1  thorpej }
    997  1.1  thorpej 
    998  1.1  thorpej /*
    999  1.1  thorpej  * dkioctl:		[devsw entry point]
   1000  1.1  thorpej  *
   1001  1.1  thorpej  *	Perform an ioctl request on a wedge.
   1002  1.1  thorpej  */
   1003  1.1  thorpej static int
   1004  1.1  thorpej dkioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
   1005  1.1  thorpej {
   1006  1.1  thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
   1007  1.1  thorpej 	int error = 0;
   1008  1.1  thorpej 
   1009  1.1  thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
   1010  1.1  thorpej 		return (ENXIO);
   1011  1.1  thorpej 
   1012  1.1  thorpej 	switch (cmd) {
   1013  1.1  thorpej 	case DIOCGWEDGEINFO:
   1014  1.1  thorpej 	    {
   1015  1.1  thorpej 	    	struct dkwedge_info *dkw = (void *) data;
   1016  1.1  thorpej 
   1017  1.1  thorpej 		strcpy(dkw->dkw_devname, sc->sc_devname);
   1018  1.1  thorpej 	    	memcpy(dkw->dkw_wname, sc->sc_wname, sizeof(dkw->dkw_wname));
   1019  1.1  thorpej 		dkw->dkw_wname[sizeof(dkw->dkw_wname) - 1] = '\0';
   1020  1.1  thorpej 		strcpy(dkw->dkw_parent, sc->sc_parent->dk_name);
   1021  1.1  thorpej 		dkw->dkw_offset = sc->sc_offset;
   1022  1.1  thorpej 		dkw->dkw_size = sc->sc_size;
   1023  1.1  thorpej 		strcpy(dkw->dkw_ptype, sc->sc_ptype);
   1024  1.1  thorpej 
   1025  1.1  thorpej 		break;
   1026  1.1  thorpej 	    }
   1027  1.1  thorpej 
   1028  1.1  thorpej 	default:
   1029  1.1  thorpej 		error = ENOTTY;
   1030  1.1  thorpej 	}
   1031  1.1  thorpej 
   1032  1.1  thorpej 	return (error);
   1033  1.1  thorpej }
   1034  1.1  thorpej 
   1035  1.1  thorpej /*
   1036  1.1  thorpej  * dksize:		[devsw entry point]
   1037  1.1  thorpej  *
   1038  1.1  thorpej  *	Query the size of a wedge for the purpose of performing a dump
   1039  1.1  thorpej  *	or for swapping to.
   1040  1.1  thorpej  */
   1041  1.1  thorpej static int
   1042  1.1  thorpej dksize(dev_t dev)
   1043  1.1  thorpej {
   1044  1.1  thorpej 
   1045  1.1  thorpej 	/* XXX */
   1046  1.1  thorpej 	return (-1);
   1047  1.1  thorpej }
   1048  1.1  thorpej 
   1049  1.1  thorpej /*
   1050  1.1  thorpej  * dkdump:		[devsw entry point]
   1051  1.1  thorpej  *
   1052  1.1  thorpej  *	Perform a crash dump to a wedge.
   1053  1.1  thorpej  */
   1054  1.1  thorpej static int
   1055  1.1  thorpej dkdump(dev_t dev, daddr_t blkno, caddr_t va, size_t size)
   1056  1.1  thorpej {
   1057  1.1  thorpej 
   1058  1.1  thorpej 	/* XXX */
   1059  1.1  thorpej 	return (ENXIO);
   1060  1.1  thorpej }
   1061