Update.
[glibc.git] / sysdeps / unix / readdir.c
bloba17a26435d27d7e67e277c1bea136983b46c2d91
1 /* Copyright (C) 1991,92,93,94,95,96,97,99 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #include <errno.h>
20 #include <limits.h>
21 #include <stddef.h>
22 #include <string.h>
23 #include <dirent.h>
24 #include <unistd.h>
25 #include <sys/types.h>
26 #include <assert.h>
28 #include <dirstream.h>
31 /* Read a directory entry from DIRP. */
32 struct dirent *
33 __readdir (DIR *dirp)
35 struct dirent *dp;
37 __libc_lock_lock (dirp->lock);
41 size_t reclen;
43 if (dirp->offset >= dirp->size)
45 /* We've emptied out our buffer. Refill it. */
47 size_t maxread;
48 ssize_t bytes;
50 #ifndef _DIRENT_HAVE_D_RECLEN
51 /* Fixed-size struct; must read one at a time (see below). */
52 maxread = sizeof *dp;
53 #else
54 maxread = dirp->allocation;
55 #endif
57 bytes = __getdents (dirp->fd, dirp->data, maxread);
58 if (bytes <= 0)
60 dp = NULL;
61 break;
63 dirp->size = (size_t) bytes;
65 /* Reset the offset into the buffer. */
66 dirp->offset = 0;
69 dp = (struct dirent *) &dirp->data[dirp->offset];
71 #ifdef _DIRENT_HAVE_D_RECLEN
72 reclen = dp->d_reclen;
73 #else
74 /* The only version of `struct dirent' that lacks `d_reclen'
75 is fixed-size. */
76 assert (sizeof dp->d_name > 1);
77 reclen = sizeof *dp;
78 /* The name is not terminated if it is the largest possible size.
79 Clobber the following byte to ensure proper null termination. We
80 read jst one entry at a time above so we know that byte will not
81 be used later. */
82 dp->d_name[sizeof dp->d_name] = '\0';
83 #endif
85 dirp->offset += reclen;
87 #ifdef _DIRENT_HAVE_D_OFF
88 dirp->filepos = dp->d_off;
89 #else
90 dirp->filepos += reclen;
91 #endif
93 /* Skip deleted files. */
94 } while (dp->d_ino == 0);
96 __libc_lock_unlock (dirp->lock);
98 return dp;
100 weak_alias (__readdir, readdir)