Browse Source

Emulate 'futimesat' when __NR_futimesat is not available.

Elliot Thomas 1 year ago
parent
commit
4d69fcb985
1 changed files with 24 additions and 2 deletions
  1. 24 2
      libc/sysdeps/linux/common/futimesat.c

+ 24 - 2
libc/sysdeps/linux/common/futimesat.c

@@ -11,6 +11,28 @@
 
 #ifdef __NR_futimesat
 _syscall3(int, futimesat, int, fd, const char *, file, const struct timeval *, tvp)
-#else
-/* should add emulation with futimes() and /proc/self/fd/ ... */
+#elif defined __NR_utimensat
+#include <errno.h>
+#define __need_NULL
+#include <stddef.h>
+
+int futimesat(int dirfd, const char *file, const struct timeval tvp[2])
+{
+	struct timespec ts[2];
+
+	if (tvp != NULL)
+	{
+		if (tvp[0].tv_usec < 0 || tvp[0].tv_usec >= 1000000
+		    || tvp[1].tv_usec < 0 || tvp[1].tv_usec >= 1000000)
+		{
+			__set_errno(EINVAL);
+			return -1;
+		}
+
+		TIMEVAL_TO_TIMESPEC(&tvp[0], &ts[0]);
+		TIMEVAL_TO_TIMESPEC(&tvp[1], &ts[1]);
+	}
+
+	return utimensat(dirfd, file, tvp ? ts : NULL, 0);
+}
 #endif