2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * $FreeBSD: src/lib/libc/gen/telldir.c,v 1.4.12.1 2001/03/05 09:39:59 obrien Exp $
31 * @(#)telldir.c 8.1 (Berkeley) 6/4/93
34 #include "namespace.h"
35 #include <sys/param.h>
40 #include "un-namespace.h"
42 #include "libc_private.h"
43 #include "gen_private.h"
46 * One of these structures is malloced to describe the current directory
47 * position each time telldir is called. It records the current magic
48 * cookie returned by getdirentries and the offset within the buffer
49 * associated with that return value.
52 struct ddloc
*loc_next
;/* next structure in list */
53 long loc_index
; /* key associated with structure */
54 off_t loc_seek
; /* magic cookie returned by getdirentries */
55 long loc_loc
; /* offset of entry in buffer */
56 const DIR* loc_dirp
; /* directory which used this entry */
59 #define NDIRHASH 32 /* Num of hash lists, must be a power of 2 */
60 #define LOCHASH(i) ((i)&(NDIRHASH-1))
62 static long dd_loccnt
; /* Index of entry for sequential readdir's */
63 static struct ddloc
*dd_hash
[NDIRHASH
]; /* Hash list heads for ddlocs */
64 static pthread_mutex_t dd_hash_lock
;
67 * return a pointer into a directory
76 _pthread_mutex_lock(&dirp
->dd_lock
);
77 _pthread_mutex_lock(&dd_hash_lock
);
81 * Reduce memory use by reusing a ddloc that might already exist
84 for (lp
= dd_hash
[LOCHASH(dirp
->dd_lastseek
)]; lp
; lp
= lp
->loc_next
) {
85 if (lp
->loc_dirp
== dirp
&& lp
->loc_seek
== dirp
->dd_seek
&&
86 lp
->loc_loc
== dirp
->dd_loc
) {
87 index
= lp
->loc_index
;
92 if ((lp
= (struct ddloc
*)malloc(sizeof(struct ddloc
))) == NULL
) {
97 lp
->loc_index
= index
;
98 lp
->loc_seek
= dirp
->dd_seek
;
99 lp
->loc_loc
= dirp
->dd_loc
;
102 lp
->loc_next
= dd_hash
[LOCHASH(index
)];
103 dd_hash
[LOCHASH(index
)] = lp
;
107 _pthread_mutex_unlock(&dd_hash_lock
);
108 _pthread_mutex_unlock(&dirp
->dd_lock
);
114 * seek to an entry in a directory.
115 * Only values returned by "telldir" should be passed to seekdir.
118 _seekdir(DIR *dirp
, long loc
)
124 _pthread_mutex_lock(&dd_hash_lock
);
125 for (lp
= dd_hash
[LOCHASH(loc
)]; lp
; lp
= lp
->loc_next
) {
126 if (lp
->loc_dirp
== dirp
&& lp
->loc_index
== loc
)
130 _pthread_mutex_unlock(&dd_hash_lock
);
133 if (lp
->loc_loc
== dirp
->dd_loc
&& lp
->loc_seek
== dirp
->dd_seek
)
135 lseek(dirp
->dd_fd
, lp
->loc_seek
, SEEK_SET
);
136 dirp
->dd_seek
= lp
->loc_seek
;
138 dirp
->dd_lastseek
= loc
;
141 * Scan the buffer until we find dd_loc. If the directory
142 * changed between the tell and seek it is possible to
143 * load a new buffer or for dd_loc to not match directly.
145 while (dirp
->dd_loc
< lp
->loc_loc
&& dirp
->dd_seek
== lp
->loc_seek
) {
146 dp
= _readdir_unlocked(dirp
, 0);
153 * Reclaim memory for telldir cookies which weren't used.
156 _reclaim_telldir(DIR *dirp
)
159 struct ddloc
**prevlp
;
163 _pthread_mutex_lock(&dd_hash_lock
);
164 for (i
= 0; i
< NDIRHASH
; i
++) {
165 prevlp
= &dd_hash
[i
];
168 if (lp
->loc_dirp
== dirp
) {
169 *prevlp
= lp
->loc_next
;
174 prevlp
= &lp
->loc_next
;
179 _pthread_mutex_unlock(&dd_hash_lock
);