2018-10-24 10:48:24 +03:00
|
|
|
#include <LibC/stdio.h>
|
|
|
|
#include <LibC/unistd.h>
|
2018-10-24 13:43:52 +03:00
|
|
|
#include <LibC/dirent.h>
|
2018-10-27 15:56:52 +03:00
|
|
|
#include <LibC/errno.h>
|
|
|
|
#include <LibC/string.h>
|
2018-10-24 10:48:24 +03:00
|
|
|
|
|
|
|
int main(int c, char** v)
|
|
|
|
{
|
2018-10-28 02:17:48 +03:00
|
|
|
bool colorize = true;
|
|
|
|
|
2018-10-26 15:24:11 +03:00
|
|
|
DIR* dirp = opendir(".");
|
2018-10-24 13:43:52 +03:00
|
|
|
if (!dirp) {
|
2018-10-27 15:56:52 +03:00
|
|
|
perror("opendir failed");
|
2018-10-24 10:48:24 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2018-10-24 14:19:36 +03:00
|
|
|
char pathbuf[256];
|
2018-10-24 13:43:52 +03:00
|
|
|
while (auto* de = readdir(dirp)) {
|
2018-10-26 15:24:11 +03:00
|
|
|
sprintf(pathbuf, "%s", de->d_name);
|
2018-10-27 15:56:52 +03:00
|
|
|
|
2018-10-24 14:19:36 +03:00
|
|
|
stat st;
|
|
|
|
int rc = lstat(pathbuf, &st);
|
|
|
|
if (rc == -1) {
|
2018-10-27 15:56:52 +03:00
|
|
|
printf("lstat(%s) failed: %s\n", pathbuf, strerror(errno));
|
2018-10-24 14:19:36 +03:00
|
|
|
return 2;
|
|
|
|
}
|
2018-10-24 10:48:24 +03:00
|
|
|
|
2018-10-27 17:43:03 +03:00
|
|
|
printf("%08u ", de->d_ino);
|
|
|
|
|
2018-10-24 14:19:36 +03:00
|
|
|
if (S_ISDIR(st.st_mode))
|
|
|
|
printf("d");
|
|
|
|
else if (S_ISLNK(st.st_mode))
|
|
|
|
printf("l");
|
|
|
|
else if (S_ISBLK(st.st_mode))
|
|
|
|
printf("b");
|
|
|
|
else if (S_ISCHR(st.st_mode))
|
|
|
|
printf("c");
|
|
|
|
else if (S_ISFIFO(st.st_mode))
|
|
|
|
printf("f");
|
|
|
|
else if (S_ISREG(st.st_mode))
|
|
|
|
printf("-");
|
|
|
|
else
|
|
|
|
printf("?");
|
|
|
|
|
|
|
|
printf("%c%c%c%c%c%c%c%c",
|
|
|
|
st.st_mode & S_IRUSR ? 'r' : '-',
|
|
|
|
st.st_mode & S_IWUSR ? 'w' : '-',
|
|
|
|
st.st_mode & S_IXUSR ? 'x' : '-',
|
|
|
|
st.st_mode & S_IRGRP ? 'r' : '-',
|
|
|
|
st.st_mode & S_IWGRP ? 'w' : '-',
|
|
|
|
st.st_mode & S_IXGRP ? 'x' : '-',
|
|
|
|
st.st_mode & S_IROTH ? 'r' : '-',
|
|
|
|
st.st_mode & S_IWOTH ? 'w' : '-'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (st.st_mode & S_ISVTX)
|
|
|
|
printf("t");
|
|
|
|
else
|
|
|
|
printf("%c", st.st_mode & S_IXOTH ? 'x' : '-');
|
|
|
|
|
2018-10-27 17:43:03 +03:00
|
|
|
printf(" %4u %4u", st.st_uid, st.st_gid);
|
|
|
|
|
|
|
|
printf(" %10u ", st.st_size);
|
2018-10-28 02:17:48 +03:00
|
|
|
|
|
|
|
const char* beginColor = "";
|
|
|
|
const char* endColor = "";
|
|
|
|
|
|
|
|
if (colorize) {
|
2018-10-28 16:11:51 +03:00
|
|
|
if (S_ISLNK(st.st_mode))
|
|
|
|
beginColor = "\033[36;1m";
|
|
|
|
else if (S_ISDIR(st.st_mode))
|
2018-10-28 02:17:48 +03:00
|
|
|
beginColor = "\033[34;1m";
|
|
|
|
else if (st.st_mode & 0111)
|
|
|
|
beginColor = "\033[32;1m";
|
|
|
|
else if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))
|
|
|
|
beginColor = "\033[33;1m";
|
|
|
|
endColor = "\033[0m";
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s%s%s", beginColor, de->d_name, endColor);
|
|
|
|
|
2018-10-28 16:11:51 +03:00
|
|
|
if (S_ISLNK(st.st_mode)) {
|
|
|
|
char linkbuf[256];
|
|
|
|
ssize_t nread = readlink(pathbuf, linkbuf, sizeof(linkbuf));
|
|
|
|
if (nread < 0) {
|
|
|
|
perror("readlink failed");
|
|
|
|
} else {
|
|
|
|
printf(" -> %s", linkbuf);
|
|
|
|
}
|
|
|
|
} else if (S_ISDIR(st.st_mode)) {
|
2018-10-28 02:17:48 +03:00
|
|
|
printf("/");
|
2018-10-28 16:11:51 +03:00
|
|
|
} else if (st.st_mode & 0111) {
|
2018-10-28 02:17:48 +03:00
|
|
|
printf("*");
|
2018-10-28 16:11:51 +03:00
|
|
|
}
|
2018-10-24 14:19:36 +03:00
|
|
|
printf("\n");
|
2018-10-24 13:43:52 +03:00
|
|
|
}
|
2018-10-24 10:48:24 +03:00
|
|
|
return 0;
|
|
|
|
}
|