3 .\" Copyright (c) 1996 Doug Rabson
5 .\" All rights reserved.
7 .\" This program is free software.
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
18 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
19 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 .Nd read contents of a directory
42 .Fn VOP_READDIR "struct vnode *vp" "struct uio *uio" "struct ucred *cred" "int *eofflag" "int *ncookies" "u_long **cookies"
44 Read directory entries.
45 .Bl -tag -width ncookies
47 The vnode of the directory.
49 Where to read the directory contents.
51 The caller's credentials.
53 Return end of file status
57 Number of directory cookies generated for NFS
61 Directory seek cookies generated for NFS
65 The directory contents are read into
68 If the on-disc data structures differ from this then they
71 The directory should be locked on entry and will still be locked on exit.
73 Zero is returned on success, otherwise an error code is returned.
75 If this is called from the NFS server, the extra arguments
83 should be set to TRUE if the end of the directory is reached while
85 The directory seek cookies are returned to the NFS client and may be used
86 later to restart a directory read part way through the directory.
87 There should be one cookie returned per directory entry.
89 the cookie should be the offset within the directory where the on-disc
90 version of the appropriate directory entry starts.
91 Memory for the cookies should be allocated using:
95 *ncookies = number of entries read;
97 malloc(*ncookies * sizeof(u_int), M_TEMP, M_WAITOK);
102 vop_readdir(struct vnode *vp, struct uio *uio, struct ucred *cred,
103 int *eofflag, int *ncookies, u_int **cookies)
109 * Remember the original offset to use later in generating cookies.
111 off = uio->uio_offset;
114 * Read directory contents starting at uio->uio_offset into buffer
119 if (!error && ncookies != NULL) {
120 struct dirent *dpStart;
121 struct dirent *dpEnd;
127 if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
128 panic("vop_readdir: unexpected uio from NFS server");
131 * Parse the stuff just read into the uio.
133 dpStart = (struct dirent *)
134 ((char *)uio->uio_iov->iov_base - (uio->uio_offset - off));
135 dpEnd = (struct dirent *) uio->uio_iov->iov_base;
138 * Count number of entries.
140 for (dp = dpStart, count = 0;
142 dp = (struct dirent *)((caddr_t) dp + dp->d_reclen))
145 cookiebuf = (u_int *) malloc(count * sizeof(u_int), M_TEMP, M_WAITOK);
146 for (dp = dpStart; cookiep = cookiebuf;
148 dp = (struct dirent *)((caddr_t) dp + dp->d_reclen)) {
150 *cookiep++ = (u_int) off;
153 *cookies = cookiebuf;
156 if (eofflag && uio->uio_offset is past the end of the directory) {
166 An attempt was made to read from an illegal offset in the directory.
168 A read error occurred while reading the directory.
173 This manual page was written by