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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#ifndef _KERNEL
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <err.h>
|
|
|
|
#else
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/bio.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#endif
|
|
|
|
|
2002-10-01 14:05:06 +00:00
|
|
|
#include <sys/diskmbr.h>
|
2002-03-11 21:42:35 +00:00
|
|
|
#include <sys/sbuf.h>
|
|
|
|
#include <geom/geom.h>
|
|
|
|
#include <geom/geom_slice.h>
|
|
|
|
|
2002-05-21 19:50:04 +00:00
|
|
|
#define MBR_CLASS_NAME "MBR"
|
|
|
|
#define MBREXT_CLASS_NAME "MBREXT"
|
2002-03-24 11:21:41 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
g_dec_dos_partition(u_char *ptr, struct dos_partition *d)
|
|
|
|
{
|
|
|
|
|
|
|
|
d->dp_flag = ptr[0];
|
|
|
|
d->dp_shd = ptr[1];
|
|
|
|
d->dp_ssect = ptr[2];
|
|
|
|
d->dp_scyl = ptr[3];
|
|
|
|
d->dp_typ = ptr[4];
|
|
|
|
d->dp_ehd = ptr[5];
|
|
|
|
d->dp_esect = ptr[6];
|
|
|
|
d->dp_ecyl = ptr[7];
|
|
|
|
d->dp_start = g_dec_le4(ptr + 8);
|
|
|
|
d->dp_size = g_dec_le4(ptr + 12);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static void
|
|
|
|
g_enc_dos_partition(u_char *ptr, struct dos_partition *d)
|
|
|
|
{
|
|
|
|
|
|
|
|
ptr[0] = d->dp_flag;
|
|
|
|
ptr[1] = d->dp_shd;
|
|
|
|
ptr[2] = d->dp_ssect;
|
|
|
|
ptr[3] = d->dp_scyl;
|
|
|
|
ptr[4] = d->dp_typ;
|
|
|
|
ptr[5] = d->dp_ehd;
|
|
|
|
ptr[6] = d->dp_esect;
|
|
|
|
ptr[7] = d->dp_ecyl;
|
|
|
|
g_enc_le4(ptr + 8, d->dp_start);
|
|
|
|
g_enc_le4(ptr + 12, d->dp_size);
|
|
|
|
}
|
|
|
|
#endif
|
2002-03-11 21:42:35 +00:00
|
|
|
|
|
|
|
struct g_mbr_softc {
|
|
|
|
int type [NDOSPART];
|
|
|
|
struct dos_partition dospart[NDOSPART];
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
g_mbr_start(struct bio *bp)
|
|
|
|
{
|
|
|
|
struct g_provider *pp;
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct g_mbr_softc *mp;
|
|
|
|
struct g_slicer *gsp;
|
2002-12-16 22:33:27 +00:00
|
|
|
int idx;
|
2002-03-11 21:42:35 +00:00
|
|
|
|
|
|
|
pp = bp->bio_to;
|
2002-12-16 22:33:27 +00:00
|
|
|
idx = pp->index;
|
2002-03-11 21:42:35 +00:00
|
|
|
gp = pp->geom;
|
|
|
|
gsp = gp->softc;
|
|
|
|
mp = gsp->softc;
|
|
|
|
if (bp->bio_cmd == BIO_GETATTR) {
|
2002-12-16 22:33:27 +00:00
|
|
|
if (g_handleattr_int(bp, "MBR::type", mp->type[idx]))
|
2002-03-11 21:42:35 +00:00
|
|
|
return (1);
|
2002-10-28 07:50:47 +00:00
|
|
|
if (g_handleattr_off_t(bp, "MBR::offset",
|
2002-12-16 22:33:27 +00:00
|
|
|
gsp->slices[idx].offset))
|
2002-10-28 07:50:47 +00:00
|
|
|
return (1);
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-12-16 22:33:27 +00:00
|
|
|
g_mbr_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, struct g_consumer *cp __unused, struct g_provider *pp)
|
2002-03-11 21:42:35 +00:00
|
|
|
{
|
|
|
|
struct g_mbr_softc *mp;
|
|
|
|
struct g_slicer *gsp;
|
|
|
|
|
|
|
|
gsp = gp->softc;
|
|
|
|
mp = gsp->softc;
|
2002-10-28 07:50:47 +00:00
|
|
|
g_slice_dumpconf(sb, indent, gp, cp, pp);
|
2002-03-11 21:42:35 +00:00
|
|
|
if (pp != NULL) {
|
2002-11-02 12:01:12 +00:00
|
|
|
if (indent == NULL)
|
|
|
|
sbuf_printf(sb, " ty %d", mp->type[pp->index]);
|
|
|
|
else
|
|
|
|
sbuf_printf(sb, "%s<type>%d</type>\n", indent,
|
|
|
|
mp->type[pp->index]);
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct dos_partition historical_bogus_partition_table[NDOSPART] = {
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
|
|
|
|
{ 0x80, 0, 1, 0, DOSPTYP_386BSD, 255, 255, 255, 0, 50000, },
|
|
|
|
};
|
|
|
|
static struct dos_partition historical_bogus_partition_table_fixed[NDOSPART] = {
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
|
|
|
|
{ 0x80, 0, 1, 0, DOSPTYP_386BSD, 254, 255, 255, 0, 50000, },
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2002-10-31 22:18:49 +00:00
|
|
|
g_mbr_print(int i, struct dos_partition *dp)
|
2002-03-11 21:42:35 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
g_hexdump(dp, sizeof(dp[0]));
|
|
|
|
printf("[%d] f:%02x typ:%d", i, dp->dp_flag, dp->dp_typ);
|
|
|
|
printf(" s(CHS):%d/%d/%d", dp->dp_scyl, dp->dp_shd, dp->dp_ssect);
|
|
|
|
printf(" e(CHS):%d/%d/%d", dp->dp_ecyl, dp->dp_ehd, dp->dp_esect);
|
|
|
|
printf(" s:%d l:%d\n", dp->dp_start, dp->dp_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct g_geom *
|
2002-03-26 22:07:38 +00:00
|
|
|
g_mbr_taste(struct g_class *mp, struct g_provider *pp, int insist)
|
2002-03-11 21:42:35 +00:00
|
|
|
{
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct g_consumer *cp;
|
|
|
|
struct g_provider *pp2;
|
2002-04-09 15:43:32 +00:00
|
|
|
int error, i, npart;
|
2002-03-11 21:42:35 +00:00
|
|
|
struct dos_partition dp[NDOSPART];
|
|
|
|
struct g_mbr_softc *ms;
|
2002-04-09 15:43:32 +00:00
|
|
|
struct g_slicer *gsp;
|
|
|
|
u_int fwsectors, sectorsize;
|
2002-03-11 21:42:35 +00:00
|
|
|
u_char *buf;
|
|
|
|
|
|
|
|
g_trace(G_T_TOPOLOGY, "mbr_taste(%s,%s)", mp->name, pp->name);
|
|
|
|
g_topology_assert();
|
|
|
|
gp = g_slice_new(mp, NDOSPART, pp, &cp, &ms, sizeof *ms, g_mbr_start);
|
|
|
|
if (gp == NULL)
|
|
|
|
return (NULL);
|
2002-04-09 15:43:32 +00:00
|
|
|
gsp = gp->softc;
|
2002-03-11 21:42:35 +00:00
|
|
|
g_topology_unlock();
|
|
|
|
gp->dumpconf = g_mbr_dumpconf;
|
|
|
|
npart = 0;
|
|
|
|
while (1) { /* a trick to allow us to use break */
|
|
|
|
if (gp->rank != 2 && insist == 0)
|
|
|
|
break;
|
2002-04-09 15:43:32 +00:00
|
|
|
error = g_getattr("GEOM::fwsectors", cp, &fwsectors);
|
|
|
|
if (error)
|
|
|
|
fwsectors = 17;
|
2002-10-20 20:28:24 +00:00
|
|
|
sectorsize = cp->provider->sectorsize;
|
2002-09-28 11:57:20 +00:00
|
|
|
if (sectorsize != 512)
|
2002-03-11 21:42:35 +00:00
|
|
|
break;
|
2002-04-09 15:43:32 +00:00
|
|
|
gsp->frontstuff = sectorsize * fwsectors;
|
|
|
|
buf = g_read_data(cp, 0, sectorsize, &error);
|
2002-03-11 21:42:35 +00:00
|
|
|
if (buf == NULL || error != 0)
|
|
|
|
break;
|
|
|
|
if (buf[0x1fe] != 0x55 && buf[0x1ff] != 0xaa) {
|
|
|
|
g_free(buf);
|
|
|
|
break;
|
|
|
|
}
|
2002-03-24 11:21:41 +00:00
|
|
|
for (i = 0; i < NDOSPART; i++)
|
|
|
|
g_dec_dos_partition(
|
|
|
|
buf + DOSPARTOFF + i * sizeof(struct dos_partition),
|
|
|
|
dp + i);
|
2002-03-11 21:42:35 +00:00
|
|
|
g_free(buf);
|
|
|
|
if (bcmp(dp, historical_bogus_partition_table,
|
2002-10-28 07:50:47 +00:00
|
|
|
sizeof historical_bogus_partition_table) == 0) {
|
|
|
|
if (bootverbose)
|
|
|
|
printf("Ignoring known bogus MBR #0\n");
|
2002-03-11 21:42:35 +00:00
|
|
|
break;
|
2002-10-28 07:50:47 +00:00
|
|
|
}
|
2002-03-11 21:42:35 +00:00
|
|
|
if (bcmp(dp, historical_bogus_partition_table_fixed,
|
2002-10-28 07:50:47 +00:00
|
|
|
sizeof historical_bogus_partition_table_fixed) == 0) {
|
|
|
|
if (bootverbose)
|
|
|
|
printf("Ignoring known bogus MBR #1\n");
|
2002-03-11 21:42:35 +00:00
|
|
|
break;
|
2002-10-28 07:50:47 +00:00
|
|
|
}
|
2002-03-11 21:42:35 +00:00
|
|
|
npart = 0;
|
|
|
|
for (i = 0; i < NDOSPART; i++) {
|
2002-11-02 12:01:12 +00:00
|
|
|
/*
|
|
|
|
* A Protective MBR (PMBR) has a single partition of
|
|
|
|
* type 0xEE spanning the whole disk. Such a MBR
|
|
|
|
* protects a GPT on the disk from MBR tools that
|
|
|
|
* don't know anything about GPT. We're interpreting
|
|
|
|
* it a bit more loosely: any partition of type 0xEE
|
|
|
|
* is to be skipped as it doesn't contain any data
|
|
|
|
* that we should care about. We still allow other
|
|
|
|
* partitions to be present in the MBR. A PMBR will
|
|
|
|
* be handled correctly anyway.
|
|
|
|
*/
|
|
|
|
if (dp[i].dp_typ == 0xee)
|
|
|
|
continue;
|
2002-03-11 21:42:35 +00:00
|
|
|
if (dp[i].dp_flag != 0 && dp[i].dp_flag != 0x80)
|
|
|
|
continue;
|
2002-11-04 06:29:05 +00:00
|
|
|
if (dp[i].dp_typ == 0)
|
|
|
|
continue;
|
2002-03-11 21:42:35 +00:00
|
|
|
if (dp[i].dp_size == 0)
|
|
|
|
continue;
|
2002-10-25 20:09:45 +00:00
|
|
|
if (bootverbose) {
|
2002-11-04 06:29:05 +00:00
|
|
|
printf("MBR Slice %d on %s:\n", i + 1, gp->name);
|
2002-10-25 20:09:45 +00:00
|
|
|
g_mbr_print(i, dp + i);
|
|
|
|
}
|
2002-03-11 21:42:35 +00:00
|
|
|
npart++;
|
|
|
|
ms->type[i] = dp[i].dp_typ;
|
2002-09-27 21:37:11 +00:00
|
|
|
g_topology_lock();
|
2002-03-11 21:42:35 +00:00
|
|
|
pp2 = g_slice_addslice(gp, i,
|
2002-10-20 19:18:07 +00:00
|
|
|
(off_t)dp[i].dp_start << 9ULL,
|
|
|
|
(off_t)dp[i].dp_size << 9ULL,
|
|
|
|
sectorsize,
|
2002-03-11 21:42:35 +00:00
|
|
|
"%ss%d", gp->name, i + 1);
|
2002-09-27 21:37:11 +00:00
|
|
|
g_topology_unlock();
|
2002-03-11 21:42:35 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_topology_lock();
|
|
|
|
error = g_access_rel(cp, -1, 0, 0);
|
|
|
|
if (npart > 0) {
|
|
|
|
LIST_FOREACH(pp, &gp->provider, provider)
|
|
|
|
g_error_provider(pp, 0);
|
|
|
|
return (gp);
|
|
|
|
}
|
|
|
|
g_std_spoiled(cp);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-26 21:40:06 +00:00
|
|
|
static struct g_class g_mbr_class = {
|
|
|
|
MBR_CLASS_NAME,
|
2002-03-11 21:42:35 +00:00
|
|
|
g_mbr_taste,
|
|
|
|
NULL,
|
2002-06-09 10:57:34 +00:00
|
|
|
G_CLASS_INITIALIZER
|
2002-03-11 21:42:35 +00:00
|
|
|
};
|
|
|
|
|
2002-03-26 21:40:06 +00:00
|
|
|
DECLARE_GEOM_CLASS(g_mbr_class, g_mbr);
|
2002-03-24 11:21:41 +00:00
|
|
|
|
|
|
|
#define NDOSEXTPART 32
|
|
|
|
struct g_mbrext_softc {
|
|
|
|
int type [NDOSEXTPART];
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
g_mbrext_start(struct bio *bp)
|
|
|
|
{
|
|
|
|
struct g_provider *pp;
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct g_mbrext_softc *mp;
|
|
|
|
struct g_slicer *gsp;
|
2002-12-16 22:33:27 +00:00
|
|
|
int idx;
|
2002-03-24 11:21:41 +00:00
|
|
|
|
|
|
|
pp = bp->bio_to;
|
2002-12-16 22:33:27 +00:00
|
|
|
idx = pp->index;
|
2002-03-24 11:21:41 +00:00
|
|
|
gp = pp->geom;
|
|
|
|
gsp = gp->softc;
|
|
|
|
mp = gsp->softc;
|
|
|
|
if (bp->bio_cmd == BIO_GETATTR) {
|
2002-12-16 22:33:27 +00:00
|
|
|
if (g_handleattr_int(bp, "MBR::type", mp->type[idx]))
|
2002-03-24 11:21:41 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-12-16 22:33:27 +00:00
|
|
|
g_mbrext_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, struct g_consumer *cp __unused, struct g_provider *pp)
|
2002-03-24 11:21:41 +00:00
|
|
|
{
|
|
|
|
struct g_mbrext_softc *mp;
|
|
|
|
struct g_slicer *gsp;
|
|
|
|
|
|
|
|
g_slice_dumpconf(sb, indent, gp, cp, pp);
|
|
|
|
gsp = gp->softc;
|
|
|
|
mp = gsp->softc;
|
|
|
|
if (pp != NULL) {
|
2002-11-02 12:01:12 +00:00
|
|
|
if (indent == NULL)
|
|
|
|
sbuf_printf(sb, " ty %d", mp->type[pp->index]);
|
|
|
|
else
|
|
|
|
sbuf_printf(sb, "%s<type>%d</type>\n", indent,
|
|
|
|
mp->type[pp->index]);
|
2002-03-24 11:21:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct g_geom *
|
2002-03-26 22:07:38 +00:00
|
|
|
g_mbrext_taste(struct g_class *mp, struct g_provider *pp, int insist __unused)
|
2002-03-24 11:21:41 +00:00
|
|
|
{
|
|
|
|
struct g_geom *gp;
|
|
|
|
struct g_consumer *cp;
|
|
|
|
struct g_provider *pp2;
|
2002-04-09 15:43:32 +00:00
|
|
|
int error, i, slice;
|
2002-03-24 11:21:41 +00:00
|
|
|
struct g_mbrext_softc *ms;
|
|
|
|
off_t off;
|
|
|
|
u_char *buf;
|
|
|
|
struct dos_partition dp[4];
|
2002-04-09 15:43:32 +00:00
|
|
|
u_int fwsectors, sectorsize;
|
|
|
|
struct g_slicer *gsp;
|
2002-03-24 11:21:41 +00:00
|
|
|
|
|
|
|
g_trace(G_T_TOPOLOGY, "g_mbrext_taste(%s,%s)", mp->name, pp->name);
|
|
|
|
g_topology_assert();
|
2002-03-26 21:40:06 +00:00
|
|
|
if (strcmp(pp->geom->class->name, MBR_CLASS_NAME))
|
2002-03-24 11:21:41 +00:00
|
|
|
return (NULL);
|
|
|
|
gp = g_slice_new(mp, NDOSEXTPART, pp, &cp, &ms, sizeof *ms, g_mbrext_start);
|
|
|
|
if (gp == NULL)
|
|
|
|
return (NULL);
|
2002-04-09 15:43:32 +00:00
|
|
|
gsp = gp->softc;
|
2002-03-24 11:21:41 +00:00
|
|
|
g_topology_unlock();
|
|
|
|
gp->dumpconf = g_mbrext_dumpconf;
|
|
|
|
off = 0;
|
|
|
|
slice = 0;
|
|
|
|
while (1) { /* a trick to allow us to use break */
|
2002-04-09 15:43:32 +00:00
|
|
|
error = g_getattr("MBR::type", cp, &i);
|
2002-09-08 15:13:33 +00:00
|
|
|
if (error || (i != DOSPTYP_EXT && i != DOSPTYP_EXTLBA))
|
2002-03-24 11:21:41 +00:00
|
|
|
break;
|
2002-04-09 15:43:32 +00:00
|
|
|
error = g_getattr("GEOM::fwsectors", cp, &fwsectors);
|
|
|
|
if (error)
|
|
|
|
fwsectors = 17;
|
2002-10-20 20:28:24 +00:00
|
|
|
sectorsize = cp->provider->sectorsize;
|
2002-09-28 11:57:20 +00:00
|
|
|
if (sectorsize != 512)
|
2002-04-09 15:43:32 +00:00
|
|
|
break;
|
|
|
|
gsp->frontstuff = sectorsize * fwsectors;
|
2002-03-24 11:21:41 +00:00
|
|
|
for (;;) {
|
2002-04-09 15:43:32 +00:00
|
|
|
buf = g_read_data(cp, off, sectorsize, &error);
|
2002-03-24 11:21:41 +00:00
|
|
|
if (buf == NULL || error != 0)
|
|
|
|
break;
|
|
|
|
if (buf[0x1fe] != 0x55 && buf[0x1ff] != 0xaa)
|
|
|
|
break;
|
|
|
|
for (i = 0; i < NDOSPART; i++)
|
|
|
|
g_dec_dos_partition(
|
2002-10-31 22:18:49 +00:00
|
|
|
buf + DOSPARTOFF +
|
|
|
|
i * sizeof(struct dos_partition), dp + i);
|
2002-03-24 11:21:41 +00:00
|
|
|
g_free(buf);
|
2002-11-04 06:29:05 +00:00
|
|
|
printf("MBREXT Slice %d on %s:\n", slice + 5, gp->name);
|
2002-10-31 22:18:49 +00:00
|
|
|
g_mbr_print(0, dp);
|
|
|
|
g_mbr_print(1, dp + 1);
|
2002-11-04 06:29:05 +00:00
|
|
|
if ((dp[0].dp_flag & 0x7f) == 0 &&
|
|
|
|
dp[0].dp_size != 0 && dp[0].dp_typ != 0) {
|
2002-09-27 21:37:11 +00:00
|
|
|
g_topology_lock();
|
2002-03-24 11:21:41 +00:00
|
|
|
pp2 = g_slice_addslice(gp, slice,
|
|
|
|
(((off_t)dp[0].dp_start) << 9ULL) + off,
|
|
|
|
((off_t)dp[0].dp_size) << 9ULL,
|
2002-10-20 19:18:07 +00:00
|
|
|
sectorsize,
|
2002-03-24 11:21:41 +00:00
|
|
|
"%*.*s%d",
|
|
|
|
strlen(gp->name) - 1,
|
|
|
|
strlen(gp->name) - 1,
|
|
|
|
gp->name,
|
|
|
|
slice + 5);
|
2002-09-27 21:37:11 +00:00
|
|
|
g_topology_unlock();
|
2002-03-24 11:21:41 +00:00
|
|
|
ms->type[slice] = dp[0].dp_typ;
|
|
|
|
slice++;
|
|
|
|
g_error_provider(pp2, 0);
|
|
|
|
}
|
|
|
|
if (dp[1].dp_flag != 0)
|
|
|
|
break;
|
|
|
|
if (dp[1].dp_typ != DOSPTYP_EXT)
|
|
|
|
break;
|
|
|
|
if (dp[1].dp_size == 0)
|
|
|
|
break;
|
|
|
|
off = ((off_t)dp[1].dp_start) << 9ULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_topology_lock();
|
|
|
|
error = g_access_rel(cp, -1, 0, 0);
|
2002-05-21 20:33:49 +00:00
|
|
|
if (slice > 0) {
|
|
|
|
/* XXX: add magic spaces */
|
2002-03-24 11:21:41 +00:00
|
|
|
return (gp);
|
2002-05-21 20:33:49 +00:00
|
|
|
}
|
2002-03-24 11:21:41 +00:00
|
|
|
|
|
|
|
g_topology_assert();
|
|
|
|
g_std_spoiled(cp);
|
|
|
|
g_topology_assert();
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-26 21:40:06 +00:00
|
|
|
static struct g_class g_mbrext_class = {
|
|
|
|
MBREXT_CLASS_NAME,
|
2002-03-24 11:21:41 +00:00
|
|
|
g_mbrext_taste,
|
|
|
|
NULL,
|
2002-06-09 10:57:34 +00:00
|
|
|
G_CLASS_INITIALIZER
|
2002-03-24 11:21:41 +00:00
|
|
|
};
|
|
|
|
|
2002-03-26 21:40:06 +00:00
|
|
|
DECLARE_GEOM_CLASS(g_mbrext_class, g_mbrext);
|