2023-03-12 14:32:09 +00:00
|
|
|
#include <bits/errno-return.h>
|
2023-04-15 18:26:15 +00:00
|
|
|
#include <fcntl.h>
|
2023-03-12 14:32:09 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
2023-03-12 15:55:46 +00:00
|
|
|
int mkdir(const char* path, mode_t mode)
|
2023-03-12 14:32:09 +00:00
|
|
|
{
|
2023-03-12 15:55:46 +00:00
|
|
|
long rc = syscall(SYS_mkdir, path, mode);
|
2023-03-12 14:32:09 +00:00
|
|
|
__errno_return(rc, int);
|
|
|
|
}
|
2023-03-18 08:13:31 +00:00
|
|
|
|
|
|
|
int mknod(const char* path, mode_t mode, dev_t dev)
|
|
|
|
{
|
|
|
|
long rc = syscall(SYS_mknod, path, mode, dev);
|
|
|
|
__errno_return(rc, int);
|
|
|
|
}
|
2023-04-10 17:56:03 +00:00
|
|
|
|
2023-05-11 17:40:34 +00:00
|
|
|
int chmod(const char* path, mode_t mode)
|
|
|
|
{
|
|
|
|
long rc = syscall(SYS_chmod, path, mode);
|
|
|
|
__errno_return(rc, int);
|
|
|
|
}
|
|
|
|
|
2023-04-10 17:56:03 +00:00
|
|
|
int stat(const char* path, struct stat* st)
|
|
|
|
{
|
2023-04-15 18:26:15 +00:00
|
|
|
long rc = syscall(SYS_fstatat, AT_FDCWD, path, st, 0);
|
2023-04-10 17:56:03 +00:00
|
|
|
__errno_return(rc, int);
|
|
|
|
}
|
|
|
|
|
|
|
|
int fstat(int fd, struct stat* st)
|
|
|
|
{
|
2023-04-15 18:26:15 +00:00
|
|
|
long rc = syscall(SYS_fstatat, fd, "", st, AT_EMPTY_PATH);
|
2023-04-10 17:56:03 +00:00
|
|
|
__errno_return(rc, int);
|
|
|
|
}
|
2023-05-01 18:00:43 +00:00
|
|
|
|
|
|
|
int fstatat(int dirfd, const char* path, struct stat* st, int flags)
|
|
|
|
{
|
|
|
|
long rc = syscall(SYS_fstatat, dirfd, path, st, flags);
|
|
|
|
__errno_return(rc, int);
|
|
|
|
}
|
2023-03-12 14:32:09 +00:00
|
|
|
}
|