Merge with 2.5.75.
[linux-2.6/linux-mips.git] / fs / freevxfs / vxfs_lookup.c
blob9c7f99f7bd01ce21489b6eba03dfa20317849760
1 /*
2 * Copyright (c) 2000-2001 Christoph Hellwig.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions, and the following disclaimer,
10 * without modification.
11 * 2. The name of the author may not be used to endorse or promote products
12 * derived from this software without specific prior written permission.
14 * Alternatively, this software may be distributed under the terms of the
15 * GNU General Public License ("GPL").
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21 * 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
27 * SUCH DAMAGE.
30 #ident "$Id: vxfs_lookup.c,v 1.21 2002/01/02 22:00:13 hch Exp hch $"
33 * Veritas filesystem driver - lookup and other directory related code.
35 #include <linux/fs.h>
36 #include <linux/time.h>
37 #include <linux/mm.h>
38 #include <linux/highmem.h>
39 #include <linux/kernel.h>
40 #include <linux/pagemap.h>
41 #include <linux/smp_lock.h>
43 #include "vxfs.h"
44 #include "vxfs_dir.h"
45 #include "vxfs_inode.h"
46 #include "vxfs_extern.h"
49 * Number of VxFS blocks per page.
51 #define VXFS_BLOCK_PER_PAGE(sbp) ((PAGE_CACHE_SIZE / (sbp)->s_blocksize))
54 static struct dentry * vxfs_lookup(struct inode *, struct dentry *, struct nameidata *);
55 static int vxfs_readdir(struct file *, void *, filldir_t);
57 struct inode_operations vxfs_dir_inode_ops = {
58 .lookup = vxfs_lookup,
61 struct file_operations vxfs_dir_operations = {
62 .readdir = vxfs_readdir,
66 static __inline__ u_long
67 dir_pages(struct inode *inode)
69 return (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
72 static __inline__ u_long
73 dir_blocks(struct inode *ip)
75 u_long bsize = ip->i_sb->s_blocksize;
76 return (ip->i_size + bsize - 1) & ~(bsize - 1);
80 * NOTE! unlike strncmp, vxfs_match returns 1 for success, 0 for failure.
82 * len <= VXFS_NAMELEN and de != NULL are guaranteed by caller.
84 static __inline__ int
85 vxfs_match(int len, const char * const name, struct vxfs_direct *de)
87 if (len != de->d_namelen)
88 return 0;
89 if (!de->d_ino)
90 return 0;
91 return !memcmp(name, de->d_name, len);
94 static __inline__ struct vxfs_direct *
95 vxfs_next_entry(struct vxfs_direct *de)
97 return ((struct vxfs_direct *)((char*)de + de->d_reclen));
101 * vxfs_find_entry - find a mathing directory entry for a dentry
102 * @ip: directory inode
103 * @dp: dentry for which we want to find a direct
104 * @ppp: gets filled with the page the return value sits in
106 * Description:
107 * vxfs_find_entry finds a &struct vxfs_direct for the VFS directory
108 * cache entry @dp. @ppp will be filled with the page the return
109 * value resides in.
111 * Returns:
112 * The wanted direct on success, else a NULL pointer.
114 static struct vxfs_direct *
115 vxfs_find_entry(struct inode *ip, struct dentry *dp, struct page **ppp)
117 u_long npages, page, nblocks, pblocks, block;
118 u_long bsize = ip->i_sb->s_blocksize;
119 const char *name = dp->d_name.name;
120 int namelen = dp->d_name.len;
122 npages = dir_pages(ip);
123 nblocks = dir_blocks(ip);
124 pblocks = VXFS_BLOCK_PER_PAGE(ip->i_sb);
126 for (page = 0; page < npages; page++) {
127 caddr_t kaddr;
128 struct page *pp;
130 pp = vxfs_get_page(ip->i_mapping, page);
131 if (IS_ERR(pp))
132 continue;
133 kaddr = (caddr_t)page_address(pp);
135 for (block = 0; block <= nblocks && block <= pblocks; block++) {
136 caddr_t baddr, limit;
137 struct vxfs_dirblk *dbp;
138 struct vxfs_direct *de;
140 baddr = kaddr + (block * bsize);
141 limit = baddr + bsize - VXFS_DIRLEN(1);
143 dbp = (struct vxfs_dirblk *)baddr;
144 de = (struct vxfs_direct *)(baddr + VXFS_DIRBLKOV(dbp));
146 for (; (caddr_t)de <= limit; de = vxfs_next_entry(de)) {
147 if (!de->d_reclen)
148 break;
149 if (!de->d_ino)
150 continue;
151 if (vxfs_match(namelen, name, de)) {
152 *ppp = pp;
153 return (de);
157 vxfs_put_page(pp);
160 return NULL;
164 * vxfs_inode_by_name - find inode number for dentry
165 * @dip: directory to search in
166 * @dp: dentry we seach for
168 * Description:
169 * vxfs_inode_by_name finds out the inode number of
170 * the path component described by @dp in @dip.
172 * Returns:
173 * The wanted inode number on success, else Zero.
175 static ino_t
176 vxfs_inode_by_name(struct inode *dip, struct dentry *dp)
178 struct vxfs_direct *de;
179 struct page *pp;
180 ino_t ino = 0;
182 de = vxfs_find_entry(dip, dp, &pp);
183 if (de) {
184 ino = de->d_ino;
185 kunmap(pp);
186 page_cache_release(pp);
189 return (ino);
193 * vxfs_lookup - lookup pathname component
194 * @dip: dir in which we lookup
195 * @dp: dentry we lookup
196 * @nd: lookup nameidata
198 * Description:
199 * vxfs_lookup tries to lookup the pathname component described
200 * by @dp in @dip.
202 * Returns:
203 * A NULL-pointer on success, else an negative error code encoded
204 * in the return pointer.
206 static struct dentry *
207 vxfs_lookup(struct inode *dip, struct dentry *dp, struct nameidata *nd)
209 struct inode *ip = NULL;
210 ino_t ino;
212 if (dp->d_name.len > VXFS_NAMELEN)
213 return ERR_PTR(-ENAMETOOLONG);
215 lock_kernel();
216 ino = vxfs_inode_by_name(dip, dp);
217 if (ino) {
218 ip = iget(dip->i_sb, ino);
219 if (!ip) {
220 unlock_kernel();
221 return ERR_PTR(-EACCES);
224 unlock_kernel();
225 d_add(dp, ip);
226 return NULL;
230 * vxfs_readdir - read a directory
231 * @fp: the directory to read
232 * @retp: return buffer
233 * @filler: filldir callback
235 * Description:
236 * vxfs_readdir fills @retp with directory entries from @fp
237 * using the VFS supplied callback @filler.
239 * Returns:
240 * Zero.
242 static int
243 vxfs_readdir(struct file *fp, void *retp, filldir_t filler)
245 struct inode *ip = fp->f_dentry->d_inode;
246 struct super_block *sbp = ip->i_sb;
247 u_long bsize = sbp->s_blocksize;
248 u_long page, npages, block, pblocks, nblocks, offset;
249 loff_t pos;
251 switch ((long)fp->f_pos) {
252 case 0:
253 if (filler(retp, ".", 1, fp->f_pos, ip->i_ino, DT_DIR) < 0)
254 goto out;
255 fp->f_pos++;
256 /* fallthrough */
257 case 1:
258 if (filler(retp, "..", 2, fp->f_pos, VXFS_INO(ip)->vii_dotdot, DT_DIR) < 0)
259 goto out;
260 fp->f_pos++;
261 /* fallthrough */
264 pos = fp->f_pos - 2;
266 if (pos > VXFS_DIRROUND(ip->i_size)) {
267 unlock_kernel();
268 return 0;
271 npages = dir_pages(ip);
272 nblocks = dir_blocks(ip);
273 pblocks = VXFS_BLOCK_PER_PAGE(sbp);
275 page = pos >> PAGE_CACHE_SHIFT;
276 offset = pos & ~PAGE_CACHE_MASK;
277 block = (u_long)(pos >> sbp->s_blocksize_bits) % pblocks;
279 for (; page < npages; page++, block = 0) {
280 caddr_t kaddr;
281 struct page *pp;
283 pp = vxfs_get_page(ip->i_mapping, page);
284 if (IS_ERR(pp))
285 continue;
286 kaddr = (caddr_t)page_address(pp);
288 for (; block <= nblocks && block <= pblocks; block++) {
289 caddr_t baddr, limit;
290 struct vxfs_dirblk *dbp;
291 struct vxfs_direct *de;
293 baddr = kaddr + (block * bsize);
294 limit = baddr + bsize - VXFS_DIRLEN(1);
296 dbp = (struct vxfs_dirblk *)baddr;
297 de = (struct vxfs_direct *)
298 (offset ?
299 (kaddr + offset) :
300 (baddr + VXFS_DIRBLKOV(dbp)));
302 for (; (caddr_t)de <= limit; de = vxfs_next_entry(de)) {
303 int over;
305 if (!de->d_reclen)
306 break;
307 if (!de->d_ino)
308 continue;
310 offset = (caddr_t)de - kaddr;
311 over = filler(retp, de->d_name, de->d_namelen,
312 ((page << PAGE_CACHE_SHIFT) | offset) + 2,
313 de->d_ino, DT_UNKNOWN);
314 if (over) {
315 vxfs_put_page(pp);
316 goto done;
319 offset = 0;
321 vxfs_put_page(pp);
322 offset = 0;
325 done:
326 fp->f_pos = ((page << PAGE_CACHE_SHIFT) | offset) + 2;
327 out:
328 unlock_kernel();
329 return 0;