2002-03-11 21:42:35 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002 Poul-Henning Kamp
|
|
|
|
* Copyright (c) 2002 Networks Associates Technology, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed for the FreeBSD Project by Poul-Henning Kamp
|
|
|
|
* and NAI Labs, the Security Research Division of Network Associates, Inc.
|
|
|
|
* under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
|
|
|
|
* DARPA CHATS research program.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The names of the authors may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 06:49:16 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2002-10-05 16:35:33 +00:00
|
|
|
#include "opt_geom.h"
|
|
|
|
|
2002-03-11 21:42:35 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/bio.h>
|
|
|
|
#include <sys/conf.h>
|
2003-01-30 20:34:23 +00:00
|
|
|
#include <sys/fcntl.h>
|
2002-03-11 21:42:35 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/sysctl.h>
|
2003-03-08 08:01:31 +00:00
|
|
|
#include <sys/devicestat.h>
|
2002-03-11 21:42:35 +00:00
|
|
|
#include <machine/md_var.h>
|
|
|
|
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <geom/geom.h>
|
2003-04-01 18:57:14 +00:00
|
|
|
#include <geom/geom_disk.h>
|
2003-03-21 22:05:33 +00:00
|
|
|
#include <geom/geom_int.h>
|
2002-03-11 21:42:35 +00:00
|
|
|
|
2003-02-11 18:32:31 +00:00
|
|
|
static struct mtx g_disk_done_mtx;
|
|
|
|
|
2002-03-11 21:42:35 +00:00
|
|
|
static g_access_t g_disk_access;
|
2003-05-31 18:13:07 +00:00
|
|
|
static g_init_t g_disk_init;
|
|
|
|
static g_fini_t g_disk_fini;
|
2004-08-08 06:49:07 +00:00
|
|
|
static g_start_t g_disk_start;
|
|
|
|
static g_ioctl_t g_disk_ioctl;
|
|
|
|
static g_dumpconf_t g_disk_dumpconf;
|
2002-03-11 21:42:35 +00:00
|
|
|
|
2005-02-10 12:10:35 +00:00
|
|
|
static struct g_class g_disk_class = {
|
2003-03-24 19:30:15 +00:00
|
|
|
.name = "DISK",
|
2004-08-08 07:57:53 +00:00
|
|
|
.version = G_VERSION,
|
2003-05-31 18:13:07 +00:00
|
|
|
.init = g_disk_init,
|
|
|
|
.fini = g_disk_fini,
|
2004-08-08 06:49:07 +00:00
|
|
|
.start = g_disk_start,
|
|
|
|
.access = g_disk_access,
|
|
|
|
.ioctl = g_disk_ioctl,
|
|
|
|
.dumpconf = g_disk_dumpconf,
|
2002-03-11 21:42:35 +00:00
|
|
|
};
|
|
|
|
|
2003-02-11 18:32:31 +00:00
|
|
|
static void
|
2003-05-31 18:13:07 +00:00
|
|
|
g_disk_init(struct g_class *mp __unused)
|
2003-02-11 18:32:31 +00:00
|
|
|
{
|
2003-05-31 18:13:07 +00:00
|
|
|
|
2003-12-07 23:20:53 +00:00
|
|
|
mtx_init(&g_disk_done_mtx, "g_disk_done", NULL, MTX_DEF);
|
2003-02-11 18:32:31 +00:00
|
|
|
}
|
|
|
|
|
2003-05-31 18:13:07 +00:00
|
|
|
static void
|
|
|
|
g_disk_fini(struct g_class *mp __unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
mtx_destroy(&g_disk_done_mtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
DECLARE_GEOM_CLASS(g_disk_class, g_disk);
|
2002-10-11 20:52:44 +00:00
|
|
|
|
2003-01-29 19:47:25 +00:00
|
|
|
static void __inline
|
|
|
|
g_disk_lock_giant(struct disk *dp)
|
|
|
|
{
|
2004-02-18 21:36:53 +00:00
|
|
|
if (dp->d_flags & DISKFLAG_NEEDSGIANT)
|
|
|
|
mtx_lock(&Giant);
|
2003-01-29 19:47:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __inline
|
|
|
|
g_disk_unlock_giant(struct disk *dp)
|
|
|
|
{
|
2004-02-18 21:36:53 +00:00
|
|
|
if (dp->d_flags & DISKFLAG_NEEDSGIANT)
|
|
|
|
mtx_unlock(&Giant);
|
2003-01-29 19:47:25 +00:00
|
|
|
}
|
|
|
|
|
2002-03-11 21:42:35 +00:00
|
|
|
static int
|
|
|
|
g_disk_access(struct g_provider *pp, int r, int w, int e)
|
|
|
|
{
|
|
|
|
struct disk *dp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
g_trace(G_T_ACCESS, "g_disk_access(%s, %d, %d, %d)",
|
|
|
|
pp->name, r, w, e);
|
|
|
|
g_topology_assert();
|
2004-02-06 23:10:49 +00:00
|
|
|
dp = pp->geom->softc;
|
2004-02-18 21:36:53 +00:00
|
|
|
if (dp == NULL || dp->d_destroyed) {
|
2004-02-06 23:10:49 +00:00
|
|
|
/*
|
|
|
|
* Allow decreasing access count even if disk is not
|
|
|
|
* avaliable anymore.
|
|
|
|
*/
|
|
|
|
if (r <= 0 && w <= 0 && e <= 0)
|
|
|
|
return (0);
|
2004-02-18 21:36:53 +00:00
|
|
|
return (ENXIO);
|
2004-02-06 23:10:49 +00:00
|
|
|
}
|
2002-03-11 21:42:35 +00:00
|
|
|
r += pp->acr;
|
|
|
|
w += pp->acw;
|
|
|
|
e += pp->ace;
|
2003-01-30 20:34:23 +00:00
|
|
|
error = 0;
|
2002-03-11 21:42:35 +00:00
|
|
|
if ((pp->acr + pp->acw + pp->ace) == 0 && (r + w + e) > 0) {
|
2003-02-28 10:02:02 +00:00
|
|
|
if (dp->d_open != NULL) {
|
2003-01-30 20:34:23 +00:00
|
|
|
g_disk_lock_giant(dp);
|
2003-02-28 10:02:02 +00:00
|
|
|
error = dp->d_open(dp);
|
2007-02-21 07:45:02 +00:00
|
|
|
if (bootverbose && error != 0)
|
2003-01-30 20:34:23 +00:00
|
|
|
printf("Opened disk %s -> %d\n",
|
|
|
|
pp->name, error);
|
|
|
|
g_disk_unlock_giant(dp);
|
|
|
|
}
|
2002-10-20 20:28:24 +00:00
|
|
|
pp->mediasize = dp->d_mediasize;
|
|
|
|
pp->sectorsize = dp->d_sectorsize;
|
2003-01-30 20:34:23 +00:00
|
|
|
dp->d_flags |= DISKFLAG_OPEN;
|
2003-02-11 21:23:34 +00:00
|
|
|
if (dp->d_maxsize == 0) {
|
|
|
|
printf("WARNING: Disk drive %s%d has no d_maxsize\n",
|
|
|
|
dp->d_name, dp->d_unit);
|
|
|
|
dp->d_maxsize = DFLTPHYS;
|
|
|
|
}
|
2002-03-11 21:42:35 +00:00
|
|
|
} else if ((pp->acr + pp->acw + pp->ace) > 0 && (r + w + e) == 0) {
|
2003-02-28 10:02:02 +00:00
|
|
|
if (dp->d_close != NULL) {
|
2003-01-30 20:34:23 +00:00
|
|
|
g_disk_lock_giant(dp);
|
2003-02-28 10:02:02 +00:00
|
|
|
error = dp->d_close(dp);
|
2003-01-30 20:34:23 +00:00
|
|
|
if (error != 0)
|
|
|
|
printf("Closed disk %s -> %d\n",
|
|
|
|
pp->name, error);
|
|
|
|
g_disk_unlock_giant(dp);
|
|
|
|
}
|
|
|
|
dp->d_flags &= ~DISKFLAG_OPEN;
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2002-04-19 09:24:12 +00:00
|
|
|
static void
|
|
|
|
g_disk_kerneldump(struct bio *bp, struct disk *dp)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct g_kerneldump *gkd;
|
|
|
|
struct dumperinfo di;
|
2002-10-04 10:06:19 +00:00
|
|
|
struct g_geom *gp;
|
2002-04-19 09:24:12 +00:00
|
|
|
|
|
|
|
gkd = (struct g_kerneldump*)bp->bio_data;
|
2002-10-04 10:06:19 +00:00
|
|
|
gp = bp->bio_to->geom;
|
|
|
|
g_trace(G_T_TOPOLOGY, "g_disk_kernedump(%s, %jd, %jd)",
|
|
|
|
gp->name, (intmax_t)gkd->offset, (intmax_t)gkd->length);
|
2003-09-29 07:44:23 +00:00
|
|
|
if (dp->d_dump == NULL) {
|
|
|
|
g_io_deliver(bp, ENODEV);
|
|
|
|
return;
|
|
|
|
}
|
2003-01-30 20:34:23 +00:00
|
|
|
di.dumper = dp->d_dump;
|
2003-02-21 19:00:48 +00:00
|
|
|
di.priv = dp;
|
2002-09-20 19:36:05 +00:00
|
|
|
di.blocksize = dp->d_sectorsize;
|
2008-10-31 10:11:35 +00:00
|
|
|
di.maxiosize = dp->d_maxsize;
|
2002-04-19 09:24:12 +00:00
|
|
|
di.mediaoffset = gkd->offset;
|
2005-01-29 16:49:43 +00:00
|
|
|
if ((gkd->offset + gkd->length) > dp->d_mediasize)
|
|
|
|
gkd->length = dp->d_mediasize - gkd->offset;
|
2002-04-19 09:24:12 +00:00
|
|
|
di.mediasize = gkd->length;
|
|
|
|
error = set_dumper(&di);
|
2002-09-30 08:54:46 +00:00
|
|
|
g_io_deliver(bp, error);
|
2002-04-19 09:24:12 +00:00
|
|
|
}
|
|
|
|
|
2002-03-11 21:42:35 +00:00
|
|
|
static void
|
|
|
|
g_disk_done(struct bio *bp)
|
|
|
|
{
|
2003-03-08 08:01:31 +00:00
|
|
|
struct bio *bp2;
|
|
|
|
struct disk *dp;
|
2002-03-11 21:42:35 +00:00
|
|
|
|
2003-02-11 18:32:31 +00:00
|
|
|
/* See "notes" for why we need a mutex here */
|
|
|
|
/* XXX: will witness accept a mix of Giant/unGiant drivers here ? */
|
|
|
|
mtx_lock(&g_disk_done_mtx);
|
2003-02-06 21:50:39 +00:00
|
|
|
bp->bio_completed = bp->bio_length - bp->bio_resid;
|
2003-03-08 08:01:31 +00:00
|
|
|
|
|
|
|
bp2 = bp->bio_parent;
|
|
|
|
if (bp2->bio_error == 0)
|
|
|
|
bp2->bio_error = bp->bio_error;
|
|
|
|
bp2->bio_completed += bp->bio_completed;
|
2006-10-31 21:12:43 +00:00
|
|
|
if ((bp->bio_cmd & (BIO_READ|BIO_WRITE|BIO_DELETE)) &&
|
|
|
|
(dp = bp2->bio_to->geom->softc)) {
|
2005-09-30 17:32:08 +00:00
|
|
|
devstat_end_transaction_bio(dp->d_devstat, bp);
|
2006-10-31 21:12:43 +00:00
|
|
|
}
|
2003-03-08 08:01:31 +00:00
|
|
|
g_destroy_bio(bp);
|
|
|
|
bp2->bio_inbed++;
|
|
|
|
if (bp2->bio_children == bp2->bio_inbed) {
|
2003-03-15 10:49:26 +00:00
|
|
|
bp2->bio_resid = bp2->bio_bcount - bp2->bio_completed;
|
2003-03-08 08:01:31 +00:00
|
|
|
g_io_deliver(bp2, bp2->bio_error);
|
|
|
|
}
|
2003-02-11 18:32:31 +00:00
|
|
|
mtx_unlock(&g_disk_done_mtx);
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
|
2003-09-01 20:45:32 +00:00
|
|
|
static int
|
2004-12-12 10:09:05 +00:00
|
|
|
g_disk_ioctl(struct g_provider *pp, u_long cmd, void * data, int fflag, struct thread *td)
|
2003-09-01 20:45:32 +00:00
|
|
|
{
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct disk *dp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
gp = pp->geom;
|
|
|
|
dp = gp->softc;
|
|
|
|
|
|
|
|
if (dp->d_ioctl == NULL)
|
|
|
|
return (ENOIOCTL);
|
|
|
|
g_disk_lock_giant(dp);
|
2004-12-12 10:09:05 +00:00
|
|
|
error = dp->d_ioctl(dp, cmd, data, fflag, td);
|
2003-09-01 20:45:32 +00:00
|
|
|
g_disk_unlock_giant(dp);
|
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
|
2002-03-11 21:42:35 +00:00
|
|
|
static void
|
|
|
|
g_disk_start(struct bio *bp)
|
|
|
|
{
|
2003-02-11 18:32:31 +00:00
|
|
|
struct bio *bp2, *bp3;
|
2002-03-11 21:42:35 +00:00
|
|
|
struct disk *dp;
|
2002-03-16 09:24:19 +00:00
|
|
|
int error;
|
2003-02-11 18:32:31 +00:00
|
|
|
off_t off;
|
2002-03-11 21:42:35 +00:00
|
|
|
|
|
|
|
dp = bp->bio_to->geom->softc;
|
2005-03-18 07:01:31 +00:00
|
|
|
if (dp == NULL || dp->d_destroyed) {
|
2003-05-21 18:52:29 +00:00
|
|
|
g_io_deliver(bp, ENXIO);
|
2005-03-18 07:01:31 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-10-07 07:15:37 +00:00
|
|
|
error = EJUSTRETURN;
|
2002-03-11 21:42:35 +00:00
|
|
|
switch(bp->bio_cmd) {
|
2002-10-07 07:15:37 +00:00
|
|
|
case BIO_DELETE:
|
2003-01-30 20:34:23 +00:00
|
|
|
if (!(dp->d_flags & DISKFLAG_CANDELETE)) {
|
2002-10-07 07:15:37 +00:00
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall-through */
|
2002-03-11 21:42:35 +00:00
|
|
|
case BIO_READ:
|
|
|
|
case BIO_WRITE:
|
2003-02-11 18:32:31 +00:00
|
|
|
off = 0;
|
|
|
|
bp3 = NULL;
|
2002-03-11 21:42:35 +00:00
|
|
|
bp2 = g_clone_bio(bp);
|
2003-02-06 22:00:47 +00:00
|
|
|
if (bp2 == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
2003-02-11 18:32:31 +00:00
|
|
|
do {
|
|
|
|
bp2->bio_offset += off;
|
|
|
|
bp2->bio_length -= off;
|
2003-02-12 16:30:46 +00:00
|
|
|
bp2->bio_data += off;
|
2003-02-11 18:32:31 +00:00
|
|
|
if (bp2->bio_length > dp->d_maxsize) {
|
|
|
|
/*
|
|
|
|
* XXX: If we have a stripesize we should really
|
|
|
|
* use it here.
|
|
|
|
*/
|
|
|
|
bp2->bio_length = dp->d_maxsize;
|
|
|
|
off += dp->d_maxsize;
|
|
|
|
/*
|
|
|
|
* To avoid a race, we need to grab the next bio
|
|
|
|
* before we schedule this one. See "notes".
|
|
|
|
*/
|
|
|
|
bp3 = g_clone_bio(bp);
|
|
|
|
if (bp3 == NULL)
|
|
|
|
bp->bio_error = ENOMEM;
|
|
|
|
}
|
|
|
|
bp2->bio_done = g_disk_done;
|
|
|
|
bp2->bio_pblkno = bp2->bio_offset / dp->d_sectorsize;
|
|
|
|
bp2->bio_bcount = bp2->bio_length;
|
|
|
|
bp2->bio_disk = dp;
|
2005-09-30 17:32:08 +00:00
|
|
|
devstat_start_transaction_bio(dp->d_devstat, bp2);
|
2003-02-11 18:32:31 +00:00
|
|
|
g_disk_lock_giant(dp);
|
|
|
|
dp->d_strategy(bp2);
|
|
|
|
g_disk_unlock_giant(dp);
|
|
|
|
bp2 = bp3;
|
|
|
|
bp3 = NULL;
|
|
|
|
} while (bp2 != NULL);
|
2002-03-11 21:42:35 +00:00
|
|
|
break;
|
|
|
|
case BIO_GETATTR:
|
2002-10-20 20:28:24 +00:00
|
|
|
if (g_handleattr_int(bp, "GEOM::fwsectors", dp->d_fwsectors))
|
2002-03-16 09:24:19 +00:00
|
|
|
break;
|
2002-09-20 19:36:05 +00:00
|
|
|
else if (g_handleattr_int(bp, "GEOM::fwheads", dp->d_fwheads))
|
2002-03-16 09:24:19 +00:00
|
|
|
break;
|
2002-06-09 10:57:34 +00:00
|
|
|
else if (g_handleattr_off_t(bp, "GEOM::frontstuff", 0))
|
2002-04-09 15:43:32 +00:00
|
|
|
break;
|
2007-05-05 17:12:15 +00:00
|
|
|
else if (g_handleattr_str(bp, "GEOM::ident", dp->d_ident))
|
|
|
|
break;
|
2002-04-19 09:24:12 +00:00
|
|
|
else if (!strcmp(bp->bio_attribute, "GEOM::kerneldump"))
|
|
|
|
g_disk_kerneldump(bp, dp);
|
2003-09-01 20:45:32 +00:00
|
|
|
else
|
2002-10-05 21:55:31 +00:00
|
|
|
error = ENOIOCTL;
|
|
|
|
break;
|
2006-10-31 21:12:43 +00:00
|
|
|
case BIO_FLUSH:
|
|
|
|
g_trace(G_T_TOPOLOGY, "g_disk_flushcache(%s)",
|
|
|
|
bp->bio_to->name);
|
|
|
|
if (!(dp->d_flags & DISKFLAG_CANFLUSHCACHE)) {
|
|
|
|
g_io_deliver(bp, ENODEV);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bp2 = g_clone_bio(bp);
|
|
|
|
if (bp2 == NULL) {
|
|
|
|
g_io_deliver(bp, ENOMEM);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bp2->bio_done = g_disk_done;
|
|
|
|
bp2->bio_disk = dp;
|
|
|
|
g_disk_lock_giant(dp);
|
|
|
|
dp->d_strategy(bp2);
|
|
|
|
g_disk_unlock_giant(dp);
|
|
|
|
break;
|
2002-03-11 21:42:35 +00:00
|
|
|
default:
|
2002-03-16 09:24:19 +00:00
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
2002-10-07 07:15:37 +00:00
|
|
|
if (error != EJUSTRETURN)
|
2002-09-30 08:54:46 +00:00
|
|
|
g_io_deliver(bp, error);
|
2002-03-16 09:24:19 +00:00
|
|
|
return;
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 18:09:01 +00:00
|
|
|
static void
|
2002-12-16 22:33:27 +00:00
|
|
|
g_disk_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, struct g_consumer *cp, struct g_provider *pp)
|
2002-10-20 18:09:01 +00:00
|
|
|
{
|
|
|
|
struct disk *dp;
|
|
|
|
|
|
|
|
dp = gp->softc;
|
2003-09-23 07:53:59 +00:00
|
|
|
if (dp == NULL)
|
|
|
|
return;
|
2002-10-28 22:43:54 +00:00
|
|
|
if (indent == NULL) {
|
|
|
|
sbuf_printf(sb, " hd %u", dp->d_fwheads);
|
|
|
|
sbuf_printf(sb, " sc %u", dp->d_fwsectors);
|
|
|
|
return;
|
|
|
|
}
|
2002-10-20 18:46:25 +00:00
|
|
|
if (pp != NULL) {
|
2002-10-20 18:09:01 +00:00
|
|
|
sbuf_printf(sb, "%s<fwheads>%u</fwheads>\n",
|
|
|
|
indent, dp->d_fwheads);
|
|
|
|
sbuf_printf(sb, "%s<fwsectors>%u</fwsectors>\n",
|
|
|
|
indent, dp->d_fwsectors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-11 20:52:44 +00:00
|
|
|
static void
|
2003-05-25 16:57:10 +00:00
|
|
|
g_disk_create(void *arg, int flag)
|
2002-03-11 21:42:35 +00:00
|
|
|
{
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct g_provider *pp;
|
2003-02-11 14:12:06 +00:00
|
|
|
struct disk *dp;
|
2002-03-11 21:42:35 +00:00
|
|
|
|
2003-05-25 16:57:10 +00:00
|
|
|
if (flag == EV_CANCEL)
|
|
|
|
return;
|
2002-10-11 20:52:44 +00:00
|
|
|
g_topology_assert();
|
2003-02-11 14:12:06 +00:00
|
|
|
dp = arg;
|
|
|
|
gp = g_new_geomf(&g_disk_class, "%s%d", dp->d_name, dp->d_unit);
|
|
|
|
gp->softc = dp;
|
2002-10-11 20:52:44 +00:00
|
|
|
pp = g_new_providerf(gp, "%s", gp->name);
|
2003-02-11 14:12:06 +00:00
|
|
|
pp->mediasize = dp->d_mediasize;
|
|
|
|
pp->sectorsize = dp->d_sectorsize;
|
|
|
|
if (dp->d_flags & DISKFLAG_CANDELETE)
|
|
|
|
pp->flags |= G_PF_CANDELETE;
|
2003-02-11 14:57:34 +00:00
|
|
|
pp->stripeoffset = dp->d_stripeoffset;
|
|
|
|
pp->stripesize = dp->d_stripesize;
|
2002-10-25 20:09:45 +00:00
|
|
|
if (bootverbose)
|
|
|
|
printf("GEOM: new disk %s\n", gp->name);
|
2003-04-02 21:10:04 +00:00
|
|
|
dp->d_geom = gp;
|
|
|
|
g_error_provider(pp, 0);
|
2002-10-11 20:52:44 +00:00
|
|
|
}
|
|
|
|
|
2003-09-01 12:03:13 +00:00
|
|
|
static void
|
|
|
|
g_disk_destroy(void *ptr, int flag)
|
|
|
|
{
|
2004-02-18 21:36:53 +00:00
|
|
|
struct disk *dp;
|
2003-09-01 12:03:13 +00:00
|
|
|
struct g_geom *gp;
|
2002-10-11 20:52:44 +00:00
|
|
|
|
2003-09-01 12:03:13 +00:00
|
|
|
g_topology_assert();
|
2004-02-18 21:36:53 +00:00
|
|
|
dp = ptr;
|
|
|
|
gp = dp->d_geom;
|
2005-01-14 21:05:35 +00:00
|
|
|
if (gp != NULL) {
|
|
|
|
gp->softc = NULL;
|
|
|
|
g_wither_geom(gp, ENXIO);
|
|
|
|
}
|
2004-02-18 21:36:53 +00:00
|
|
|
g_free(dp);
|
2003-09-01 12:03:13 +00:00
|
|
|
}
|
2002-10-11 20:52:44 +00:00
|
|
|
|
2007-05-05 17:47:20 +00:00
|
|
|
/*
|
2007-05-05 18:09:17 +00:00
|
|
|
* We only allow [a-zA-Z0-9-_@#%.:] characters, the rest is converted to 'x<HH>'.
|
2007-05-05 17:47:20 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
g_disk_ident_adjust(char *ident, size_t size)
|
|
|
|
{
|
|
|
|
char newid[DISK_IDENT_SIZE], tmp[4];
|
|
|
|
size_t len;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
bzero(newid, sizeof(newid));
|
|
|
|
len = 0;
|
|
|
|
for (p = ident; *p != '\0' && len < sizeof(newid) - 1; p++) {
|
|
|
|
switch (*p) {
|
|
|
|
default:
|
|
|
|
if ((*p < 'a' || *p > 'z') &&
|
|
|
|
(*p < 'A' || *p > 'Z') &&
|
|
|
|
(*p < '0' || *p > '9')) {
|
|
|
|
snprintf(tmp, sizeof(tmp), "x%02hhx", *p);
|
|
|
|
strlcat(newid, tmp, sizeof(newid));
|
|
|
|
len += 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case '-':
|
|
|
|
case '_':
|
|
|
|
case '@':
|
|
|
|
case '#':
|
|
|
|
case '%':
|
|
|
|
case '.':
|
2007-05-05 18:09:17 +00:00
|
|
|
case ':':
|
2007-05-05 17:47:20 +00:00
|
|
|
newid[len++] = *p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bzero(ident, size);
|
|
|
|
strlcpy(ident, newid, size);
|
|
|
|
}
|
|
|
|
|
2004-02-18 21:36:53 +00:00
|
|
|
struct disk *
|
|
|
|
disk_alloc()
|
2002-10-11 20:52:44 +00:00
|
|
|
{
|
2004-02-18 21:36:53 +00:00
|
|
|
struct disk *dp;
|
|
|
|
|
|
|
|
dp = g_malloc(sizeof *dp, M_WAITOK | M_ZERO);
|
|
|
|
return (dp);
|
|
|
|
}
|
2002-10-11 20:52:44 +00:00
|
|
|
|
2004-02-18 21:36:53 +00:00
|
|
|
void
|
|
|
|
disk_create(struct disk *dp, int version)
|
|
|
|
{
|
2007-05-05 17:12:15 +00:00
|
|
|
if (version != DISK_VERSION_00 && version != DISK_VERSION_01) {
|
2004-02-18 21:36:53 +00:00
|
|
|
printf("WARNING: Attempt to add disk %s%d %s",
|
|
|
|
dp->d_name, dp->d_unit,
|
|
|
|
" using incompatible ABI version of disk(9)\n");
|
|
|
|
printf("WARNING: Ignoring disk %s%d\n",
|
|
|
|
dp->d_name, dp->d_unit);
|
|
|
|
return;
|
|
|
|
}
|
2003-01-30 20:34:23 +00:00
|
|
|
KASSERT(dp->d_strategy != NULL, ("disk_create need d_strategy"));
|
|
|
|
KASSERT(dp->d_name != NULL, ("disk_create need d_name"));
|
|
|
|
KASSERT(*dp->d_name != 0, ("disk_create need d_name"));
|
2003-02-04 10:32:40 +00:00
|
|
|
KASSERT(strlen(dp->d_name) < SPECNAMELEN - 4, ("disk name too long"));
|
2003-09-23 07:53:59 +00:00
|
|
|
if (dp->d_devstat == NULL)
|
|
|
|
dp->d_devstat = devstat_new_entry(dp->d_name, dp->d_unit,
|
|
|
|
dp->d_sectorsize, DEVSTAT_ALL_SUPPORTED,
|
|
|
|
DEVSTAT_TYPE_DIRECT, DEVSTAT_PRIORITY_MAX);
|
2003-04-02 21:10:04 +00:00
|
|
|
dp->d_geom = NULL;
|
2007-05-05 17:47:20 +00:00
|
|
|
g_disk_ident_adjust(dp->d_ident, sizeof(dp->d_ident));
|
2003-04-23 20:46:12 +00:00
|
|
|
g_post_event(g_disk_create, dp, M_WAITOK, dp, NULL);
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-02-21 15:13:26 +00:00
|
|
|
disk_destroy(struct disk *dp)
|
2002-03-11 21:42:35 +00:00
|
|
|
{
|
|
|
|
|
2003-04-02 21:10:04 +00:00
|
|
|
g_cancel_event(dp);
|
2004-02-18 21:36:53 +00:00
|
|
|
dp->d_destroyed = 1;
|
2004-06-27 20:53:20 +00:00
|
|
|
if (dp->d_devstat != NULL)
|
|
|
|
devstat_remove_entry(dp->d_devstat);
|
2004-06-29 08:33:58 +00:00
|
|
|
g_post_event(g_disk_destroy, dp, M_WAITOK, NULL);
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
|
Fix a bug that caused some /dev entries to continue to exist after
the underlying drive had been hot-unplugged from the system. Here
is a specific example. Filesystem code had opened /dev/da1s1e.
Subsequently, the drive was hot-unplugged. This (correctly) caused
all of the associated /dev/da1* entries to be deleted. When the
filesystem later realized that the drive was gone it closed the
device, reducing the write-access counts to 0 on the geom providers
for da1s1e, da1s1, and da1. This caused geom to re-taste the
providers, resulting in the devices being created again. When the
drive was hot-plugged back in, it resulted in duplicate /dev entries
for da1s1e, da1s1, and da1.
This fix adds a new disk_gone() function which is called by CAM when a
drive goes away. It orphans all of the providers associated with the
drive, setting an error condition of ENXIO in each one. In addition,
we prevent a re-taste on last close for writing if an error condition
has been set in the provider.
Sponsored by: Isilon Systems
Reviewed by: phk
MFC after: 1 week
2005-11-18 02:43:49 +00:00
|
|
|
void
|
|
|
|
disk_gone(struct disk *dp)
|
|
|
|
{
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct g_provider *pp;
|
|
|
|
|
|
|
|
gp = dp->d_geom;
|
|
|
|
if (gp != NULL)
|
|
|
|
LIST_FOREACH(pp, &gp->provider, provider)
|
2006-04-10 03:55:13 +00:00
|
|
|
g_wither_provider(pp, ENXIO);
|
Fix a bug that caused some /dev entries to continue to exist after
the underlying drive had been hot-unplugged from the system. Here
is a specific example. Filesystem code had opened /dev/da1s1e.
Subsequently, the drive was hot-unplugged. This (correctly) caused
all of the associated /dev/da1* entries to be deleted. When the
filesystem later realized that the drive was gone it closed the
device, reducing the write-access counts to 0 on the geom providers
for da1s1e, da1s1, and da1. This caused geom to re-taste the
providers, resulting in the devices being created again. When the
drive was hot-plugged back in, it resulted in duplicate /dev entries
for da1s1e, da1s1, and da1.
This fix adds a new disk_gone() function which is called by CAM when a
drive goes away. It orphans all of the providers associated with the
drive, setting an error condition of ENXIO in each one. In addition,
we prevent a re-taste on last close for writing if an error condition
has been set in the provider.
Sponsored by: Isilon Systems
Reviewed by: phk
MFC after: 1 week
2005-11-18 02:43:49 +00:00
|
|
|
}
|
|
|
|
|
2002-10-04 10:15:26 +00:00
|
|
|
static void
|
2003-04-02 20:41:18 +00:00
|
|
|
g_kern_disks(void *p, int flag __unused)
|
2002-10-04 10:15:26 +00:00
|
|
|
{
|
|
|
|
struct sbuf *sb;
|
|
|
|
struct g_geom *gp;
|
|
|
|
char *sp;
|
|
|
|
|
|
|
|
sb = p;
|
|
|
|
sp = "";
|
|
|
|
g_topology_assert();
|
|
|
|
LIST_FOREACH(gp, &g_disk_class.geom, geom) {
|
|
|
|
sbuf_printf(sb, "%s%s", sp, gp->name);
|
|
|
|
sp = " ";
|
|
|
|
}
|
|
|
|
sbuf_finish(sb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_disks(SYSCTL_HANDLER_ARGS)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct sbuf *sb;
|
|
|
|
|
2008-08-09 11:14:05 +00:00
|
|
|
sb = sbuf_new_auto();
|
2003-04-23 21:28:27 +00:00
|
|
|
g_waitfor_event(g_kern_disks, sb, M_WAITOK, NULL);
|
2003-04-23 20:46:12 +00:00
|
|
|
error = SYSCTL_OUT(req, sbuf_data(sb), sbuf_len(sb) + 1);
|
2002-10-04 10:15:26 +00:00
|
|
|
sbuf_delete(sb);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_PROC(_kern, OID_AUTO, disks, CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_NOLOCK, 0, 0,
|
|
|
|
sysctl_disks, "A", "names of available disks");
|
2002-10-05 16:35:33 +00:00
|
|
|
|