4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1990 Jan-Simon Pendry
6 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1990 The Regents of the University of California.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * File: am-utils/amd/readdir.c
49 #endif /* HAVE_CONFIG_H */
54 /****************************************************************************
56 ****************************************************************************/
57 #define DOT_DOT_COOKIE (u_int) 1
58 #define MAX_CHAIN 2048
61 /****************************************************************************
62 *** FORWARD DEFINITIONS ***
63 ****************************************************************************/
64 static int key_already_in_chain(char *keyname
, const nfsentry
*chain
);
65 static nfsentry
*make_entry_chain(am_node
*mp
, const nfsentry
*current_chain
, int fully_browsable
);
66 static int amfs_readdir_browsable(am_node
*mp
, nfscookie cookie
, nfsdirlist
*dp
, nfsentry
*ep
, u_int count
, int fully_browsable
);
69 /****************************************************************************
71 ****************************************************************************/
73 * Was: NEW_TOPLVL_READDIR
74 * Search a chain for an entry with some name.
75 * -Erez Zadok <ezk@cs.columbia.edu>
78 key_already_in_chain(char *keyname
, const nfsentry
*chain
)
80 const nfsentry
*tmpchain
= chain
;
83 if (keyname
&& tmpchain
->ne_name
&& STREQ(keyname
, tmpchain
->ne_name
))
85 tmpchain
= tmpchain
->ne_nextentry
;
93 * Create a chain of entries which are not linked.
94 * -Erez Zadok <ezk@cs.columbia.edu>
97 make_entry_chain(am_node
*mp
, const nfsentry
*current_chain
, int fully_browsable
)
99 static u_int last_cookie
= (u_int
) 2; /* monotonically increasing */
100 static nfsentry chain
[MAX_CHAIN
];
101 static int max_entries
= MAX_CHAIN
;
103 int num_entries
= 0, i
;
105 nfsentry
*retval
= (nfsentry
*) NULL
;
110 plog(XLOG_DEBUG
, "make_entry_chain: mp is (NULL)");
115 plog(XLOG_DEBUG
, "make_entry_chain: mp->am_mnt is (NULL)");
118 mmp
= (mnt_map
*) mf
->mf_private
;
120 plog(XLOG_DEBUG
, "make_entry_chain: mp->am_mnt->mf_private is (NULL)");
125 preflen
= strlen(mp
->am_pref
);
127 /* iterate over keys */
128 for (i
= 0; i
< NKVHASH
; i
++) {
130 for (k
= mmp
->kvhash
[i
]; k
; k
= k
->next
) {
133 * Skip unwanted entries which are either not real entries or
134 * very difficult to interpret (wildcards...) This test needs
135 * lots of improvement. Any takers?
141 /* Skip '/defaults' */
142 if (STREQ(key
, "/defaults"))
146 if (!fully_browsable
&& strchr(key
, '*'))
150 * If the map has a prefix-string then check if the key starts with
151 * this string, and if it does, skip over this prefix. If it has a
152 * prefix and it doesn't match the start of the key, skip it.
155 if (preflen
> strlen(key
))
157 if (!NSTREQ(key
, mp
->am_pref
, preflen
))
162 /* no more '/' are allowed, unless browsable_dirs=full was used */
163 if (!fully_browsable
&& strchr(key
, '/'))
166 /* no duplicates allowed */
167 if (key_already_in_chain(key
, current_chain
))
170 /* fill in a cell and link the entry */
171 if (num_entries
>= max_entries
) {
173 plog(XLOG_DEBUG
, "make_entry_chain: no more space in chain");
174 if (num_entries
> 0) {
175 chain
[num_entries
- 1].ne_nextentry
= NULL
;
181 /* we have space. put entry in next cell */
183 chain
[num_entries
].ne_fileid
= (u_int
) last_cookie
;
184 *(u_int
*) chain
[num_entries
].ne_cookie
= (u_int
) last_cookie
;
185 chain
[num_entries
].ne_name
= key
;
186 if (num_entries
< max_entries
- 1) { /* link to next one */
187 chain
[num_entries
].ne_nextentry
= &chain
[num_entries
+ 1];
190 } /* end of "while (k)" */
191 } /* end of "for (i ... NKVHASH ..." */
193 /* terminate chain */
194 if (num_entries
> 0) {
195 chain
[num_entries
- 1].ne_nextentry
= NULL
;
204 /* This one is called only if map is browsable */
206 amfs_readdir_browsable(am_node
*mp
, nfscookie cookie
, nfsdirlist
*dp
, nfsentry
*ep
, u_int count
, int fully_browsable
)
208 u_int gen
= *(u_int
*) cookie
;
210 static nfsentry
*te
, *te_next
;
213 dp
->dl_eof
= FALSE
; /* assume readdir not done */
215 if (amuDebug(D_READDIR
))
216 plog(XLOG_DEBUG
, "amfs_readdir_browsable gen=%u, count=%d",
221 * In the default instance (which is used to start a search) we return
224 * This assumes that the count is big enough to allow both "." and ".."
225 * to be returned in a single packet. If it isn't (which would be
226 * fairly unbelievable) then tough.
228 dlog("amfs_readdir_browsable: default search");
230 * Check for enough room. This is extremely approximate but is more
231 * than enough space. Really need 2 times:
236 * plus the dirlist structure */
237 if (count
< (2 * (2 * (sizeof(*ep
) + sizeof("..") + 4) + sizeof(*dp
))))
241 * compute # of entries to send in this chain.
242 * heuristics: 128 bytes per entry.
243 * This is too much probably, but it seems to work better because
244 * of the re-entrant nature of nfs_readdir, and esp. on systems
247 chain_length
= count
/ 128;
249 /* reset static state counters */
255 ep
[0].ne_fileid
= mp
->am_gen
;
257 ep
[0].ne_nextentry
= &ep
[1];
258 *(u_int
*) ep
[0].ne_cookie
= 0;
262 ep
[1].ne_fileid
= mp
->am_parent
->am_gen
;
264 ep
[1].ne_fileid
= mp
->am_gen
;
266 ep
[1].ne_name
= "..";
267 ep
[1].ne_nextentry
= NULL
;
268 *(u_int
*) ep
[1].ne_cookie
= DOT_DOT_COOKIE
;
271 * If map is browsable, call a function make_entry_chain() to construct
272 * a linked list of unmounted keys, and return it. Then link the chain
273 * to the regular list. Get the chain only once, but return
274 * chunks of it each time.
276 te
= make_entry_chain(mp
, dp
->dl_entries
, fully_browsable
);
279 if (amuDebug(D_READDIR
)) {
281 for (j
= 0, ne
= te
; ne
; ne
= ne
->ne_nextentry
)
282 plog(XLOG_DEBUG
, "gen1 key %4d \"%s\"", j
++, ne
->ne_name
);
285 /* return only "chain_length" entries */
287 for (i
=1; i
<chain_length
; ++i
) {
288 te_next
= te_next
->ne_nextentry
;
293 nfsentry
*te_saved
= te_next
->ne_nextentry
;
294 te_next
->ne_nextentry
= NULL
; /* terminate "te" chain */
295 te_next
= te_saved
; /* save rest of "te" for next iteration */
296 dp
->dl_eof
= FALSE
; /* tell readdir there's more */
298 dp
->dl_eof
= TRUE
; /* tell readdir that's it */
300 ep
[1].ne_nextentry
= te
; /* append this chunk of "te" chain */
301 if (amuDebug(D_READDIR
)) {
303 for (j
= 0, ne
= te
; ne
; ne
= ne
->ne_nextentry
)
304 plog(XLOG_DEBUG
, "gen2 key %4d \"%s\"", j
++, ne
->ne_name
);
305 for (j
= 0, ne
= ep
; ne
; ne
= ne
->ne_nextentry
)
306 plog(XLOG_DEBUG
, "gen2+ key %4d \"%s\" fi=%d ck=%d",
307 j
++, ne
->ne_name
, ne
->ne_fileid
, *(u_int
*)ne
->ne_cookie
);
308 plog(XLOG_DEBUG
, "EOF is %d", dp
->dl_eof
);
311 } /* end of "if (gen == 0)" statement */
313 dlog("amfs_readdir_browsable: real child");
315 if (gen
== DOT_DOT_COOKIE
) {
316 dlog("amfs_readdir_browsable: End of readdir in %s", mp
->am_path
);
318 dp
->dl_entries
= NULL
;
323 * If browsable directories, then continue serving readdir() with another
324 * chunk of entries, starting from where we left off (when gen was equal
325 * to 0). Once again, assume last chunk served to readdir.
330 te
= te_next
; /* reset 'te' from last saved te_next */
331 if (!te
) { /* another indicator of end of readdir */
332 dp
->dl_entries
= NULL
;
336 * compute # of entries to send in this chain.
337 * heuristics: 128 bytes per entry.
339 chain_length
= count
/ 128;
341 /* return only "chain_length" entries */
342 for (i
= 1; i
< chain_length
; ++i
) {
343 te_next
= te_next
->ne_nextentry
;
348 nfsentry
*te_saved
= te_next
->ne_nextentry
;
349 te_next
->ne_nextentry
= NULL
; /* terminate "te" chain */
350 te_next
= te_saved
; /* save rest of "te" for next iteration */
351 dp
->dl_eof
= FALSE
; /* tell readdir there's more */
353 ep
= te
; /* send next chunk of "te" chain */
355 if (amuDebug(D_READDIR
)) {
357 plog(XLOG_DEBUG
, "dl_entries=%p, te_next=%p, dl_eof=%d",
358 dp
->dl_entries
, te_next
, dp
->dl_eof
);
359 for (ne
= te
; ne
; ne
= ne
->ne_nextentry
)
360 plog(XLOG_DEBUG
, "gen3 key %4d \"%s\"", j
++, ne
->ne_name
);
367 * This readdir function which call a special version of it that allows
368 * browsing if browsable_dirs=yes was set on the map.
371 amfs_generic_readdir(am_node
*mp
, nfscookie cookie
, nfsdirlist
*dp
, nfsentry
*ep
, u_int count
)
373 u_int gen
= *(u_int
*) cookie
;
377 dp
->dl_eof
= FALSE
; /* assume readdir not done */
379 /* check if map is browsable */
380 if (mp
->am_mnt
&& mp
->am_mnt
->mf_mopts
) {
381 mnt
.mnt_opts
= mp
->am_mnt
->mf_mopts
;
382 if (amu_hasmntopt(&mnt
, "fullybrowsable"))
383 return amfs_readdir_browsable(mp
, cookie
, dp
, ep
, count
, TRUE
);
384 if (amu_hasmntopt(&mnt
, "browsable"))
385 return amfs_readdir_browsable(mp
, cookie
, dp
, ep
, count
, FALSE
);
388 /* when gen is 0, we start reading from the beginning of the directory */
391 * In the default instance (which is used to start a search) we return
394 * This assumes that the count is big enough to allow both "." and ".."
395 * to be returned in a single packet. If it isn't (which would be
396 * fairly unbelievable) then tough.
398 dlog("amfs_generic_readdir: default search");
400 * Check for enough room. This is extremely approximate but is more
401 * than enough space. Really need 2 times:
406 * plus the dirlist structure */
407 if (count
< (2 * (2 * (sizeof(*ep
) + sizeof("..") + 4) + sizeof(*dp
))))
410 xp
= next_nonerror_node(mp
->am_child
);
414 ep
[0].ne_fileid
= mp
->am_gen
;
416 ep
[0].ne_nextentry
= &ep
[1];
417 *(u_int
*) ep
[0].ne_cookie
= 0;
421 ep
[1].ne_fileid
= mp
->am_parent
->am_gen
;
423 ep
[1].ne_fileid
= mp
->am_gen
;
424 ep
[1].ne_name
= "..";
425 ep
[1].ne_nextentry
= NULL
;
426 *(u_int
*) ep
[1].ne_cookie
= (xp
? xp
->am_gen
: DOT_DOT_COOKIE
);
429 dp
->dl_eof
= TRUE
; /* by default assume readdir done */
431 if (amuDebug(D_READDIR
)) {
434 for (j
= 0, ne
= ep
; ne
; ne
= ne
->ne_nextentry
)
435 plog(XLOG_DEBUG
, "gen1 key %4d \"%s\" fi=%d ck=%d",
436 j
++, ne
->ne_name
, ne
->ne_fileid
, *(u_int
*)ne
->ne_cookie
);
440 dlog("amfs_generic_readdir: real child");
442 if (gen
== DOT_DOT_COOKIE
) {
443 dlog("amfs_generic_readdir: End of readdir in %s", mp
->am_path
);
445 dp
->dl_entries
= NULL
;
446 if (amuDebug(D_READDIR
))
447 plog(XLOG_DEBUG
, "end of readdir eof=TRUE, dl_entries=0\n");
451 /* non-browsable directories code */
453 while (xp
&& xp
->am_gen
!= gen
)
457 int nbytes
= count
/ 2; /* conservative */
458 int todo
= MAX_READDIR_ENTRIES
;
462 am_node
*xp_next
= next_nonerror_node(xp
->am_osib
);
465 *(u_int
*) ep
->ne_cookie
= xp_next
->am_gen
;
467 *(u_int
*) ep
->ne_cookie
= DOT_DOT_COOKIE
;
471 ep
->ne_fileid
= xp
->am_gen
;
472 ep
->ne_name
= xp
->am_name
;
473 nbytes
-= sizeof(*ep
) + 1;
475 nbytes
-= strlen(xp
->am_name
);
479 if (nbytes
> 0 && !dp
->dl_eof
&& todo
> 1) {
480 ep
->ne_nextentry
= ep
+ 1;
488 ep
->ne_nextentry
= NULL
;
490 if (amuDebug(D_READDIR
)) {
493 for (j
=0,ne
=ep
; ne
; ne
=ne
->ne_nextentry
)
494 plog(XLOG_DEBUG
, "gen2 key %4d \"%s\" fi=%d ck=%d",
495 j
++, ne
->ne_name
, ne
->ne_fileid
, *(u_int
*)ne
->ne_cookie
);