freevxfs: implement ->alloc_inode and ->destroy_inode
[linux-2.6-block.git] / fs / freevxfs / vxfs_lookup.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2000-2001 Christoph Hellwig.
3 * All rights reserved.
4 *
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.
13 *
14 * Alternatively, this software may be distributed under the terms of the
15 * GNU General Public License ("GPL").
16 *
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.
28 */
29
30/*
31 * Veritas filesystem driver - lookup and other directory related code.
32 */
33#include <linux/fs.h>
34#include <linux/time.h>
35#include <linux/mm.h>
36#include <linux/highmem.h>
37#include <linux/kernel.h>
38#include <linux/pagemap.h>
1da177e4
LT
39
40#include "vxfs.h"
41#include "vxfs_dir.h"
42#include "vxfs_inode.h"
43#include "vxfs_extern.h"
44
45/*
46 * Number of VxFS blocks per page.
47 */
09cbfeaf 48#define VXFS_BLOCK_PER_PAGE(sbp) ((PAGE_SIZE / (sbp)->s_blocksize))
1da177e4
LT
49
50
00cd8dd3 51static struct dentry * vxfs_lookup(struct inode *, struct dentry *, unsigned int);
9b5d5a17 52static int vxfs_readdir(struct file *, struct dir_context *);
1da177e4 53
754661f1 54const struct inode_operations vxfs_dir_inode_ops = {
1da177e4
LT
55 .lookup = vxfs_lookup,
56};
57
4b6f5d20 58const struct file_operations vxfs_dir_operations = {
ca572727
B
59 .llseek = generic_file_llseek,
60 .read = generic_read_dir,
c51da20c 61 .iterate_shared = vxfs_readdir,
1da177e4
LT
62};
63
8cb681b9 64static inline u_long
1da177e4
LT
65dir_blocks(struct inode *ip)
66{
67 u_long bsize = ip->i_sb->s_blocksize;
68 return (ip->i_size + bsize - 1) & ~(bsize - 1);
69}
70
71/*
72 * NOTE! unlike strncmp, vxfs_match returns 1 for success, 0 for failure.
73 *
74 * len <= VXFS_NAMELEN and de != NULL are guaranteed by caller.
75 */
8cb681b9 76static inline int
0d83f7fc
KB
77vxfs_match(struct vxfs_sb_info *sbi, int len, const char *const name,
78 struct vxfs_direct *de)
1da177e4 79{
0d83f7fc 80 if (len != fs16_to_cpu(sbi, de->d_namelen))
1da177e4
LT
81 return 0;
82 if (!de->d_ino)
83 return 0;
84 return !memcmp(name, de->d_name, len);
85}
86
8cb681b9 87static inline struct vxfs_direct *
0d83f7fc 88vxfs_next_entry(struct vxfs_sb_info *sbi, struct vxfs_direct *de)
1da177e4 89{
0d83f7fc
KB
90 return ((struct vxfs_direct *)
91 ((char *)de + fs16_to_cpu(sbi, de->d_reclen)));
1da177e4
LT
92}
93
94/**
95 * vxfs_find_entry - find a mathing directory entry for a dentry
96 * @ip: directory inode
97 * @dp: dentry for which we want to find a direct
98 * @ppp: gets filled with the page the return value sits in
99 *
100 * Description:
101 * vxfs_find_entry finds a &struct vxfs_direct for the VFS directory
102 * cache entry @dp. @ppp will be filled with the page the return
103 * value resides in.
104 *
105 * Returns:
106 * The wanted direct on success, else a NULL pointer.
107 */
108static struct vxfs_direct *
109vxfs_find_entry(struct inode *ip, struct dentry *dp, struct page **ppp)
110{
0d83f7fc 111 struct vxfs_sb_info *sbi = VXFS_SBI(ip->i_sb);
1da177e4
LT
112 u_long npages, page, nblocks, pblocks, block;
113 u_long bsize = ip->i_sb->s_blocksize;
114 const char *name = dp->d_name.name;
115 int namelen = dp->d_name.len;
116
117 npages = dir_pages(ip);
118 nblocks = dir_blocks(ip);
119 pblocks = VXFS_BLOCK_PER_PAGE(ip->i_sb);
120
121 for (page = 0; page < npages; page++) {
122 caddr_t kaddr;
123 struct page *pp;
124
125 pp = vxfs_get_page(ip->i_mapping, page);
126 if (IS_ERR(pp))
127 continue;
128 kaddr = (caddr_t)page_address(pp);
129
130 for (block = 0; block <= nblocks && block <= pblocks; block++) {
131 caddr_t baddr, limit;
132 struct vxfs_dirblk *dbp;
133 struct vxfs_direct *de;
134
135 baddr = kaddr + (block * bsize);
136 limit = baddr + bsize - VXFS_DIRLEN(1);
137
138 dbp = (struct vxfs_dirblk *)baddr;
0d83f7fc
KB
139 de = (struct vxfs_direct *)
140 (baddr + VXFS_DIRBLKOV(sbi, dbp));
1da177e4 141
0d83f7fc
KB
142 for (; (caddr_t)de <= limit;
143 de = vxfs_next_entry(sbi, de)) {
1da177e4
LT
144 if (!de->d_reclen)
145 break;
146 if (!de->d_ino)
147 continue;
0d83f7fc 148 if (vxfs_match(sbi, namelen, name, de)) {
1da177e4
LT
149 *ppp = pp;
150 return (de);
151 }
152 }
153 }
154 vxfs_put_page(pp);
155 }
156
157 return NULL;
158}
159
160/**
161 * vxfs_inode_by_name - find inode number for dentry
162 * @dip: directory to search in
25985edc 163 * @dp: dentry we search for
1da177e4
LT
164 *
165 * Description:
166 * vxfs_inode_by_name finds out the inode number of
167 * the path component described by @dp in @dip.
168 *
169 * Returns:
170 * The wanted inode number on success, else Zero.
171 */
172static ino_t
173vxfs_inode_by_name(struct inode *dip, struct dentry *dp)
174{
175 struct vxfs_direct *de;
176 struct page *pp;
177 ino_t ino = 0;
178
179 de = vxfs_find_entry(dip, dp, &pp);
180 if (de) {
0d83f7fc 181 ino = fs32_to_cpu(VXFS_SBI(dip->i_sb), de->d_ino);
1da177e4 182 kunmap(pp);
09cbfeaf 183 put_page(pp);
1da177e4
LT
184 }
185
186 return (ino);
187}
188
189/**
190 * vxfs_lookup - lookup pathname component
191 * @dip: dir in which we lookup
192 * @dp: dentry we lookup
ddae82d8 193 * @flags: lookup flags
1da177e4
LT
194 *
195 * Description:
196 * vxfs_lookup tries to lookup the pathname component described
197 * by @dp in @dip.
198 *
199 * Returns:
eaf593c3 200 * A NULL-pointer on success, else a negative error code encoded
1da177e4
LT
201 * in the return pointer.
202 */
203static struct dentry *
00cd8dd3 204vxfs_lookup(struct inode *dip, struct dentry *dp, unsigned int flags)
1da177e4
LT
205{
206 struct inode *ip = NULL;
207 ino_t ino;
208
209 if (dp->d_name.len > VXFS_NAMELEN)
210 return ERR_PTR(-ENAMETOOLONG);
211
1da177e4
LT
212 ino = vxfs_inode_by_name(dip, dp);
213 if (ino) {
d0b07948 214 ip = vxfs_iget(dip->i_sb, ino);
6d7bccc2 215 if (IS_ERR(ip))
d0b07948 216 return ERR_CAST(ip);
1da177e4 217 }
1da177e4
LT
218 d_add(dp, ip);
219 return NULL;
220}
221
222/**
223 * vxfs_readdir - read a directory
224 * @fp: the directory to read
225 * @retp: return buffer
226 * @filler: filldir callback
227 *
228 * Description:
229 * vxfs_readdir fills @retp with directory entries from @fp
230 * using the VFS supplied callback @filler.
231 *
232 * Returns:
233 * Zero.
234 */
235static int
9b5d5a17 236vxfs_readdir(struct file *fp, struct dir_context *ctx)
1da177e4 237{
496ad9aa 238 struct inode *ip = file_inode(fp);
1da177e4 239 struct super_block *sbp = ip->i_sb;
0d83f7fc 240 struct vxfs_sb_info *sbi = VXFS_SBI(sbp);
1da177e4
LT
241 u_long bsize = sbp->s_blocksize;
242 u_long page, npages, block, pblocks, nblocks, offset;
243 loff_t pos;
244
0d83f7fc 245
9b5d5a17
AV
246 if (ctx->pos == 0) {
247 if (!dir_emit_dot(fp, ctx))
248 return 0;
249 ctx->pos = 1;
1da177e4 250 }
9b5d5a17
AV
251 if (ctx->pos == 1) {
252 if (!dir_emit(ctx, "..", 2, VXFS_INO(ip)->vii_dotdot, DT_DIR))
253 return 0;
254 ctx->pos = 2;
255 }
256 pos = ctx->pos - 2;
1da177e4 257
6d7bccc2 258 if (pos > VXFS_DIRROUND(ip->i_size))
1da177e4 259 return 0;
1da177e4
LT
260
261 npages = dir_pages(ip);
262 nblocks = dir_blocks(ip);
263 pblocks = VXFS_BLOCK_PER_PAGE(sbp);
264
09cbfeaf
KS
265 page = pos >> PAGE_SHIFT;
266 offset = pos & ~PAGE_MASK;
1da177e4
LT
267 block = (u_long)(pos >> sbp->s_blocksize_bits) % pblocks;
268
269 for (; page < npages; page++, block = 0) {
9b5d5a17 270 char *kaddr;
1da177e4
LT
271 struct page *pp;
272
273 pp = vxfs_get_page(ip->i_mapping, page);
274 if (IS_ERR(pp))
275 continue;
9b5d5a17 276 kaddr = (char *)page_address(pp);
1da177e4
LT
277
278 for (; block <= nblocks && block <= pblocks; block++) {
9b5d5a17 279 char *baddr, *limit;
1da177e4
LT
280 struct vxfs_dirblk *dbp;
281 struct vxfs_direct *de;
282
283 baddr = kaddr + (block * bsize);
284 limit = baddr + bsize - VXFS_DIRLEN(1);
285
286 dbp = (struct vxfs_dirblk *)baddr;
287 de = (struct vxfs_direct *)
288 (offset ?
289 (kaddr + offset) :
0d83f7fc 290 (baddr + VXFS_DIRBLKOV(sbi, dbp)));
1da177e4 291
0d83f7fc
KB
292 for (; (char *)de <= limit;
293 de = vxfs_next_entry(sbi, de)) {
1da177e4
LT
294 if (!de->d_reclen)
295 break;
296 if (!de->d_ino)
297 continue;
298
9b5d5a17 299 offset = (char *)de - kaddr;
09cbfeaf 300 ctx->pos = ((page << PAGE_SHIFT) | offset) + 2;
0d83f7fc
KB
301 if (!dir_emit(ctx, de->d_name,
302 fs16_to_cpu(sbi, de->d_namelen),
303 fs32_to_cpu(sbi, de->d_ino),
304 DT_UNKNOWN)) {
1da177e4 305 vxfs_put_page(pp);
9b5d5a17 306 return 0;
1da177e4
LT
307 }
308 }
309 offset = 0;
310 }
311 vxfs_put_page(pp);
312 offset = 0;
313 }
09cbfeaf 314 ctx->pos = ((page << PAGE_SHIFT) | offset) + 2;
1da177e4
LT
315 return 0;
316}