1995-05-27 10:39:04 +00:00
|
|
|
/*
|
|
|
|
* The new sysinstall program.
|
|
|
|
*
|
|
|
|
* This is probably the last attempt in the `sysinstall' line, the next
|
|
|
|
* generation being slated to essentially a complete rewrite.
|
|
|
|
*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1995-05-27 10:39:04 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Jordan Hubbard. All rights reserved.
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Gary J Palmer. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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
|
1995-05-30 08:29:07 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* verbatim and that no modifications are made prior to this
|
1995-05-27 10:39:04 +00:00
|
|
|
* point in the file.
|
|
|
|
* 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 JORDAN HUBBARD ``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 JORDAN HUBBARD OR HIS PETS 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, LIFE 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1995-05-28 03:05:06 +00:00
|
|
|
/* These routines deal with getting things off of CDROM media */
|
1995-05-27 10:39:04 +00:00
|
|
|
|
|
|
|
#include "sysinstall.h"
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <grp.h>
|
1995-05-27 23:39:35 +00:00
|
|
|
#include <fcntl.h>
|
1998-10-14 11:23:48 +00:00
|
|
|
#include <libutil.h>
|
1995-05-27 10:39:04 +00:00
|
|
|
|
|
|
|
#define CD9660
|
|
|
|
#include <sys/mount.h>
|
1997-04-03 13:44:59 +00:00
|
|
|
#include <isofs/cd9660/cd9660_mount.h>
|
1995-05-27 10:39:04 +00:00
|
|
|
#undef CD9660
|
|
|
|
|
1997-01-22 00:15:51 +00:00
|
|
|
static Boolean cdromMounted;
|
1998-12-22 12:31:26 +00:00
|
|
|
static char mountpoint[] = "/dist";
|
1995-05-27 10:39:04 +00:00
|
|
|
|
1998-10-14 11:23:48 +00:00
|
|
|
static properties
|
|
|
|
read_props(char *name)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
properties n;
|
|
|
|
|
|
|
|
fd = open(name, O_RDONLY);
|
|
|
|
if (fd == -1)
|
|
|
|
return NULL;
|
|
|
|
n = properties_read(fd);
|
|
|
|
close(fd);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
1995-05-27 10:39:04 +00:00
|
|
|
Boolean
|
|
|
|
mediaInitCDROM(Device *dev)
|
|
|
|
{
|
|
|
|
struct iso_args args;
|
1998-10-14 11:23:48 +00:00
|
|
|
properties cd_attr = NULL;
|
1998-12-22 12:31:26 +00:00
|
|
|
char *cp = NULL;
|
1997-01-06 11:10:25 +00:00
|
|
|
Boolean readInfo = TRUE;
|
1998-07-21 06:44:42 +00:00
|
|
|
static Boolean bogusCDOK = FALSE;
|
1995-05-27 10:39:04 +00:00
|
|
|
|
1997-01-22 00:15:51 +00:00
|
|
|
if (cdromMounted)
|
1995-05-27 10:39:04 +00:00
|
|
|
return TRUE;
|
|
|
|
|
1998-10-14 11:23:48 +00:00
|
|
|
Mkdir(mountpoint);
|
1995-05-29 11:01:42 +00:00
|
|
|
bzero(&args, sizeof(args));
|
1995-05-27 10:39:04 +00:00
|
|
|
args.fspec = dev->devname;
|
|
|
|
args.flags = 0;
|
1998-01-16 15:07:55 +00:00
|
|
|
if (mount("cd9660", mountpoint, MNT_RDONLY, (caddr_t) &args) == -1) {
|
1997-01-22 00:15:51 +00:00
|
|
|
if (errno == EINVAL) {
|
|
|
|
msgConfirm("The CD in your drive looks more like an Audio CD than a FreeBSD release.");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if (errno != EBUSY) {
|
|
|
|
msgConfirm("Error mounting %s on %s: %s (%u)", dev->devname, mountpoint, strerror(errno), errno);
|
|
|
|
return FALSE;
|
1995-05-27 10:39:04 +00:00
|
|
|
}
|
1997-01-22 00:15:51 +00:00
|
|
|
}
|
1999-01-20 12:31:43 +00:00
|
|
|
cdromMounted = TRUE;
|
1997-01-22 00:15:51 +00:00
|
|
|
|
1998-07-21 06:44:42 +00:00
|
|
|
if (!file_readable(string_concat(mountpoint, "/cdrom.inf")) && !bogusCDOK) {
|
1997-01-22 00:15:51 +00:00
|
|
|
if (msgYesNo("Warning: The CD currently in the drive is either not a FreeBSD\n"
|
|
|
|
"CD or it is an older (pre 2.1.5) FreeBSD CD which does not\n"
|
|
|
|
"have a version number on it. Do you wish to use this CD anyway?") != 0) {
|
|
|
|
unmount(mountpoint, MNT_FORCE);
|
1998-08-27 00:50:14 +00:00
|
|
|
cdromMounted = FALSE;
|
1997-01-22 00:15:51 +00:00
|
|
|
return FALSE;
|
1996-06-11 05:06:32 +00:00
|
|
|
}
|
1998-07-21 06:44:42 +00:00
|
|
|
else {
|
1997-01-22 00:15:51 +00:00
|
|
|
readInfo = FALSE;
|
1998-07-21 06:44:42 +00:00
|
|
|
bogusCDOK = TRUE;
|
|
|
|
}
|
1995-05-27 10:39:04 +00:00
|
|
|
}
|
1997-01-22 00:15:51 +00:00
|
|
|
|
1999-05-15 14:34:22 +00:00
|
|
|
if (readInfo) {
|
|
|
|
if (!(cd_attr = read_props(string_concat(mountpoint, "/cdrom.inf")))
|
|
|
|
|| !(cp = property_find(cd_attr, "CD_VERSION"))) {
|
1997-01-22 00:15:51 +00:00
|
|
|
msgConfirm("Unable to find a %s/cdrom.inf file.\n"
|
1996-06-11 05:06:32 +00:00
|
|
|
"Either this is not a FreeBSD CDROM, there is a problem with\n"
|
|
|
|
"the CDROM driver or something is wrong with your hardware.\n"
|
|
|
|
"Please fix this problem (check the console logs on VTY2) and\n"
|
1997-01-22 00:15:51 +00:00
|
|
|
"try again.", mountpoint);
|
1998-07-21 06:44:42 +00:00
|
|
|
}
|
1999-05-15 14:34:22 +00:00
|
|
|
else {
|
|
|
|
if (variable_cmp(VAR_RELNAME, cp)
|
|
|
|
&& variable_cmp(VAR_RELNAME, "none")
|
|
|
|
&& variable_cmp(VAR_RELNAME, "any") && !bogusCDOK) {
|
|
|
|
msgConfirm("Warning: The version of the FreeBSD CD currently in the drive\n"
|
|
|
|
"(%s) does not match the version of the boot floppy\n"
|
|
|
|
"(%s).\n\n"
|
|
|
|
"If this is intentional, to avoid this message in the future\n"
|
|
|
|
"please visit the Options editor to set the boot floppy version\n"
|
|
|
|
"string to match that of the CD before selecting it as your\n"
|
|
|
|
"installation media.", cp, variable_get(VAR_RELNAME));
|
|
|
|
|
|
|
|
if (msgYesNo("Would you like to try and use this CDROM anyway?") != 0) {
|
|
|
|
unmount(mountpoint, MNT_FORCE);
|
|
|
|
cdromMounted = FALSE;
|
|
|
|
properties_free(cd_attr);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bogusCDOK = TRUE;
|
|
|
|
}
|
|
|
|
if ((cp = property_find(cd_attr, "CD_MACHINE_ARCH")) != NULL) {
|
|
|
|
#ifdef __alpha__
|
|
|
|
if (strcmp(cp, "alpha")) {
|
|
|
|
#else
|
|
|
|
if (strcmp(cp, "x86")) {
|
|
|
|
#endif
|
|
|
|
msgConfirm("Fatal: The FreeBSD install CD currently in the drive\n"
|
|
|
|
"is for the %s architecture, not the machine you're using.\n\n"
|
|
|
|
|
|
|
|
"Please use the correct installation CD for your machine type.", cp);
|
|
|
|
|
|
|
|
unmount(mountpoint, MNT_FORCE);
|
|
|
|
cdromMounted = FALSE;
|
|
|
|
properties_free(cd_attr);
|
|
|
|
return FALSE;
|
|
|
|
}
|
1998-07-21 06:44:42 +00:00
|
|
|
}
|
1997-01-06 11:10:25 +00:00
|
|
|
}
|
1996-06-11 05:06:32 +00:00
|
|
|
}
|
1999-05-15 14:34:22 +00:00
|
|
|
if (cd_attr)
|
|
|
|
properties_free(cd_attr);
|
1995-05-27 10:39:04 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1996-12-11 09:35:06 +00:00
|
|
|
FILE *
|
1996-03-02 07:31:58 +00:00
|
|
|
mediaGetCDROM(Device *dev, char *file, Boolean probe)
|
1995-05-27 10:39:04 +00:00
|
|
|
{
|
1998-12-22 12:31:26 +00:00
|
|
|
return mediaGenericGet(mountpoint, file);
|
1995-05-27 10:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mediaShutdownCDROM(Device *dev)
|
|
|
|
{
|
1997-01-22 00:15:51 +00:00
|
|
|
if (!cdromMounted)
|
1995-05-27 10:39:04 +00:00
|
|
|
return;
|
1998-12-22 12:31:26 +00:00
|
|
|
|
1997-01-22 00:15:51 +00:00
|
|
|
if (unmount(mountpoint, MNT_FORCE) != 0)
|
|
|
|
msgConfirm("Could not unmount the CDROM from %s: %s", mountpoint, strerror(errno));
|
1998-12-22 12:31:26 +00:00
|
|
|
else
|
1997-01-22 00:15:51 +00:00
|
|
|
cdromMounted = FALSE;
|
1995-05-27 10:39:04 +00:00
|
|
|
}
|