summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/fstatat.c
blob: 4006814f0ae9499f7cb168f19e8cbb54bf909d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * fstatat() for uClibc
 *
 * Copyright (C) 2009 Analog Devices Inc.
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sys/syscall.h>
#include <sys/stat.h>
#include "xstatconv.h"

/* 64bit ports tend to favor newfstatat() */
#if __WORDSIZE == 64 && defined __NR_newfstatat
# define __NR_fstatat64 __NR_newfstatat
#endif

#ifdef __NR_fstatat64
int fstatat(int fd, const char *file, struct stat *buf, int flag)
{
	int ret;
# ifdef __ARCH_HAS_DEPRECATED_SYSCALLS__
	struct kernel_stat64 kbuf;
	ret = INLINE_SYSCALL(fstatat64, 4, fd, file, &kbuf, flag);
	if (ret == 0)
		__xstat32_conv(&kbuf, buf);
# else
	ret = INLINE_SYSCALL(fstatat64, 4, fd, file, buf, flag);
	if (ret == 0) {
		/* Did we overflow */
		if (buf->__pad1 || buf->__pad2 || buf->__pad3
		    || buf->__pad4 || buf->__pad5 || buf->__pad6
		    || buf->__pad7) {
			__set_errno(EOVERFLOW);
			return -1;
		}
	}
# endif /* __ARCH_HAS_DEPRECATED_SYSCALLS__ */
	return ret;
}
libc_hidden_def(fstatat)
#else
/* should add emulation with fstat() and /proc/self/fd/ ... */
#endif