Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2023-11-26 23:05:07 +0300
committerCorinna Vinschen <corinna@vinschen.de>2023-11-28 12:52:05 +0300
commite01c50c7b0a6c5d2a25feb02958d57902c25c141 (patch)
tree43f2f7719e14e6a6fbabd8aa1bfbcef5e248bc16 /winsup/cygwin/syscalls.cc
parent23e9b5cf3c4ff4507eff8fb9fcf8d5cb15afc694 (diff)
Cygwin: introduce fallocate(2)
First cut of the new, Linux-specific fallocate(2) function. Do not add any functionality yet, except of basic handling of FALLOC_FL_KEEP_SIZE. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r--winsup/cygwin/syscalls.cc34
1 files changed, 34 insertions, 0 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index b2e6ba16c..0e4c54bcf 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -2988,6 +2988,40 @@ posix_fadvise (int fd, off_t offset, off_t len, int advice)
}
extern "C" int
+fallocate (int fd, int mode, off_t offset, off_t len)
+{
+ int res = 0;
+
+ /* First check mask of allowed flags */
+ if (mode & ~(FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE
+ | FALLOC_FL_UNSHARE_RANGE | FALLOC_FL_COLLAPSE_RANGE
+ | FALLOC_FL_INSERT_RANGE | FALLOC_FL_KEEP_SIZE))
+ res = EOPNOTSUPP;
+ /* Either FALLOC_FL_PUNCH_HOLE or FALLOC_FL_ZERO_RANGE, never both */
+ else if ((mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE))
+ == (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE))
+ res = EOPNOTSUPP;
+ /* FALLOC_FL_PUNCH_HOLE must be ORed with FALLOC_FL_KEEP_SIZE */
+ else if ((mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE))
+ == FALLOC_FL_PUNCH_HOLE)
+ res = EOPNOTSUPP;
+ else if (offset < 0 || len == 0)
+ res = EINVAL;
+ else
+ {
+ cygheap_fdget cfd (fd);
+ if (cfd >= 0)
+ res = cfd->fallocate (mode, offset, len);
+ else
+ res = EBADF;
+ if (res == EISDIR)
+ res = ENODEV;
+ }
+ syscall_printf ("%R = posix_fallocate(%d, %D, %D)", res, fd, offset, len);
+ return 0;
+}
+
+extern "C" int
posix_fallocate (int fd, off_t offset, off_t len)
{
int res = 0;