blob: 69fbbea75f1b941ba7ee6024b61e88cd23f754fd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*
3 * Directory operations for Coda filesystem
4 * Original version: (C) 1996 P. Braam and M. Callahan
5 * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University
6 *
7 * Carnegie Mellon encourages users to contribute improvements to
8 * the Coda project. Contact Peter Braam (coda@cs.cmu.edu).
9 */
10
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/time.h>
14#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/file.h>
17#include <linux/stat.h>
18#include <linux/errno.h>
19#include <linux/string.h>
20#include <linux/smp_lock.h>
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040021#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/uaccess.h>
24
25#include <linux/coda.h>
26#include <linux/coda_linux.h>
27#include <linux/coda_psdev.h>
28#include <linux/coda_fs_i.h>
29#include <linux/coda_cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Adrian Bunkc98d8cf2006-03-24 03:15:53 -080031#include "coda_int.h"
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* dir inode-ops */
34static int coda_create(struct inode *dir, struct dentry *new, int mode, struct nameidata *nd);
35static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, struct nameidata *nd);
36static int coda_link(struct dentry *old_dentry, struct inode *dir_inode,
37 struct dentry *entry);
38static int coda_unlink(struct inode *dir_inode, struct dentry *entry);
39static int coda_symlink(struct inode *dir_inode, struct dentry *entry,
40 const char *symname);
41static int coda_mkdir(struct inode *dir_inode, struct dentry *entry, int mode);
42static int coda_rmdir(struct inode *dir_inode, struct dentry *entry);
43static int coda_rename(struct inode *old_inode, struct dentry *old_dentry,
44 struct inode *new_inode, struct dentry *new_dentry);
45
46/* dir file-ops */
Jan Harkes97875252007-07-19 01:48:47 -070047static int coda_readdir(struct file *file, void *buf, filldir_t filldir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/* dentry ops */
50static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd);
51static int coda_dentry_delete(struct dentry *);
52
53/* support routines */
Jan Harkes97875252007-07-19 01:48:47 -070054static int coda_venus_readdir(struct file *coda_file, void *buf,
55 filldir_t filldir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* same as fs/bad_inode.c */
58static int coda_return_EIO(void)
59{
60 return -EIO;
61}
62#define CODA_EIO_ERROR ((void *) (coda_return_EIO))
63
Al Viroe16404e2009-02-20 05:55:13 +000064static const struct dentry_operations coda_dentry_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 .d_revalidate = coda_dentry_revalidate,
67 .d_delete = coda_dentry_delete,
68};
69
Arjan van de Ven754661f2007-02-12 00:55:38 -080070const struct inode_operations coda_dir_inode_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 .create = coda_create,
73 .lookup = coda_lookup,
74 .link = coda_link,
75 .unlink = coda_unlink,
76 .symlink = coda_symlink,
77 .mkdir = coda_mkdir,
78 .rmdir = coda_rmdir,
79 .mknod = CODA_EIO_ERROR,
80 .rename = coda_rename,
81 .permission = coda_permission,
82 .getattr = coda_getattr,
83 .setattr = coda_setattr,
84};
85
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080086const struct file_operations coda_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .llseek = generic_file_llseek,
88 .read = generic_read_dir,
89 .readdir = coda_readdir,
90 .open = coda_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .release = coda_release,
92 .fsync = coda_fsync,
93};
94
95
96/* inode operations for directories */
97/* access routines: lookup, readlink, permission */
98static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry, struct nameidata *nd)
99{
Jan Harkesed36f722007-07-19 01:48:49 -0700100 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct CodaFid resfid = { { 0, } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int type = 0;
103 int error = 0;
104 const char *name = entry->d_name.name;
105 size_t length = entry->d_name.len;
Jan Harkesed36f722007-07-19 01:48:49 -0700106
107 if (length > CODA_MAXNAMLEN) {
108 printk(KERN_ERR "name too long: lookup, %s (%*s)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 coda_i2s(dir), (int)length, name);
110 return ERR_PTR(-ENAMETOOLONG);
111 }
112
Jan Harkesed36f722007-07-19 01:48:49 -0700113 /* control object, create inode on the fly */
114 if (coda_isroot(dir) && coda_iscontrol(name, length)) {
115 error = coda_cnode_makectl(&inode, dir->i_sb);
116 type = CODA_NOCACHE;
117 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119
Jan Harkesed36f722007-07-19 01:48:49 -0700120 lock_kernel();
121
122 error = venus_lookup(dir->i_sb, coda_i2f(dir), name, length,
123 &type, &resfid);
124 if (!error)
125 error = coda_cnode_make(&inode, &resfid, dir->i_sb);
126
127 unlock_kernel();
128
129 if (error && error != -ENOENT)
130 return ERR_PTR(error);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 entry->d_op = &coda_dentry_operations;
Jan Harkesed36f722007-07-19 01:48:49 -0700134
135 if (inode && (type & CODA_NOCACHE))
136 coda_flag_inode(inode, C_VATTR | C_PURGE);
137
138 return d_splice_alias(inode, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141
Al Viroe6305c42008-07-15 21:03:57 -0400142int coda_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 int error = 0;
Al Viroe6305c42008-07-15 21:03:57 -0400145
146 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 if (!mask)
149 return 0;
150
Miklos Szeredif696a362008-07-31 13:41:58 +0200151 if ((mask & MAY_EXEC) && !execute_ok(inode))
152 return -EACCES;
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 lock_kernel();
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (coda_cache_check(inode, mask))
157 goto out;
158
159 error = venus_access(inode->i_sb, coda_i2f(inode), mask);
160
161 if (!error)
162 coda_cache_enter(inode, mask);
163
164 out:
165 unlock_kernel();
Jan Harkesd7289002007-07-19 01:48:43 -0700166 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169
Jan Harkesd7289002007-07-19 01:48:43 -0700170static inline void coda_dir_update_mtime(struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172#ifdef REQUERY_VENUS_FOR_MTIME
173 /* invalidate the directory cnode's attributes so we refetch the
174 * attributes from venus next time the inode is referenced */
175 coda_flag_inode(dir, C_VATTR);
176#else
177 /* optimistically we can also act as if our nose bleeds. The
Jan Harkesd7289002007-07-19 01:48:43 -0700178 * granularity of the mtime is coarse anyways so we might actually be
179 * right most of the time. Note: we only do this for directories. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
181#endif
Jan Harkesd7289002007-07-19 01:48:43 -0700182}
183
184/* we have to wrap inc_nlink/drop_nlink because sometimes userspace uses a
185 * trick to fool GNU find's optimizations. If we can't be sure of the link
186 * (because of volume mount points) we set i_nlink to 1 which forces find
187 * to consider every child as a possible directory. We should also never
188 * see an increment or decrement for deleted directories where i_nlink == 0 */
189static inline void coda_dir_inc_nlink(struct inode *dir)
190{
191 if (dir->i_nlink >= 2)
192 inc_nlink(dir);
193}
194
195static inline void coda_dir_drop_nlink(struct inode *dir)
196{
197 if (dir->i_nlink > 2)
198 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201/* creation routines: create, mknod, mkdir, link, symlink */
202static int coda_create(struct inode *dir, struct dentry *de, int mode, struct nameidata *nd)
203{
204 int error=0;
205 const char *name=de->d_name.name;
206 int length=de->d_name.len;
207 struct inode *inode;
208 struct CodaFid newfid;
209 struct coda_vattr attrs;
210
211 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if (coda_isroot(dir) && coda_iscontrol(name, length)) {
214 unlock_kernel();
215 return -EPERM;
216 }
217
218 error = venus_create(dir->i_sb, coda_i2f(dir), name, length,
219 0, mode, &newfid, &attrs);
220
221 if ( error ) {
222 unlock_kernel();
223 d_drop(de);
224 return error;
225 }
226
227 inode = coda_iget(dir->i_sb, &newfid, &attrs);
228 if ( IS_ERR(inode) ) {
229 unlock_kernel();
230 d_drop(de);
231 return PTR_ERR(inode);
232 }
233
234 /* invalidate the directory cnode's attributes */
Jan Harkesd7289002007-07-19 01:48:43 -0700235 coda_dir_update_mtime(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unlock_kernel();
237 d_instantiate(de, inode);
Jan Harkesd7289002007-07-19 01:48:43 -0700238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241static int coda_mkdir(struct inode *dir, struct dentry *de, int mode)
242{
243 struct inode *inode;
244 struct coda_vattr attrs;
245 const char *name = de->d_name.name;
246 int len = de->d_name.len;
247 int error;
248 struct CodaFid newfid;
249
250 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (coda_isroot(dir) && coda_iscontrol(name, len)) {
253 unlock_kernel();
254 return -EPERM;
255 }
256
257 attrs.va_mode = mode;
258 error = venus_mkdir(dir->i_sb, coda_i2f(dir),
259 name, len, &newfid, &attrs);
260
261 if ( error ) {
262 unlock_kernel();
263 d_drop(de);
264 return error;
265 }
266
267 inode = coda_iget(dir->i_sb, &newfid, &attrs);
268 if ( IS_ERR(inode) ) {
269 unlock_kernel();
270 d_drop(de);
271 return PTR_ERR(inode);
272 }
Jan Harkesd7289002007-07-19 01:48:43 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* invalidate the directory cnode's attributes */
Jan Harkesd7289002007-07-19 01:48:43 -0700275 coda_dir_inc_nlink(dir);
276 coda_dir_update_mtime(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 unlock_kernel();
278 d_instantiate(de, inode);
Jan Harkesd7289002007-07-19 01:48:43 -0700279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282/* try to make de an entry in dir_inodde linked to source_de */
283static int coda_link(struct dentry *source_de, struct inode *dir_inode,
284 struct dentry *de)
285{
286 struct inode *inode = source_de->d_inode;
287 const char * name = de->d_name.name;
288 int len = de->d_name.len;
289 int error;
290
291 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) {
294 unlock_kernel();
295 return -EPERM;
296 }
297
298 error = venus_link(dir_inode->i_sb, coda_i2f(inode),
299 coda_i2f(dir_inode), (const char *)name, len);
300
Jan Harkesd7289002007-07-19 01:48:43 -0700301 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 d_drop(de);
303 goto out;
304 }
305
Jan Harkesd7289002007-07-19 01:48:43 -0700306 coda_dir_update_mtime(dir_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 atomic_inc(&inode->i_count);
308 d_instantiate(de, inode);
Dave Hansend8c76e62006-09-30 23:29:04 -0700309 inc_nlink(inode);
Jan Harkesd7289002007-07-19 01:48:43 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311out:
312 unlock_kernel();
313 return(error);
314}
315
316
317static int coda_symlink(struct inode *dir_inode, struct dentry *de,
318 const char *symname)
319{
320 const char *name = de->d_name.name;
321 int len = de->d_name.len;
322 int symlen;
Jan Harkes3cf01f22007-07-19 01:48:51 -0700323 int error = 0;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) {
328 unlock_kernel();
329 return -EPERM;
330 }
331
332 symlen = strlen(symname);
333 if ( symlen > CODA_MAXPATHLEN ) {
334 unlock_kernel();
335 return -ENAMETOOLONG;
336 }
337
338 /*
339 * This entry is now negative. Since we do not create
Jan Harkesd7289002007-07-19 01:48:43 -0700340 * an inode for the entry we have to drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 */
342 d_drop(de);
Jan Harkesd7289002007-07-19 01:48:43 -0700343 error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 symname, symlen);
345
346 /* mtime is no good anymore */
347 if ( !error )
Jan Harkesd7289002007-07-19 01:48:43 -0700348 coda_dir_update_mtime(dir_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 unlock_kernel();
Jan Harkesd7289002007-07-19 01:48:43 -0700351 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/* destruction routines: unlink, rmdir */
Harvey Harrison9fe76c72008-04-29 00:58:44 -0700355static int coda_unlink(struct inode *dir, struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 int error;
358 const char *name = de->d_name.name;
359 int len = de->d_name.len;
360
361 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jan Harkesd7289002007-07-19 01:48:43 -0700363 error = venus_remove(dir->i_sb, coda_i2f(dir), name, len);
364 if ( error ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 unlock_kernel();
Jan Harkesd7289002007-07-19 01:48:43 -0700366 return error;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Jan Harkesd7289002007-07-19 01:48:43 -0700369 coda_dir_update_mtime(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700370 drop_nlink(de->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 unlock_kernel();
Jan Harkesd7289002007-07-19 01:48:43 -0700372 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Harvey Harrison9fe76c72008-04-29 00:58:44 -0700375static int coda_rmdir(struct inode *dir, struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 const char *name = de->d_name.name;
378 int len = de->d_name.len;
Jan Harkes8c6d2152007-07-19 01:48:43 -0700379 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len);
Jan Harkes8c6d2152007-07-19 01:48:43 -0700384 if (!error) {
385 /* VFS may delete the child */
386 if (de->d_inode)
387 de->d_inode->i_nlink = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Jan Harkes8c6d2152007-07-19 01:48:43 -0700389 /* fix the link count of the parent */
390 coda_dir_drop_nlink(dir);
391 coda_dir_update_mtime(dir);
Jan Harkesd7289002007-07-19 01:48:43 -0700392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 unlock_kernel();
Jan Harkes8c6d2152007-07-19 01:48:43 -0700394 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397/* rename */
Jan Harkesd7289002007-07-19 01:48:43 -0700398static int coda_rename(struct inode *old_dir, struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct inode *new_dir, struct dentry *new_dentry)
400{
Jan Harkesd7289002007-07-19 01:48:43 -0700401 const char *old_name = old_dentry->d_name.name;
402 const char *new_name = new_dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 int old_length = old_dentry->d_name.len;
404 int new_length = new_dentry->d_name.len;
Jan Harkesd7289002007-07-19 01:48:43 -0700405 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Jan Harkesd7289002007-07-19 01:48:43 -0700409 error = venus_rename(old_dir->i_sb, coda_i2f(old_dir),
410 coda_i2f(new_dir), old_length, new_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 (const char *) old_name, (const char *)new_name);
412
Jan Harkesd7289002007-07-19 01:48:43 -0700413 if ( !error ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if ( new_dentry->d_inode ) {
Jan Harkesd7289002007-07-19 01:48:43 -0700415 if ( S_ISDIR(new_dentry->d_inode->i_mode) ) {
416 coda_dir_drop_nlink(old_dir);
417 coda_dir_inc_nlink(new_dir);
418 }
419 coda_dir_update_mtime(old_dir);
420 coda_dir_update_mtime(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 coda_flag_inode(new_dentry->d_inode, C_VATTR);
422 } else {
423 coda_flag_inode(old_dir, C_VATTR);
424 coda_flag_inode(new_dir, C_VATTR);
Jan Harkesd7289002007-07-19 01:48:43 -0700425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 unlock_kernel();
428
429 return error;
430}
431
432
433/* file operations for directories */
Harvey Harrison9fe76c72008-04-29 00:58:44 -0700434static int coda_readdir(struct file *coda_file, void *buf, filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct coda_file_info *cfi;
437 struct file *host_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int ret;
439
440 cfi = CODA_FTOC(coda_file);
441 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
442 host_file = cfi->cfi_container;
443
Jan Harkes97875252007-07-19 01:48:47 -0700444 if (!host_file->f_op)
445 return -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Jan Harkes97875252007-07-19 01:48:47 -0700447 if (host_file->f_op->readdir)
448 {
449 /* potemkin case: we were handed a directory inode.
450 * We can't use vfs_readdir because we have to keep the file
451 * position in sync between the coda_file and the host_file.
452 * and as such we need grab the inode mutex. */
453 struct inode *host_inode = host_file->f_path.dentry->d_inode;
454
455 mutex_lock(&host_inode->i_mutex);
456 host_file->f_pos = coda_file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 ret = -ENOENT;
459 if (!IS_DEADDIR(host_inode)) {
Jan Harkes97875252007-07-19 01:48:47 -0700460 ret = host_file->f_op->readdir(host_file, buf, filldir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 file_accessed(host_file);
462 }
Jan Harkes97875252007-07-19 01:48:47 -0700463
464 coda_file->f_pos = host_file->f_pos;
465 mutex_unlock(&host_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Jan Harkes97875252007-07-19 01:48:47 -0700467 else /* Venus: we must read Venus dirents from a file */
468 ret = coda_venus_readdir(coda_file, buf, filldir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 return ret;
471}
472
473static inline unsigned int CDT2DT(unsigned char cdt)
474{
475 unsigned int dt;
476
477 switch(cdt) {
478 case CDT_UNKNOWN: dt = DT_UNKNOWN; break;
479 case CDT_FIFO: dt = DT_FIFO; break;
480 case CDT_CHR: dt = DT_CHR; break;
481 case CDT_DIR: dt = DT_DIR; break;
482 case CDT_BLK: dt = DT_BLK; break;
483 case CDT_REG: dt = DT_REG; break;
484 case CDT_LNK: dt = DT_LNK; break;
485 case CDT_SOCK: dt = DT_SOCK; break;
486 case CDT_WHT: dt = DT_WHT; break;
487 default: dt = DT_UNKNOWN; break;
488 }
489 return dt;
490}
491
492/* support routines */
Jan Harkes97875252007-07-19 01:48:47 -0700493static int coda_venus_readdir(struct file *coda_file, void *buf,
494 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 int result = 0; /* # of entries returned */
Jan Harkes97875252007-07-19 01:48:47 -0700497 struct coda_file_info *cfi;
498 struct coda_inode_info *cii;
499 struct file *host_file;
500 struct dentry *de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct venus_dirent *vdir;
502 unsigned long vdir_size =
503 (unsigned long)(&((struct venus_dirent *)0)->d_name);
504 unsigned int type;
505 struct qstr name;
506 ino_t ino;
Jan Harkes97875252007-07-19 01:48:47 -0700507 int ret;
508
509 cfi = CODA_FTOC(coda_file);
510 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
511 host_file = cfi->cfi_container;
512
513 de = coda_file->f_path.dentry;
514 cii = ITOC(de->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700516 vdir = kmalloc(sizeof(*vdir), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (!vdir) return -ENOMEM;
518
Al Viro5f47c7e2007-07-20 00:23:31 +0100519 if (coda_file->f_pos == 0) {
Jan Harkes97875252007-07-19 01:48:47 -0700520 ret = filldir(buf, ".", 1, 0, de->d_inode->i_ino, DT_DIR);
Al Viro5f47c7e2007-07-20 00:23:31 +0100521 if (ret < 0)
522 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 result++;
Jan Harkes97875252007-07-19 01:48:47 -0700524 coda_file->f_pos++;
Al Viro5f47c7e2007-07-20 00:23:31 +0100525 }
526 if (coda_file->f_pos == 1) {
Jan Harkes97875252007-07-19 01:48:47 -0700527 ret = filldir(buf, "..", 2, 1, de->d_parent->d_inode->i_ino, DT_DIR);
Al Viro5f47c7e2007-07-20 00:23:31 +0100528 if (ret < 0)
529 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 result++;
Jan Harkes97875252007-07-19 01:48:47 -0700531 coda_file->f_pos++;
Al Viro5f47c7e2007-07-20 00:23:31 +0100532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 while (1) {
534 /* read entries from the directory file */
Jan Harkes97875252007-07-19 01:48:47 -0700535 ret = kernel_read(host_file, coda_file->f_pos - 2, (char *)vdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 sizeof(*vdir));
537 if (ret < 0) {
Jan Harkes97875252007-07-19 01:48:47 -0700538 printk(KERN_ERR "coda readdir: read dir %s failed %d\n",
539 coda_f2s(&cii->c_fid), ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 break;
541 }
542 if (ret == 0) break; /* end of directory file reached */
543
544 /* catch truncated reads */
545 if (ret < vdir_size || ret < vdir_size + vdir->d_namlen) {
Jan Harkes97875252007-07-19 01:48:47 -0700546 printk(KERN_ERR "coda readdir: short read on %s\n",
547 coda_f2s(&cii->c_fid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 ret = -EBADF;
549 break;
550 }
551 /* validate whether the directory file actually makes sense */
552 if (vdir->d_reclen < vdir_size + vdir->d_namlen) {
Jan Harkes97875252007-07-19 01:48:47 -0700553 printk(KERN_ERR "coda readdir: invalid dir %s\n",
554 coda_f2s(&cii->c_fid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 ret = -EBADF;
556 break;
557 }
558
559 name.len = vdir->d_namlen;
560 name.name = vdir->d_name;
561
562 /* Make sure we skip '.' and '..', we already got those */
563 if (name.name[0] == '.' && (name.len == 1 ||
564 (vdir->d_name[1] == '.' && name.len == 2)))
565 vdir->d_fileno = name.len = 0;
566
567 /* skip null entries */
568 if (vdir->d_fileno && name.len) {
569 /* try to look up this entry in the dcache, that way
570 * userspace doesn't have to worry about breaking
571 * getcwd by having mismatched inode numbers for
572 * internal volume mountpoints. */
Jan Harkes97875252007-07-19 01:48:47 -0700573 ino = find_inode_number(de, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (!ino) ino = vdir->d_fileno;
575
576 type = CDT2DT(vdir->d_type);
Jan Harkes97875252007-07-19 01:48:47 -0700577 ret = filldir(buf, name.name, name.len,
578 coda_file->f_pos, ino, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* failure means no space for filling in this round */
580 if (ret < 0) break;
581 result++;
582 }
583 /* we'll always have progress because d_reclen is unsigned and
584 * we've already established it is non-zero. */
Jan Harkes97875252007-07-19 01:48:47 -0700585 coda_file->f_pos += vdir->d_reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
Al Viro5f47c7e2007-07-20 00:23:31 +0100587out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 kfree(vdir);
589 return result ? result : ret;
590}
591
592/* called when a cache lookup succeeds */
593static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd)
594{
595 struct inode *inode = de->d_inode;
596 struct coda_inode_info *cii;
597
598 if (!inode)
599 return 1;
600 lock_kernel();
601 if (coda_isroot(inode))
602 goto out;
603 if (is_bad_inode(inode))
604 goto bad;
605
606 cii = ITOC(de->d_inode);
607 if (!(cii->c_flags & (C_PURGE | C_FLUSH)))
608 goto out;
609
610 shrink_dcache_parent(de);
611
612 /* propagate for a flush */
613 if (cii->c_flags & C_FLUSH)
614 coda_flag_inode_children(inode, C_FLUSH);
615
616 if (atomic_read(&de->d_count) > 1)
617 /* pretend it's valid, but don't change the flags */
618 goto out;
619
620 /* clear the flags. */
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400621 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400623 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625bad:
626 unlock_kernel();
627 return 0;
628out:
629 unlock_kernel();
630 return 1;
631}
632
633/*
634 * This is the callback from dput() when d_count is going to 0.
635 * We use this to unhash dentries with bad inodes.
636 */
637static int coda_dentry_delete(struct dentry * dentry)
638{
639 int flags;
640
641 if (!dentry->d_inode)
642 return 0;
643
644 flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE;
645 if (is_bad_inode(dentry->d_inode) || flags) {
646 return 1;
647 }
648 return 0;
649}
650
651
652
653/*
654 * This is called when we want to check if the inode has
655 * changed on the server. Coda makes this easy since the
656 * cache manager Venus issues a downcall to the kernel when this
657 * happens
658 */
659int coda_revalidate_inode(struct dentry *dentry)
660{
661 struct coda_vattr attr;
662 int error = 0;
663 int old_mode;
664 ino_t old_ino;
665 struct inode *inode = dentry->d_inode;
666 struct coda_inode_info *cii = ITOC(inode);
667
668 lock_kernel();
669 if ( !cii->c_flags )
670 goto ok;
671
672 if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) {
673 error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr);
674 if ( error )
675 goto return_bad;
676
677 /* this inode may be lost if:
678 - it's ino changed
679 - type changes must be permitted for repair and
680 missing mount points.
681 */
682 old_mode = inode->i_mode;
683 old_ino = inode->i_ino;
684 coda_vattr_to_iattr(inode, &attr);
685
686 if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) {
687 printk("Coda: inode %ld, fid %s changed type!\n",
688 inode->i_ino, coda_f2s(&(cii->c_fid)));
689 }
690
691 /* the following can happen when a local fid is replaced
692 with a global one, here we lose and declare the inode bad */
693 if (inode->i_ino != old_ino)
694 goto return_bad;
695
696 coda_flag_inode_children(inode, C_FLUSH);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400697
698 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400700 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703ok:
704 unlock_kernel();
705 return 0;
706
707return_bad:
708 unlock_kernel();
709 return -EIO;
710}