1995-04-28 23:57:04 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
2002-03-25 13:52:45 +00:00
|
|
|
* <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
|
1995-04-28 23:57:04 +00:00
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2001-09-30 21:16:57 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1995-04-28 23:57:04 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
2001-04-01 11:32:56 +00:00
|
|
|
#include <err.h>
|
2000-06-23 14:01:06 +00:00
|
|
|
#include <sys/sysctl.h>
|
1995-04-28 23:57:04 +00:00
|
|
|
#include <sys/types.h>
|
1995-04-29 04:50:39 +00:00
|
|
|
#include <sys/stat.h>
|
1995-04-28 23:57:04 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/disklabel.h>
|
|
|
|
#include <sys/diskslice.h>
|
2002-10-08 12:13:19 +00:00
|
|
|
#ifndef PC98
|
2002-10-01 07:24:55 +00:00
|
|
|
#include <sys/diskmbr.h>
|
2002-10-08 12:13:19 +00:00
|
|
|
#endif
|
2000-06-28 22:28:50 +00:00
|
|
|
#include <paths.h>
|
1995-04-28 23:57:04 +00:00
|
|
|
#include "libdisk.h"
|
|
|
|
|
2002-10-23 13:00:09 +00:00
|
|
|
#ifndef PC98
|
2002-10-19 16:39:28 +00:00
|
|
|
#define HAVE_GEOM
|
2002-10-23 13:00:09 +00:00
|
|
|
#endif
|
2002-10-19 16:39:28 +00:00
|
|
|
#ifdef HAVE_GEOM
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#endif /*HAVE_GEOM*/
|
|
|
|
|
2002-10-08 12:13:19 +00:00
|
|
|
#ifndef PC98
|
1995-04-28 23:57:04 +00:00
|
|
|
#define DOSPTYP_EXTENDED 5
|
1995-05-30 08:29:07 +00:00
|
|
|
#define DOSPTYP_ONTRACK 84
|
2002-10-08 12:13:19 +00:00
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
|
2002-10-19 16:39:28 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define DPRINT(x) warn x
|
|
|
|
#define DPRINTX(x) warnx x
|
|
|
|
#else
|
|
|
|
#define DPRINT(x)
|
|
|
|
#define DPRINTX(x)
|
|
|
|
#endif
|
|
|
|
|
1996-03-24 18:55:39 +00:00
|
|
|
const char *chunk_n[] = {
|
1995-05-03 17:38:00 +00:00
|
|
|
"whole",
|
|
|
|
"unknown",
|
|
|
|
"fat",
|
|
|
|
"freebsd",
|
|
|
|
"extended",
|
|
|
|
"part",
|
|
|
|
"unused",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
1995-04-28 23:57:04 +00:00
|
|
|
struct disk *
|
1996-03-24 18:55:39 +00:00
|
|
|
Open_Disk(const char *name)
|
1995-04-28 23:57:04 +00:00
|
|
|
{
|
2001-04-01 12:18:20 +00:00
|
|
|
return Int_Open_Disk(name, 0);
|
1995-04-28 23:57:04 +00:00
|
|
|
}
|
|
|
|
|
2000-08-08 04:01:51 +00:00
|
|
|
#ifndef PC98
|
1998-09-30 21:40:51 +00:00
|
|
|
static u_int32_t
|
|
|
|
Read_Int32(u_int32_t *p)
|
|
|
|
{
|
|
|
|
u_int8_t *bp = (u_int8_t *)p;
|
|
|
|
return bp[0] | (bp[1] << 8) | (bp[2] << 16) | (bp[3] << 24);
|
|
|
|
}
|
2000-08-08 04:01:51 +00:00
|
|
|
#endif
|
1998-09-30 21:40:51 +00:00
|
|
|
|
2002-10-19 16:39:28 +00:00
|
|
|
#ifdef HAVE_GEOM
|
|
|
|
/*
|
|
|
|
* XXX BEGIN HACK XXX
|
|
|
|
* Scan/parse the XML geom data to retrieve what we need to
|
|
|
|
* carry out the work of Int_Open_Disk. This is a total hack
|
|
|
|
* and should be replaced with a real XML parser.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
XML_MESH,
|
|
|
|
XML_MESH_END,
|
|
|
|
XML_CLASS,
|
|
|
|
XML_CLASS_END,
|
|
|
|
XML_GEOM,
|
|
|
|
XML_GEOM_END,
|
|
|
|
XML_CONFIG,
|
|
|
|
XML_CONFIG_END,
|
|
|
|
XML_PROVIDER,
|
|
|
|
XML_PROVIDER_END,
|
|
|
|
XML_NAME,
|
|
|
|
XML_NAME_END,
|
|
|
|
XML_INDEX,
|
|
|
|
XML_INDEX_END,
|
|
|
|
XML_SECLENGTH,
|
|
|
|
XML_SECLENGTH_END,
|
|
|
|
XML_SECOFFSET,
|
|
|
|
XML_SECOFFSET_END,
|
|
|
|
XML_TYPE,
|
|
|
|
XML_TYPE_END,
|
2002-10-20 22:19:37 +00:00
|
|
|
XML_MEDIASIZE,
|
|
|
|
XML_MEDIASIZE_END,
|
|
|
|
XML_SECTORSIZE,
|
|
|
|
XML_SECTORSIZE_END,
|
|
|
|
XML_FWHEADS,
|
|
|
|
XML_FWHEADS_END,
|
|
|
|
XML_FWSECTORS,
|
|
|
|
XML_FWSECTORS_END,
|
2002-10-19 16:39:28 +00:00
|
|
|
|
|
|
|
XML_OTHER,
|
|
|
|
XML_OTHER_END
|
|
|
|
} XMLToken;
|
|
|
|
|
2002-10-20 22:19:37 +00:00
|
|
|
const struct {
|
|
|
|
XMLToken t;
|
|
|
|
const char* token;
|
|
|
|
const char* name;
|
|
|
|
} xmltokens[] = {
|
|
|
|
{ XML_MESH, "mesh", "XML_MESH" },
|
|
|
|
{ XML_CLASS, "class", "XML_CLASS" },
|
|
|
|
{ XML_GEOM, "geom", "XML_GEOM" },
|
|
|
|
{ XML_CONFIG, "config", "XML_CONFIG" },
|
|
|
|
{ XML_PROVIDER, "provider", "XML_PROVIDE" },
|
|
|
|
{ XML_NAME, "name", "XML_NAME" },
|
|
|
|
{ XML_INDEX, "index", "XML_INDEX" },
|
|
|
|
{ XML_SECLENGTH, "seclength", "XML_SECLENGTH" },
|
|
|
|
{ XML_SECOFFSET, "secoffset", "XML_SECOFFSET" },
|
|
|
|
{ XML_TYPE, "type", "XML_TYPE" },
|
|
|
|
{ XML_FWHEADS, "fwheads", "XML_FWHEADS" },
|
|
|
|
{ XML_FWSECTORS, "fwsectors", "XML_FWSECTORS" },
|
|
|
|
{ XML_MEDIASIZE, "mediasize", "XML_MEDIASIZE" },
|
|
|
|
{ XML_SECTORSIZE, "sectorsize", "XML_SECTORSIZE" },
|
|
|
|
/* NB: this must be last */
|
|
|
|
{ XML_OTHER, NULL, "XML_OTHER" },
|
|
|
|
};
|
|
|
|
#define N(x) (sizeof (x) / sizeof (x[0]))
|
|
|
|
|
2002-10-19 16:39:28 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static const char*
|
|
|
|
xmltokenname(XMLToken t)
|
|
|
|
{
|
2002-10-20 22:19:37 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < N(xmltokens); i++) {
|
|
|
|
if (t == xmltokens[i].t)
|
|
|
|
return xmltokens[i].name;
|
|
|
|
if ((t-1) == xmltokens[i].t) {
|
|
|
|
static char tbuf[80];
|
|
|
|
snprintf(tbuf, sizeof (tbuf), "%s_END",
|
|
|
|
xmltokens[i].name);
|
|
|
|
return tbuf;
|
|
|
|
}
|
2002-10-19 16:39:28 +00:00
|
|
|
}
|
|
|
|
return "???";
|
|
|
|
}
|
|
|
|
#endif /*DEBUG*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse the next XML token delimited by <..>. If the token
|
|
|
|
* has a "builtin terminator" (<... />) then just skip it and
|
|
|
|
* go the next token.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
xmltoken(const char *start, const char **next, XMLToken *t)
|
|
|
|
{
|
|
|
|
const char *cp = start;
|
|
|
|
const char *token;
|
2002-10-20 22:19:37 +00:00
|
|
|
int i;
|
2002-10-19 16:39:28 +00:00
|
|
|
|
|
|
|
again:
|
|
|
|
while (*cp != '<') {
|
|
|
|
if (*cp == '\0') {
|
|
|
|
*next = cp;
|
|
|
|
DPRINTX(("xmltoken: EOD"));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
token = ++cp;
|
|
|
|
for (; *cp && *cp != '>' && !isspace(*cp); cp++)
|
|
|
|
;
|
|
|
|
if (*cp == '\0') {
|
|
|
|
*next = cp;
|
|
|
|
DPRINTX(("xmltoken: EOD"));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*t = (*token == '/');
|
|
|
|
if (*t)
|
|
|
|
token++;
|
2002-10-20 22:19:37 +00:00
|
|
|
for (i = 0; xmltokens[i].token != NULL; i++)
|
|
|
|
if (strncasecmp(token, xmltokens[i].token, cp-token) == 0)
|
|
|
|
break;
|
|
|
|
*t += xmltokens[i].t;
|
2002-10-19 16:39:28 +00:00
|
|
|
/* now collect the remainder of the string */
|
|
|
|
for (; *cp != '>' && *cp != '\0'; cp++)
|
|
|
|
;
|
|
|
|
if (*cp == '\0') {
|
|
|
|
*next = cp;
|
|
|
|
DPRINTX(("xmltoken: EOD"));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (cp > token && cp[-1] == '/') {
|
|
|
|
/* e.g. <geom ref="0xc1c8c100"/> */
|
|
|
|
start = cp+1;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
*next = cp+1;
|
|
|
|
DPRINTX(("xmltoken: %s \"%.*s\"", xmltokenname(*t), cp-token, token));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse and discard XML up to the token terminator.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
discardxml(const char **next, XMLToken terminator)
|
|
|
|
{
|
|
|
|
const char *xml = *next;
|
|
|
|
XMLToken t;
|
|
|
|
|
|
|
|
DPRINTX(("discard XML up to %s", xmltokenname(terminator)));
|
|
|
|
for (;;) {
|
|
|
|
if (xmltoken(xml, next, &t) == 0)
|
|
|
|
return EINVAL;
|
|
|
|
if (t == terminator)
|
|
|
|
break;
|
|
|
|
if ((t & 1) == 0) {
|
|
|
|
int error = discardxml(next, t+1);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
xml = *next;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse XML from between a range of markers; e.g. <mesh> ... </mesh>.
|
|
|
|
* When the specified class name is located we descend looking for the
|
|
|
|
* geometry information given by diskname. Once inside there we process
|
|
|
|
* tags calling f back for each useful one. The arg is passed into f
|
|
|
|
* for use in storing the parsed data.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
parsexmlpair(
|
|
|
|
const char *xml,
|
|
|
|
const char **next,
|
|
|
|
const char *classname,
|
|
|
|
XMLToken terminator,
|
|
|
|
const char *diskname,
|
2002-10-20 22:19:37 +00:00
|
|
|
int (*f)(void *, XMLToken, u_int *, u_int64_t),
|
2002-10-19 16:39:28 +00:00
|
|
|
void *arg
|
|
|
|
)
|
|
|
|
{
|
|
|
|
const char *cp;
|
|
|
|
XMLToken t;
|
|
|
|
int error;
|
|
|
|
u_int ix = (u_int) -1;
|
|
|
|
|
|
|
|
DPRINTX(("parse XML up to %s", xmltokenname(terminator)));
|
|
|
|
do {
|
|
|
|
if (xmltoken(xml, next, &t) == 0) {
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (t == terminator) {
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (t & 1) { /* </mumble> w/o matching <mumble> */
|
|
|
|
DPRINTX(("Unexpected token %s", xmltokenname(t)));
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch ((int) t) {
|
|
|
|
case XML_NAME:
|
|
|
|
for (cp = *next; *cp && *cp != '<'; cp++)
|
|
|
|
;
|
|
|
|
if (*cp == '\0') {
|
|
|
|
DPRINTX(("parsexmlpair: EOD"));
|
|
|
|
error = EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
DPRINTX(("parsexmlpair: \"%.*s\"", cp-*next, *next));
|
|
|
|
switch ((int) terminator) {
|
|
|
|
case XML_CLASS_END:
|
|
|
|
if (strncasecmp(*next, classname, cp-*next))
|
|
|
|
return discardxml(next, terminator);
|
|
|
|
break;
|
|
|
|
case XML_GEOM_END:
|
|
|
|
if (strncasecmp(*next, diskname, cp-*next))
|
|
|
|
return discardxml(next, terminator);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XML_SECOFFSET:
|
|
|
|
case XML_SECLENGTH:
|
|
|
|
case XML_TYPE:
|
|
|
|
if (ix == (u_int) -1) {
|
|
|
|
DPRINTX(("parsexmlpair: slice data w/o "
|
|
|
|
"preceding index"));
|
|
|
|
error = EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
/* fall thru... */
|
|
|
|
case XML_INDEX:
|
2002-10-20 22:19:37 +00:00
|
|
|
case XML_FWHEADS:
|
|
|
|
case XML_FWSECTORS:
|
|
|
|
case XML_MEDIASIZE:
|
|
|
|
case XML_SECTORSIZE:
|
|
|
|
if (terminator != XML_CONFIG_END &&
|
|
|
|
terminator != XML_PROVIDER_END) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINTX(("parsexmlpair: %s in unexpected "
|
|
|
|
"context: terminator %s",
|
|
|
|
xmltokenname(t),
|
|
|
|
xmltokenname(terminator)));
|
|
|
|
error = EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
2002-10-20 22:19:37 +00:00
|
|
|
error = (*f)(arg, t, &ix, strtoull(*next, NULL, 10));
|
2002-10-19 16:39:28 +00:00
|
|
|
if (error)
|
|
|
|
goto done;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
error = parsexmlpair(*next, &xml, classname,
|
|
|
|
t+1, diskname, f, arg);
|
|
|
|
} while (error == 0);
|
|
|
|
done:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XML parser. Just barely smart enough to handle the
|
|
|
|
* gibberish that geom passed back from the kernel.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
xmlparse(
|
|
|
|
const char *confxml,
|
|
|
|
const char *classname,
|
|
|
|
const char *diskname,
|
2002-10-20 22:19:37 +00:00
|
|
|
int (*f)(void *, XMLToken, u_int *, u_int64_t),
|
2002-10-19 16:39:28 +00:00
|
|
|
void *arg
|
|
|
|
)
|
|
|
|
{
|
|
|
|
const char *next;
|
|
|
|
XMLToken t;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
next = confxml;
|
|
|
|
while (xmltoken(next, &next, &t) && t != XML_MESH)
|
|
|
|
;
|
|
|
|
if (t == XML_MESH)
|
|
|
|
error = parsexmlpair(next, &next, classname, XML_MESH_END, diskname, f, arg);
|
|
|
|
else {
|
|
|
|
DPRINTX(("xmlparse: expecting mesh token, got %s",
|
|
|
|
xmltokenname(t)));
|
|
|
|
error = EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error ? -1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Callback to collect slice-related data.
|
|
|
|
*/
|
|
|
|
static int
|
2002-10-20 22:19:37 +00:00
|
|
|
assignToSlice(void *arg, XMLToken t, u_int *slice, u_int64_t v)
|
2002-10-19 16:39:28 +00:00
|
|
|
{
|
|
|
|
struct diskslices *ds = (struct diskslices *) arg;
|
|
|
|
|
|
|
|
switch ((int) t) {
|
|
|
|
case XML_INDEX:
|
|
|
|
*slice = BASE_SLICE + (u_int) v;
|
|
|
|
if (*slice >= MAX_SLICES) {
|
|
|
|
DPRINTX(("assignToSlice: invalid slice index %u > max %u",
|
|
|
|
*slice, MAX_SLICES));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
if (*slice >= ds->dss_nslices)
|
|
|
|
ds->dss_nslices = (*slice)+1;
|
|
|
|
break;
|
|
|
|
case XML_SECOFFSET:
|
2002-10-20 22:19:37 +00:00
|
|
|
ds->dss_slices[*slice].ds_offset = (u_long) v;
|
2002-10-19 16:39:28 +00:00
|
|
|
break;
|
|
|
|
case XML_SECLENGTH:
|
2002-10-20 22:19:37 +00:00
|
|
|
ds->dss_slices[*slice].ds_size = (u_long) v;
|
2002-10-19 16:39:28 +00:00
|
|
|
break;
|
|
|
|
case XML_TYPE:
|
2002-10-20 22:19:37 +00:00
|
|
|
ds->dss_slices[*slice].ds_type = (int) v;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Callback to collect disk-related data.
|
|
|
|
*/
|
|
|
|
static int
|
2002-10-23 19:52:32 +00:00
|
|
|
assignToDisk(void *arg, XMLToken t, u_int *slice, u_int64_t v)
|
2002-10-20 22:19:37 +00:00
|
|
|
{
|
|
|
|
struct disklabel *dl = (struct disklabel *) arg;
|
|
|
|
|
|
|
|
switch ((int) t) {
|
|
|
|
case XML_FWHEADS:
|
2002-10-21 20:42:20 +00:00
|
|
|
dl->d_ntracks = (u_int32_t) v;
|
2002-10-20 22:19:37 +00:00
|
|
|
case XML_FWSECTORS:
|
2002-10-21 19:44:07 +00:00
|
|
|
dl->d_nsectors = (u_int32_t) v;
|
2002-10-20 22:19:37 +00:00
|
|
|
break;
|
|
|
|
case XML_MEDIASIZE:
|
|
|
|
/* store this temporarily; it gets moved later */
|
|
|
|
dl->d_secpercyl = v >> 32;
|
|
|
|
dl->d_secperunit = v & 0xffffffff;
|
|
|
|
break;
|
|
|
|
case XML_SECTORSIZE:
|
|
|
|
dl->d_secsize = (u_int32_t) v;
|
2002-10-19 16:39:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Callback to collect partition-related data.
|
|
|
|
*/
|
|
|
|
static int
|
2002-10-20 22:19:37 +00:00
|
|
|
assignToPartition(void *arg, XMLToken t, u_int *part, u_int64_t v)
|
2002-10-19 16:39:28 +00:00
|
|
|
{
|
|
|
|
struct disklabel *dl = (struct disklabel *) arg;
|
|
|
|
|
|
|
|
switch ((int) t) {
|
|
|
|
case XML_INDEX:
|
|
|
|
*part = (u_int) v;
|
|
|
|
if (*part >= MAXPARTITIONS) {
|
|
|
|
DPRINTX(("assignToPartition: invalid partition index %u > max %u",
|
|
|
|
*part, MAXPARTITIONS));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
if (*part >= dl->d_npartitions)
|
|
|
|
dl->d_npartitions = (*part)+1;
|
|
|
|
break;
|
|
|
|
case XML_SECOFFSET:
|
|
|
|
dl->d_partitions[*part].p_offset = (u_int32_t) v;
|
|
|
|
break;
|
|
|
|
case XML_SECLENGTH:
|
|
|
|
dl->d_partitions[*part].p_size = (u_int32_t) v;
|
|
|
|
break;
|
|
|
|
case XML_TYPE:
|
|
|
|
dl->d_partitions[*part].p_fstype = (u_int8_t) v;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2002-10-20 22:19:37 +00:00
|
|
|
#undef N
|
2002-10-19 16:39:28 +00:00
|
|
|
#endif /*HAVE_GEOM*/
|
|
|
|
|
1995-04-28 23:57:04 +00:00
|
|
|
struct disk *
|
1996-03-24 18:55:39 +00:00
|
|
|
Int_Open_Disk(const char *name, u_long size)
|
1995-04-28 23:57:04 +00:00
|
|
|
{
|
2002-10-19 16:39:28 +00:00
|
|
|
int i;
|
|
|
|
int fd = -1;
|
1995-04-28 23:57:04 +00:00
|
|
|
struct diskslices ds;
|
1995-04-29 07:21:14 +00:00
|
|
|
struct disklabel dl;
|
2002-10-20 22:19:37 +00:00
|
|
|
char device[64];
|
1995-04-28 23:57:04 +00:00
|
|
|
struct disk *d;
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
unsigned char *p;
|
|
|
|
#else
|
1995-04-30 06:09:29 +00:00
|
|
|
struct dos_partition *dp;
|
|
|
|
void *p;
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
2002-10-19 16:39:28 +00:00
|
|
|
#ifdef HAVE_GEOM
|
|
|
|
char *confxml = NULL;
|
|
|
|
size_t xmlsize;
|
2002-10-20 22:19:37 +00:00
|
|
|
u_int64_t mediasize;
|
2002-10-19 16:39:28 +00:00
|
|
|
int error;
|
2002-10-20 22:19:37 +00:00
|
|
|
#else
|
|
|
|
u_long sector_size;
|
|
|
|
char *buf;
|
2002-10-19 16:39:28 +00:00
|
|
|
#endif /*HAVE_GEOM*/
|
1995-04-28 23:57:04 +00:00
|
|
|
|
2002-10-12 22:03:22 +00:00
|
|
|
strlcpy(device, _PATH_DEV, sizeof(device));
|
|
|
|
strlcat(device, name, sizeof(device));
|
1995-04-28 23:57:04 +00:00
|
|
|
|
1995-04-30 06:09:29 +00:00
|
|
|
d = (struct disk *)malloc(sizeof *d);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d) return NULL;
|
2001-04-01 12:18:20 +00:00
|
|
|
memset(d, 0, sizeof *d);
|
1995-04-30 06:09:29 +00:00
|
|
|
|
2001-04-01 12:18:20 +00:00
|
|
|
fd = open(device, O_RDONLY);
|
1995-04-28 23:57:04 +00:00
|
|
|
if (fd < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("open(%s) failed", device));
|
|
|
|
goto bad;
|
1995-04-28 23:57:04 +00:00
|
|
|
}
|
1995-04-30 06:09:29 +00:00
|
|
|
|
2001-04-01 12:18:20 +00:00
|
|
|
memset(&dl, 0, sizeof dl);
|
2002-10-19 16:39:28 +00:00
|
|
|
memset(&ds, 0, sizeof ds);
|
|
|
|
#ifdef HAVE_GEOM
|
|
|
|
/*
|
|
|
|
* Read and hack-parse the XML that provides the info we need.
|
|
|
|
*/
|
|
|
|
error = sysctlbyname("kern.geom.confxml", NULL, &xmlsize, NULL, 0);
|
|
|
|
if (error) {
|
|
|
|
warn("kern.geom.confxml sysctl not available, giving up!");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
confxml = (char *) malloc(xmlsize+1);
|
|
|
|
if (confxml == NULL) {
|
|
|
|
DPRINT(("cannot malloc memory for confxml"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
error = sysctlbyname("kern.geom.confxml", confxml, &xmlsize, NULL, 0);
|
|
|
|
if (error) {
|
|
|
|
DPRINT(("error reading kern.geom.confxml from the system"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
confxml[xmlsize] = '\0'; /* in case kernel bug is still there */
|
|
|
|
|
|
|
|
if (xmlparse(confxml, "MBR", name, assignToSlice, &ds) != 0) {
|
|
|
|
DPRINTX(("Error parsing MBR geometry specification."));
|
|
|
|
goto bad;
|
|
|
|
}
|
2002-10-20 22:19:37 +00:00
|
|
|
if (xmlparse(confxml, "DISK", name, assignToDisk, &dl) != 0) {
|
|
|
|
DPRINTX(("Error parsing DISK geometry specification."));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (dl.d_nsectors == 0) {
|
|
|
|
DPRINTX(("No (zero) sector information in DISK geometry"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (dl.d_ntracks == 0) {
|
|
|
|
DPRINTX(("No (zero) track information in DISK geometry"));
|
|
|
|
goto bad;
|
2002-10-19 16:39:28 +00:00
|
|
|
}
|
2002-10-20 22:19:37 +00:00
|
|
|
if (dl.d_secsize == 0) {
|
|
|
|
DPRINTX(("No (zero) sector size information in DISK geometry"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (dl.d_secpercyl == 0 && dl.d_secperunit == 0) {
|
|
|
|
DPRINTX(("No (zero) media size information in DISK geometry"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Now patch up disklabel and diskslice.
|
|
|
|
*/
|
|
|
|
d->sector_size = dl.d_secsize;
|
|
|
|
/* NB: media size was stashed in two parts while parsing */
|
|
|
|
mediasize = (((u_int64_t) dl.d_secpercyl) << 32) + dl.d_secperunit;
|
|
|
|
dl.d_secpercyl = 0;
|
|
|
|
dl.d_secperunit = 0;
|
|
|
|
size = mediasize / d->sector_size;
|
|
|
|
dl.d_ncylinders = size / (dl.d_ntracks * dl.d_nsectors);
|
|
|
|
/* "whole disk" slice maintained for compatibility */
|
|
|
|
ds.dss_slices[WHOLE_DISK_SLICE].ds_size = size;
|
2002-10-19 16:39:28 +00:00
|
|
|
#else /* !HAVE_GEOM */
|
2002-10-17 18:34:32 +00:00
|
|
|
if (ioctl(fd, DIOCGDINFO, &dl) < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("DIOCGDINFO(%s) failed", device));
|
|
|
|
goto bad;
|
2002-10-17 18:34:32 +00:00
|
|
|
}
|
2001-04-01 12:18:20 +00:00
|
|
|
i = ioctl(fd, DIOCGSLICEINFO, &ds);
|
1995-04-28 23:57:04 +00:00
|
|
|
if (i < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("DIOCGSLICEINFO(%s) failed", device));
|
|
|
|
goto bad;
|
1995-04-28 23:57:04 +00:00
|
|
|
}
|
|
|
|
|
1995-05-03 06:30:59 +00:00
|
|
|
#ifdef DEBUG
|
2001-04-01 12:18:20 +00:00
|
|
|
for(i = 0; i < ds.dss_nslices; i++)
|
1995-04-30 11:04:16 +00:00
|
|
|
if(ds.dss_slices[i].ds_openmask)
|
|
|
|
printf(" open(%d)=0x%2x",
|
2001-04-01 12:18:20 +00:00
|
|
|
i, ds.dss_slices[i].ds_openmask);
|
1995-04-30 11:04:16 +00:00
|
|
|
printf("\n");
|
1995-05-02 19:52:27 +00:00
|
|
|
#endif
|
1995-04-30 11:04:16 +00:00
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
/* XXX --- ds.dss_slice[WHOLE_DISK_SLICE].ds.size of MO disk is wrong!!! */
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
if (!size)
|
|
|
|
size = dl.d_ncylinders * dl.d_ntracks * dl.d_nsectors;
|
|
|
|
#else
|
1995-04-30 06:09:29 +00:00
|
|
|
if (!size)
|
|
|
|
size = ds.dss_slices[WHOLE_DISK_SLICE].ds_size;
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
/* determine media sector size */
|
|
|
|
if ((buf = malloc(MAX_SEC_SIZE)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
for (sector_size = MIN_SEC_SIZE; sector_size <= MAX_SEC_SIZE; sector_size *= 2) {
|
|
|
|
if (read(fd, buf, sector_size) == sector_size) {
|
|
|
|
d->sector_size = sector_size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free (buf);
|
2002-10-17 18:34:32 +00:00
|
|
|
if (sector_size > MAX_SEC_SIZE) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("Int_Open_Disk: could not determine sector size, "
|
|
|
|
"calculated %u, max %u\n", sector_size, MAX_SEC_SIZE));
|
|
|
|
/* could not determine sector size */
|
|
|
|
goto bad;
|
2002-10-17 18:34:32 +00:00
|
|
|
}
|
2002-10-20 22:19:37 +00:00
|
|
|
#endif /*HAVE_GEOM*/
|
2001-05-13 20:08:54 +00:00
|
|
|
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
2002-10-20 22:19:37 +00:00
|
|
|
p = (unsigned char*)read_block(fd, 1, d->sector_size);
|
2000-03-29 15:10:28 +00:00
|
|
|
#else
|
2002-10-20 22:19:37 +00:00
|
|
|
p = read_block(fd, 0, d->sector_size);
|
2001-04-01 12:18:20 +00:00
|
|
|
dp = (struct dos_partition*)(p + DOSPARTOFF);
|
|
|
|
for (i = 0; i < NDOSPART; i++) {
|
1998-09-30 21:40:51 +00:00
|
|
|
if (Read_Int32(&dp->dp_start) >= size)
|
|
|
|
continue;
|
|
|
|
if (Read_Int32(&dp->dp_start) + Read_Int32(&dp->dp_size) >= size)
|
|
|
|
continue;
|
|
|
|
if (!Read_Int32(&dp->dp_size))
|
|
|
|
continue;
|
1995-04-30 06:09:29 +00:00
|
|
|
}
|
|
|
|
free(p);
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
|
1995-04-29 07:21:14 +00:00
|
|
|
d->bios_sect = dl.d_nsectors;
|
|
|
|
d->bios_hd = dl.d_ntracks;
|
|
|
|
|
1995-04-28 23:57:04 +00:00
|
|
|
d->name = strdup(name);
|
|
|
|
|
|
|
|
|
1995-04-29 07:21:14 +00:00
|
|
|
if (dl.d_ntracks && dl.d_nsectors)
|
2001-04-01 12:18:20 +00:00
|
|
|
d->bios_cyl = size / (dl.d_ntracks * dl.d_nsectors);
|
1995-04-29 07:21:14 +00:00
|
|
|
|
2002-10-22 09:13:02 +00:00
|
|
|
if (Add_Chunk(d, 0, size, name, whole, 0, 0, "-"))
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("Failed to add 'whole' chunk"));
|
1995-04-29 07:21:14 +00:00
|
|
|
|
1999-01-29 11:39:24 +00:00
|
|
|
#ifdef __i386__
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
/* XXX -- Quick Hack!
|
2000-08-08 04:01:51 +00:00
|
|
|
* Check MS-DOS MO
|
2000-03-29 15:10:28 +00:00
|
|
|
*/
|
|
|
|
if ((*p == 0xf0 || *p == 0xf8) &&
|
|
|
|
(*(p+1) == 0xff) &&
|
|
|
|
(*(p+2) == 0xff)) {
|
|
|
|
Add_Chunk(d, 0, size, name, fat, 0xa0a0, 0, name);
|
|
|
|
free(p);
|
|
|
|
goto pc98_mo_done;
|
|
|
|
}
|
|
|
|
free(p);
|
|
|
|
#endif /* PC98 */
|
1995-04-30 11:04:16 +00:00
|
|
|
for(i=BASE_SLICE;i<ds.dss_nslices;i++) {
|
1995-04-28 23:57:04 +00:00
|
|
|
char sname[20];
|
2002-10-19 16:39:28 +00:00
|
|
|
char pname[20];
|
1995-04-28 23:57:04 +00:00
|
|
|
chunk_e ce;
|
|
|
|
u_long flags=0;
|
|
|
|
int subtype=0;
|
2002-10-19 16:39:28 +00:00
|
|
|
int j;
|
2001-04-01 12:18:20 +00:00
|
|
|
|
1995-04-28 23:57:04 +00:00
|
|
|
if (! ds.dss_slices[i].ds_size)
|
|
|
|
continue;
|
2002-10-12 22:03:22 +00:00
|
|
|
snprintf(sname, sizeof(sname), "%ss%d", name, i - 1);
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
subtype = ds.dss_slices[i].ds_type |
|
|
|
|
ds.dss_slices[i].ds_subtype << 8;
|
|
|
|
switch (ds.dss_slices[i].ds_type & 0x7f) {
|
|
|
|
case 0x14:
|
|
|
|
ce = freebsd;
|
|
|
|
break;
|
|
|
|
case 0x20:
|
|
|
|
case 0x21:
|
|
|
|
case 0x22:
|
|
|
|
case 0x23:
|
2000-08-08 04:01:51 +00:00
|
|
|
case 0x24:
|
2000-03-29 15:10:28 +00:00
|
|
|
ce = fat;
|
|
|
|
break;
|
|
|
|
#else /* IBM-PC */
|
1995-04-30 11:04:16 +00:00
|
|
|
subtype = ds.dss_slices[i].ds_type;
|
1995-04-28 23:57:04 +00:00
|
|
|
switch (ds.dss_slices[i].ds_type) {
|
|
|
|
case 0xa5:
|
|
|
|
ce = freebsd;
|
|
|
|
break;
|
|
|
|
case 0x1:
|
1995-05-08 02:08:33 +00:00
|
|
|
case 0x6:
|
1995-04-30 11:04:16 +00:00
|
|
|
case 0x4:
|
1998-03-07 08:45:46 +00:00
|
|
|
case 0xb:
|
1998-03-14 21:14:31 +00:00
|
|
|
case 0xc:
|
|
|
|
case 0xe:
|
1995-04-28 23:57:04 +00:00
|
|
|
ce = fat;
|
|
|
|
break;
|
|
|
|
case DOSPTYP_EXTENDED:
|
1998-03-14 21:14:31 +00:00
|
|
|
case 0xf:
|
1995-04-28 23:57:04 +00:00
|
|
|
ce = extended;
|
|
|
|
break;
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
default:
|
1995-05-02 20:16:16 +00:00
|
|
|
ce = unknown;
|
1995-04-28 23:57:04 +00:00
|
|
|
break;
|
1995-05-30 08:29:07 +00:00
|
|
|
}
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
2001-04-01 12:18:20 +00:00
|
|
|
if (Add_Chunk(d, ds.dss_slices[i].ds_offset,
|
2000-03-29 15:10:28 +00:00
|
|
|
ds.dss_slices[i].ds_size, sname, ce, subtype, flags,
|
|
|
|
ds.dss_slices[i].ds_name))
|
|
|
|
#else
|
1996-04-29 05:03:02 +00:00
|
|
|
if (Add_Chunk(d, ds.dss_slices[i].ds_offset,
|
2002-10-22 10:51:58 +00:00
|
|
|
ds.dss_slices[i].ds_size, sname, ce, subtype, flags, ""))
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("failed to add chunk for slice %d", i - 1));
|
1995-04-30 22:51:05 +00:00
|
|
|
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
if ((ds.dss_slices[i].ds_type & 0x7f) != 0x14)
|
|
|
|
#else
|
1995-04-30 11:04:16 +00:00
|
|
|
if (ds.dss_slices[i].ds_type != 0xa5)
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1995-04-30 11:04:16 +00:00
|
|
|
continue;
|
2002-10-19 16:39:28 +00:00
|
|
|
#ifdef HAVE_GEOM
|
|
|
|
if (xmlparse(confxml, "BSD", sname, assignToPartition, &dl) != 0) {
|
|
|
|
DPRINTX(("Error parsing MBR geometry specification."));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
#else
|
1995-04-30 11:04:16 +00:00
|
|
|
{
|
|
|
|
struct disklabel dl;
|
2002-10-19 16:39:28 +00:00
|
|
|
int k;
|
1995-04-28 23:57:04 +00:00
|
|
|
|
2002-10-12 22:03:22 +00:00
|
|
|
strlcpy(pname, _PATH_DEV, sizeof(pname));
|
|
|
|
strlcat(pname, sname, sizeof(pname));
|
2001-04-01 12:18:20 +00:00
|
|
|
j = open(pname, O_RDONLY);
|
1995-04-30 11:04:16 +00:00
|
|
|
if (j < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("open(%s)", pname));
|
1995-04-30 11:04:16 +00:00
|
|
|
continue;
|
|
|
|
}
|
2001-04-01 12:18:20 +00:00
|
|
|
k = ioctl(j, DIOCGDINFO, &dl);
|
1995-04-30 11:04:16 +00:00
|
|
|
if (k < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("ioctl(%s, DIOCGDINFO)", pname));
|
1995-04-30 11:04:16 +00:00
|
|
|
close(j);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
close(j);
|
2002-10-19 16:39:28 +00:00
|
|
|
}
|
|
|
|
#endif /*HAVE_GEOM*/
|
1995-05-30 08:29:07 +00:00
|
|
|
|
2001-04-01 12:18:20 +00:00
|
|
|
for(j = 0; j <= dl.d_npartitions; j++) {
|
1995-04-30 11:04:16 +00:00
|
|
|
if (j == RAW_PART)
|
|
|
|
continue;
|
|
|
|
if (j == 3)
|
|
|
|
continue;
|
|
|
|
if (j == dl.d_npartitions) {
|
|
|
|
j = 3;
|
2001-04-01 12:18:20 +00:00
|
|
|
dl.d_npartitions = 0;
|
1995-04-28 23:57:04 +00:00
|
|
|
}
|
1995-04-30 11:04:16 +00:00
|
|
|
if (!dl.d_partitions[j].p_size)
|
|
|
|
continue;
|
|
|
|
if (dl.d_partitions[j].p_size +
|
|
|
|
dl.d_partitions[j].p_offset >
|
|
|
|
ds.dss_slices[i].ds_size)
|
|
|
|
continue;
|
2002-10-12 22:03:22 +00:00
|
|
|
snprintf(pname, sizeof(pname), "%s%c", sname, j + 'a');
|
1995-04-30 11:04:16 +00:00
|
|
|
if (Add_Chunk(d,
|
|
|
|
dl.d_partitions[j].p_offset +
|
|
|
|
ds.dss_slices[i].ds_offset,
|
|
|
|
dl.d_partitions[j].p_size,
|
|
|
|
pname,part,
|
|
|
|
dl.d_partitions[j].p_fstype,
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
0,
|
|
|
|
ds.dss_slices[i].ds_name) && j != 3)
|
|
|
|
#else
|
2002-10-22 10:51:58 +00:00
|
|
|
0, "") && j != 3)
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT((
|
1995-04-30 11:04:16 +00:00
|
|
|
"Failed to add chunk for partition %c [%lu,%lu]",
|
2001-04-01 12:18:20 +00:00
|
|
|
j + 'a', dl.d_partitions[j].p_offset,
|
2002-10-19 16:39:28 +00:00
|
|
|
dl.d_partitions[j].p_size));
|
1995-04-28 23:57:04 +00:00
|
|
|
}
|
|
|
|
}
|
1999-01-29 11:39:24 +00:00
|
|
|
#endif /* __i386__ */
|
|
|
|
#ifdef __alpha__
|
|
|
|
{
|
|
|
|
struct disklabel dl;
|
|
|
|
char pname[20];
|
|
|
|
int j,k;
|
|
|
|
|
2002-10-17 18:23:21 +00:00
|
|
|
strlcpy(pname, _PATH_DEV, sizeof(pname));
|
|
|
|
strlcat(pname, name, sizeof(pname));
|
2001-04-01 12:18:20 +00:00
|
|
|
j = open(pname, O_RDONLY);
|
1999-01-29 11:39:24 +00:00
|
|
|
if (j < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("open(%s)", pname));
|
1999-01-29 11:39:24 +00:00
|
|
|
goto nolabel;
|
|
|
|
}
|
2001-04-01 12:18:20 +00:00
|
|
|
k = ioctl(j, DIOCGDINFO, &dl);
|
1999-01-29 11:39:24 +00:00
|
|
|
if (k < 0) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("ioctl(%s, DIOCGDINFO)", pname));
|
1999-01-29 11:39:24 +00:00
|
|
|
close(j);
|
|
|
|
goto nolabel;
|
|
|
|
}
|
|
|
|
close(j);
|
|
|
|
All_FreeBSD(d, 1);
|
|
|
|
|
2001-04-01 12:18:20 +00:00
|
|
|
for(j = 0; j <= dl.d_npartitions; j++) {
|
1999-01-29 11:39:24 +00:00
|
|
|
if (j == RAW_PART)
|
|
|
|
continue;
|
|
|
|
if (j == 3)
|
|
|
|
continue;
|
|
|
|
if (j == dl.d_npartitions) {
|
|
|
|
j = 3;
|
2001-04-01 12:18:20 +00:00
|
|
|
dl.d_npartitions = 0;
|
1999-01-29 11:39:24 +00:00
|
|
|
}
|
|
|
|
if (!dl.d_partitions[j].p_size)
|
|
|
|
continue;
|
|
|
|
if (dl.d_partitions[j].p_size +
|
|
|
|
dl.d_partitions[j].p_offset >
|
|
|
|
ds.dss_slices[WHOLE_DISK_SLICE].ds_size)
|
|
|
|
continue;
|
2002-10-12 22:03:22 +00:00
|
|
|
snprintf(pname, sizeof(pname), "%s%c", name, j + 'a');
|
1999-01-29 11:39:24 +00:00
|
|
|
if (Add_Chunk(d,
|
|
|
|
dl.d_partitions[j].p_offset,
|
|
|
|
dl.d_partitions[j].p_size,
|
|
|
|
pname,part,
|
|
|
|
dl.d_partitions[j].p_fstype,
|
2002-10-23 10:47:00 +00:00
|
|
|
0, "") && j != 3)
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT((
|
1999-01-29 11:39:24 +00:00
|
|
|
"Failed to add chunk for partition %c [%lu,%lu]",
|
2001-04-01 12:18:20 +00:00
|
|
|
j + 'a', dl.d_partitions[j].p_offset,
|
2002-10-19 16:39:28 +00:00
|
|
|
dl.d_partitions[j].p_size));
|
1999-01-29 11:39:24 +00:00
|
|
|
}
|
|
|
|
nolabel:;
|
|
|
|
}
|
|
|
|
#endif /* __alpha__ */
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
pc98_mo_done:
|
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
close(fd);
|
1995-05-03 06:30:59 +00:00
|
|
|
Fixup_Names(d);
|
1995-04-28 23:57:04 +00:00
|
|
|
return d;
|
2002-10-19 16:39:28 +00:00
|
|
|
bad:
|
2002-10-23 13:00:09 +00:00
|
|
|
#ifdef HAVE_GEOM
|
2002-10-19 16:39:28 +00:00
|
|
|
if (confxml != NULL)
|
|
|
|
free(confxml);
|
2002-10-23 13:00:09 +00:00
|
|
|
#endif
|
2002-10-19 16:39:28 +00:00
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
return NULL;
|
1995-04-28 23:57:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Debug_Disk(struct disk *d)
|
|
|
|
{
|
2001-04-01 12:18:20 +00:00
|
|
|
printf("Debug_Disk(%s)", d->name);
|
1995-06-11 19:33:05 +00:00
|
|
|
#if 0
|
2001-04-01 12:18:20 +00:00
|
|
|
printf(" real_geom=%lu/%lu/%lu", d->real_cyl, d->real_hd, d->real_sect);
|
1995-06-11 19:33:05 +00:00
|
|
|
#endif
|
1996-11-27 22:44:43 +00:00
|
|
|
printf(" bios_geom=%lu/%lu/%lu = %lu\n",
|
2001-04-01 12:18:20 +00:00
|
|
|
d->bios_cyl, d->bios_hd, d->bios_sect,
|
|
|
|
d->bios_cyl * d->bios_hd * d->bios_sect);
|
2000-08-12 14:20:31 +00:00
|
|
|
#if defined(PC98)
|
|
|
|
printf(" boot1=%p, boot2=%p, bootipl=%p, bootmenu=%p\n",
|
2001-04-01 12:18:20 +00:00
|
|
|
d->boot1, d->boot2, d->bootipl, d->bootmenu);
|
2000-08-12 14:20:31 +00:00
|
|
|
#elif defined(__i386__)
|
1995-04-30 06:09:29 +00:00
|
|
|
printf(" boot1=%p, boot2=%p, bootmgr=%p\n",
|
2001-04-01 12:18:20 +00:00
|
|
|
d->boot1, d->boot2, d->bootmgr);
|
1998-10-06 11:57:08 +00:00
|
|
|
#elif defined(__alpha__)
|
|
|
|
printf(" boot1=%p, bootmgr=%p\n",
|
2001-04-01 12:18:20 +00:00
|
|
|
d->boot1, d->bootmgr);
|
1998-10-06 11:57:08 +00:00
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
Debug_Chunk(d->chunks);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Free_Disk(struct disk *d)
|
|
|
|
{
|
1995-04-29 04:50:39 +00:00
|
|
|
if(d->chunks) Free_Chunk(d->chunks);
|
|
|
|
if(d->name) free(d->name);
|
2000-08-12 14:20:31 +00:00
|
|
|
#ifdef PC98
|
|
|
|
if(d->bootipl) free(d->bootipl);
|
|
|
|
if(d->bootmenu) free(d->bootmenu);
|
|
|
|
#else
|
1995-04-29 04:50:39 +00:00
|
|
|
if(d->bootmgr) free(d->bootmgr);
|
2000-08-12 14:20:31 +00:00
|
|
|
#endif
|
1995-04-29 04:50:39 +00:00
|
|
|
if(d->boot1) free(d->boot1);
|
1998-10-06 11:57:08 +00:00
|
|
|
#if defined(__i386__)
|
1995-04-29 04:50:39 +00:00
|
|
|
if(d->boot2) free(d->boot2);
|
1998-10-06 11:57:08 +00:00
|
|
|
#endif
|
1995-04-28 23:57:04 +00:00
|
|
|
free(d);
|
|
|
|
}
|
|
|
|
|
1995-06-11 19:33:05 +00:00
|
|
|
#if 0
|
1995-04-28 23:57:04 +00:00
|
|
|
void
|
|
|
|
Collapse_Disk(struct disk *d)
|
|
|
|
{
|
|
|
|
|
2001-04-01 12:18:20 +00:00
|
|
|
while(Collapse_Chunk(d, d->chunks))
|
1995-04-28 23:57:04 +00:00
|
|
|
;
|
|
|
|
}
|
1995-06-11 19:33:05 +00:00
|
|
|
#endif
|
1995-04-29 04:50:39 +00:00
|
|
|
|
2000-06-05 13:33:39 +00:00
|
|
|
#ifdef PC98
|
2000-11-06 23:15:01 +00:00
|
|
|
static char * device_list[] = {"wd", "aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "ar", "fd", 0};
|
2000-06-05 13:33:39 +00:00
|
|
|
#else
|
2000-11-06 23:15:01 +00:00
|
|
|
static char * device_list[] = {"aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "ar", "fd", 0};
|
2000-06-05 13:33:39 +00:00
|
|
|
#endif
|
1995-04-29 04:50:39 +00:00
|
|
|
|
2001-12-23 21:43:48 +00:00
|
|
|
int qstrcmp(const void* a, const void* b) {
|
|
|
|
|
|
|
|
char *str1 = *(char**)a;
|
|
|
|
char *str2 = *(char**)b;
|
|
|
|
return strcmp(str1, str2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1995-04-29 04:50:39 +00:00
|
|
|
char **
|
|
|
|
Disk_Names()
|
|
|
|
{
|
2001-12-23 21:43:48 +00:00
|
|
|
int i,j,disk_cnt;
|
1995-04-29 04:50:39 +00:00
|
|
|
char disk[25];
|
|
|
|
char diskname[25];
|
|
|
|
struct stat st;
|
|
|
|
struct diskslices ds;
|
|
|
|
int fd;
|
|
|
|
static char **disks;
|
2000-06-23 14:01:06 +00:00
|
|
|
int error;
|
|
|
|
size_t listsize;
|
2002-10-17 18:34:32 +00:00
|
|
|
char *disklist;
|
1995-04-29 04:50:39 +00:00
|
|
|
|
|
|
|
disks = malloc(sizeof *disks * (1 + MAX_NO_DISKS));
|
2002-10-17 18:34:32 +00:00
|
|
|
if (disks == NULL)
|
|
|
|
return NULL;
|
1995-04-29 04:50:39 +00:00
|
|
|
memset(disks,0,sizeof *disks * (1 + MAX_NO_DISKS));
|
2000-06-23 14:01:06 +00:00
|
|
|
error = sysctlbyname("kern.disks", NULL, &listsize, NULL, 0);
|
|
|
|
if (!error) {
|
2002-10-19 16:39:28 +00:00
|
|
|
disklist = (char *)malloc(listsize+1);
|
2002-10-17 18:34:32 +00:00
|
|
|
if (disklist == NULL) {
|
|
|
|
free(disks);
|
|
|
|
return NULL;
|
|
|
|
}
|
2002-10-19 16:39:28 +00:00
|
|
|
memset(disklist, 0, listsize+1);
|
2000-06-23 14:01:06 +00:00
|
|
|
error = sysctlbyname("kern.disks", disklist, &listsize, NULL, 0);
|
2002-10-17 18:34:32 +00:00
|
|
|
if (error) {
|
|
|
|
free(disklist);
|
|
|
|
free(disks);
|
2001-05-13 20:08:54 +00:00
|
|
|
return NULL;
|
2002-10-17 18:34:32 +00:00
|
|
|
}
|
|
|
|
for (disk_cnt = 0; disk_cnt < MAX_NO_DISKS; disk_cnt++) {
|
|
|
|
disks[disk_cnt] = strsep(&disklist, " ");
|
|
|
|
if (disks[disk_cnt] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
2001-12-23 21:43:48 +00:00
|
|
|
} else {
|
2000-06-23 14:01:06 +00:00
|
|
|
warn("kern.disks sysctl not available");
|
2001-12-23 21:43:48 +00:00
|
|
|
disk_cnt = 0;
|
1995-04-29 04:50:39 +00:00
|
|
|
for (j = 0; device_list[j]; j++) {
|
2001-12-23 21:43:48 +00:00
|
|
|
if(disk_cnt >= MAX_NO_DISKS)
|
|
|
|
break;
|
1998-05-15 21:17:01 +00:00
|
|
|
for (i = 0; i < MAX_NO_DISKS; i++) {
|
2002-10-12 22:03:22 +00:00
|
|
|
snprintf(diskname, sizeof(diskname), "%s%d",
|
|
|
|
device_list[j], i);
|
|
|
|
snprintf(disk, sizeof(disk), _PATH_DEV"%s", diskname);
|
1995-04-29 04:50:39 +00:00
|
|
|
if (stat(disk, &st) || !(st.st_mode & S_IFCHR))
|
|
|
|
continue;
|
|
|
|
if ((fd = open(disk, O_RDWR)) == -1)
|
|
|
|
continue;
|
|
|
|
if (ioctl(fd, DIOCGSLICEINFO, &ds) == -1) {
|
2002-10-19 16:39:28 +00:00
|
|
|
DPRINT(("DIOCGSLICEINFO %s", disk));
|
1995-04-29 04:50:39 +00:00
|
|
|
close(fd);
|
|
|
|
continue;
|
|
|
|
}
|
2000-03-10 22:54:04 +00:00
|
|
|
close(fd);
|
2001-12-23 21:43:48 +00:00
|
|
|
disks[disk_cnt++] = strdup(diskname);
|
|
|
|
if(disk_cnt >= MAX_NO_DISKS)
|
|
|
|
break;
|
1995-04-29 04:50:39 +00:00
|
|
|
}
|
|
|
|
}
|
2001-12-23 21:43:48 +00:00
|
|
|
}
|
|
|
|
qsort(disks, disk_cnt, sizeof(char*), qstrcmp);
|
|
|
|
|
|
|
|
return disks;
|
1995-04-29 04:50:39 +00:00
|
|
|
}
|
|
|
|
|
2000-08-12 14:20:31 +00:00
|
|
|
#ifdef PC98
|
|
|
|
void
|
|
|
|
Set_Boot_Mgr(struct disk *d, const u_char *bootipl, const size_t bootipl_size,
|
|
|
|
const u_char *bootmenu, const size_t bootmenu_size)
|
|
|
|
#else
|
1995-04-29 04:50:39 +00:00
|
|
|
void
|
2000-07-12 18:05:18 +00:00
|
|
|
Set_Boot_Mgr(struct disk *d, const u_char *b, const size_t s)
|
2000-08-12 14:20:31 +00:00
|
|
|
#endif
|
1995-04-29 04:50:39 +00:00
|
|
|
{
|
2000-08-12 14:20:31 +00:00
|
|
|
#ifdef PC98
|
2001-05-13 20:08:54 +00:00
|
|
|
if (bootipl_size % d->sector_size != 0)
|
2000-08-12 14:20:31 +00:00
|
|
|
return;
|
|
|
|
if (d->bootipl)
|
|
|
|
free(d->bootipl);
|
|
|
|
if (!bootipl) {
|
|
|
|
d->bootipl = NULL;
|
|
|
|
} else {
|
|
|
|
d->bootipl_size = bootipl_size;
|
|
|
|
d->bootipl = malloc(bootipl_size);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d->bootipl) return;
|
2001-04-01 12:18:20 +00:00
|
|
|
memcpy(d->bootipl, bootipl, bootipl_size);
|
2000-08-12 14:20:31 +00:00
|
|
|
}
|
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
if (bootmenu_size % d->sector_size != 0)
|
2000-08-12 14:20:31 +00:00
|
|
|
return;
|
|
|
|
if (d->bootmenu)
|
|
|
|
free(d->bootmenu);
|
|
|
|
if (!bootmenu) {
|
|
|
|
d->bootmenu = NULL;
|
|
|
|
} else {
|
|
|
|
d->bootmenu_size = bootmenu_size;
|
|
|
|
d->bootmenu = malloc(bootmenu_size);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d->bootmenu) return;
|
2001-04-01 12:18:20 +00:00
|
|
|
memcpy(d->bootmenu, bootmenu, bootmenu_size);
|
2000-08-12 14:20:31 +00:00
|
|
|
}
|
|
|
|
#else
|
2001-05-13 20:08:54 +00:00
|
|
|
if (s % d->sector_size != 0)
|
2000-07-12 18:05:18 +00:00
|
|
|
return;
|
1995-04-29 04:50:39 +00:00
|
|
|
if (d->bootmgr)
|
1995-05-30 08:29:07 +00:00
|
|
|
free(d->bootmgr);
|
1995-04-30 22:51:05 +00:00
|
|
|
if (!b) {
|
2000-07-12 18:05:18 +00:00
|
|
|
d->bootmgr = NULL;
|
1995-04-30 22:51:05 +00:00
|
|
|
} else {
|
2000-07-12 18:05:18 +00:00
|
|
|
d->bootmgr_size = s;
|
|
|
|
d->bootmgr = malloc(s);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d->bootmgr) return;
|
2001-04-01 12:18:20 +00:00
|
|
|
memcpy(d->bootmgr, b, s);
|
1995-04-30 22:51:05 +00:00
|
|
|
}
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1995-04-29 04:50:39 +00:00
|
|
|
}
|
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
int
|
1996-03-24 18:55:39 +00:00
|
|
|
Set_Boot_Blocks(struct disk *d, const u_char *b1, const u_char *b2)
|
1995-04-29 04:50:39 +00:00
|
|
|
{
|
1998-10-06 11:57:08 +00:00
|
|
|
#if defined(__i386__)
|
1995-05-30 08:29:07 +00:00
|
|
|
if (d->boot1) free(d->boot1);
|
1995-04-29 04:50:39 +00:00
|
|
|
d->boot1 = malloc(512);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d->boot1) return -1;
|
2001-04-01 12:18:20 +00:00
|
|
|
memcpy(d->boot1, b1, 512);
|
1995-05-30 08:29:07 +00:00
|
|
|
if (d->boot2) free(d->boot2);
|
2001-04-01 12:18:20 +00:00
|
|
|
d->boot2 = malloc(15 * 512);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d->boot2) return -1;
|
2001-04-01 12:18:20 +00:00
|
|
|
memcpy(d->boot2, b2, 15 * 512);
|
1998-10-06 11:57:08 +00:00
|
|
|
#elif defined(__alpha__)
|
|
|
|
if (d->boot1) free(d->boot1);
|
2001-04-01 12:18:20 +00:00
|
|
|
d->boot1 = malloc(15 * 512);
|
2001-05-13 20:08:54 +00:00
|
|
|
if(!d->boot1) return -1;
|
2001-04-01 12:18:20 +00:00
|
|
|
memcpy(d->boot1, b1, 15 * 512);
|
1998-10-06 11:57:08 +00:00
|
|
|
#endif
|
2001-05-13 20:08:54 +00:00
|
|
|
return 0;
|
1995-04-29 04:50:39 +00:00
|
|
|
}
|
1997-01-23 06:29:01 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
slice_type_name( int type, int subtype )
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case 0: return "whole";
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifndef PC98
|
1997-01-23 06:29:01 +00:00
|
|
|
case 1: switch (subtype) {
|
|
|
|
case 1: return "fat (12-bit)";
|
|
|
|
case 2: return "XENIX /";
|
|
|
|
case 3: return "XENIX /usr";
|
1998-03-14 21:14:31 +00:00
|
|
|
case 4: return "fat (16-bit,<=32Mb)";
|
1997-01-23 06:29:01 +00:00
|
|
|
case 5: return "extended DOS";
|
1998-03-14 21:14:31 +00:00
|
|
|
case 6: return "fat (16-bit,>32Mb)";
|
|
|
|
case 7: return "NTFS/HPFS/QNX";
|
|
|
|
case 8: return "AIX bootable";
|
|
|
|
case 9: return "AIX data";
|
1997-01-23 06:29:01 +00:00
|
|
|
case 10: return "OS/2 bootmgr";
|
1998-03-07 08:45:46 +00:00
|
|
|
case 11: return "fat (32-bit)";
|
1998-03-14 21:14:31 +00:00
|
|
|
case 12: return "fat (32-bit,LBA)";
|
|
|
|
case 14: return "fat (16-bit,>32Mb,LBA)";
|
|
|
|
case 15: return "extended DOS, LBA";
|
1998-03-22 07:41:23 +00:00
|
|
|
case 18: return "Compaq Diagnostic";
|
1997-01-23 06:29:01 +00:00
|
|
|
case 84: return "OnTrack diskmgr";
|
|
|
|
case 100: return "Netware 2.x";
|
|
|
|
case 101: return "Netware 3.x";
|
1998-03-22 07:41:23 +00:00
|
|
|
case 115: return "SCO UnixWare";
|
1997-01-23 06:29:01 +00:00
|
|
|
case 128: return "Minix 1.1";
|
|
|
|
case 129: return "Minix 1.5";
|
|
|
|
case 130: return "linux_swap";
|
|
|
|
case 131: return "ext2fs";
|
1998-03-05 03:08:16 +00:00
|
|
|
case 166: return "OpenBSD FFS"; /* 0xA6 */
|
1998-05-19 11:15:44 +00:00
|
|
|
case 169: return "NetBSD FFS"; /* 0xA9 */
|
1998-03-05 03:08:16 +00:00
|
|
|
case 182: return "OpenBSD"; /* dedicated */
|
1997-01-23 06:29:01 +00:00
|
|
|
case 183: return "bsd/os";
|
|
|
|
case 184: return "bsd/os swap";
|
2001-10-15 07:25:29 +00:00
|
|
|
case 238: return "EFI GPT";
|
|
|
|
case 239: return "EFI Sys. Part.";
|
1997-01-23 06:29:01 +00:00
|
|
|
default: return "unknown";
|
|
|
|
}
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1997-01-23 06:29:01 +00:00
|
|
|
case 2: return "fat";
|
|
|
|
case 3: switch (subtype) {
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifdef PC98
|
|
|
|
case 0xc494: return "freebsd";
|
|
|
|
#else
|
1997-01-23 06:29:01 +00:00
|
|
|
case 165: return "freebsd";
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1997-01-23 06:29:01 +00:00
|
|
|
default: return "unknown";
|
|
|
|
}
|
2000-03-29 15:10:28 +00:00
|
|
|
#ifndef PC98
|
1997-01-23 06:29:01 +00:00
|
|
|
case 4: return "extended";
|
|
|
|
case 5: return "part";
|
|
|
|
case 6: return "unused";
|
2000-03-29 15:10:28 +00:00
|
|
|
#endif
|
1997-01-23 06:29:01 +00:00
|
|
|
default: return "unknown";
|
|
|
|
}
|
|
|
|
}
|