2018-02-28 18:37:17 +00:00
|
|
|
/* Get directory entries. Linux LFS version.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 1997-2020 Free Software Foundation, Inc.
|
2018-02-28 18:37:17 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library. If not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2018-02-28 18:37:17 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
2019-06-27 13:08:40 +00:00
|
|
|
#include <limits.h>
|
2018-02-28 18:37:17 +00:00
|
|
|
|
2019-06-07 07:27:01 +00:00
|
|
|
/* The kernel struct linux_dirent64 matches the 'struct dirent64' type. */
|
2018-02-28 18:37:17 +00:00
|
|
|
ssize_t
|
2019-06-07 07:27:01 +00:00
|
|
|
__getdents64 (int fd, void *buf, size_t nbytes)
|
2018-02-28 18:37:17 +00:00
|
|
|
{
|
2019-06-27 13:08:40 +00:00
|
|
|
/* The system call takes an unsigned int argument, and some length
|
|
|
|
checks in the kernel use an int type. */
|
|
|
|
if (nbytes > INT_MAX)
|
|
|
|
nbytes = INT_MAX;
|
2018-02-28 18:37:17 +00:00
|
|
|
return INLINE_SYSCALL_CALL (getdents64, fd, buf, nbytes);
|
|
|
|
}
|
2019-06-07 07:27:01 +00:00
|
|
|
libc_hidden_def (__getdents64)
|
|
|
|
weak_alias (__getdents64, getdents64)
|
2018-02-28 18:37:17 +00:00
|
|
|
|
|
|
|
#if _DIRENT_MATCHES_DIRENT64
|
|
|
|
strong_alias (__getdents64, __getdents)
|
|
|
|
#else
|
|
|
|
# include <shlib-compat.h>
|
|
|
|
|
|
|
|
# if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2)
|
2018-08-10 08:20:13 +00:00
|
|
|
# include <olddirent.h>
|
|
|
|
# include <unistd.h>
|
2018-02-28 18:37:17 +00:00
|
|
|
|
2018-08-10 08:20:13 +00:00
|
|
|
static ssize_t
|
|
|
|
handle_overflow (int fd, __off64_t offset, ssize_t count)
|
2018-02-28 18:37:17 +00:00
|
|
|
{
|
2018-08-10 08:20:13 +00:00
|
|
|
/* If this is the first entry in the buffer, we can report the
|
|
|
|
error. */
|
2018-12-10 13:14:45 +00:00
|
|
|
if (offset == 0)
|
2018-08-10 08:20:13 +00:00
|
|
|
{
|
|
|
|
__set_errno (EOVERFLOW);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, seek to the overflowing entry, so that the next call
|
2018-12-10 13:14:45 +00:00
|
|
|
will report the error, and return the data read so far. */
|
2018-08-10 08:20:13 +00:00
|
|
|
if (__lseek64 (fd, offset, SEEK_SET) != 0)
|
|
|
|
return -1;
|
|
|
|
return count;
|
|
|
|
}
|
2018-02-28 18:37:17 +00:00
|
|
|
|
|
|
|
ssize_t
|
|
|
|
__old_getdents64 (int fd, char *buf, size_t nbytes)
|
|
|
|
{
|
2018-08-10 08:20:13 +00:00
|
|
|
/* We do not move the individual directory entries. This is only
|
|
|
|
possible if the target type (struct __old_dirent64) is smaller
|
|
|
|
than the source type. */
|
|
|
|
_Static_assert (offsetof (struct __old_dirent64, d_name)
|
|
|
|
<= offsetof (struct dirent64, d_name),
|
|
|
|
"__old_dirent64 is larger than dirent64");
|
|
|
|
_Static_assert (__alignof__ (struct __old_dirent64)
|
|
|
|
<= __alignof__ (struct dirent64),
|
|
|
|
"alignment of __old_dirent64 is larger than dirent64");
|
2018-02-28 18:37:17 +00:00
|
|
|
|
2018-08-10 08:20:13 +00:00
|
|
|
ssize_t retval = INLINE_SYSCALL_CALL (getdents64, fd, buf, nbytes);
|
|
|
|
if (retval > 0)
|
2018-02-28 18:37:17 +00:00
|
|
|
{
|
2018-12-10 13:14:45 +00:00
|
|
|
/* This is the marker for the first entry. Offset 0 is reserved
|
|
|
|
for the first entry (see rewinddir). Here, we use it as a
|
|
|
|
marker for the first entry in the buffer. We never actually
|
|
|
|
seek to offset 0 because handle_overflow reports the error
|
|
|
|
directly, so it does not matter that the offset is incorrect
|
|
|
|
if entries have been read from the descriptor before (so that
|
|
|
|
the descriptor is not actually at offset 0). */
|
|
|
|
__off64_t previous_offset = 0;
|
|
|
|
|
2018-08-10 08:20:13 +00:00
|
|
|
char *p = buf;
|
|
|
|
char *end = buf + retval;
|
|
|
|
while (p < end)
|
2018-02-28 18:37:17 +00:00
|
|
|
{
|
2018-08-10 08:20:13 +00:00
|
|
|
struct dirent64 *source = (struct dirent64 *) p;
|
|
|
|
|
|
|
|
/* Copy out the fixed-size data. */
|
|
|
|
__ino_t ino = source->d_ino;
|
|
|
|
__off64_t offset = source->d_off;
|
|
|
|
unsigned int reclen = source->d_reclen;
|
|
|
|
unsigned char type = source->d_type;
|
|
|
|
|
|
|
|
/* Check for ino_t overflow. */
|
|
|
|
if (__glibc_unlikely (ino != source->d_ino))
|
2018-12-10 13:14:45 +00:00
|
|
|
return handle_overflow (fd, previous_offset, p - buf);
|
2018-08-10 08:20:13 +00:00
|
|
|
|
|
|
|
/* Convert to the target layout. Use a separate struct and
|
|
|
|
memcpy to side-step aliasing issues. */
|
|
|
|
struct __old_dirent64 result;
|
|
|
|
result.d_ino = ino;
|
|
|
|
result.d_off = offset;
|
|
|
|
result.d_reclen = reclen;
|
|
|
|
result.d_type = type;
|
|
|
|
|
|
|
|
/* Write the fixed-sized part of the result to the
|
|
|
|
buffer. */
|
|
|
|
size_t result_name_offset = offsetof (struct __old_dirent64, d_name);
|
|
|
|
memcpy (p, &result, result_name_offset);
|
|
|
|
|
|
|
|
/* Adjust the position of the name if necessary. Copy
|
|
|
|
everything until the end of the record, including the
|
|
|
|
terminating NUL byte. */
|
|
|
|
if (result_name_offset != offsetof (struct dirent64, d_name))
|
|
|
|
memmove (p + result_name_offset, source->d_name,
|
|
|
|
reclen - offsetof (struct dirent64, d_name));
|
2018-02-28 18:37:17 +00:00
|
|
|
|
2018-08-10 08:20:13 +00:00
|
|
|
p += reclen;
|
2018-12-10 13:14:45 +00:00
|
|
|
previous_offset = offset;
|
2018-02-28 18:37:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
# endif /* SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) */
|
|
|
|
#endif /* _DIRENT_MATCHES_DIRENT64 */
|