#include <sys/param.h>
#include <vfs/ufs/dinode.h>
#include <vfs/ufs/dir.h>
#include <stand.h>
#include <string.h>
#include "bootstrap.h"
static char typestr[] = "?fc?d?b? ?l?s?w";
static int ls_getdir(char **pathp);
COMMAND_SET(ls, "ls", "list files", command_ls);
static int
command_ls(int argc, char *argv[])
{
int fd;
struct stat sb;
struct dirent *d;
char *buf, *path;
char lbuf[128];
int result, ch;
int verbose;
result = CMD_OK;
fd = -1;
verbose = 0;
optind = 1;
optreset = 1;
while ((ch = getopt(argc, argv, "l")) != -1) {
switch(ch) {
case 'l':
verbose = 1;
break;
case '?':
default:
return(CMD_OK);
}
}
argv += (optind - 1);
argc -= (optind - 1);
if (argc < 2) {
path = "";
} else {
path = argv[1];
}
fd = ls_getdir(&path);
if (fd == -1) {
result = CMD_ERROR;
goto out;
}
pager_open();
pager_output(path);
pager_output("\n");
while ((d = readdirfd(fd)) != NULL) {
if (strcmp(d->d_name, ".") && strcmp(d->d_name, "..")) {
if (verbose) {
sb.st_size = 0;
buf = malloc(strlen(path) + strlen(d->d_name) + 2);
if (strlen(path) == 0)
sprintf(buf, "%s", d->d_name);
else
sprintf(buf, "%s/%s", path, d->d_name);
if (rel_stat(buf, &sb))
sb.st_size = 0;
free(buf);
sprintf(lbuf, " %c %8d %s\n", typestr[d->d_type],
(int)sb.st_size, d->d_name);
} else {
sprintf(lbuf, " %c %s\n", typestr[d->d_type], d->d_name);
}
if (pager_output(lbuf))
goto out;
}
}
out:
pager_close();
if (fd != -1)
close(fd);
if (path != NULL)
free(path);
return(result);
}
static int
ls_getdir(char **pathp)
{
struct stat sb;
int fd;
const char *cp;
char *path;
fd = -1;
path = malloc(strlen(*pathp) + 2);
strcpy(path, *pathp);
if (archsw.arch_getdev(NULL, path, &cp)) {
snprintf(command_errbuf, sizeof(command_errbuf),
"bad path '%s'", path);
goto out;
}
fd = rel_open(cp, NULL, O_RDONLY);
if (fd < 0) {
snprintf(command_errbuf, sizeof(command_errbuf),
"open '%s' failed: %s", path, strerror(errno));
goto out;
}
if (fstat(fd, &sb) < 0) {
snprintf(command_errbuf, sizeof(command_errbuf),
"stat failed: %s", strerror(errno));
goto out;
}
if (!S_ISDIR(sb.st_mode)) {
snprintf(command_errbuf, sizeof(command_errbuf),
"%s: %s", path, strerror(ENOTDIR));
goto out;
}
*pathp = path;
return(fd);
out:
free(path);
*pathp = NULL;
if (fd != -1)
close(fd);
return(-1);
}