1997-11-04 04:39:03 +03:00
|
|
|
/* $NetBSD: util.c,v 1.12 1997/11/04 01:39:09 phil Exp $ */
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 1997 Piermont Information Systems Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Written by Philip A. Nelson for Piermont Information Systems Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software develooped for the NetBSD Project by
|
|
|
|
* Piermont Information Systems Inc.
|
|
|
|
* 4. The name of Piermont Information Systems Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``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 PIERMONT INFORMATION SYSTEMS INC. 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* util.c -- routines that don't really fit anywhere else... */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1997-11-02 11:20:40 +03:00
|
|
|
#include <stdarg.h>
|
1997-09-27 03:02:53 +04:00
|
|
|
#include <unistd.h>
|
1997-10-18 01:10:39 +04:00
|
|
|
#include <sys/types.h>
|
1997-10-07 08:01:29 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysctl.h>
|
1997-10-18 01:10:39 +04:00
|
|
|
#include <sys/stat.h>
|
1997-09-27 04:09:22 +04:00
|
|
|
#include <curses.h>
|
1997-09-27 03:02:53 +04:00
|
|
|
#include "defs.h"
|
1997-10-18 01:10:39 +04:00
|
|
|
#include "md.h"
|
1997-09-27 03:02:53 +04:00
|
|
|
#include "msg_defs.h"
|
|
|
|
#include "menu_defs.h"
|
|
|
|
|
1997-10-07 08:01:29 +04:00
|
|
|
|
1997-11-02 11:20:40 +03:00
|
|
|
|
1997-10-07 08:01:29 +04:00
|
|
|
void get_ramsize(void)
|
|
|
|
{
|
|
|
|
long len=sizeof(long);
|
|
|
|
int mib[2] = {CTL_HW, HW_PHYSMEM};
|
|
|
|
|
|
|
|
sysctl(mib, 2, (void *)&ramsize, (size_t *)&len, NULL, 0);
|
|
|
|
|
|
|
|
/* Find out how many Megs ... round up. */
|
|
|
|
rammb = (ramsize + MEG - 1) / MEG;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
static int asked = 0;
|
|
|
|
|
1997-11-01 02:00:32 +03:00
|
|
|
void ask_sizemult (void)
|
1997-09-27 03:02:53 +04:00
|
|
|
{
|
|
|
|
if (!asked) {
|
|
|
|
msg_display (MSG_sizechoice, dlcylsize);
|
|
|
|
process_menu (MENU_sizechoice);
|
|
|
|
}
|
|
|
|
asked = 1;
|
|
|
|
}
|
|
|
|
|
1997-11-01 02:00:32 +03:00
|
|
|
void reask_sizemult (void)
|
|
|
|
{
|
|
|
|
asked = 0;
|
|
|
|
ask_sizemult ();
|
|
|
|
}
|
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* Returns 1 for "y" or "Y" and "n" otherwise. CR => default. */
|
|
|
|
int
|
|
|
|
ask_ynquestion (char *quest, char def, ...)
|
|
|
|
{
|
|
|
|
char line[STRSIZE];
|
|
|
|
va_list ap;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
va_start(ap, def);
|
|
|
|
vsnprintf (line, STRSIZE, quest, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
printf ("%s [%c]: ", line, def);
|
|
|
|
c = getchar();
|
|
|
|
if (c == '\n')
|
|
|
|
return def == 'y';
|
|
|
|
|
|
|
|
while (getchar() != '\n') /* eat characters */;
|
|
|
|
|
|
|
|
return c == 'y' || c == 'Y';
|
|
|
|
}
|
|
|
|
|
1997-10-01 09:04:24 +04:00
|
|
|
void run_makedev (void)
|
|
|
|
{
|
1997-10-18 01:10:39 +04:00
|
|
|
msg_display (MSG_makedev);
|
|
|
|
sleep (1);
|
1997-11-02 11:20:40 +03:00
|
|
|
target_chdir_or_die("/dev");
|
1997-10-01 09:04:24 +04:00
|
|
|
run_prog ("/bin/sh MAKEDEV all");
|
1997-10-18 01:10:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Load files from floppy. */
|
|
|
|
int get_via_floppy (void)
|
|
|
|
{
|
|
|
|
char distname[STRSIZE];
|
|
|
|
char fddev[STRSIZE] = "/dev/fd0a";
|
|
|
|
char fname[STRSIZE];
|
|
|
|
char fullname[STRSIZE];
|
1997-10-29 04:06:42 +03:00
|
|
|
distinfo *list;
|
1997-10-18 01:10:39 +04:00
|
|
|
char post[4];
|
|
|
|
int mounted = 0;
|
1997-10-30 03:03:32 +03:00
|
|
|
int first;
|
1997-10-18 01:10:39 +04:00
|
|
|
struct stat sb;
|
|
|
|
|
1997-10-29 04:06:42 +03:00
|
|
|
|
|
|
|
cd_dist_dir ("unloading from floppy");
|
1997-10-18 01:10:39 +04:00
|
|
|
|
|
|
|
msg_prompt_add (MSG_fddev, fddev, fddev, STRSIZE);
|
|
|
|
|
|
|
|
list = dist_list;
|
1997-10-29 04:06:42 +03:00
|
|
|
while (list->name) {
|
1997-10-18 01:10:39 +04:00
|
|
|
strcpy (post, ".aa");
|
1997-10-29 04:06:42 +03:00
|
|
|
snprintf (distname, STRSIZE, list->name, rels, dist_postfix);
|
1997-10-30 03:03:32 +03:00
|
|
|
while (list->getit && strcmp(&post[1],list->fdlast) <= 0) {
|
1997-10-29 04:06:42 +03:00
|
|
|
snprintf (fname, STRSIZE, list->name, rels, post);
|
|
|
|
snprintf (fullname, STRSIZE, "/mnt2/%s", fname);
|
1997-10-30 03:03:32 +03:00
|
|
|
first = 1;
|
1997-10-18 01:10:39 +04:00
|
|
|
while (!mounted || stat(fullname, &sb)) {
|
1997-10-30 03:03:32 +03:00
|
|
|
if (mounted)
|
1997-10-29 04:06:42 +03:00
|
|
|
run_prog ("/sbin/umount /mnt2 "
|
|
|
|
"2>/dev/null");
|
1997-10-30 03:03:32 +03:00
|
|
|
if (first)
|
1997-10-29 04:06:42 +03:00
|
|
|
msg_display (MSG_fdmount, fname);
|
1997-10-30 03:03:32 +03:00
|
|
|
else
|
|
|
|
msg_display (MSG_fdnotfound, fname);
|
|
|
|
process_menu (MENU_fdok);
|
|
|
|
if (!yesno)
|
|
|
|
return 0;
|
1997-10-29 04:06:42 +03:00
|
|
|
while (run_prog("/sbin/mount -t %s %s /mnt2",
|
1997-10-18 01:10:39 +04:00
|
|
|
fdtype, fddev)) {
|
1997-10-29 04:06:42 +03:00
|
|
|
msg_display (MSG_fdremount, fname);
|
1997-10-18 01:10:39 +04:00
|
|
|
process_menu (MENU_fdremount);
|
|
|
|
if (!yesno)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
mounted = 1;
|
1997-10-30 03:03:32 +03:00
|
|
|
first = 0;
|
1997-10-18 01:10:39 +04:00
|
|
|
}
|
1997-10-30 03:03:32 +03:00
|
|
|
run_prog ("/bin/cat %s >> %s", fullname, distname);
|
|
|
|
if (post[2] < 'z')
|
|
|
|
post[2]++;
|
1997-10-18 01:10:39 +04:00
|
|
|
else
|
1997-10-30 03:03:32 +03:00
|
|
|
post[2]='a', post[1]++;
|
1997-10-18 01:10:39 +04:00
|
|
|
}
|
1997-10-29 04:06:42 +03:00
|
|
|
run_prog ("/sbin/umount /mnt2 2>/dev/null");
|
1997-10-18 01:10:39 +04:00
|
|
|
mounted = 0;
|
|
|
|
list++;
|
|
|
|
}
|
|
|
|
#ifndef DEBUG
|
1997-11-02 11:20:40 +03:00
|
|
|
chdir("/"); /* back to current real root */
|
1997-10-18 01:10:39 +04:00
|
|
|
#endif
|
|
|
|
return 1;
|
1997-09-27 03:02:53 +04:00
|
|
|
}
|
1997-10-20 10:13:25 +04:00
|
|
|
|
1997-11-04 04:39:03 +03:00
|
|
|
/* Get from a CDROM distribution. */
|
|
|
|
|
1997-10-20 10:13:25 +04:00
|
|
|
int
|
|
|
|
get_via_cdrom(void)
|
|
|
|
{
|
|
|
|
/* Get server and filepath */
|
|
|
|
process_menu (MENU_cdromsource);
|
|
|
|
|
|
|
|
/* Mount it */
|
1997-10-30 03:03:32 +03:00
|
|
|
while (run_prog ("/sbin/mount -rt cd9660 /dev/%sa /mnt2", cdrom_dev)) {
|
1997-10-20 10:13:25 +04:00
|
|
|
process_menu (MENU_cdrombadmount);
|
|
|
|
if (!yesno)
|
|
|
|
return 0;
|
|
|
|
/* Verify distribution files exist. XXX */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return location, don't clean... */
|
|
|
|
strcpy (dist_dir, "/mnt2");
|
|
|
|
strncat (dist_dir, cdrom_dir, STRSIZE-strlen(dist_dir)-1);
|
|
|
|
clean_dist_dir = 0;
|
|
|
|
mnt2_mounted = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
1997-10-29 04:06:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
void cd_dist_dir (char *forwhat)
|
|
|
|
{
|
1997-11-02 11:20:40 +03:00
|
|
|
/* ask user for the mountpoint. */
|
1997-10-29 04:06:42 +03:00
|
|
|
msg_prompt (MSG_distdir, dist_dir, dist_dir, STRSIZE, forwhat);
|
1997-11-02 11:20:40 +03:00
|
|
|
|
|
|
|
/* make sure the directory exists. */
|
|
|
|
make_target_dir(dist_dir);
|
|
|
|
|
1997-10-29 04:06:42 +03:00
|
|
|
clean_dist_dir = 1;
|
1997-11-02 11:20:40 +03:00
|
|
|
target_chdir_or_die(dist_dir);
|
1997-10-29 04:06:42 +03:00
|
|
|
}
|
|
|
|
|
1997-11-02 11:20:40 +03:00
|
|
|
|
1997-10-29 04:06:42 +03:00
|
|
|
/* Support for custom distribution fetches / unpacks. */
|
|
|
|
|
|
|
|
void toggle_getit (int num)
|
|
|
|
{
|
|
|
|
dist_list[num].getit ^= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_cur_distsets (void)
|
|
|
|
{
|
|
|
|
distinfo *list;
|
|
|
|
|
|
|
|
msg_display (MSG_cur_distsets);
|
|
|
|
list = dist_list;
|
|
|
|
while (list->name) {
|
|
|
|
msg_printf_add ("%s%s\n", list->desc, list->getit ?
|
|
|
|
msg_string(MSG_yes) : msg_string(MSG_no));
|
|
|
|
list++;
|
|
|
|
}
|
|
|
|
}
|
1997-11-02 11:20:40 +03:00
|
|
|
|
1997-11-02 12:41:57 +03:00
|
|
|
|
1997-11-04 04:39:03 +03:00
|
|
|
/* Do we want a verbose extract? */
|
|
|
|
static int verbose = -1;
|
|
|
|
|
|
|
|
void
|
|
|
|
ask_verbose_dist (void)
|
|
|
|
{
|
|
|
|
if (verbose < 0) {
|
|
|
|
msg_display (MSG_verboseextract);
|
|
|
|
process_menu (MENU_noyes);
|
|
|
|
verbose = yesno;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
extract_file (char *path)
|
|
|
|
{
|
|
|
|
char *owd;
|
|
|
|
int tarexit;
|
|
|
|
|
|
|
|
owd = getcwd (NULL,0);
|
|
|
|
|
|
|
|
target_chdir_or_die("/");
|
|
|
|
|
|
|
|
endwin();
|
|
|
|
(void)printf (msg_string(MSG_extracting), path);
|
|
|
|
tarexit = run_prog ("/usr/bin/tar --unlink -xpz%s -f %s",
|
|
|
|
verbose ? "v":"", path);
|
|
|
|
puts(CL);
|
|
|
|
wrefresh(stdscr);
|
|
|
|
|
|
|
|
/* XXXX Check tarexit for errors and give warning ... */
|
|
|
|
|
|
|
|
chdir (owd);
|
|
|
|
free (owd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
extract_dist (void)
|
|
|
|
{
|
|
|
|
char distname[STRSIZE];
|
|
|
|
char fname[STRSIZE];
|
|
|
|
distinfo *list;
|
|
|
|
char extdir[STRSIZE];
|
|
|
|
|
|
|
|
/* Current directory has the distribution included. */
|
|
|
|
strncpy(extdir, target_expand(dist_dir), STRSIZE);
|
|
|
|
|
|
|
|
list = dist_list;
|
|
|
|
while (list->name) {
|
|
|
|
(void)snprintf (distname, STRSIZE, list->name, rels,
|
|
|
|
dist_postfix);
|
|
|
|
(void)snprintf (fname, STRSIZE, "%s/%s", extdir, distname);
|
|
|
|
extract_file (fname);
|
|
|
|
list++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-11-02 12:41:57 +03:00
|
|
|
/*
|
|
|
|
* Get and unpack the distribution.
|
|
|
|
* show success_msg if installation completes. Otherwise,,
|
|
|
|
* sHow failure_msg and wait for the user to ack it before continuing.
|
|
|
|
* success_msg and failure_msg must both be 0-adic messages.
|
|
|
|
*/
|
|
|
|
void get_and_unpack_sets(int success_msg, int failure_msg)
|
|
|
|
{
|
|
|
|
/* Get the distribution files */
|
|
|
|
process_menu (MENU_distmedium);
|
|
|
|
if (nodist)
|
|
|
|
return;
|
|
|
|
|
1997-11-04 04:39:03 +03:00
|
|
|
ask_verbose_dist ();
|
|
|
|
|
1997-11-02 12:41:57 +03:00
|
|
|
if (got_dist) {
|
|
|
|
/* Extract the distribution */
|
|
|
|
extract_dist ();
|
|
|
|
|
|
|
|
/* Configure the system */
|
|
|
|
run_makedev ();
|
|
|
|
|
|
|
|
/* Other configuration. */
|
|
|
|
mnt_net_config();
|
|
|
|
|
|
|
|
/* Clean up ... */
|
|
|
|
if (clean_dist_dir)
|
|
|
|
run_prog ("/bin/rm -rf %s", dist_dir);
|
|
|
|
|
|
|
|
/* Mounted dist dir? */
|
|
|
|
if (mnt2_mounted)
|
|
|
|
run_prog ("/sbin/umount /mnt2");
|
|
|
|
|
|
|
|
/* Install/Upgrade complete ... reboot or exit to script */
|
|
|
|
msg_display (success_msg);
|
|
|
|
process_menu (MENU_ok);
|
|
|
|
} else {
|
|
|
|
msg_display (failure_msg);
|
|
|
|
process_menu (MENU_ok);
|
|
|
|
}
|
|
|
|
}
|