1995-05-01 21:56:32 +00:00
|
|
|
/*
|
|
|
|
* The new sysinstall program.
|
|
|
|
*
|
|
|
|
* This is probably the last program in the `sysinstall' line - the next
|
|
|
|
* generation being essentially a complete rewrite.
|
|
|
|
*
|
1995-05-16 11:37:27 +00:00
|
|
|
* $Id: devices.c,v 1.15 1995/05/16 02:53:00 jkh Exp $
|
1995-05-01 21:56:32 +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
|
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* verbatim and that no modifications are made prior to this
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Jordan Hubbard
|
|
|
|
* for the FreeBSD Project.
|
|
|
|
* 4. The name of Jordan Hubbard or the FreeBSD project may not be used to
|
|
|
|
* endorse or promote products derived from this software without specific
|
|
|
|
* prior written permission.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sysinstall.h"
|
1995-05-16 02:53:31 +00:00
|
|
|
|
1995-05-11 06:47:46 +00:00
|
|
|
#include <sys/fcntl.h>
|
1995-05-16 02:53:31 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#define NSIP
|
|
|
|
#include <netns/ns.h>
|
|
|
|
#include <netns/ns_if.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
#define EON
|
|
|
|
#include <netiso/iso.h>
|
|
|
|
#include <netiso/iso_var.h>
|
|
|
|
#include <sys/protosw.h>
|
1995-05-01 21:56:32 +00:00
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
#include <ctype.h>
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
static Device *Devices[DEV_MAX];
|
|
|
|
static int numDevs;
|
|
|
|
|
|
|
|
#define CHECK_DEVS \
|
|
|
|
if (numDevs == DEV_MAX) msgFatal("Too many devices found!")
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
DeviceType type;
|
|
|
|
char *name;
|
|
|
|
char *description;
|
|
|
|
} device_names[] = {
|
|
|
|
{ DEVICE_TYPE_CDROM, "cd0a", "SCSI CDROM drive" },
|
|
|
|
{ DEVICE_TYPE_CDROM, "cd1a", "SCSI CDROM drive (2nd unit)" },
|
|
|
|
{ DEVICE_TYPE_CDROM, "mcd0a", "Mitsumi (old model) CDROM drive" },
|
|
|
|
{ DEVICE_TYPE_CDROM, "mcd1a", "Mitsumi (old model) CDROM drive (2nd unit)" },
|
1995-05-16 11:37:27 +00:00
|
|
|
{ DEVICE_TYPE_CDROM, "scd0a", "Sony CDROM drive - CDU31/33A type", },
|
1995-05-16 02:53:31 +00:00
|
|
|
{ DEVICE_TYPE_CDROM, "scd1a", "Sony CDROM drive - CDU31/33A type (2nd unit)" },
|
1995-05-16 11:37:27 +00:00
|
|
|
{ DEVICE_TYPE_CDROM, "matcd0a", "Matsushita CDROM ('sound blaster' type)" },
|
|
|
|
{ DEVICE_TYPE_CDROM, "matcd1a", "Matsushita CDROM (2nd unit)" },
|
1995-05-16 02:53:31 +00:00
|
|
|
{ DEVICE_TYPE_TAPE, "rst0", "SCSI tape drive" },
|
|
|
|
{ DEVICE_TYPE_TAPE, "rst1", "SCSI tape drive (2nd unit)" },
|
|
|
|
{ DEVICE_TYPE_TAPE, "ft0", "Floppy tape drive (QIC-02)" },
|
|
|
|
{ DEVICE_TYPE_TAPE, "wt0", "Wangtek tape drive" },
|
|
|
|
{ DEVICE_TYPE_DISK, "sd", "SCSI disk device" },
|
|
|
|
{ DEVICE_TYPE_DISK, "wd", "IDE/ESDI/MFM/ST506 disk device" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "lo", "Loop-back (local) network interface" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "sl", "Serial-line IP (SLIP) interface" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "ppp", "Point-to-Point Protocol (PPP) interface" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "tun", "Tunneling IP driver (not for direct use)" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "ed", "WD/SMC 80xx; Novell NE1000/2000; 3Com 3C503 cards" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "ep", "3Com 3C509 interface card" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "el", "3Com 3C501 interface card" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "fe", "Fujitsu MB86960A/MB86965A Ethernet" },
|
1995-05-16 11:37:27 +00:00
|
|
|
{ DEVICE_TYPE_NETWORK, "ie", "AT&T StarLAN 10 and EN100; 3Com 3C507; NI5210" },
|
1995-05-16 02:53:31 +00:00
|
|
|
{ DEVICE_TYPE_NETWORK, "le", "DEC EtherWorks 2 and 3" },
|
1995-05-16 11:37:27 +00:00
|
|
|
{ DEVICE_TYPE_NETWORK, "lnc", "Lance/PCnet cards (Isolan/Novell NE2100/NE32-VL)" },
|
|
|
|
{ DEVICE_TYPE_NETWORK, "ze", "IBM/National Semiconductor PCMCIA ethernet" },
|
1995-05-16 02:53:31 +00:00
|
|
|
{ DEVICE_TYPE_NETWORK, "zp", "3Com PCMCIA Etherlink III" },
|
|
|
|
{ NULL },
|
1995-05-08 21:39:40 +00:00
|
|
|
};
|
|
|
|
|
1995-05-08 10:20:56 +00:00
|
|
|
static Device *
|
1995-05-16 02:53:31 +00:00
|
|
|
new_device(char *name)
|
1995-05-01 21:56:32 +00:00
|
|
|
{
|
1995-05-16 02:53:31 +00:00
|
|
|
Device *dev;
|
|
|
|
|
|
|
|
dev = safe_malloc(sizeof(Device));
|
|
|
|
if (name)
|
|
|
|
strcpy(dev->name, name);
|
|
|
|
else
|
|
|
|
dev->name[0] = '\0';
|
|
|
|
return dev;
|
1995-05-01 21:56:32 +00:00
|
|
|
}
|
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
static int
|
|
|
|
deviceTry(char *name)
|
1995-05-01 21:56:32 +00:00
|
|
|
{
|
1995-05-16 02:53:31 +00:00
|
|
|
char try[FILENAME_MAX];
|
1995-05-16 11:37:27 +00:00
|
|
|
int fd;
|
1995-05-16 02:53:31 +00:00
|
|
|
|
|
|
|
snprintf(try, FILENAME_MAX, "/dev/%s", name);
|
|
|
|
fd = open(try, O_RDWR);
|
|
|
|
if (fd > 0)
|
|
|
|
return fd;
|
|
|
|
snprintf(try, FILENAME_MAX, "/mnt/dev/%s", name);
|
|
|
|
fd = open(try, O_RDWR);
|
|
|
|
return fd;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1995-05-16 02:53:31 +00:00
|
|
|
deviceDiskFree(Device *dev)
|
1995-05-04 03:51:22 +00:00
|
|
|
{
|
1995-05-16 11:37:27 +00:00
|
|
|
Free_Disk(dev->private);
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
/* Get all device information for devices we have attached */
|
|
|
|
void
|
1995-05-16 11:37:27 +00:00
|
|
|
deviceGetAll(void)
|
1995-05-01 21:56:32 +00:00
|
|
|
{
|
1995-05-16 02:53:31 +00:00
|
|
|
int i, fd, s;
|
|
|
|
struct ifconf ifc;
|
|
|
|
struct ifreq *ifptr, *end;
|
1995-05-16 11:37:27 +00:00
|
|
|
int ifflags;
|
|
|
|
char buffer[INTERFACE_MAX * sizeof(struct ifreq)];
|
|
|
|
char **names;
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 11:37:27 +00:00
|
|
|
/* Try and get the disks first */
|
|
|
|
if ((names = Disk_Names()) != NULL) {
|
|
|
|
int i;
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 11:37:27 +00:00
|
|
|
for (i = 0; names[i]; i++) {
|
|
|
|
CHECK_DEVS;
|
|
|
|
Devices[numDevs] = new_device(names[i]);
|
|
|
|
Devices[numDevs]->type = DEVICE_TYPE_DISK;
|
|
|
|
Devices[numDevs]->enabled = FALSE;
|
|
|
|
Devices[numDevs]->init = mediaInitUFS;
|
|
|
|
Devices[numDevs]->get = mediaGetUFS;
|
|
|
|
Devices[numDevs]->close = deviceDiskFree;
|
|
|
|
Devices[numDevs]->private = Open_Disk(names[i]);
|
|
|
|
if (!Devices[numDevs]->private)
|
|
|
|
msgFatal("Unable to open device for %s!", names[i]);
|
|
|
|
msgDebug("Found a device of type disk named: %s\n", names[i]);
|
|
|
|
++numDevs;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
1995-05-16 11:37:27 +00:00
|
|
|
free(names);
|
1995-05-16 02:53:31 +00:00
|
|
|
}
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
/*
|
|
|
|
* Try to get all the types of devices it makes sense to get at the
|
|
|
|
* second stage of the installation.
|
|
|
|
*/
|
|
|
|
for (i = 0; device_names[i].name; i++) {
|
|
|
|
switch(device_names[i].type) {
|
|
|
|
case DEVICE_TYPE_CDROM:
|
|
|
|
fd = deviceTry(device_names[i].name);
|
|
|
|
if (fd > 0) {
|
|
|
|
close(fd);
|
|
|
|
CHECK_DEVS;
|
1995-05-16 11:37:27 +00:00
|
|
|
Devices[numDevs] = new_device(device_names[i].name);
|
1995-05-16 02:53:31 +00:00
|
|
|
Devices[numDevs]->type = DEVICE_TYPE_CDROM;
|
1995-05-16 11:37:27 +00:00
|
|
|
Devices[numDevs]->description = device_names[i].description;
|
|
|
|
Devices[numDevs]->enabled = TRUE; /* XXX check for FreeBSD disk later XXX */
|
|
|
|
Devices[numDevs]->init = mediaInitCDROM;
|
|
|
|
Devices[numDevs]->get = mediaGetCDROM;
|
1995-05-16 02:53:31 +00:00
|
|
|
Devices[numDevs]->close = NULL;
|
|
|
|
Devices[numDevs]->private = NULL;
|
|
|
|
msgDebug("Found a device of type CDROM named: %s\n",
|
1995-05-16 11:37:27 +00:00
|
|
|
device_names[i].name);
|
1995-05-16 02:53:31 +00:00
|
|
|
++numDevs;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
case DEVICE_TYPE_TAPE:
|
|
|
|
fd = deviceTry(device_names[i].name);
|
|
|
|
if (fd > 0) {
|
|
|
|
close(fd);
|
|
|
|
CHECK_DEVS;
|
1995-05-16 11:37:27 +00:00
|
|
|
Devices[numDevs] = new_device(device_names[i].name);
|
1995-05-16 02:53:31 +00:00
|
|
|
Devices[numDevs]->type = DEVICE_TYPE_TAPE;
|
1995-05-16 11:37:27 +00:00
|
|
|
Devices[numDevs]->enabled = TRUE;
|
|
|
|
Devices[numDevs]->init = mediaInitTape;
|
|
|
|
Devices[numDevs]->get = mediaGetTape;
|
|
|
|
Devices[numDevs]->close = mediaCloseTape;
|
1995-05-16 02:53:31 +00:00
|
|
|
Devices[numDevs]->private = NULL;
|
|
|
|
msgDebug("Found a device of type TAPE named: %s\n",
|
1995-05-16 11:37:27 +00:00
|
|
|
device_names[i].name);
|
1995-05-16 02:53:31 +00:00
|
|
|
++numDevs;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
|
|
|
break;
|
1995-05-16 11:37:27 +00:00
|
|
|
|
|
|
|
case DEVICE_TYPE_FLOPPY:
|
|
|
|
default:
|
|
|
|
break;
|
1995-05-08 01:27:07 +00:00
|
|
|
}
|
1995-05-16 02:53:31 +00:00
|
|
|
}
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
/*
|
|
|
|
* Now go for the network interfaces dynamically. Stolen shamelessly
|
|
|
|
* from ifconfig!
|
|
|
|
*/
|
|
|
|
ifc.ifc_len = sizeof(buffer);
|
|
|
|
ifc.ifc_buf = buffer;
|
|
|
|
|
|
|
|
s = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (s < 0) {
|
|
|
|
msgConfirm("ifconfig: socket");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ioctl(s, SIOCGIFCONF, (char *) &ifc) < 0) {
|
|
|
|
msgConfirm("ifconfig (SIOCGIFCONF)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ifflags = ifc.ifc_req->ifr_flags;
|
|
|
|
end = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
|
1995-05-16 11:37:27 +00:00
|
|
|
for (ifptr = ifc.ifc_req; ifptr < end; ifptr++) {
|
|
|
|
if (ifptr->ifr_ifru.ifru_addr.sa_family != AF_LINK)
|
|
|
|
continue;
|
1995-05-16 02:53:31 +00:00
|
|
|
CHECK_DEVS;
|
1995-05-16 11:37:27 +00:00
|
|
|
Devices[numDevs] = new_device(ifptr->ifr_name);
|
1995-05-16 02:53:31 +00:00
|
|
|
Devices[numDevs]->type = DEVICE_TYPE_NETWORK;
|
1995-05-16 11:37:27 +00:00
|
|
|
Devices[numDevs]->enabled = TRUE;
|
|
|
|
Devices[numDevs]->init = mediaInitNetwork;
|
|
|
|
Devices[numDevs]->get = mediaGetNetwork;
|
|
|
|
Devices[numDevs]->close = mediaCloseNetwork;
|
1995-05-16 02:53:31 +00:00
|
|
|
Devices[numDevs]->private = NULL;
|
|
|
|
msgDebug("Found a device of type network named: %s\n",
|
|
|
|
ifptr->ifr_name);
|
|
|
|
++numDevs;
|
|
|
|
close(s);
|
1995-05-16 11:37:27 +00:00
|
|
|
if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
|
1995-05-16 02:53:31 +00:00
|
|
|
msgConfirm("ifconfig: socket");
|
|
|
|
continue;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
1995-05-16 02:53:31 +00:00
|
|
|
if (ifptr->ifr_addr.sa_len) /* Dohw! */
|
|
|
|
ifptr = (struct ifreq *)((caddr_t)ifptr + ifptr->ifr_addr.sa_len
|
|
|
|
- sizeof(struct sockaddr));
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
1995-05-16 02:53:31 +00:00
|
|
|
/* Terminate the devices array */
|
|
|
|
Devices[numDevs] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find all devices that match the criteria, allowing "wildcarding" as well
|
|
|
|
* by allowing NULL or ANY values to match all.
|
|
|
|
*/
|
|
|
|
Device **
|
|
|
|
deviceFind(char *name, DeviceType class)
|
|
|
|
{
|
|
|
|
static Device *found[DEV_MAX];
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0, j = 0; i < numDevs; i++) {
|
|
|
|
if ((!name || !strcmp(Devices[i]->name, name)) &&
|
|
|
|
(class == DEVICE_TYPE_ANY || class == Devices[i]->type))
|
|
|
|
found[j++] = Devices[i];
|
1995-05-04 23:36:23 +00:00
|
|
|
}
|
1995-05-16 02:53:31 +00:00
|
|
|
found[j] = NULL;
|
|
|
|
return j ? found : NULL;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1995-05-16 02:53:31 +00:00
|
|
|
* Create a menu listing all the devices of a certain type in the system.
|
|
|
|
* The passed-in menu is expected to be a "prototype" from which the new
|
|
|
|
* menu is cloned.
|
1995-05-04 03:51:22 +00:00
|
|
|
*/
|
|
|
|
DMenu *
|
1995-05-16 02:53:31 +00:00
|
|
|
deviceCreateMenu(DMenu *menu, DeviceType type, int (*hook)())
|
1995-05-04 03:51:22 +00:00
|
|
|
{
|
1995-05-16 02:53:31 +00:00
|
|
|
Device **devs;
|
1995-05-16 11:37:27 +00:00
|
|
|
int numdevs;
|
|
|
|
DMenu *tmp = NULL;
|
|
|
|
int i, j;
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
devs = deviceFind(NULL, type);
|
1995-05-16 11:37:27 +00:00
|
|
|
if (!devs)
|
|
|
|
return NULL;
|
1995-05-04 03:51:22 +00:00
|
|
|
|
1995-05-16 11:37:27 +00:00
|
|
|
for (numdevs = 0; devs[numdevs]; numdevs++);
|
|
|
|
tmp = (DMenu *)safe_malloc(sizeof(DMenu) +
|
|
|
|
(sizeof(DMenuItem) * (numdevs + 1)));
|
|
|
|
bcopy(menu, tmp, sizeof(DMenu));
|
|
|
|
for (i = 0; devs[i]; i++) {
|
|
|
|
tmp->items[i].title = devs[i]->name;
|
|
|
|
for (j = 0; device_names[j].name; j++) {
|
|
|
|
if (!strncmp(devs[i]->name, device_names[j].name,
|
|
|
|
strlen(device_names[j].name))) {
|
|
|
|
tmp->items[i].prompt = device_names[j].description;
|
|
|
|
break;
|
1995-05-16 02:53:31 +00:00
|
|
|
}
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
1995-05-16 11:37:27 +00:00
|
|
|
if (!device_names[j].name)
|
|
|
|
tmp->items[i].prompt = "<unknown device type>";
|
|
|
|
tmp->items[i].type = DMENU_CALL;
|
|
|
|
tmp->items[i].ptr = hook;
|
|
|
|
tmp->items[i].disabled = FALSE;
|
1995-05-01 21:56:32 +00:00
|
|
|
}
|
1995-05-16 11:37:27 +00:00
|
|
|
tmp->items[i].type = DMENU_NOP;
|
|
|
|
tmp->items[i].title = NULL;
|
|
|
|
return tmp;
|
1995-05-01 21:56:32 +00:00
|
|
|
}
|