Home | History | Annotate | Line # | Download | only in dkwedge
dk.c revision 1.27
      1  1.27        ad /*	$NetBSD: dk.c,v 1.27 2007/07/21 19:51:47 ad Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*-
      4  1.27        ad  * Copyright (c) 2004, 2005, 2006, 2007 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.27        ad __KERNEL_RCSID(0, "$NetBSD: dk.c,v 1.27 2007/07/21 19:51:47 ad 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.5      yamt #include <sys/buf.h>
     54   1.5      yamt #include <sys/bufq.h>
     55   1.1   thorpej #include <sys/vnode.h>
     56   1.3   thorpej #include <sys/stat.h>
     57   1.1   thorpej #include <sys/conf.h>
     58   1.1   thorpej #include <sys/callout.h>
     59   1.1   thorpej #include <sys/kernel.h>
     60   1.1   thorpej #include <sys/malloc.h>
     61   1.2   thorpej #include <sys/device.h>
     62  1.15      elad #include <sys/kauth.h>
     63   1.1   thorpej 
     64   1.1   thorpej #include <miscfs/specfs/specdev.h>
     65   1.1   thorpej 
     66   1.1   thorpej MALLOC_DEFINE(M_DKWEDGE, "dkwedge", "Disk wedge structures");
     67   1.1   thorpej 
     68   1.1   thorpej typedef enum {
     69   1.1   thorpej 	DKW_STATE_LARVAL	= 0,
     70   1.1   thorpej 	DKW_STATE_RUNNING	= 1,
     71   1.1   thorpej 	DKW_STATE_DYING		= 2,
     72   1.1   thorpej 	DKW_STATE_DEAD		= 666
     73   1.1   thorpej } dkwedge_state_t;
     74   1.1   thorpej 
     75   1.1   thorpej struct dkwedge_softc {
     76   1.2   thorpej 	struct device	*sc_dev;	/* pointer to our pseudo-device */
     77   1.2   thorpej 	struct cfdata	sc_cfdata;	/* our cfdata structure */
     78   1.1   thorpej 	uint8_t		sc_wname[128];	/* wedge name (Unicode, UTF-8) */
     79   1.1   thorpej 
     80   1.1   thorpej 	dkwedge_state_t sc_state;	/* state this wedge is in */
     81   1.1   thorpej 
     82   1.1   thorpej 	struct disk	*sc_parent;	/* parent disk */
     83   1.1   thorpej 	daddr_t		sc_offset;	/* LBA offset of wedge in parent */
     84   1.1   thorpej 	uint64_t	sc_size;	/* size of wedge in blocks */
     85   1.1   thorpej 	char		sc_ptype[32];	/* partition type */
     86   1.1   thorpej 	dev_t		sc_pdev;	/* cached parent's dev_t */
     87   1.1   thorpej 					/* link on parent's wedge list */
     88   1.1   thorpej 	LIST_ENTRY(dkwedge_softc) sc_plink;
     89   1.1   thorpej 
     90   1.1   thorpej 	struct disk	sc_dk;		/* our own disk structure */
     91   1.9      yamt 	struct bufq_state *sc_bufq;	/* buffer queue */
     92   1.1   thorpej 	struct callout	sc_restart_ch;	/* callout to restart I/O */
     93   1.1   thorpej 
     94   1.1   thorpej 	u_int		sc_iopend;	/* I/Os pending */
     95   1.1   thorpej 	int		sc_flags;	/* flags (splbio) */
     96   1.1   thorpej };
     97   1.1   thorpej 
     98   1.1   thorpej #define	DK_F_WAIT_DRAIN		0x0001	/* waiting for I/O to drain */
     99   1.1   thorpej 
    100   1.1   thorpej static void	dkstart(struct dkwedge_softc *);
    101   1.1   thorpej static void	dkiodone(struct buf *);
    102   1.1   thorpej static void	dkrestart(void *);
    103   1.1   thorpej 
    104   1.1   thorpej static dev_type_open(dkopen);
    105   1.1   thorpej static dev_type_close(dkclose);
    106   1.1   thorpej static dev_type_read(dkread);
    107   1.1   thorpej static dev_type_write(dkwrite);
    108   1.1   thorpej static dev_type_ioctl(dkioctl);
    109   1.1   thorpej static dev_type_strategy(dkstrategy);
    110   1.1   thorpej static dev_type_dump(dkdump);
    111   1.1   thorpej static dev_type_size(dksize);
    112   1.1   thorpej 
    113   1.1   thorpej const struct bdevsw dk_bdevsw = {
    114   1.1   thorpej 	dkopen, dkclose, dkstrategy, dkioctl, dkdump, dksize, D_DISK
    115   1.1   thorpej };
    116   1.1   thorpej 
    117   1.1   thorpej const struct cdevsw dk_cdevsw = {
    118   1.1   thorpej 	dkopen, dkclose, dkread, dkwrite, dkioctl,
    119   1.1   thorpej 	    nostop, notty, nopoll, nommap, nokqfilter, D_DISK
    120   1.1   thorpej };
    121   1.1   thorpej 
    122   1.1   thorpej static struct dkwedge_softc **dkwedges;
    123   1.1   thorpej static u_int ndkwedges;
    124  1.27        ad static krwlock_t dkwedges_lock;
    125   1.1   thorpej 
    126   1.1   thorpej static LIST_HEAD(, dkwedge_discovery_method) dkwedge_discovery_methods;
    127  1.27        ad static krwlock_t dkwedge_discovery_methods_lock;
    128   1.1   thorpej 
    129   1.1   thorpej /*
    130   1.2   thorpej  * dkwedge_match:
    131   1.2   thorpej  *
    132   1.2   thorpej  *	Autoconfiguration match function for pseudo-device glue.
    133   1.2   thorpej  */
    134   1.2   thorpej static int
    135  1.20  christos dkwedge_match(struct device *parent, struct cfdata *match,
    136  1.20  christos     void *aux)
    137   1.2   thorpej {
    138   1.2   thorpej 
    139   1.2   thorpej 	/* Pseudo-device; always present. */
    140   1.2   thorpej 	return (1);
    141   1.2   thorpej }
    142   1.2   thorpej 
    143   1.2   thorpej /*
    144   1.2   thorpej  * dkwedge_attach:
    145   1.2   thorpej  *
    146   1.2   thorpej  *	Autoconfiguration attach function for pseudo-device glue.
    147   1.2   thorpej  */
    148   1.2   thorpej static void
    149  1.20  christos dkwedge_attach(struct device *parent, struct device *self,
    150  1.20  christos     void *aux)
    151   1.2   thorpej {
    152   1.2   thorpej 
    153   1.2   thorpej 	/* Nothing to do. */
    154   1.2   thorpej }
    155   1.2   thorpej 
    156   1.2   thorpej /*
    157   1.2   thorpej  * dkwedge_detach:
    158   1.2   thorpej  *
    159   1.2   thorpej  *	Autoconfiguration detach function for pseudo-device glue.
    160   1.2   thorpej  */
    161   1.2   thorpej static int
    162  1.20  christos dkwedge_detach(struct device *self, int flags)
    163   1.2   thorpej {
    164   1.2   thorpej 
    165   1.2   thorpej 	/* Always succeeds. */
    166   1.2   thorpej 	return (0);
    167   1.2   thorpej }
    168   1.2   thorpej 
    169   1.2   thorpej CFDRIVER_DECL(dk, DV_DISK, NULL);
    170   1.2   thorpej CFATTACH_DECL(dk, sizeof(struct device),
    171   1.2   thorpej 	      dkwedge_match, dkwedge_attach, dkwedge_detach, NULL);
    172   1.2   thorpej 
    173   1.2   thorpej /*
    174   1.1   thorpej  * dkwedge_wait_drain:
    175   1.1   thorpej  *
    176   1.1   thorpej  *	Wait for I/O on the wedge to drain.
    177   1.1   thorpej  *	NOTE: Must be called at splbio()!
    178   1.1   thorpej  */
    179   1.1   thorpej static void
    180   1.1   thorpej dkwedge_wait_drain(struct dkwedge_softc *sc)
    181   1.1   thorpej {
    182   1.1   thorpej 
    183   1.1   thorpej 	while (sc->sc_iopend != 0) {
    184   1.1   thorpej 		sc->sc_flags |= DK_F_WAIT_DRAIN;
    185   1.1   thorpej 		(void) tsleep(&sc->sc_iopend, PRIBIO, "dkdrn", 0);
    186   1.1   thorpej 	}
    187   1.1   thorpej }
    188   1.1   thorpej 
    189   1.1   thorpej /*
    190   1.1   thorpej  * dkwedge_compute_pdev:
    191   1.1   thorpej  *
    192   1.1   thorpej  *	Compute the parent disk's dev_t.
    193   1.1   thorpej  */
    194   1.1   thorpej static int
    195   1.1   thorpej dkwedge_compute_pdev(const char *pname, dev_t *pdevp)
    196   1.1   thorpej {
    197   1.1   thorpej 	const char *name, *cp;
    198   1.1   thorpej 	int punit, pmaj;
    199   1.1   thorpej 	char devname[16];
    200   1.1   thorpej 
    201   1.1   thorpej 	name = pname;
    202   1.1   thorpej 	if ((pmaj = devsw_name2blk(name, devname, sizeof(devname))) == -1)
    203   1.1   thorpej 		return (ENODEV);
    204   1.6     perry 
    205   1.1   thorpej 	name += strlen(devname);
    206   1.1   thorpej 	for (cp = name, punit = 0; *cp >= '0' && *cp <= '9'; cp++)
    207   1.1   thorpej 		punit = (punit * 10) + (*cp - '0');
    208   1.1   thorpej 	if (cp == name) {
    209   1.1   thorpej 		/* Invalid parent disk name. */
    210   1.1   thorpej 		return (ENODEV);
    211   1.1   thorpej 	}
    212   1.1   thorpej 
    213   1.1   thorpej 	*pdevp = MAKEDISKDEV(pmaj, punit, RAW_PART);
    214   1.1   thorpej 
    215   1.1   thorpej 	return (0);
    216   1.1   thorpej }
    217   1.1   thorpej 
    218   1.1   thorpej /*
    219   1.1   thorpej  * dkwedge_array_expand:
    220   1.1   thorpej  *
    221   1.1   thorpej  *	Expand the dkwedges array.
    222   1.1   thorpej  */
    223   1.1   thorpej static void
    224   1.1   thorpej dkwedge_array_expand(void)
    225   1.1   thorpej {
    226   1.1   thorpej 	int newcnt = ndkwedges + 16;
    227   1.1   thorpej 	struct dkwedge_softc **newarray, **oldarray;
    228   1.1   thorpej 
    229   1.1   thorpej 	newarray = malloc(newcnt * sizeof(*newarray), M_DKWEDGE,
    230   1.1   thorpej 	    M_WAITOK|M_ZERO);
    231   1.1   thorpej 	if ((oldarray = dkwedges) != NULL)
    232   1.1   thorpej 		memcpy(newarray, dkwedges, ndkwedges * sizeof(*newarray));
    233   1.1   thorpej 	dkwedges = newarray;
    234   1.1   thorpej 	ndkwedges = newcnt;
    235   1.1   thorpej 	if (oldarray != NULL)
    236   1.1   thorpej 		free(oldarray, M_DKWEDGE);
    237   1.1   thorpej }
    238   1.1   thorpej 
    239   1.1   thorpej /*
    240   1.1   thorpej  * dkwedge_add:		[exported function]
    241   1.1   thorpej  *
    242   1.1   thorpej  *	Add a disk wedge based on the provided information.
    243   1.1   thorpej  *
    244   1.1   thorpej  *	The incoming dkw_devname[] is ignored, instead being
    245   1.1   thorpej  *	filled in and returned to the caller.
    246   1.1   thorpej  */
    247   1.1   thorpej int
    248   1.1   thorpej dkwedge_add(struct dkwedge_info *dkw)
    249   1.1   thorpej {
    250   1.1   thorpej 	struct dkwedge_softc *sc, *lsc;
    251   1.1   thorpej 	struct disk *pdk;
    252   1.1   thorpej 	u_int unit;
    253   1.1   thorpej 	int error;
    254   1.1   thorpej 	dev_t pdev;
    255   1.1   thorpej 
    256   1.1   thorpej 	dkw->dkw_parent[sizeof(dkw->dkw_parent) - 1] = '\0';
    257   1.1   thorpej 	pdk = disk_find(dkw->dkw_parent);
    258   1.1   thorpej 	if (pdk == NULL)
    259   1.1   thorpej 		return (ENODEV);
    260   1.1   thorpej 
    261   1.1   thorpej 	error = dkwedge_compute_pdev(pdk->dk_name, &pdev);
    262   1.1   thorpej 	if (error)
    263   1.1   thorpej 		return (error);
    264   1.1   thorpej 
    265   1.1   thorpej 	if (dkw->dkw_offset < 0)
    266   1.1   thorpej 		return (EINVAL);
    267   1.1   thorpej 
    268   1.1   thorpej 	sc = malloc(sizeof(*sc), M_DKWEDGE, M_WAITOK|M_ZERO);
    269   1.1   thorpej 	sc->sc_state = DKW_STATE_LARVAL;
    270   1.1   thorpej 	sc->sc_parent = pdk;
    271   1.1   thorpej 	sc->sc_pdev = pdev;
    272   1.1   thorpej 	sc->sc_offset = dkw->dkw_offset;
    273   1.1   thorpej 	sc->sc_size = dkw->dkw_size;
    274   1.1   thorpej 
    275   1.1   thorpej 	memcpy(sc->sc_wname, dkw->dkw_wname, sizeof(sc->sc_wname));
    276   1.1   thorpej 	sc->sc_wname[sizeof(sc->sc_wname) - 1] = '\0';
    277   1.1   thorpej 
    278   1.1   thorpej 	memcpy(sc->sc_ptype, dkw->dkw_ptype, sizeof(sc->sc_ptype));
    279   1.1   thorpej 	sc->sc_ptype[sizeof(sc->sc_ptype) - 1] = '\0';
    280   1.1   thorpej 
    281   1.9      yamt 	bufq_alloc(&sc->sc_bufq, "fcfs", 0);
    282   1.1   thorpej 
    283  1.26        ad 	callout_init(&sc->sc_restart_ch, 0);
    284   1.1   thorpej 	callout_setfunc(&sc->sc_restart_ch, dkrestart, sc);
    285   1.1   thorpej 
    286   1.1   thorpej 	/*
    287   1.1   thorpej 	 * Wedge will be added; increment the wedge count for the parent.
    288   1.1   thorpej 	 * Only allow this to happend if RAW_PART is the only thing open.
    289   1.1   thorpej 	 */
    290  1.27        ad 	mutex_enter(&pdk->dk_openlock);
    291   1.1   thorpej 	if (pdk->dk_openmask & ~(1 << RAW_PART))
    292   1.1   thorpej 		error = EBUSY;
    293   1.1   thorpej 	else {
    294   1.1   thorpej 		/* Check for wedge overlap. */
    295   1.1   thorpej 		LIST_FOREACH(lsc, &pdk->dk_wedges, sc_plink) {
    296   1.1   thorpej 			daddr_t lastblk = sc->sc_offset + sc->sc_size - 1;
    297   1.1   thorpej 			daddr_t llastblk = lsc->sc_offset + lsc->sc_size - 1;
    298   1.1   thorpej 
    299   1.1   thorpej 			if (sc->sc_offset >= lsc->sc_offset &&
    300   1.1   thorpej 			    sc->sc_offset <= llastblk) {
    301   1.1   thorpej 				/* Overlaps the tail of the exsiting wedge. */
    302   1.1   thorpej 				break;
    303   1.1   thorpej 			}
    304   1.1   thorpej 			if (lastblk >= lsc->sc_offset &&
    305   1.1   thorpej 			    lastblk <= llastblk) {
    306   1.1   thorpej 				/* Overlaps the head of the existing wedge. */
    307   1.1   thorpej 			    	break;
    308   1.1   thorpej 			}
    309   1.1   thorpej 		}
    310   1.1   thorpej 		if (lsc != NULL)
    311   1.1   thorpej 			error = EINVAL;
    312   1.1   thorpej 		else {
    313   1.1   thorpej 			pdk->dk_nwedges++;
    314   1.1   thorpej 			LIST_INSERT_HEAD(&pdk->dk_wedges, sc, sc_plink);
    315   1.1   thorpej 		}
    316   1.1   thorpej 	}
    317  1.27        ad 	mutex_exit(&pdk->dk_openlock);
    318   1.1   thorpej 	if (error) {
    319   1.9      yamt 		bufq_free(sc->sc_bufq);
    320   1.1   thorpej 		free(sc, M_DKWEDGE);
    321   1.1   thorpej 		return (error);
    322   1.1   thorpej 	}
    323   1.1   thorpej 
    324   1.2   thorpej 	/* Fill in our cfdata for the pseudo-device glue. */
    325   1.2   thorpej 	sc->sc_cfdata.cf_name = dk_cd.cd_name;
    326   1.2   thorpej 	sc->sc_cfdata.cf_atname = dk_ca.ca_name;
    327   1.2   thorpej 	/* sc->sc_cfdata.cf_unit set below */
    328   1.8   nathanw 	sc->sc_cfdata.cf_fstate = FSTATE_STAR;
    329   1.2   thorpej 
    330   1.1   thorpej 	/* Insert the larval wedge into the array. */
    331  1.27        ad 	rw_enter(&dkwedges_lock, RW_WRITER);
    332   1.1   thorpej 	for (error = 0;;) {
    333   1.1   thorpej 		struct dkwedge_softc **scpp;
    334   1.1   thorpej 
    335   1.1   thorpej 		/*
    336   1.1   thorpej 		 * Check for a duplicate wname while searching for
    337   1.1   thorpej 		 * a slot.
    338   1.1   thorpej 		 */
    339   1.1   thorpej 		for (scpp = NULL, unit = 0; unit < ndkwedges; unit++) {
    340   1.1   thorpej 			if (dkwedges[unit] == NULL) {
    341   1.1   thorpej 				if (scpp == NULL) {
    342   1.1   thorpej 					scpp = &dkwedges[unit];
    343   1.2   thorpej 					sc->sc_cfdata.cf_unit = unit;
    344   1.1   thorpej 				}
    345   1.1   thorpej 			} else {
    346   1.1   thorpej 				/* XXX Unicode. */
    347   1.1   thorpej 				if (strcmp(dkwedges[unit]->sc_wname,
    348   1.1   thorpej 					   sc->sc_wname) == 0) {
    349   1.1   thorpej 					error = EEXIST;
    350   1.1   thorpej 					break;
    351   1.1   thorpej 				}
    352   1.1   thorpej 			}
    353   1.1   thorpej 		}
    354   1.1   thorpej 		if (error)
    355   1.1   thorpej 			break;
    356   1.1   thorpej 		KASSERT(unit == ndkwedges);
    357   1.1   thorpej 		if (scpp == NULL)
    358   1.1   thorpej 			dkwedge_array_expand();
    359   1.1   thorpej 		else {
    360   1.2   thorpej 			KASSERT(scpp == &dkwedges[sc->sc_cfdata.cf_unit]);
    361   1.1   thorpej 			*scpp = sc;
    362   1.1   thorpej 			break;
    363   1.1   thorpej 		}
    364   1.1   thorpej 	}
    365  1.27        ad 	rw_exit(&dkwedges_lock);
    366   1.1   thorpej 	if (error) {
    367  1.27        ad 		mutex_enter(&pdk->dk_openlock);
    368   1.1   thorpej 		pdk->dk_nwedges--;
    369   1.1   thorpej 		LIST_REMOVE(sc, sc_plink);
    370  1.27        ad 		mutex_exit(&pdk->dk_openlock);
    371   1.1   thorpej 
    372   1.9      yamt 		bufq_free(sc->sc_bufq);
    373   1.1   thorpej 		free(sc, M_DKWEDGE);
    374   1.1   thorpej 		return (error);
    375   1.1   thorpej 	}
    376   1.1   thorpej 
    377   1.2   thorpej 	/*
    378   1.2   thorpej 	 * Now that we know the unit #, attach a pseudo-device for
    379   1.2   thorpej 	 * this wedge instance.  This will provide us with the
    380   1.2   thorpej 	 * "struct device" necessary for glue to other parts of the
    381   1.2   thorpej 	 * system.
    382   1.2   thorpej 	 *
    383   1.2   thorpej 	 * This should never fail, unless we're almost totally out of
    384   1.2   thorpej 	 * memory.
    385   1.2   thorpej 	 */
    386   1.2   thorpej 	if ((sc->sc_dev = config_attach_pseudo(&sc->sc_cfdata)) == NULL) {
    387   1.2   thorpej 		aprint_error("%s%u: unable to attach pseudo-device\n",
    388   1.2   thorpej 		    sc->sc_cfdata.cf_name, sc->sc_cfdata.cf_unit);
    389   1.2   thorpej 
    390  1.27        ad 		rw_enter(&dkwedges_lock, RW_WRITER);
    391   1.2   thorpej 		dkwedges[sc->sc_cfdata.cf_unit] = NULL;
    392  1.27        ad 		rw_exit(&dkwedges_lock);
    393   1.2   thorpej 
    394  1.27        ad 		mutex_enter(&pdk->dk_openlock);
    395   1.2   thorpej 		pdk->dk_nwedges--;
    396   1.2   thorpej 		LIST_REMOVE(sc, sc_plink);
    397  1.27        ad 		mutex_exit(&pdk->dk_openlock);
    398   1.2   thorpej 
    399   1.9      yamt 		bufq_free(sc->sc_bufq);
    400   1.2   thorpej 		free(sc, M_DKWEDGE);
    401   1.2   thorpej 		return (ENOMEM);
    402   1.2   thorpej 	}
    403   1.2   thorpej 	sc->sc_dk.dk_name = sc->sc_dev->dv_xname;
    404   1.1   thorpej 
    405   1.1   thorpej 	/* Return the devname to the caller. */
    406   1.2   thorpej 	strcpy(dkw->dkw_devname, sc->sc_dev->dv_xname);
    407   1.1   thorpej 
    408   1.1   thorpej 	/*
    409   1.1   thorpej 	 * XXX Really ought to make the disk_attach() and the changing
    410   1.1   thorpej 	 * of state to RUNNING atomic.
    411   1.1   thorpej 	 */
    412   1.1   thorpej 
    413   1.1   thorpej 	disk_attach(&sc->sc_dk);
    414   1.1   thorpej 
    415   1.1   thorpej 	/* Disk wedge is ready for use! */
    416   1.1   thorpej 	sc->sc_state = DKW_STATE_RUNNING;
    417   1.1   thorpej 
    418   1.1   thorpej 	/* Announce our arrival. */
    419   1.2   thorpej 	aprint_normal("%s at %s: %s\n", sc->sc_dev->dv_xname, pdk->dk_name,
    420   1.1   thorpej 	    sc->sc_wname);	/* XXX Unicode */
    421   1.1   thorpej 	aprint_normal("%s: %"PRIu64" blocks at %"PRId64", type: %s\n",
    422   1.2   thorpej 	    sc->sc_dev->dv_xname, sc->sc_size, sc->sc_offset, sc->sc_ptype);
    423   1.1   thorpej 
    424   1.1   thorpej 	return (0);
    425   1.1   thorpej }
    426   1.1   thorpej 
    427   1.1   thorpej /*
    428   1.1   thorpej  * dkwedge_del:		[exported function]
    429   1.1   thorpej  *
    430   1.1   thorpej  *	Delete a disk wedge based on the provided information.
    431   1.1   thorpej  *	NOTE: We look up the wedge based on the wedge devname,
    432   1.1   thorpej  *	not wname.
    433   1.1   thorpej  */
    434   1.1   thorpej int
    435   1.1   thorpej dkwedge_del(struct dkwedge_info *dkw)
    436   1.1   thorpej {
    437   1.1   thorpej 	struct dkwedge_softc *sc = NULL;
    438   1.1   thorpej 	u_int unit;
    439  1.14   thorpej 	int bmaj, cmaj, s;
    440   1.1   thorpej 
    441   1.1   thorpej 	/* Find our softc. */
    442   1.1   thorpej 	dkw->dkw_devname[sizeof(dkw->dkw_devname) - 1] = '\0';
    443  1.27        ad 	rw_enter(&dkwedges_lock, RW_WRITER);
    444   1.1   thorpej 	for (unit = 0; unit < ndkwedges; unit++) {
    445   1.1   thorpej 		if ((sc = dkwedges[unit]) != NULL &&
    446   1.2   thorpej 		    strcmp(sc->sc_dev->dv_xname, dkw->dkw_devname) == 0 &&
    447   1.1   thorpej 		    strcmp(sc->sc_parent->dk_name, dkw->dkw_parent) == 0) {
    448   1.1   thorpej 			/* Mark the wedge as dying. */
    449   1.1   thorpej 			sc->sc_state = DKW_STATE_DYING;
    450   1.1   thorpej 			break;
    451   1.1   thorpej 		}
    452   1.1   thorpej 	}
    453  1.27        ad 	rw_exit(&dkwedges_lock);
    454   1.1   thorpej 	if (unit == ndkwedges)
    455   1.1   thorpej 		return (ESRCH);
    456   1.1   thorpej 
    457   1.1   thorpej 	KASSERT(sc != NULL);
    458   1.1   thorpej 
    459   1.1   thorpej 	/* Locate the wedge major numbers. */
    460   1.1   thorpej 	bmaj = bdevsw_lookup_major(&dk_bdevsw);
    461   1.1   thorpej 	cmaj = cdevsw_lookup_major(&dk_cdevsw);
    462   1.1   thorpej 
    463   1.1   thorpej 	/* Kill any pending restart. */
    464   1.1   thorpej 	callout_stop(&sc->sc_restart_ch);
    465   1.1   thorpej 
    466   1.1   thorpej 	/*
    467   1.1   thorpej 	 * dkstart() will kill any queued buffers now that the
    468   1.1   thorpej 	 * state of the wedge is not RUNNING.  Once we've done
    469   1.1   thorpej 	 * that, wait for any other pending I/O to complete.
    470   1.1   thorpej 	 */
    471   1.1   thorpej 	s = splbio();
    472   1.1   thorpej 	dkstart(sc);
    473   1.1   thorpej 	dkwedge_wait_drain(sc);
    474   1.1   thorpej 	splx(s);
    475   1.1   thorpej 
    476   1.1   thorpej 	/* Nuke the vnodes for any open instances. */
    477  1.14   thorpej 	vdevgone(bmaj, unit, unit, VBLK);
    478  1.14   thorpej 	vdevgone(cmaj, unit, unit, VCHR);
    479   1.1   thorpej 
    480   1.1   thorpej 	/* Clean up the parent. */
    481  1.27        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
    482  1.27        ad 	mutex_enter(&sc->sc_parent->dk_rawlock);
    483   1.3   thorpej 	if (sc->sc_dk.dk_openmask) {
    484   1.1   thorpej 		if (sc->sc_parent->dk_rawopens-- == 1) {
    485   1.1   thorpej 			KASSERT(sc->sc_parent->dk_rawvp != NULL);
    486   1.1   thorpej 			(void) vn_close(sc->sc_parent->dk_rawvp, FREAD | FWRITE,
    487  1.10  christos 					NOCRED, curlwp);
    488   1.1   thorpej 			sc->sc_parent->dk_rawvp = NULL;
    489   1.1   thorpej 		}
    490   1.3   thorpej 		sc->sc_dk.dk_openmask = 0;
    491   1.1   thorpej 	}
    492  1.27        ad 	mutex_exit(&sc->sc_parent->dk_rawlock);
    493  1.27        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
    494   1.1   thorpej 
    495   1.1   thorpej 	/* Announce our departure. */
    496   1.2   thorpej 	aprint_normal("%s at %s (%s) deleted\n", sc->sc_dev->dv_xname,
    497   1.1   thorpej 	    sc->sc_parent->dk_name,
    498   1.1   thorpej 	    sc->sc_wname);	/* XXX Unicode */
    499   1.1   thorpej 
    500   1.2   thorpej 	/* Delete our pseudo-device. */
    501   1.2   thorpej 	(void) config_detach(sc->sc_dev, DETACH_FORCE | DETACH_QUIET);
    502   1.2   thorpej 
    503  1.27        ad 	mutex_enter(&sc->sc_parent->dk_openlock);
    504   1.1   thorpej 	sc->sc_parent->dk_nwedges--;
    505   1.1   thorpej 	LIST_REMOVE(sc, sc_plink);
    506  1.27        ad 	mutex_exit(&sc->sc_parent->dk_openlock);
    507   1.1   thorpej 
    508   1.1   thorpej 	/* Delete our buffer queue. */
    509   1.9      yamt 	bufq_free(sc->sc_bufq);
    510   1.1   thorpej 
    511   1.1   thorpej 	/* Detach from the disk list. */
    512   1.1   thorpej 	disk_detach(&sc->sc_dk);
    513   1.1   thorpej 
    514   1.1   thorpej 	/* Poof. */
    515  1.27        ad 	rw_enter(&dkwedges_lock, RW_WRITER);
    516   1.1   thorpej 	dkwedges[unit] = NULL;
    517   1.1   thorpej 	sc->sc_state = DKW_STATE_DEAD;
    518  1.27        ad 	rw_exit(&dkwedges_lock);
    519   1.1   thorpej 
    520   1.1   thorpej 	free(sc, M_DKWEDGE);
    521   1.1   thorpej 
    522   1.1   thorpej 	return (0);
    523   1.1   thorpej }
    524   1.1   thorpej 
    525   1.1   thorpej /*
    526   1.1   thorpej  * dkwedge_delall:	[exported function]
    527   1.1   thorpej  *
    528   1.1   thorpej  *	Delete all of the wedges on the specified disk.  Used when
    529   1.1   thorpej  *	a disk is being detached.
    530   1.1   thorpej  */
    531   1.1   thorpej void
    532   1.1   thorpej dkwedge_delall(struct disk *pdk)
    533   1.1   thorpej {
    534   1.1   thorpej 	struct dkwedge_info dkw;
    535   1.1   thorpej 	struct dkwedge_softc *sc;
    536   1.1   thorpej 
    537   1.1   thorpej 	for (;;) {
    538  1.27        ad 		mutex_enter(&pdk->dk_openlock);
    539   1.1   thorpej 		if ((sc = LIST_FIRST(&pdk->dk_wedges)) == NULL) {
    540   1.1   thorpej 			KASSERT(pdk->dk_nwedges == 0);
    541  1.27        ad 			mutex_exit(&pdk->dk_openlock);
    542   1.1   thorpej 			return;
    543   1.1   thorpej 		}
    544   1.1   thorpej 		strcpy(dkw.dkw_parent, pdk->dk_name);
    545   1.2   thorpej 		strcpy(dkw.dkw_devname, sc->sc_dev->dv_xname);
    546  1.27        ad 		mutex_exit(&pdk->dk_openlock);
    547   1.1   thorpej 		(void) dkwedge_del(&dkw);
    548   1.1   thorpej 	}
    549   1.1   thorpej }
    550   1.1   thorpej 
    551   1.1   thorpej /*
    552   1.1   thorpej  * dkwedge_list:	[exported function]
    553   1.1   thorpej  *
    554   1.1   thorpej  *	List all of the wedges on a particular disk.
    555   1.1   thorpej  *	If p == NULL, the buffer is in kernel space.  Otherwise, it is
    556   1.1   thorpej  *	in user space of the specified process.
    557   1.1   thorpej  */
    558   1.1   thorpej int
    559  1.10  christos dkwedge_list(struct disk *pdk, struct dkwedge_list *dkwl, struct lwp *l)
    560   1.1   thorpej {
    561   1.1   thorpej 	struct uio uio;
    562   1.1   thorpej 	struct iovec iov;
    563   1.1   thorpej 	struct dkwedge_softc *sc;
    564   1.1   thorpej 	struct dkwedge_info dkw;
    565  1.12      yamt 	struct vmspace *vm;
    566   1.1   thorpej 	int error = 0;
    567   1.1   thorpej 
    568   1.1   thorpej 	iov.iov_base = dkwl->dkwl_buf;
    569   1.1   thorpej 	iov.iov_len = dkwl->dkwl_bufsize;
    570   1.1   thorpej 
    571   1.1   thorpej 	uio.uio_iov = &iov;
    572   1.1   thorpej 	uio.uio_iovcnt = 1;
    573   1.1   thorpej 	uio.uio_offset = 0;
    574   1.1   thorpej 	uio.uio_resid = dkwl->dkwl_bufsize;
    575   1.1   thorpej 	uio.uio_rw = UIO_READ;
    576  1.12      yamt 	if (l == NULL) {
    577  1.12      yamt 		UIO_SETUP_SYSSPACE(&uio);
    578  1.12      yamt 	} else {
    579  1.12      yamt 		error = proc_vmspace_getref(l->l_proc, &vm);
    580  1.12      yamt 		if (error) {
    581  1.12      yamt 			return error;
    582  1.12      yamt 		}
    583  1.12      yamt 		uio.uio_vmspace = vm;
    584  1.12      yamt 	}
    585   1.1   thorpej 
    586   1.1   thorpej 	dkwl->dkwl_ncopied = 0;
    587   1.1   thorpej 
    588  1.27        ad 	mutex_enter(&pdk->dk_openlock);
    589   1.1   thorpej 	LIST_FOREACH(sc, &pdk->dk_wedges, sc_plink) {
    590   1.1   thorpej 		if (uio.uio_resid < sizeof(dkw))
    591   1.1   thorpej 			break;
    592   1.1   thorpej 
    593   1.1   thorpej 		if (sc->sc_state != DKW_STATE_RUNNING)
    594   1.1   thorpej 			continue;
    595   1.1   thorpej 
    596   1.2   thorpej 		strcpy(dkw.dkw_devname, sc->sc_dev->dv_xname);
    597   1.1   thorpej 		memcpy(dkw.dkw_wname, sc->sc_wname, sizeof(dkw.dkw_wname));
    598   1.1   thorpej 		dkw.dkw_wname[sizeof(dkw.dkw_wname) - 1] = '\0';
    599   1.1   thorpej 		strcpy(dkw.dkw_parent, sc->sc_parent->dk_name);
    600   1.1   thorpej 		dkw.dkw_offset = sc->sc_offset;
    601   1.1   thorpej 		dkw.dkw_size = sc->sc_size;
    602   1.1   thorpej 		strcpy(dkw.dkw_ptype, sc->sc_ptype);
    603   1.1   thorpej 
    604   1.1   thorpej 		error = uiomove(&dkw, sizeof(dkw), &uio);
    605   1.1   thorpej 		if (error)
    606   1.1   thorpej 			break;
    607   1.1   thorpej 		dkwl->dkwl_ncopied++;
    608   1.1   thorpej 	}
    609   1.1   thorpej 	dkwl->dkwl_nwedges = pdk->dk_nwedges;
    610  1.27        ad 	mutex_exit(&pdk->dk_openlock);
    611   1.1   thorpej 
    612  1.12      yamt 	if (l != NULL) {
    613  1.12      yamt 		uvmspace_free(vm);
    614  1.12      yamt 	}
    615  1.12      yamt 
    616   1.1   thorpej 	return (error);
    617   1.1   thorpej }
    618   1.1   thorpej 
    619  1.25    dyoung device_t
    620  1.25    dyoung dkwedge_find_by_wname(const char *wname)
    621  1.25    dyoung {
    622  1.25    dyoung 	device_t dv = NULL;
    623  1.25    dyoung 	struct dkwedge_softc *sc;
    624  1.25    dyoung 	int i;
    625  1.25    dyoung 
    626  1.27        ad 	rw_enter(&dkwedges_lock, RW_WRITER);
    627  1.25    dyoung 	for (i = 0; i < ndkwedges; i++) {
    628  1.25    dyoung 		if ((sc = dkwedges[i]) == NULL)
    629  1.25    dyoung 			continue;
    630  1.25    dyoung 		if (strcmp(sc->sc_wname, wname) == 0) {
    631  1.25    dyoung 			if (dv != NULL) {
    632  1.25    dyoung 				printf(
    633  1.25    dyoung 				    "WARNING: double match for wedge name %s "
    634  1.25    dyoung 				    "(%s, %s)\n", wname, device_xname(dv),
    635  1.25    dyoung 				    device_xname(sc->sc_dev));
    636  1.25    dyoung 				continue;
    637  1.25    dyoung 			}
    638  1.25    dyoung 			dv = sc->sc_dev;
    639  1.25    dyoung 		}
    640  1.25    dyoung 	}
    641  1.27        ad 	rw_exit(&dkwedges_lock);
    642  1.25    dyoung 	return dv;
    643  1.25    dyoung }
    644  1.25    dyoung 
    645  1.25    dyoung void
    646  1.25    dyoung dkwedge_print_wnames(void)
    647  1.25    dyoung {
    648  1.25    dyoung 	struct dkwedge_softc *sc;
    649  1.25    dyoung 	int i;
    650  1.25    dyoung 
    651  1.27        ad 	rw_enter(&dkwedges_lock, RW_WRITER);
    652  1.25    dyoung 	for (i = 0; i < ndkwedges; i++) {
    653  1.25    dyoung 		if ((sc = dkwedges[i]) == NULL)
    654  1.25    dyoung 			continue;
    655  1.25    dyoung 		printf(" wedge:%s", sc->sc_wname);
    656  1.25    dyoung 	}
    657  1.27        ad 	rw_exit(&dkwedges_lock);
    658  1.25    dyoung }
    659  1.25    dyoung 
    660   1.1   thorpej /*
    661   1.3   thorpej  * dkwedge_set_bootwedge
    662   1.3   thorpej  *
    663   1.3   thorpej  *	Set the booted_wedge global based on the specified parent name
    664   1.3   thorpej  *	and offset/length.
    665   1.3   thorpej  */
    666   1.3   thorpej void
    667   1.3   thorpej dkwedge_set_bootwedge(struct device *parent, daddr_t startblk, uint64_t nblks)
    668   1.3   thorpej {
    669   1.3   thorpej 	struct dkwedge_softc *sc;
    670   1.3   thorpej 	int i;
    671   1.3   thorpej 
    672  1.27        ad 	rw_enter(&dkwedges_lock, RW_WRITER);
    673   1.3   thorpej 	for (i = 0; i < ndkwedges; i++) {
    674   1.3   thorpej 		if ((sc = dkwedges[i]) == NULL)
    675   1.3   thorpej 			continue;
    676   1.3   thorpej 		if (strcmp(sc->sc_parent->dk_name, parent->dv_xname) == 0 &&
    677   1.3   thorpej 		    sc->sc_offset == startblk &&
    678   1.3   thorpej 		    sc->sc_size == nblks) {
    679   1.3   thorpej 			if (booted_wedge) {
    680   1.3   thorpej 				printf("WARNING: double match for boot wedge "
    681   1.3   thorpej 				    "(%s, %s)\n",
    682   1.3   thorpej 				    booted_wedge->dv_xname,
    683   1.3   thorpej 				    sc->sc_dev->dv_xname);
    684   1.3   thorpej 				continue;
    685   1.3   thorpej 			}
    686   1.3   thorpej 			booted_device = parent;
    687   1.3   thorpej 			booted_wedge = sc->sc_dev;
    688   1.3   thorpej 			booted_partition = 0;
    689   1.3   thorpej 		}
    690   1.3   thorpej 	}
    691   1.3   thorpej 	/*
    692   1.3   thorpej 	 * XXX What if we don't find one?  Should we create a special
    693   1.3   thorpej 	 * XXX root wedge?
    694   1.3   thorpej 	 */
    695  1.27        ad 	rw_exit(&dkwedges_lock);
    696   1.3   thorpej }
    697   1.3   thorpej 
    698   1.3   thorpej /*
    699  1.18  uebayasi  * We need a dummy object to stuff into the dkwedge discovery method link
    700   1.1   thorpej  * set to ensure that there is always at least one object in the set.
    701   1.1   thorpej  */
    702   1.1   thorpej static struct dkwedge_discovery_method dummy_discovery_method;
    703   1.1   thorpej __link_set_add_bss(dkwedge_methods, dummy_discovery_method);
    704   1.1   thorpej 
    705   1.1   thorpej /*
    706  1.27        ad  * dkwedge_init:
    707   1.1   thorpej  *
    708  1.27        ad  *	Initialize the disk wedge subsystem.
    709   1.1   thorpej  */
    710  1.27        ad void
    711  1.27        ad dkwedge_init(void)
    712   1.1   thorpej {
    713   1.1   thorpej 	__link_set_decl(dkwedge_methods, struct dkwedge_discovery_method);
    714   1.1   thorpej 	struct dkwedge_discovery_method * const *ddmp;
    715   1.1   thorpej 	struct dkwedge_discovery_method *lddm, *ddm;
    716   1.1   thorpej 
    717  1.27        ad 	rw_init(&dkwedges_lock);
    718  1.27        ad 	rw_init(&dkwedge_discovery_methods_lock);
    719  1.27        ad 
    720  1.27        ad 	if (config_cfdriver_attach(&dk_cd) != 0)
    721  1.27        ad 		panic("dkwedge: unable to attach cfdriver");
    722  1.27        ad 	if (config_cfattach_attach(dk_cd.cd_name, &dk_ca) != 0)
    723  1.27        ad 		panic("dkwedge: unable to attach cfattach");
    724   1.1   thorpej 
    725  1.27        ad 	rw_enter(&dkwedge_discovery_methods_lock, RW_WRITER);
    726   1.1   thorpej 
    727   1.1   thorpej 	LIST_INIT(&dkwedge_discovery_methods);
    728   1.1   thorpej 
    729   1.1   thorpej 	__link_set_foreach(ddmp, dkwedge_methods) {
    730   1.1   thorpej 		ddm = *ddmp;
    731   1.1   thorpej 		if (ddm == &dummy_discovery_method)
    732   1.1   thorpej 			continue;
    733   1.1   thorpej 		if (LIST_EMPTY(&dkwedge_discovery_methods)) {
    734   1.1   thorpej 			LIST_INSERT_HEAD(&dkwedge_discovery_methods,
    735   1.1   thorpej 					 ddm, ddm_list);
    736   1.1   thorpej 			continue;
    737   1.1   thorpej 		}
    738   1.1   thorpej 		LIST_FOREACH(lddm, &dkwedge_discovery_methods, ddm_list) {
    739   1.1   thorpej 			if (ddm->ddm_priority == lddm->ddm_priority) {
    740   1.1   thorpej 				aprint_error("dk-method-%s: method \"%s\" "
    741   1.1   thorpej 				    "already exists at priority %d\n",
    742   1.1   thorpej 				    ddm->ddm_name, lddm->ddm_name,
    743   1.1   thorpej 				    lddm->ddm_priority);
    744   1.1   thorpej 				/* Not inserted. */
    745   1.1   thorpej 				break;
    746   1.1   thorpej 			}
    747   1.1   thorpej 			if (ddm->ddm_priority < lddm->ddm_priority) {
    748   1.1   thorpej 				/* Higher priority; insert before. */
    749   1.1   thorpej 				LIST_INSERT_BEFORE(lddm, ddm, ddm_list);
    750   1.1   thorpej 				break;
    751   1.1   thorpej 			}
    752   1.1   thorpej 			if (LIST_NEXT(lddm, ddm_list) == NULL) {
    753   1.1   thorpej 				/* Last one; insert after. */
    754   1.1   thorpej 				KASSERT(lddm->ddm_priority < ddm->ddm_priority);
    755   1.1   thorpej 				LIST_INSERT_AFTER(lddm, ddm, ddm_list);
    756   1.1   thorpej 				break;
    757   1.1   thorpej 			}
    758   1.1   thorpej 		}
    759   1.1   thorpej 	}
    760   1.1   thorpej 
    761  1.27        ad 	rw_exit(&dkwedge_discovery_methods_lock);
    762   1.1   thorpej }
    763   1.1   thorpej 
    764   1.1   thorpej #ifdef DKWEDGE_AUTODISCOVER
    765   1.1   thorpej int	dkwedge_autodiscover = 1;
    766   1.1   thorpej #else
    767   1.1   thorpej int	dkwedge_autodiscover = 0;
    768   1.1   thorpej #endif
    769   1.1   thorpej 
    770   1.1   thorpej /*
    771   1.1   thorpej  * dkwedge_discover:	[exported function]
    772   1.1   thorpej  *
    773   1.1   thorpej  *	Discover the wedges on a newly attached disk.
    774   1.1   thorpej  */
    775   1.1   thorpej void
    776   1.1   thorpej dkwedge_discover(struct disk *pdk)
    777   1.1   thorpej {
    778   1.1   thorpej 	struct dkwedge_discovery_method *ddm;
    779   1.1   thorpej 	struct vnode *vp;
    780   1.1   thorpej 	int error;
    781   1.1   thorpej 	dev_t pdev;
    782   1.1   thorpej 
    783   1.1   thorpej 	/*
    784   1.1   thorpej 	 * Require people playing with wedges to enable this explicitly.
    785   1.1   thorpej 	 */
    786   1.1   thorpej 	if (dkwedge_autodiscover == 0)
    787   1.1   thorpej 		return;
    788   1.1   thorpej 
    789  1.27        ad 	rw_enter(&dkwedge_discovery_methods_lock, RW_READER);
    790   1.1   thorpej 
    791   1.1   thorpej 	error = dkwedge_compute_pdev(pdk->dk_name, &pdev);
    792   1.1   thorpej 	if (error) {
    793   1.1   thorpej 		aprint_error("%s: unable to compute pdev, error = %d\n",
    794   1.1   thorpej 		    pdk->dk_name, error);
    795   1.1   thorpej 		goto out;
    796   1.1   thorpej 	}
    797   1.1   thorpej 
    798   1.1   thorpej 	error = bdevvp(pdev, &vp);
    799   1.1   thorpej 	if (error) {
    800   1.1   thorpej 		aprint_error("%s: unable to find vnode for pdev, error = %d\n",
    801   1.1   thorpej 		    pdk->dk_name, error);
    802   1.1   thorpej 		goto out;
    803   1.1   thorpej 	}
    804   1.1   thorpej 
    805   1.1   thorpej 	error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    806   1.1   thorpej 	if (error) {
    807   1.1   thorpej 		aprint_error("%s: unable to lock vnode for pdev, error = %d\n",
    808   1.1   thorpej 		    pdk->dk_name, error);
    809   1.1   thorpej 		vrele(vp);
    810   1.1   thorpej 		goto out;
    811   1.1   thorpej 	}
    812   1.1   thorpej 
    813  1.21      yamt 	error = VOP_OPEN(vp, FREAD, NOCRED, 0);
    814   1.1   thorpej 	if (error) {
    815   1.1   thorpej 		aprint_error("%s: unable to open device, error = %d\n",
    816   1.1   thorpej 		    pdk->dk_name, error);
    817   1.1   thorpej 		vput(vp);
    818   1.1   thorpej 		goto out;
    819   1.1   thorpej 	}
    820   1.1   thorpej 	VOP_UNLOCK(vp, 0);
    821   1.1   thorpej 
    822   1.1   thorpej 	/*
    823   1.1   thorpej 	 * For each supported partition map type, look to see if
    824   1.1   thorpej 	 * this map type exists.  If so, parse it and add the
    825   1.1   thorpej 	 * corresponding wedges.
    826   1.1   thorpej 	 */
    827   1.1   thorpej 	LIST_FOREACH(ddm, &dkwedge_discovery_methods, ddm_list) {
    828   1.1   thorpej 		error = (*ddm->ddm_discover)(pdk, vp);
    829   1.1   thorpej 		if (error == 0) {
    830   1.1   thorpej 			/* Successfully created wedges; we're done. */
    831   1.1   thorpej 			break;
    832   1.1   thorpej 		}
    833   1.1   thorpej 	}
    834   1.1   thorpej 
    835  1.21      yamt 	error = vn_close(vp, FREAD, NOCRED, curlwp);
    836   1.1   thorpej 	if (error) {
    837   1.1   thorpej 		aprint_error("%s: unable to close device, error = %d\n",
    838   1.1   thorpej 		    pdk->dk_name, error);
    839   1.1   thorpej 		/* We'll just assume the vnode has been cleaned up. */
    840   1.1   thorpej 	}
    841   1.1   thorpej  out:
    842  1.27        ad 	rw_exit(&dkwedge_discovery_methods_lock);
    843   1.1   thorpej }
    844   1.1   thorpej 
    845   1.1   thorpej /*
    846   1.1   thorpej  * dkwedge_read:
    847   1.1   thorpej  *
    848   1.1   thorpej  *	Read the some data from the specified disk, used for
    849   1.1   thorpej  *	partition discovery.
    850   1.1   thorpej  */
    851   1.1   thorpej int
    852  1.20  christos dkwedge_read(struct disk *pdk, struct vnode *vp, daddr_t blkno,
    853  1.19  christos     void *tbuf, size_t len)
    854   1.1   thorpej {
    855   1.1   thorpej 	struct buf b;
    856   1.1   thorpej 
    857   1.1   thorpej 	BUF_INIT(&b);
    858   1.1   thorpej 
    859   1.1   thorpej 	b.b_vp = vp;
    860   1.1   thorpej 	b.b_dev = vp->v_rdev;
    861   1.1   thorpej 	b.b_blkno = blkno;
    862   1.1   thorpej 	b.b_bcount = b.b_resid = len;
    863   1.1   thorpej 	b.b_flags = B_READ;
    864   1.1   thorpej 	b.b_proc = curproc;
    865   1.7  christos 	b.b_data = tbuf;
    866   1.1   thorpej 
    867   1.1   thorpej 	VOP_STRATEGY(vp, &b);
    868   1.1   thorpej 	return (biowait(&b));
    869   1.1   thorpej }
    870   1.1   thorpej 
    871   1.1   thorpej /*
    872   1.1   thorpej  * dkwedge_lookup:
    873   1.1   thorpej  *
    874   1.1   thorpej  *	Look up a dkwedge_softc based on the provided dev_t.
    875   1.1   thorpej  */
    876   1.1   thorpej static struct dkwedge_softc *
    877   1.1   thorpej dkwedge_lookup(dev_t dev)
    878   1.1   thorpej {
    879   1.3   thorpej 	int unit = minor(dev);
    880   1.1   thorpej 
    881   1.1   thorpej 	if (unit >= ndkwedges)
    882   1.1   thorpej 		return (NULL);
    883   1.1   thorpej 
    884   1.1   thorpej 	KASSERT(dkwedges != NULL);
    885   1.1   thorpej 
    886   1.1   thorpej 	return (dkwedges[unit]);
    887   1.1   thorpej }
    888   1.1   thorpej 
    889   1.1   thorpej /*
    890   1.1   thorpej  * dkopen:		[devsw entry point]
    891   1.1   thorpej  *
    892   1.1   thorpej  *	Open a wedge.
    893   1.1   thorpej  */
    894   1.1   thorpej static int
    895  1.20  christos dkopen(dev_t dev, int flags, int fmt, struct lwp *l)
    896   1.1   thorpej {
    897   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
    898   1.1   thorpej 	struct vnode *vp;
    899  1.14   thorpej 	int error = 0;
    900   1.1   thorpej 
    901   1.1   thorpej 	if (sc == NULL)
    902   1.1   thorpej 		return (ENODEV);
    903   1.1   thorpej 
    904   1.1   thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
    905   1.1   thorpej 		return (ENXIO);
    906   1.1   thorpej 
    907   1.1   thorpej 	/*
    908   1.1   thorpej 	 * We go through a complicated little dance to only open the parent
    909   1.1   thorpej 	 * vnode once per wedge, no matter how many times the wedge is
    910   1.1   thorpej 	 * opened.  The reason?  We see one dkopen() per open call, but
    911   1.1   thorpej 	 * only dkclose() on the last close.
    912   1.1   thorpej 	 */
    913  1.27        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
    914  1.27        ad 	mutex_enter(&sc->sc_parent->dk_rawlock);
    915   1.3   thorpej 	if (sc->sc_dk.dk_openmask == 0) {
    916  1.23    dyoung 		if (sc->sc_parent->dk_rawopens == 0) {
    917   1.1   thorpej 			KASSERT(sc->sc_parent->dk_rawvp == NULL);
    918   1.1   thorpej 			error = bdevvp(sc->sc_pdev, &vp);
    919   1.1   thorpej 			if (error)
    920   1.1   thorpej 				goto popen_fail;
    921   1.1   thorpej 			error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    922   1.1   thorpej 			if (error) {
    923   1.1   thorpej 				vrele(vp);
    924   1.1   thorpej 				goto popen_fail;
    925   1.1   thorpej 			}
    926   1.1   thorpej 			error = VOP_OPEN(vp, FREAD | FWRITE, NOCRED, 0);
    927   1.1   thorpej 			if (error) {
    928   1.1   thorpej 				vput(vp);
    929   1.1   thorpej 				goto popen_fail;
    930   1.1   thorpej 			}
    931   1.1   thorpej 			/* VOP_OPEN() doesn't do this for us. */
    932   1.1   thorpej 			vp->v_writecount++;
    933   1.1   thorpej 			VOP_UNLOCK(vp, 0);
    934   1.1   thorpej 			sc->sc_parent->dk_rawvp = vp;
    935   1.1   thorpej 		}
    936  1.24  christos 		sc->sc_parent->dk_rawopens++;
    937   1.1   thorpej 	}
    938  1.17       dbj 	if (fmt == S_IFCHR)
    939  1.17       dbj 		sc->sc_dk.dk_copenmask |= 1;
    940  1.17       dbj 	else
    941  1.17       dbj 		sc->sc_dk.dk_bopenmask |= 1;
    942  1.17       dbj 	sc->sc_dk.dk_openmask =
    943  1.17       dbj 	    sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    944   1.1   thorpej 
    945   1.1   thorpej  popen_fail:
    946  1.27        ad 	mutex_exit(&sc->sc_parent->dk_rawlock);
    947  1.27        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
    948   1.1   thorpej 	return (error);
    949   1.1   thorpej }
    950   1.1   thorpej 
    951   1.1   thorpej /*
    952   1.1   thorpej  * dkclose:		[devsw entry point]
    953   1.1   thorpej  *
    954   1.1   thorpej  *	Close a wedge.
    955   1.1   thorpej  */
    956   1.1   thorpej static int
    957  1.20  christos dkclose(dev_t dev, int flags, int fmt, struct lwp *l)
    958   1.1   thorpej {
    959   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
    960   1.1   thorpej 	int error = 0;
    961   1.1   thorpej 
    962   1.3   thorpej 	KASSERT(sc->sc_dk.dk_openmask != 0);
    963   1.1   thorpej 
    964  1.27        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
    965  1.27        ad 	mutex_enter(&sc->sc_parent->dk_rawlock);
    966   1.1   thorpej 
    967   1.3   thorpej 	if (fmt == S_IFCHR)
    968   1.3   thorpej 		sc->sc_dk.dk_copenmask &= ~1;
    969   1.3   thorpej 	else
    970   1.3   thorpej 		sc->sc_dk.dk_bopenmask &= ~1;
    971   1.3   thorpej 	sc->sc_dk.dk_openmask =
    972   1.3   thorpej 	    sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    973   1.3   thorpej 
    974   1.3   thorpej 	if (sc->sc_dk.dk_openmask == 0) {
    975   1.3   thorpej 		if (sc->sc_parent->dk_rawopens-- == 1) {
    976   1.3   thorpej 			KASSERT(sc->sc_parent->dk_rawvp != NULL);
    977   1.3   thorpej 			error = vn_close(sc->sc_parent->dk_rawvp,
    978  1.10  christos 					 FREAD | FWRITE, NOCRED, l);
    979   1.3   thorpej 			sc->sc_parent->dk_rawvp = NULL;
    980   1.3   thorpej 		}
    981   1.1   thorpej 	}
    982   1.1   thorpej 
    983  1.27        ad 	mutex_exit(&sc->sc_parent->dk_rawlock);
    984  1.27        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
    985   1.1   thorpej 
    986   1.1   thorpej 	return (error);
    987   1.1   thorpej }
    988   1.1   thorpej 
    989   1.1   thorpej /*
    990   1.1   thorpej  * dkstragegy:		[devsw entry point]
    991   1.1   thorpej  *
    992   1.1   thorpej  *	Perform I/O based on the wedge I/O strategy.
    993   1.1   thorpej  */
    994   1.1   thorpej static void
    995   1.1   thorpej dkstrategy(struct buf *bp)
    996   1.1   thorpej {
    997   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(bp->b_dev);
    998   1.1   thorpej 	int s;
    999   1.1   thorpej 
   1000   1.1   thorpej 	if (sc->sc_state != DKW_STATE_RUNNING) {
   1001   1.1   thorpej 		bp->b_error = ENXIO;
   1002   1.1   thorpej 		bp->b_flags |= B_ERROR;
   1003   1.1   thorpej 		goto done;
   1004   1.1   thorpej 	}
   1005   1.1   thorpej 
   1006   1.1   thorpej 	/* If it's an empty transfer, wake up the top half now. */
   1007   1.1   thorpej 	if (bp->b_bcount == 0)
   1008   1.1   thorpej 		goto done;
   1009   1.1   thorpej 
   1010   1.1   thorpej 	/* Make sure it's in-range. */
   1011   1.1   thorpej 	if (bounds_check_with_mediasize(bp, DEV_BSIZE, sc->sc_size) <= 0)
   1012   1.1   thorpej 		goto done;
   1013   1.1   thorpej 
   1014   1.1   thorpej 	/* Translate it to the parent's raw LBA. */
   1015   1.1   thorpej 	bp->b_rawblkno = bp->b_blkno + sc->sc_offset;
   1016   1.1   thorpej 
   1017   1.1   thorpej 	/* Place it in the queue and start I/O on the unit. */
   1018   1.1   thorpej 	s = splbio();
   1019   1.1   thorpej 	sc->sc_iopend++;
   1020   1.9      yamt 	BUFQ_PUT(sc->sc_bufq, bp);
   1021   1.1   thorpej 	dkstart(sc);
   1022   1.1   thorpej 	splx(s);
   1023   1.1   thorpej 	return;
   1024   1.1   thorpej 
   1025   1.1   thorpej  done:
   1026   1.1   thorpej 	bp->b_resid = bp->b_bcount;
   1027   1.1   thorpej 	biodone(bp);
   1028   1.1   thorpej }
   1029   1.1   thorpej 
   1030   1.1   thorpej /*
   1031   1.1   thorpej  * dkstart:
   1032   1.1   thorpej  *
   1033   1.1   thorpej  *	Start I/O that has been enqueued on the wedge.
   1034   1.1   thorpej  *	NOTE: Must be called at splbio()!
   1035   1.1   thorpej  */
   1036   1.1   thorpej static void
   1037   1.1   thorpej dkstart(struct dkwedge_softc *sc)
   1038   1.1   thorpej {
   1039   1.1   thorpej 	struct buf *bp, *nbp;
   1040   1.1   thorpej 
   1041   1.1   thorpej 	/* Do as much work as has been enqueued. */
   1042   1.9      yamt 	while ((bp = BUFQ_PEEK(sc->sc_bufq)) != NULL) {
   1043   1.1   thorpej 		if (sc->sc_state != DKW_STATE_RUNNING) {
   1044   1.9      yamt 			(void) BUFQ_GET(sc->sc_bufq);
   1045   1.1   thorpej 			if (sc->sc_iopend-- == 1 &&
   1046   1.1   thorpej 			    (sc->sc_flags & DK_F_WAIT_DRAIN) != 0) {
   1047   1.1   thorpej 				sc->sc_flags &= ~DK_F_WAIT_DRAIN;
   1048   1.1   thorpej 				wakeup(&sc->sc_iopend);
   1049   1.1   thorpej 			}
   1050   1.1   thorpej 			bp->b_error = ENXIO;
   1051   1.1   thorpej 			bp->b_flags |= B_ERROR;
   1052   1.1   thorpej 			bp->b_resid = bp->b_bcount;
   1053   1.1   thorpej 			biodone(bp);
   1054   1.1   thorpej 		}
   1055   1.1   thorpej 
   1056   1.1   thorpej 		/* Instrumentation. */
   1057   1.1   thorpej 		disk_busy(&sc->sc_dk);
   1058   1.6     perry 
   1059  1.11      yamt 		nbp = getiobuf_nowait();
   1060   1.1   thorpej 		if (nbp == NULL) {
   1061   1.1   thorpej 			/*
   1062   1.1   thorpej 			 * No resources to run this request; leave the
   1063   1.1   thorpej 			 * buffer queued up, and schedule a timer to
   1064   1.1   thorpej 			 * restart the queue in 1/2 a second.
   1065   1.1   thorpej 			 */
   1066   1.1   thorpej 			disk_unbusy(&sc->sc_dk, 0, bp->b_flags & B_READ);
   1067   1.1   thorpej 			callout_schedule(&sc->sc_restart_ch, hz / 2);
   1068   1.1   thorpej 			return;
   1069   1.1   thorpej 		}
   1070   1.1   thorpej 
   1071   1.9      yamt 		(void) BUFQ_GET(sc->sc_bufq);
   1072   1.1   thorpej 
   1073   1.1   thorpej 		BUF_INIT(nbp);
   1074   1.1   thorpej 		nbp->b_data = bp->b_data;
   1075   1.1   thorpej 		nbp->b_flags = bp->b_flags | B_CALL;
   1076   1.1   thorpej 		nbp->b_iodone = dkiodone;
   1077   1.1   thorpej 		nbp->b_proc = bp->b_proc;
   1078   1.1   thorpej 		nbp->b_blkno = bp->b_rawblkno;
   1079   1.1   thorpej 		nbp->b_dev = sc->sc_parent->dk_rawvp->v_rdev;
   1080   1.1   thorpej 		nbp->b_vp = sc->sc_parent->dk_rawvp;
   1081   1.1   thorpej 		nbp->b_bcount = bp->b_bcount;
   1082   1.1   thorpej 		nbp->b_private = bp;
   1083   1.1   thorpej 		BIO_COPYPRIO(nbp, bp);
   1084   1.1   thorpej 
   1085   1.1   thorpej 		if ((nbp->b_flags & B_READ) == 0)
   1086   1.1   thorpej 			V_INCR_NUMOUTPUT(nbp->b_vp);
   1087   1.1   thorpej 		VOP_STRATEGY(nbp->b_vp, nbp);
   1088   1.1   thorpej 	}
   1089   1.1   thorpej }
   1090   1.1   thorpej 
   1091   1.1   thorpej /*
   1092   1.1   thorpej  * dkiodone:
   1093   1.1   thorpej  *
   1094   1.1   thorpej  *	I/O to a wedge has completed; alert the top half.
   1095   1.1   thorpej  *	NOTE: Must be called at splbio()!
   1096   1.1   thorpej  */
   1097   1.1   thorpej static void
   1098   1.1   thorpej dkiodone(struct buf *bp)
   1099   1.1   thorpej {
   1100   1.1   thorpej 	struct buf *obp = bp->b_private;
   1101   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(obp->b_dev);
   1102   1.1   thorpej 
   1103   1.1   thorpej 	if (bp->b_flags & B_ERROR) {
   1104   1.1   thorpej 		obp->b_flags |= B_ERROR;
   1105   1.1   thorpej 		obp->b_error = bp->b_error;
   1106   1.1   thorpej 	}
   1107   1.1   thorpej 	obp->b_resid = bp->b_resid;
   1108  1.11      yamt 	putiobuf(bp);
   1109   1.1   thorpej 
   1110   1.1   thorpej 	if (sc->sc_iopend-- == 1 && (sc->sc_flags & DK_F_WAIT_DRAIN) != 0) {
   1111   1.1   thorpej 		sc->sc_flags &= ~DK_F_WAIT_DRAIN;
   1112   1.1   thorpej 		wakeup(&sc->sc_iopend);
   1113   1.1   thorpej 	}
   1114   1.1   thorpej 
   1115   1.1   thorpej 	disk_unbusy(&sc->sc_dk, obp->b_bcount - obp->b_resid,
   1116   1.1   thorpej 	    obp->b_flags & B_READ);
   1117   1.1   thorpej 
   1118   1.1   thorpej 	biodone(obp);
   1119   1.1   thorpej 
   1120   1.1   thorpej 	/* Kick the queue in case there is more work we can do. */
   1121   1.1   thorpej 	dkstart(sc);
   1122   1.1   thorpej }
   1123   1.1   thorpej 
   1124   1.1   thorpej /*
   1125   1.1   thorpej  * dkrestart:
   1126   1.1   thorpej  *
   1127   1.1   thorpej  *	Restart the work queue after it was stalled due to
   1128   1.1   thorpej  *	a resource shortage.  Invoked via a callout.
   1129   1.1   thorpej  */
   1130   1.1   thorpej static void
   1131   1.1   thorpej dkrestart(void *v)
   1132   1.1   thorpej {
   1133   1.1   thorpej 	struct dkwedge_softc *sc = v;
   1134   1.1   thorpej 	int s;
   1135   1.1   thorpej 
   1136   1.1   thorpej 	s = splbio();
   1137   1.1   thorpej 	dkstart(sc);
   1138   1.1   thorpej 	splx(s);
   1139   1.1   thorpej }
   1140   1.1   thorpej 
   1141   1.1   thorpej /*
   1142   1.1   thorpej  * dkread:		[devsw entry point]
   1143   1.1   thorpej  *
   1144   1.1   thorpej  *	Read from a wedge.
   1145   1.1   thorpej  */
   1146   1.1   thorpej static int
   1147  1.20  christos dkread(dev_t dev, struct uio *uio, int flags)
   1148   1.1   thorpej {
   1149   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
   1150   1.1   thorpej 
   1151   1.1   thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
   1152   1.1   thorpej 		return (ENXIO);
   1153   1.6     perry 
   1154   1.1   thorpej 	return (physio(dkstrategy, NULL, dev, B_READ,
   1155   1.1   thorpej 		       sc->sc_parent->dk_driver->d_minphys, uio));
   1156   1.1   thorpej }
   1157   1.1   thorpej 
   1158   1.1   thorpej /*
   1159   1.1   thorpej  * dkwrite:		[devsw entry point]
   1160   1.1   thorpej  *
   1161   1.1   thorpej  *	Write to a wedge.
   1162   1.1   thorpej  */
   1163   1.1   thorpej static int
   1164  1.20  christos dkwrite(dev_t dev, struct uio *uio, int flags)
   1165   1.1   thorpej {
   1166   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
   1167   1.1   thorpej 
   1168   1.1   thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
   1169   1.1   thorpej 		return (ENXIO);
   1170   1.6     perry 
   1171   1.1   thorpej 	return (physio(dkstrategy, NULL, dev, B_WRITE,
   1172   1.1   thorpej 		       sc->sc_parent->dk_driver->d_minphys, uio));
   1173   1.1   thorpej }
   1174   1.1   thorpej 
   1175   1.1   thorpej /*
   1176   1.1   thorpej  * dkioctl:		[devsw entry point]
   1177   1.1   thorpej  *
   1178   1.1   thorpej  *	Perform an ioctl request on a wedge.
   1179   1.1   thorpej  */
   1180   1.1   thorpej static int
   1181  1.22  christos dkioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
   1182   1.1   thorpej {
   1183   1.1   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
   1184   1.1   thorpej 	int error = 0;
   1185   1.1   thorpej 
   1186   1.1   thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
   1187   1.1   thorpej 		return (ENXIO);
   1188   1.1   thorpej 
   1189   1.1   thorpej 	switch (cmd) {
   1190   1.4   thorpej 	case DIOCCACHESYNC:
   1191   1.4   thorpej 		/*
   1192   1.4   thorpej 		 * XXX Do we really need to care about having a writable
   1193   1.4   thorpej 		 * file descriptor here?
   1194   1.4   thorpej 		 */
   1195   1.4   thorpej 		if ((flag & FWRITE) == 0)
   1196   1.4   thorpej 			error = EBADF;
   1197   1.4   thorpej 		else
   1198   1.4   thorpej 			error = VOP_IOCTL(sc->sc_parent->dk_rawvp,
   1199   1.4   thorpej 					  cmd, data, flag,
   1200  1.16        ad 					  l != NULL ? l->l_cred : NOCRED, l);
   1201   1.4   thorpej 		break;
   1202   1.1   thorpej 	case DIOCGWEDGEINFO:
   1203   1.1   thorpej 	    {
   1204   1.1   thorpej 	    	struct dkwedge_info *dkw = (void *) data;
   1205   1.1   thorpej 
   1206   1.2   thorpej 		strcpy(dkw->dkw_devname, sc->sc_dev->dv_xname);
   1207   1.1   thorpej 	    	memcpy(dkw->dkw_wname, sc->sc_wname, sizeof(dkw->dkw_wname));
   1208   1.1   thorpej 		dkw->dkw_wname[sizeof(dkw->dkw_wname) - 1] = '\0';
   1209   1.1   thorpej 		strcpy(dkw->dkw_parent, sc->sc_parent->dk_name);
   1210   1.1   thorpej 		dkw->dkw_offset = sc->sc_offset;
   1211   1.1   thorpej 		dkw->dkw_size = sc->sc_size;
   1212   1.1   thorpej 		strcpy(dkw->dkw_ptype, sc->sc_ptype);
   1213   1.1   thorpej 
   1214   1.1   thorpej 		break;
   1215   1.1   thorpej 	    }
   1216   1.1   thorpej 
   1217   1.1   thorpej 	default:
   1218   1.1   thorpej 		error = ENOTTY;
   1219   1.1   thorpej 	}
   1220   1.1   thorpej 
   1221   1.1   thorpej 	return (error);
   1222   1.1   thorpej }
   1223   1.1   thorpej 
   1224   1.1   thorpej /*
   1225   1.1   thorpej  * dksize:		[devsw entry point]
   1226   1.1   thorpej  *
   1227   1.1   thorpej  *	Query the size of a wedge for the purpose of performing a dump
   1228   1.1   thorpej  *	or for swapping to.
   1229   1.1   thorpej  */
   1230   1.1   thorpej static int
   1231   1.1   thorpej dksize(dev_t dev)
   1232   1.1   thorpej {
   1233  1.13   thorpej 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
   1234  1.13   thorpej 	int rv = -1;
   1235  1.13   thorpej 
   1236  1.13   thorpej 	if (sc == NULL)
   1237  1.13   thorpej 		return (-1);
   1238  1.13   thorpej 
   1239  1.13   thorpej 	if (sc->sc_state != DKW_STATE_RUNNING)
   1240  1.13   thorpej 		return (ENXIO);
   1241  1.13   thorpej 
   1242  1.27        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
   1243  1.27        ad 	mutex_enter(&sc->sc_parent->dk_rawlock);
   1244   1.1   thorpej 
   1245  1.13   thorpej 	/* Our content type is static, no need to open the device. */
   1246  1.13   thorpej 
   1247  1.13   thorpej 	if (strcmp(sc->sc_ptype, DKW_PTYPE_SWAP) == 0) {
   1248  1.13   thorpej 		/* Saturate if we are larger than INT_MAX. */
   1249  1.13   thorpej 		if (sc->sc_size > INT_MAX)
   1250  1.13   thorpej 			rv = INT_MAX;
   1251  1.13   thorpej 		else
   1252  1.13   thorpej 			rv = (int) sc->sc_size;
   1253  1.13   thorpej 	}
   1254  1.13   thorpej 
   1255  1.27        ad 	mutex_exit(&sc->sc_parent->dk_rawlock);
   1256  1.27        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
   1257  1.13   thorpej 
   1258  1.13   thorpej 	return (rv);
   1259   1.1   thorpej }
   1260   1.1   thorpej 
   1261   1.1   thorpej /*
   1262   1.1   thorpej  * dkdump:		[devsw entry point]
   1263   1.1   thorpej  *
   1264   1.1   thorpej  *	Perform a crash dump to a wedge.
   1265   1.1   thorpej  */
   1266   1.1   thorpej static int
   1267  1.23    dyoung dkdump(dev_t dev, daddr_t blkno, void *va, size_t size)
   1268   1.1   thorpej {
   1269  1.23    dyoung 	struct dkwedge_softc *sc = dkwedge_lookup(dev);
   1270  1.23    dyoung 	const struct bdevsw *bdev;
   1271  1.23    dyoung 	int rv = 0;
   1272  1.23    dyoung 
   1273  1.23    dyoung 	if (sc == NULL)
   1274  1.23    dyoung 		return (-1);
   1275  1.23    dyoung 
   1276  1.23    dyoung 	if (sc->sc_state != DKW_STATE_RUNNING)
   1277  1.23    dyoung 		return (ENXIO);
   1278  1.23    dyoung 
   1279  1.27        ad 	mutex_enter(&sc->sc_dk.dk_openlock);
   1280  1.27        ad 	mutex_enter(&sc->sc_parent->dk_rawlock);
   1281  1.23    dyoung 
   1282  1.23    dyoung 	/* Our content type is static, no need to open the device. */
   1283  1.23    dyoung 
   1284  1.23    dyoung 	if (strcmp(sc->sc_ptype, DKW_PTYPE_SWAP) != 0) {
   1285  1.23    dyoung 		rv = ENXIO;
   1286  1.23    dyoung 		goto out;
   1287  1.23    dyoung 	}
   1288  1.23    dyoung 	if (size % DEV_BSIZE != 0) {
   1289  1.23    dyoung 		rv = EINVAL;
   1290  1.23    dyoung 		goto out;
   1291  1.23    dyoung 	}
   1292  1.23    dyoung 	if (blkno + size / DEV_BSIZE > sc->sc_size) {
   1293  1.23    dyoung 		printf("%s: blkno (%" PRIu64 ") + size / DEV_BSIZE (%zu) > "
   1294  1.23    dyoung 		    "sc->sc_size (%" PRIu64 ")\n", __func__, blkno,
   1295  1.23    dyoung 		    size / DEV_BSIZE, sc->sc_size);
   1296  1.23    dyoung 		rv = EINVAL;
   1297  1.23    dyoung 		goto out;
   1298  1.23    dyoung 	}
   1299  1.23    dyoung 
   1300  1.23    dyoung 	bdev = bdevsw_lookup(sc->sc_pdev);
   1301  1.23    dyoung 	rv = (*bdev->d_dump)(sc->sc_pdev, blkno + sc->sc_offset, va, size);
   1302  1.23    dyoung 
   1303  1.23    dyoung out:
   1304  1.27        ad 	mutex_exit(&sc->sc_parent->dk_rawlock);
   1305  1.27        ad 	mutex_exit(&sc->sc_dk.dk_openlock);
   1306   1.1   thorpej 
   1307  1.23    dyoung 	return rv;
   1308   1.1   thorpej }
   1309