1995-05-29 11:01:42 +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-29 11:01:42 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Jordan Hubbard. 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-29 11:01:42 +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-27 10:39:04 +00:00
|
|
|
#include "sysinstall.h"
|
|
|
|
#include <sys/errno.h>
|
1995-05-29 11:01:42 +00:00
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/syslimits.h>
|
1995-05-27 10:39:04 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
|
1995-05-29 11:01:42 +00:00
|
|
|
Boolean NFSMounted;
|
1998-12-22 12:31:26 +00:00
|
|
|
static char mountpoint[] = "/dist";
|
1995-05-29 11:01:42 +00:00
|
|
|
|
|
|
|
Boolean
|
|
|
|
mediaInitNFS(Device *dev)
|
|
|
|
{
|
1995-05-30 05:13:24 +00:00
|
|
|
Device *netDevice = (Device *)dev->private;
|
1999-12-17 02:46:04 +00:00
|
|
|
WINDOW *w = savescr();
|
1995-05-30 05:13:24 +00:00
|
|
|
|
1995-05-29 11:01:42 +00:00
|
|
|
if (NFSMounted)
|
|
|
|
return TRUE;
|
|
|
|
|
2001-07-02 00:18:04 +00:00
|
|
|
if (!DEVICE_INIT(netDevice))
|
1995-06-11 19:33:05 +00:00
|
|
|
return FALSE;
|
1995-05-30 05:13:24 +00:00
|
|
|
|
1997-01-22 00:15:51 +00:00
|
|
|
if (Mkdir(mountpoint))
|
1995-05-29 11:01:42 +00:00
|
|
|
return FALSE;
|
|
|
|
|
OK, I've got two ideas to file in the "really seemed like a good idea
at the time, but on further reflection..." bucket with these changes.
1. Checking the media before frobbing the disks was a fine idea, and
I wish it could have worked, but that leads to a rather difficult
situation when you need to mount the media someplace and you're about
to:
a) Chroot away from your present root.
b) Newfs the root to be.
You're basically screwed since there's no place to stick the mount
point where it will be found following the newfs/chroot (and eliminating
the chroot in favor of just using the "root bias" feature would work
great for the distributions but not the pkg_add calls done by the
package installer).
2. Automatic timeout handling. I don't know why, but alarm() frequently
returns no residual even when the alarm didn't go off, which defies
the man page but hey, since when was that so unusual? Take out timeouts
but retain the code which temporarily replaces the SIGINT handler in
favor of a more media-specific handler. This way, at least, if it's hanging
you can at least whap it. I think the timeout code would have been losing
over *really slow* links anyway, so it's probably best that it go.
This should fix NFS, tape & CDROM installs again (serves me right for getting
complacent and using just the FTP installs in my testing).
1997-01-24 19:24:51 +00:00
|
|
|
msgNotify("Mounting %s over NFS on %s", dev->name, mountpoint);
|
1997-01-22 00:15:51 +00:00
|
|
|
if (vsystem("mount_nfs %s %s %s %s",
|
1995-12-07 10:34:59 +00:00
|
|
|
variable_get(VAR_SLOW_ETHER) ? "-r 1024 -w 1024" : "",
|
1997-01-22 00:15:51 +00:00
|
|
|
variable_get(VAR_NFS_SECURE) ? "-P" : "", dev->name, mountpoint)) {
|
|
|
|
msgConfirm("Error mounting %s on %s: %s.", dev->name, mountpoint, strerror(errno));
|
|
|
|
if (netDevice)
|
2001-07-02 00:18:04 +00:00
|
|
|
DEVICE_SHUTDOWN(netDevice);
|
1999-12-17 02:46:04 +00:00
|
|
|
restorescr(w);
|
1995-05-29 11:01:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
NFSMounted = TRUE;
|
1998-12-22 12:31:26 +00:00
|
|
|
if (isDebug())
|
|
|
|
msgDebug("Mounted NFS device %s onto %s\n", dev->name, mountpoint);
|
1999-12-17 02:46:04 +00:00
|
|
|
restorescr(w);
|
1995-05-29 11:01:42 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1996-12-11 09:35:06 +00:00
|
|
|
FILE *
|
1996-03-02 07:31:58 +00:00
|
|
|
mediaGetNFS(Device *dev, char *file, Boolean probe)
|
1995-05-29 11:01:42 +00:00
|
|
|
{
|
1998-12-22 12:31:26 +00:00
|
|
|
return mediaGenericGet(mountpoint, file);
|
1995-05-29 11:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mediaShutdownNFS(Device *dev)
|
|
|
|
{
|
|
|
|
if (!NFSMounted)
|
|
|
|
return;
|
1998-12-22 12:31:26 +00:00
|
|
|
|
1999-12-17 02:46:04 +00:00
|
|
|
msgDebug("Unmounting NFS partition on %s", mountpoint);
|
1997-01-22 00:15:51 +00:00
|
|
|
if (unmount(mountpoint, MNT_FORCE) != 0)
|
1995-12-07 10:34:59 +00:00
|
|
|
msgConfirm("Could not unmount the NFS partition: %s", strerror(errno));
|
1995-05-29 11:01:42 +00:00
|
|
|
NFSMounted = FALSE;
|
|
|
|
return;
|
|
|
|
}
|