From bcec394547f595fe813018d6cef9a092df9ba856 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Thu, 9 Oct 2014 03:40:36 +0000 Subject: remove modstat --- usr.bin/modstat/Makefile | 44 ------------ usr.bin/modstat/modstat.8 | 68 ------------------ usr.bin/modstat/modstat.c | 165 -------------------------------------------- usr.bin/modstat/pathnames.h | 5 -- 4 files changed, 282 deletions(-) delete mode 100644 usr.bin/modstat/Makefile delete mode 100644 usr.bin/modstat/modstat.8 delete mode 100644 usr.bin/modstat/modstat.c delete mode 100644 usr.bin/modstat/pathnames.h (limited to 'usr.bin') diff --git a/usr.bin/modstat/Makefile b/usr.bin/modstat/Makefile deleted file mode 100644 index 038f4b36a2f..00000000000 --- a/usr.bin/modstat/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# $OpenBSD: Makefile,v 1.3 2003/01/06 05:57:32 deraadt Exp $ -# -# Makefile for modstat -# -# 25 May 93 Terry Lambert Original -# -# Copyright (c) 1993 Terrence R. Lambert. -# 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 Terrence R. Lambert. -# 4. The name Terrence R. Lambert may not be used to endorse or promote -# products derived from this software without specific prior written -# permission. -# -# THIS SOFTWARE IS PROVIDED BY TERRENCE R. LAMBERT ``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 TERRENCE R. LAMBERT 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. -# -# - -PROG= modstat -MAN= modstat.8 -BINGRP= _lkm -BINMODE=2555 - -.include diff --git a/usr.bin/modstat/modstat.8 b/usr.bin/modstat/modstat.8 deleted file mode 100644 index cb7152db159..00000000000 --- a/usr.bin/modstat/modstat.8 +++ /dev/null @@ -1,68 +0,0 @@ -.\" $OpenBSD: modstat.8,v 1.14 2013/07/16 00:07:52 schwarze Exp $ -.\" -.\" Copyright (c) 1993 Christopher G. Demetriou -.\" 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. 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. -.\" -.\" -.Dd $Mdocdate: July 16 2013 $ -.Dt MODSTAT 8 -.Os -.Sh NAME -.Nm modstat -.Nd display status of loaded kernel modules -.Sh SYNOPSIS -.Nm modstat -.Op Fl i Ar id -.Op Fl n Ar name -.Sh DESCRIPTION -The -.Nm -utility displays the status of any loadable kernel modules -present in the kernel. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl i Ar id -Display the status of only the module with this ID. -.It Fl n Ar name -Display the status of only the module with this name. -.El -.Sh EXIT STATUS -The -.Nm -utility exits with a status of 0 on success -or with a nonzero status if an error occurred. -.Sh SEE ALSO -.Xr lkm 4 , -.Xr modload 8 , -.Xr modunload 8 -.Sh HISTORY -The -.Nm -command was designed to be similar in functionality -to the corresponding command in -.Tn "SunOS 4.1.3" . -.Sh AUTHORS -.An Terrence R. Lambert Aq Mt terry@cs.weber.edu diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c deleted file mode 100644 index 1eb46177998..00000000000 --- a/usr.bin/modstat/modstat.c +++ /dev/null @@ -1,165 +0,0 @@ -/* $OpenBSD: modstat.c,v 1.22 2005/07/04 01:54:10 djm Exp $ */ - -/* - * Copyright (c) 1993 Terrence R. Lambert. - * 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 Terrence R. Lambert. - * 4. The name Terrence R. Lambert may not be used to endorse or promote - * products derived from this software without specific prior written - * permission. - * - * THIS SOFTWARE IS PROVIDED BY TERRENCE R. LAMBERT ``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 TERRENCE R. LAMBERT 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. - * - */ - -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -#include "pathnames.h" - -#define POINTERSIZE ((int)(2 * sizeof(void*))) - -static char *type_names[] = { - "SYSCALL", - "VFS", - "DEV", - "EXEC", - "MISC" -}; - -static void -usage(void) -{ - extern char *__progname; - - (void)fprintf(stderr, "usage: %s [-i id] [-n name]\n", __progname); - exit(1); -} - -static int -dostat(int devfd, int modnum, char *modname) -{ - char name[MAXLKMNAME]; - struct lmc_stat sbuf; - - bzero(&name, sizeof name); - bzero(&sbuf, sizeof sbuf); - sbuf.id = modnum; - sbuf.name = name; - - if (modname != NULL) { - if (strlen(modname) >= sizeof(name)) - return 4; - strlcpy(sbuf.name, modname, sizeof(name)); - } - - if (ioctl(devfd, LMSTAT, &sbuf) == -1) { - switch (errno) { - case EINVAL: /* out of range */ - return 2; - case ENOENT: /* no such entry */ - return 1; - default: /* other error (EFAULT, etc) */ - warn("LMSTAT"); - return 4; - } - } - - /* Decode this stat buffer... */ - printf("%-7s %3d %3ld %0*lx %04lx %0*lx %3ld %s\n", - type_names[sbuf.type], sbuf.id, sbuf.offset, POINTERSIZE, - (long)sbuf.area, (long)sbuf.size, POINTERSIZE, - (long)sbuf.private, (long)sbuf.ver, sbuf.name); - - return 0; -} - -int -main(int argc, char *argv[]) -{ - int c, modnum = -1; - char *modname = NULL; - char *endptr; - int devfd; - gid_t gid; - - while ((c = getopt(argc, argv, "i:n:")) != -1) { - switch (c) { - case 'i': - modnum = (int)strtol(optarg, &endptr, 0); - if (modnum < 0 || modnum > INT_MAX || *endptr != '\0') - errx(1, "%s: not a valid number", optarg); - break; - case 'n': - modname = optarg; - break; - default: - usage(); - break; - } - } - argc -= optind; - argv += optind; - - if (argc != 0) - usage(); - - /* - * Open the virtual device device driver for exclusive use (needed - * to ioctl() to retrive the loaded module(s) status). - */ - if ((devfd = open(_PATH_LKM, O_RDONLY)) == -1) - err(2, "%s", _PATH_LKM); - - gid = getgid(); - if (setresgid(gid, gid, gid) == -1) - err(1, "setresgid"); - - printf("Type Id Off %-*s Size %-*s Rev Module Name\n", - POINTERSIZE, "Loadaddr", POINTERSIZE, "Info"); - - if (modnum != -1 || modname != NULL) { - if (dostat(devfd, modnum, modname)) - exit(3); - exit(0); - } - - /* Start at 0 and work up until we receive EINVAL. */ - for (modnum = 0; dostat(devfd, modnum, NULL) < 2; modnum++) - ; - - exit(0); -} diff --git a/usr.bin/modstat/pathnames.h b/usr.bin/modstat/pathnames.h deleted file mode 100644 index b0f720eaa23..00000000000 --- a/usr.bin/modstat/pathnames.h +++ /dev/null @@ -1,5 +0,0 @@ -/* $OpenBSD: pathnames.h,v 1.2 1996/06/26 05:37:16 deraadt Exp $ */ - -#include - -#define _PATH_LKM "/dev/lkm" -- cgit v1.2.3