#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.19 2026/07/03 21:36:27 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/ioccom.h>
#include <sys/device.h>
#include <sys/disklabel.h>
#include <sys/disk.h>
#include <dev/sun/disklabel.h>
#if LABELSECTOR != 0
#error "Default value of LABELSECTOR no longer zero?"
#endif
static const char *disklabel_sun_to_bsd(char *, struct disklabel *);
static int disklabel_bsd_to_sun(struct disklabel *, char *);
const char *
readdisklabel(dev_t dev, void (*strat)(struct buf *), struct disklabel *lp, struct cpu_disklabel *clp)
{
struct buf *bp;
struct disklabel *dlp;
struct sun_disklabel *slp;
int error;
if (lp->d_secperunit == 0)
lp->d_secperunit = 0x1fffffff;
if (lp->d_npartitions == 0) {
lp->d_npartitions = RAW_PART + 1;
if (lp->d_partitions[RAW_PART].p_size == 0)
lp->d_partitions[RAW_PART].p_size = 0x1fffffff;
lp->d_partitions[RAW_PART].p_offset = 0;
}
if (lp->d_secsize == 0)
return ("sector size 0");
bp = geteblk((int)lp->d_secsize);
bp->b_dev = dev;
bp->b_blkno = LABELSECTOR;
bp->b_cylinder = 0;
bp->b_bcount = lp->d_secsize;
bp->b_flags |= B_READ;
(*strat)(bp);
error = biowait(bp);
if (error == 0) {
memcpy(clp->cd_block, bp->b_data, sizeof(clp->cd_block));
}
brelse(bp, 0);
if (error)
return ("disk label read error");
dlp = (struct disklabel *) (clp->cd_block + LABELOFFSET);
if (dlp->d_magic == DISKMAGIC) {
if (dkcksum(dlp))
return ("NetBSD disk label corrupted");
*lp = *dlp;
return (NULL);
}
slp = (struct sun_disklabel *) clp->cd_block;
if (slp->sl_magic == SUN_DKMAGIC)
return (disklabel_sun_to_bsd(clp->cd_block, lp));
for (dlp = (struct disklabel *)clp->cd_block;
dlp <= (struct disklabel *)((char *)clp->cd_block +
DEV_BSIZE - sizeof(*dlp));
dlp = (struct disklabel *)((char *)dlp + sizeof(long))) {
if (dlp->d_magic != DISKMAGIC || dlp->d_magic2 != DISKMAGIC) {
continue;
}
if (dlp->d_npartitions > MAXPARTITIONS || dkcksum(dlp) != 0)
return("NetBSD disk label corrupted");
else {
*lp = *dlp;
return(NULL);
}
}
memset(clp->cd_block, 0, sizeof(clp->cd_block));
return NULL;
}
int
writedisklabel(dev_t dev, void (*strat)(struct buf *), struct disklabel *lp, struct cpu_disklabel *clp)
{
struct buf *bp;
int error;
struct disklabel *dlp;
struct sun_disklabel *slp;
if (sizeof(struct disklabel) > sizeof slp->sl_bsdlabel)
return EFBIG;
slp = (struct sun_disklabel *)clp->cd_block;
memset(slp->sl_bsdlabel, 0, sizeof(slp->sl_bsdlabel));
dlp = (struct disklabel *)slp->sl_bsdlabel;
*dlp = *lp;
error = disklabel_bsd_to_sun(lp, clp->cd_block);
if (error)
return (error);
bp = geteblk((int)lp->d_secsize);
memcpy(bp->b_data, clp->cd_block, sizeof(clp->cd_block));
bp->b_dev = dev;
bp->b_blkno = LABELSECTOR;
bp->b_cylinder = 0;
bp->b_bcount = lp->d_secsize;
bp->b_flags |= B_WRITE;
(*strat)(bp);
error = biowait(bp);
brelse(bp, 0);
return (error);
}
static u_char
sun_fstypes[8] = {
FS_BSDFFS,
FS_SWAP,
FS_OTHER,
FS_BSDFFS,
FS_BSDFFS,
FS_BSDFFS,
FS_BSDFFS,
FS_BSDFFS,
};
static const char *
disklabel_sun_to_bsd(char *cp, struct disklabel *lp)
{
struct sun_disklabel *sl;
struct partition *npp;
struct sun_dkpart *spp;
int i, secpercyl;
unsigned int secpblck;
u_short cksum, *sp1, *sp2;
sl = (struct sun_disklabel *)cp;
sp1 = (u_short *)sl;
sp2 = (u_short *)(sl + 1);
cksum = 0;
while (sp1 < sp2)
cksum ^= *sp1++;
if (cksum != 0)
return("SunOS disk label, bad checksum");
lp->d_magic = DISKMAGIC;
lp->d_magic2 = DISKMAGIC;
memcpy(lp->d_packname, sl->sl_text, sizeof(lp->d_packname));
secpblck = lp->d_secsize / 512;
if (secpblck == 0) secpblck = 1;
lp->d_secsize = 512;
lp->d_nsectors = sl->sl_nsectors;
lp->d_ntracks = sl->sl_ntracks;
lp->d_ncylinders = sl->sl_ncylinders;
secpercyl = sl->sl_nsectors * sl->sl_ntracks;
lp->d_secpercyl = secpercyl;
lp->d_secperunit = secpercyl * sl->sl_ncylinders;
lp->d_sparespercyl = sl->sl_sparespercyl;
lp->d_acylinders = sl->sl_acylinders;
lp->d_rpm = sl->sl_rpm;
lp->d_interleave = sl->sl_interleave;
lp->d_npartitions = 8;
lp->d_bbsize = 8192;
lp->d_sbsize = 8192;
for (i = 0; i < 8; i++) {
spp = &sl->sl_part[i];
npp = &lp->d_partitions[i];
if (npp->p_fstype == FS_ISO9660
&& spp->sdkp_cyloffset * secpercyl == npp->p_offset*secpblck
&& spp->sdkp_nsectors <= npp->p_size*secpblck
&& npp->p_size > 0 && spp->sdkp_nsectors > 0) {
npp->p_offset *= secpblck;
npp->p_size = spp->sdkp_nsectors;
npp->p_cdsession *= secpblck;
continue;
}
npp->p_offset = spp->sdkp_cyloffset * secpercyl;
npp->p_size = spp->sdkp_nsectors;
if (npp->p_size == 0) {
npp->p_fstype = FS_UNUSED;
} else {
npp->p_fstype = sun_fstypes[i];
if (npp->p_fstype == FS_BSDFFS) {
npp->p_fsize = 1024;
npp->p_frag = 8;
npp->p_cpg = 16;
}
}
}
lp->d_checksum = 0;
lp->d_checksum = dkcksum(lp);
return (NULL);
}
static int
disklabel_bsd_to_sun(struct disklabel *lp, char *cp)
{
struct sun_disklabel *sl;
struct partition *npp;
struct sun_dkpart *spp;
int i, secpercyl;
u_short cksum, *sp1, *sp2;
if (lp->d_secsize != 512)
return (EINVAL);
sl = (struct sun_disklabel *)cp;
memcpy(sl->sl_text, lp->d_packname, sizeof(lp->d_packname));
sl->sl_rpm = lp->d_rpm;
sl->sl_pcylinders = lp->d_ncylinders + lp->d_acylinders;
sl->sl_sparespercyl = lp->d_sparespercyl;
sl->sl_interleave = lp->d_interleave;
sl->sl_ncylinders = lp->d_ncylinders;
sl->sl_acylinders = lp->d_acylinders;
sl->sl_ntracks = lp->d_ntracks;
sl->sl_nsectors = lp->d_nsectors;
secpercyl = sl->sl_nsectors * sl->sl_ntracks;
for (i = 0; i < 8; i++) {
spp = &sl->sl_part[i];
npp = &lp->d_partitions[i];
if (npp->p_offset % secpercyl)
return (EINVAL);
spp->sdkp_cyloffset = npp->p_offset / secpercyl;
spp->sdkp_nsectors = npp->p_size;
}
sl->sl_magic = SUN_DKMAGIC;
sp1 = (u_short *)sl;
sp2 = (u_short *)(sl + 1);
sl->sl_cksum = cksum = 0;
while (sp1 < sp2)
cksum ^= *sp1++;
sl->sl_cksum = cksum;
return (0);
}