banan-os/libc/sys/stat.cpp

49 lines
916 B
C++
Raw Normal View History

2023-06-11 00:54:04 +03:00
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <unistd.h>
2023-06-11 00:54:04 +03:00
int fstat(int fildes, struct stat* buf)
{
return syscall(SYS_FSTAT, fildes, buf);
}
int fstatat(int fd, const char* __restrict path, struct stat* __restrict buf, int flag)
{
2023-08-11 12:25:15 +03:00
if (flag == AT_SYMLINK_NOFOLLOW)
flag = O_NOFOLLOW;
else if (flag)
2023-06-11 00:54:04 +03:00
{
errno = EINVAL;
return -1;
}
2023-08-11 12:25:15 +03:00
int target = openat(fd, path, O_SEARCH | flag);
2023-06-11 00:54:04 +03:00
if (target == -1)
return -1;
int ret = fstat(target, buf);
close(target);
return ret;
}
int lstat(const char* __restrict path, struct stat* __restrict buf)
{
2023-06-11 00:54:04 +03:00
int fd = open(path, O_SEARCH | O_NOFOLLOW);
if (fd == -1)
return -1;
int ret = fstat(fd, buf);
close(fd);
return ret;
}
int stat(const char* __restrict path, struct stat* __restrict buf)
{
2023-06-11 00:54:04 +03:00
int fd = open(path, O_SEARCH);
if (fd == -1)
return -1;
int ret = fstat(fd, buf);
close(fd);
return ret;
}