summaryrefslogtreecommitdiffstats
path: root/sys/boot/common/ls.c
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1998-08-21 03:17:42 +0000
committermsmith <msmith@FreeBSD.org>1998-08-21 03:17:42 +0000
commit8adeb775c43d4c2ae76cce40837a3953af6abc83 (patch)
treeec778e5f3903abe2dbb59959c0fd8398c99c145b /sys/boot/common/ls.c
parent335c4be5b17816baac6b70d4d0b3132925de858d (diff)
downloadFreeBSD-src-8adeb775c43d4c2ae76cce40837a3953af6abc83.zip
FreeBSD-src-8adeb775c43d4c2ae76cce40837a3953af6abc83.tar.gz
This is the new unified bootstrap, sometimes known previously as the
'three-stage' bootstrap. There are a number of caveats with the code in its current state: - The i386 bootstrap only supports booting from a floppy. - The kernel and kld do not yet know how to deal with the extended information and module summary passed in. - PnP-based autodetection and demand loading of modules is not implemented. - i386 ELF kernel loading is not ready yet. - The i386 bootstrap is loaded via an ugly blockmap. On the alpha, both net- and disk-booting (SRM console machines only) is supported. No blockmaps are used by this code. Obtained from: Parts from the NetBSD/i386 standalone bootstrap.
Diffstat (limited to 'sys/boot/common/ls.c')
-rw-r--r--sys/boot/common/ls.c160
1 files changed, 160 insertions, 0 deletions
diff --git a/sys/boot/common/ls.c b/sys/boot/common/ls.c
new file mode 100644
index 0000000..b777c5a
--- /dev/null
+++ b/sys/boot/common/ls.c
@@ -0,0 +1,160 @@
+/*
+ * $Id$
+ * From: $NetBSD: ls.c,v 1.3 1997/06/13 13:48:47 drochner Exp $
+ */
+
+/*
+ * Copyright (c) 1993
+ * The Regents of the University of California. All rights reserved.
+ * Copyright (c) 1996
+ * Matthias Drochner. 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 the University of
+ * California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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 <sys/param.h>
+#include <ufs/ufs/dinode.h>
+#include <ufs/ufs/dir.h>
+
+#include <stand.h>
+
+#include "bootstrap.h"
+
+static char typestr[] = "?fc?d?b? ?l?s?w";
+
+COMMAND_SET(ls, "ls", "list files", command_ls);
+
+static int
+command_ls(int argc, char *argv[])
+{
+ int fd;
+ struct stat sb;
+ size_t size;
+ char dirbuf[DIRBLKSIZ];
+ char pathbuf[128]; /* XXX path length constant? */
+ char buf[128]; /* must be long enough for dir entry! */
+ char *path;
+ int result, ch;
+#ifdef VERBOSE_LS
+ int verbose;
+
+ verbose = 0;
+ optind = 1;
+ while ((ch = getopt(argc, argv, "l")) != -1) {
+ switch(ch) {
+ case 'l':
+ verbose = 1;
+ break;
+ case '?':
+ default:
+ /* getopt has already reported an error */
+ return(CMD_OK);
+ }
+ }
+ argv += (optind - 1);
+ argc -= (optind - 1);
+#endif
+
+ if (argc < 2) {
+ path = "/";
+ } else {
+ path = argv[1];
+ }
+
+ pager_open();
+ pager_output(path);
+ pager_output("\n");
+
+ fd = open(path, O_RDONLY);
+ if (fd < 0) {
+ sprintf(command_errbuf, "open '%s' failed: %s", path, strerror(errno));
+ return(CMD_ERROR);
+ }
+ result = CMD_OK;
+ if (fstat(fd, &sb) < 0) {
+ sprintf(command_errbuf, "stat failed: %s", strerror(errno));
+ result = CMD_ERROR;
+ goto out;
+ }
+ if (!S_ISDIR(sb.st_mode)) {
+ sprintf(command_errbuf, "%s: %s", path, strerror(ENOTDIR));
+ result = CMD_ERROR;
+ goto out;
+ }
+ while ((size = read(fd, dirbuf, DIRBLKSIZ)) == DIRBLKSIZ) {
+ struct direct *dp, *edp;
+
+ dp = (struct direct *) dirbuf;
+ edp = (struct direct *) (dirbuf + size);
+
+ while (dp < edp) {
+ if (dp->d_ino != (ino_t) 0) {
+
+ if ((dp->d_namlen > MAXNAMLEN + 1) || (dp->d_type > sizeof(typestr))) {
+ /*
+ * This does not handle "old"
+ * filesystems properly. On little
+ * endian machines, we get a bogus
+ * type name if the namlen matches a
+ * valid type identifier. We could
+ * check if we read namlen "0" and
+ * handle this case specially, if
+ * there were a pressing need...
+ */
+ command_errmsg = "bad dir entry";
+ result = CMD_ERROR;
+ goto out;
+ }
+
+ if (strcmp(dp->d_name, ".") && strcmp(dp->d_name, "..")) {
+#ifdef VERBOSE_LS /* too much UFS activity blows the heap out */
+ if (verbose) {
+ /* stat the file, if possible */
+ sb.st_size = 0;
+ sprintf(buf, "%s/%s", pathbuf, dp->d_name);
+ /* ignore return */
+ if (stat(buf, &sb))
+ sb.st_size = -1;
+ sprintf(buf, " %c %8d %s\n", typestr[dp->d_type], (int)sb.st_size, dp->d_name);
+#endif
+ } else
+ sprintf(buf, " %c %s\n", typestr[dp->d_type], dp->d_name);
+ if (pager_output(buf))
+ goto out;
+ }
+ }
+ dp = (struct direct *) ((char *) dp + dp->d_reclen);
+ }
+ }
+ out:
+ pager_close();
+ close(fd);
+ return(result);
+}
OpenPOWER on IntegriCloud