Update.
[glibc.git] / sysdeps / mach / hurd / readdir_r.c
blobdad4a31d997f52c775b7f40a5821212c0179d9cd
1 /* Copyright (C) 1993, 94, 95, 96, 1997, 2001 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 <hurd.h>
27 #include <hurd/fd.h>
28 #include "dirstream.h"
31 /* Read a directory entry from DIRP. */
32 int
33 __readdir_r (DIR *dirp, struct dirent *entry, struct dirent **result)
35 struct dirent *dp;
36 error_t err = 0;
38 if (dirp == NULL)
40 errno = EINVAL;
41 return errno;
44 __libc_lock_lock (dirp->__lock);
48 if (dirp->__ptr - dirp->__data >= dirp->__size)
50 /* We've emptied out our buffer. Refill it. */
52 char *data = dirp->__data;
53 int nentries;
55 if (err = HURD_FD_PORT_USE (dirp->__fd,
56 __dir_readdir (port,
57 &data, &dirp->__size,
58 dirp->__entry_ptr,
59 -1, 0, &nentries)))
61 __hurd_fail (err);
62 dp = NULL;
63 break;
66 /* DATA now corresponds to entry index DIRP->__entry_ptr. */
67 dirp->__entry_data = dirp->__entry_ptr;
69 if (data != dirp->__data)
71 /* The data was passed out of line, so our old buffer is no
72 longer useful. Deallocate the old buffer and reset our
73 information for the new buffer. */
74 __vm_deallocate (__mach_task_self (),
75 (vm_address_t) dirp->__data,
76 dirp->__allocation);
77 dirp->__data = data;
78 dirp->__allocation = round_page (dirp->__size);
81 /* Reset the pointer into the buffer. */
82 dirp->__ptr = dirp->__data;
84 if (nentries == 0)
86 /* End of file. */
87 dp = NULL;
88 break;
91 /* We trust the filesystem to return correct data and so we
92 ignore NENTRIES. */
95 dp = (struct dirent *) dirp->__ptr;
96 dirp->__ptr += dp->d_reclen;
97 ++dirp->__entry_ptr;
99 /* Loop to ignore deleted files. */
100 } while (dp->d_fileno == 0);
102 if (dp)
104 *entry = *dp;
105 memcpy (entry->d_name, dp->d_name, dp->d_namlen + 1);
106 *result = entry;
108 else
109 *result = NULL;
111 __libc_lock_unlock (dirp->__lock);
113 return dp ? 0 : err ? errno : 0;
116 weak_alias (__readdir_r, readdir_r)