Import of Mats O Jansson's MOP boot program for DEC machines.

This commit is contained in:
cjs
1997-03-16 22:23:34 +00:00
commit 8673e0be2e
47 changed files with 6875 additions and 0 deletions

18
mopchk/Makefile Normal file
View File

@@ -0,0 +1,18 @@
# $Id: Makefile,v 1.1.1.1 1997/03/16 22:23:38 cjs Exp $
PROG= mopchk
SRCS= mopchk.c device.c version.c pf.c loop-bsd.c file.c
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/.. -I${.CURDIR}/../common -DINFO
CLEANFILES= version.c version.h
LDADD= -lkvm
.PATH: ${.CURDIR}/.. ${.CURDIR}/../common
version.c version.h: ${.CURDIR}/../common/VERSION
rm -f version.c; \
sed 's/.*/char version[] = "&";/' ${.ALLSRC} > version.c
set `sed 's/\([0-9]*\)\.\([0-9]*\).*/\1 \2/' ${.ALLSRC}` ; \
{ echo '#define VERSION_MAJOR' $$1 ; \
echo '#define VERSION_MINOR' $$2 ; } > version.h
.include <bsd.prog.mk>

65
mopchk/mopchk.1 Normal file
View File

@@ -0,0 +1,65 @@
.\"
.\" Copyright (c) 1996 Mats O Jansson. 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.
.\" 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 Mats O Jansson.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
.\"
.\" @(#) $Id: mopchk.1,v 1.1.1.1 1997/03/16 22:23:38 cjs Exp $
.\"
.Dd October 2, 1995
.Dt MOPCHK 1
.Sh NAME
.Nm mopchk
.Nd MOP Check Utility
.Sh SYNOPSIS
.Nm mopchk
.Op Fl a
.Op Fl v
.Op Ar filename
.Sh DESCRIPTION
.Nm Mopchk
shows information about which devices are known, version of mopd suite or
information about a MOP-image.
.Pp
If
.Ar filename
is given, information about the MOP-image is read from the header of the
file.
.Sh OPTIONS
.Bl -tag -width indent
.It Fl a
Show all the Ethernets attached to the system.
.It Fl v
Show version of mopprobe.
.El
.Sh BUGS
In some implementation the same interface can occure more than once.
.Sh SEE ALSO
.Xr mopa.out 1 ,
.Xr mopprobe 1 ,
.Xr moptrace 1 ,
.Xr mopd 8
.Sh AUTHORS
Mats O Jansson (moj@stacken.kth.se).

177
mopchk/mopchk.c Normal file
View File

@@ -0,0 +1,177 @@
/*
* Copyright (c) 1995-96 Mats O Jansson. 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.
* 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 Mats O Jansson.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
*/
#ifndef LINT
static char rcsid[] = "$Id: mopchk.c,v 1.1.1.1 1997/03/16 22:23:38 cjs Exp $";
#endif
/*
* mopchk - MOP Check Utility
*
* Usage: mopchk [-a] [-v] [filename...]
*/
#include "os.h"
#include "common/common.h"
#include "common/mopdef.h"
#include "common/device.h"
#include "common/pf.h"
#include "common/file.h"
/*
* The list of all interfaces that are being listened to. rarp_loop()
* "selects" on the descriptors in this list.
*/
struct if_info *iflist;
#ifdef NO__P
void Usage (/* void */);
void mopProcess (/* struct if_info *, u_char * */);
#else
void Usage __P((void));
void mopProcess __P((struct if_info *, u_char *));
#endif
int AllFlag = 0; /* listen on "all" interfaces */
int VersionFlag = 0; /* Show version */
int promisc = 0; /* promisc mode not needed */
char *Program;
char version[];
void
main(argc, argv)
int argc;
char **argv;
{
int op, i, fd;
char *filename;
struct if_info *ii;
int err, aout;
extern int optind, opterr;
if ((Program = strrchr(argv[0], '/')))
Program++;
else
Program = argv[0];
if (*Program == '-')
Program++;
/* All error reporting is done through syslogs. */
openlog(Program, LOG_PID | LOG_CONS, LOG_DAEMON);
opterr = 0;
while ((op = getopt(argc, argv, "av")) != EOF) {
switch (op) {
case 'a':
AllFlag++;
break;
case 'v':
VersionFlag++;
break;
default:
Usage();
/* NOTREACHED */
}
}
if (VersionFlag)
printf("%s: Version %s\n",Program,version);
if (AllFlag) {
if (VersionFlag)
printf("\n");
iflist = NULL;
deviceInitAll();
if (iflist == NULL) {
printf("No interface\n");
} else {
printf("Interface Address\n");
for (ii = iflist; ii; ii = ii->next) {
printf("%-9s %x:%x:%x:%x:%x:%x\n",
ii->if_name,
ii->eaddr[0],ii->eaddr[1],ii->eaddr[2],
ii->eaddr[3],ii->eaddr[4],ii->eaddr[5]);
}
}
}
if (VersionFlag || AllFlag)
i = 1;
else
i = 0;
while (argc > optind) {
if (i) printf("\n");
i++;
filename = argv[optind++];
printf("Checking: %s\n",filename);
fd = open(filename, O_RDONLY, 0);
if (fd == -1) {
printf("Unknown file.\n");
} else {
err = CheckAOutFile(fd);
if (err == 0) {
if (GetAOutFileInfo(fd, 0, 0, 0, 0,
0, 0, 0, 0, &aout) < 0) {
printf("Some failure in GetAOutFileInfo\n");
aout = -1;
}
} else {
aout = -1;
}
if (aout == -1)
err = CheckMopFile(fd);
if (aout == -1 && err == 0) {
if (GetMopFileInfo(fd, 0, 0) < 0) {
printf("Some failure in GetMopFileInfo\n");
}
};
}
}
}
void
Usage()
{
(void) fprintf(stderr, "usage: %d [-a] [-v] [filename...]\n",Program);
exit(1);
}
/*
* Process incomming packages, NOT.
*/
void
mopProcess(ii, pkt)
struct if_info *ii;
u_char *pkt;
{
}