blob: 9df71f0eb218b6c72fd65f846e63088a135cc193 [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>
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040020#include <linux/spinlock.h>
Nick Piggin34286d62011-01-07 17:49:57 +110021#include <linux/namei.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);
Nick Pigginfe15ce42011-01-07 17:49:23 +110051static int coda_dentry_delete(const struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
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 Viro9501e4c2011-01-12 16:25:02 -050064const 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 error = venus_lookup(dir->i_sb, coda_i2f(dir), name, length,
121 &type, &resfid);
122 if (!error)
123 error = coda_cnode_make(&inode, &resfid, dir->i_sb);
124
Jan Harkesed36f722007-07-19 01:48:49 -0700125 if (error && error != -ENOENT)
126 return ERR_PTR(error);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128exit:
Jan Harkesed36f722007-07-19 01:48:49 -0700129 if (inode && (type & CODA_NOCACHE))
130 coda_flag_inode(inode, C_VATTR | C_PURGE);
131
132 return d_splice_alias(inode, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135
Nick Pigginb74c79e2011-01-07 17:49:58 +1100136int coda_permission(struct inode *inode, int mask, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400138 int error;
Al Viroe6305c42008-07-15 21:03:57 -0400139
Nick Pigginb74c79e2011-01-07 17:49:58 +1100140 if (flags & IPERM_FLAG_RCU)
141 return -ECHILD;
142
Al Viroe6305c42008-07-15 21:03:57 -0400143 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 if (!mask)
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Miklos Szeredif696a362008-07-31 13:41:58 +0200148 if ((mask & MAY_EXEC) && !execute_ok(inode))
149 return -EACCES;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (coda_cache_check(inode, mask))
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400152 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400154 error = venus_access(inode->i_sb, coda_i2f(inode), mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (!error)
157 coda_cache_enter(inode, mask);
158
Jan Harkesd7289002007-07-19 01:48:43 -0700159 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162
Jan Harkesd7289002007-07-19 01:48:43 -0700163static inline void coda_dir_update_mtime(struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165#ifdef REQUERY_VENUS_FOR_MTIME
166 /* invalidate the directory cnode's attributes so we refetch the
167 * attributes from venus next time the inode is referenced */
168 coda_flag_inode(dir, C_VATTR);
169#else
170 /* optimistically we can also act as if our nose bleeds. The
Jan Harkesd7289002007-07-19 01:48:43 -0700171 * granularity of the mtime is coarse anyways so we might actually be
172 * right most of the time. Note: we only do this for directories. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
174#endif
Jan Harkesd7289002007-07-19 01:48:43 -0700175}
176
177/* we have to wrap inc_nlink/drop_nlink because sometimes userspace uses a
178 * trick to fool GNU find's optimizations. If we can't be sure of the link
179 * (because of volume mount points) we set i_nlink to 1 which forces find
180 * to consider every child as a possible directory. We should also never
181 * see an increment or decrement for deleted directories where i_nlink == 0 */
182static inline void coda_dir_inc_nlink(struct inode *dir)
183{
184 if (dir->i_nlink >= 2)
185 inc_nlink(dir);
186}
187
188static inline void coda_dir_drop_nlink(struct inode *dir)
189{
190 if (dir->i_nlink > 2)
191 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/* creation routines: create, mknod, mkdir, link, symlink */
195static int coda_create(struct inode *dir, struct dentry *de, int mode, struct nameidata *nd)
196{
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400197 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 const char *name=de->d_name.name;
199 int length=de->d_name.len;
200 struct inode *inode;
201 struct CodaFid newfid;
202 struct coda_vattr attrs;
203
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400204 if (coda_isroot(dir) && coda_iscontrol(name, length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 error = venus_create(dir->i_sb, coda_i2f(dir), name, length,
208 0, mode, &newfid, &attrs);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400209 if (error)
210 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 inode = coda_iget(dir->i_sb, &newfid, &attrs);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400213 if (IS_ERR(inode)) {
214 error = PTR_ERR(inode);
215 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
218 /* invalidate the directory cnode's attributes */
Jan Harkesd7289002007-07-19 01:48:43 -0700219 coda_dir_update_mtime(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 d_instantiate(de, inode);
Jan Harkesd7289002007-07-19 01:48:43 -0700221 return 0;
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400222err_out:
223 d_drop(de);
224 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227static int coda_mkdir(struct inode *dir, struct dentry *de, int mode)
228{
229 struct inode *inode;
230 struct coda_vattr attrs;
231 const char *name = de->d_name.name;
232 int len = de->d_name.len;
233 int error;
234 struct CodaFid newfid;
235
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400236 if (coda_isroot(dir) && coda_iscontrol(name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 attrs.va_mode = mode;
240 error = venus_mkdir(dir->i_sb, coda_i2f(dir),
241 name, len, &newfid, &attrs);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400242 if (error)
243 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 inode = coda_iget(dir->i_sb, &newfid, &attrs);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400246 if (IS_ERR(inode)) {
247 error = PTR_ERR(inode);
248 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Jan Harkesd7289002007-07-19 01:48:43 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* invalidate the directory cnode's attributes */
Jan Harkesd7289002007-07-19 01:48:43 -0700252 coda_dir_inc_nlink(dir);
253 coda_dir_update_mtime(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 d_instantiate(de, inode);
Jan Harkesd7289002007-07-19 01:48:43 -0700255 return 0;
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400256err_out:
257 d_drop(de);
258 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261/* try to make de an entry in dir_inodde linked to source_de */
262static int coda_link(struct dentry *source_de, struct inode *dir_inode,
263 struct dentry *de)
264{
265 struct inode *inode = source_de->d_inode;
266 const char * name = de->d_name.name;
267 int len = de->d_name.len;
268 int error;
269
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400270 if (coda_isroot(dir_inode) && coda_iscontrol(name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 error = venus_link(dir_inode->i_sb, coda_i2f(inode),
274 coda_i2f(dir_inode), (const char *)name, len);
Jan Harkesd7289002007-07-19 01:48:43 -0700275 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 d_drop(de);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400277 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
Jan Harkesd7289002007-07-19 01:48:43 -0700280 coda_dir_update_mtime(dir_inode);
Al Viro7de9c6e2010-10-23 11:11:40 -0400281 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 d_instantiate(de, inode);
Dave Hansend8c76e62006-09-30 23:29:04 -0700283 inc_nlink(inode);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287
288static int coda_symlink(struct inode *dir_inode, struct dentry *de,
289 const char *symname)
290{
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400291 const char *name = de->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int len = de->d_name.len;
293 int symlen;
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400294 int error;
Jan Harkes3cf01f22007-07-19 01:48:51 -0700295
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400296 if (coda_isroot(dir_inode) && coda_iscontrol(name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 symlen = strlen(symname);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400300 if (symlen > CODA_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /*
304 * This entry is now negative. Since we do not create
Jan Harkesd7289002007-07-19 01:48:43 -0700305 * an inode for the entry we have to drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
307 d_drop(de);
Jan Harkesd7289002007-07-19 01:48:43 -0700308 error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 symname, symlen);
310
311 /* mtime is no good anymore */
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400312 if (!error)
Jan Harkesd7289002007-07-19 01:48:43 -0700313 coda_dir_update_mtime(dir_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Jan Harkesd7289002007-07-19 01:48:43 -0700315 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/* destruction routines: unlink, rmdir */
Harvey Harrison9fe76c72008-04-29 00:58:44 -0700319static int coda_unlink(struct inode *dir, struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 int error;
322 const char *name = de->d_name.name;
323 int len = de->d_name.len;
324
Jan Harkesd7289002007-07-19 01:48:43 -0700325 error = venus_remove(dir->i_sb, coda_i2f(dir), name, len);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400326 if (error)
Jan Harkesd7289002007-07-19 01:48:43 -0700327 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Jan Harkesd7289002007-07-19 01:48:43 -0700329 coda_dir_update_mtime(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700330 drop_nlink(de->d_inode);
Jan Harkesd7289002007-07-19 01:48:43 -0700331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Harvey Harrison9fe76c72008-04-29 00:58:44 -0700334static int coda_rmdir(struct inode *dir, struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 const char *name = de->d_name.name;
337 int len = de->d_name.len;
Jan Harkes8c6d2152007-07-19 01:48:43 -0700338 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len);
Jan Harkes8c6d2152007-07-19 01:48:43 -0700341 if (!error) {
342 /* VFS may delete the child */
343 if (de->d_inode)
344 de->d_inode->i_nlink = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Jan Harkes8c6d2152007-07-19 01:48:43 -0700346 /* fix the link count of the parent */
347 coda_dir_drop_nlink(dir);
348 coda_dir_update_mtime(dir);
Jan Harkesd7289002007-07-19 01:48:43 -0700349 }
Jan Harkes8c6d2152007-07-19 01:48:43 -0700350 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353/* rename */
Jan Harkesd7289002007-07-19 01:48:43 -0700354static int coda_rename(struct inode *old_dir, struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct inode *new_dir, struct dentry *new_dentry)
356{
Jan Harkesd7289002007-07-19 01:48:43 -0700357 const char *old_name = old_dentry->d_name.name;
358 const char *new_name = new_dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int old_length = old_dentry->d_name.len;
360 int new_length = new_dentry->d_name.len;
Jan Harkesd7289002007-07-19 01:48:43 -0700361 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jan Harkesd7289002007-07-19 01:48:43 -0700363 error = venus_rename(old_dir->i_sb, coda_i2f(old_dir),
364 coda_i2f(new_dir), old_length, new_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 (const char *) old_name, (const char *)new_name);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400366 if (!error) {
367 if (new_dentry->d_inode) {
368 if (S_ISDIR(new_dentry->d_inode->i_mode)) {
Jan Harkesd7289002007-07-19 01:48:43 -0700369 coda_dir_drop_nlink(old_dir);
370 coda_dir_inc_nlink(new_dir);
371 }
372 coda_dir_update_mtime(old_dir);
373 coda_dir_update_mtime(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 coda_flag_inode(new_dentry->d_inode, C_VATTR);
375 } else {
376 coda_flag_inode(old_dir, C_VATTR);
377 coda_flag_inode(new_dir, C_VATTR);
Jan Harkesd7289002007-07-19 01:48:43 -0700378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return error;
381}
382
383
384/* file operations for directories */
Harvey Harrison9fe76c72008-04-29 00:58:44 -0700385static int coda_readdir(struct file *coda_file, void *buf, filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct coda_file_info *cfi;
388 struct file *host_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 int ret;
390
391 cfi = CODA_FTOC(coda_file);
392 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
393 host_file = cfi->cfi_container;
394
Jan Harkes97875252007-07-19 01:48:47 -0700395 if (!host_file->f_op)
396 return -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Jan Harkes97875252007-07-19 01:48:47 -0700398 if (host_file->f_op->readdir)
399 {
400 /* potemkin case: we were handed a directory inode.
401 * We can't use vfs_readdir because we have to keep the file
402 * position in sync between the coda_file and the host_file.
403 * and as such we need grab the inode mutex. */
404 struct inode *host_inode = host_file->f_path.dentry->d_inode;
405
406 mutex_lock(&host_inode->i_mutex);
407 host_file->f_pos = coda_file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 ret = -ENOENT;
410 if (!IS_DEADDIR(host_inode)) {
Jan Harkes97875252007-07-19 01:48:47 -0700411 ret = host_file->f_op->readdir(host_file, buf, filldir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 file_accessed(host_file);
413 }
Jan Harkes97875252007-07-19 01:48:47 -0700414
415 coda_file->f_pos = host_file->f_pos;
416 mutex_unlock(&host_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Jan Harkes97875252007-07-19 01:48:47 -0700418 else /* Venus: we must read Venus dirents from a file */
419 ret = coda_venus_readdir(coda_file, buf, filldir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 return ret;
422}
423
424static inline unsigned int CDT2DT(unsigned char cdt)
425{
426 unsigned int dt;
427
428 switch(cdt) {
429 case CDT_UNKNOWN: dt = DT_UNKNOWN; break;
430 case CDT_FIFO: dt = DT_FIFO; break;
431 case CDT_CHR: dt = DT_CHR; break;
432 case CDT_DIR: dt = DT_DIR; break;
433 case CDT_BLK: dt = DT_BLK; break;
434 case CDT_REG: dt = DT_REG; break;
435 case CDT_LNK: dt = DT_LNK; break;
436 case CDT_SOCK: dt = DT_SOCK; break;
437 case CDT_WHT: dt = DT_WHT; break;
438 default: dt = DT_UNKNOWN; break;
439 }
440 return dt;
441}
442
443/* support routines */
Jan Harkes97875252007-07-19 01:48:47 -0700444static int coda_venus_readdir(struct file *coda_file, void *buf,
445 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 int result = 0; /* # of entries returned */
Jan Harkes97875252007-07-19 01:48:47 -0700448 struct coda_file_info *cfi;
449 struct coda_inode_info *cii;
450 struct file *host_file;
451 struct dentry *de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct venus_dirent *vdir;
453 unsigned long vdir_size =
454 (unsigned long)(&((struct venus_dirent *)0)->d_name);
455 unsigned int type;
456 struct qstr name;
457 ino_t ino;
Jan Harkes97875252007-07-19 01:48:47 -0700458 int ret;
459
460 cfi = CODA_FTOC(coda_file);
461 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
462 host_file = cfi->cfi_container;
463
464 de = coda_file->f_path.dentry;
465 cii = ITOC(de->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700467 vdir = kmalloc(sizeof(*vdir), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (!vdir) return -ENOMEM;
469
Al Viro5f47c7e2007-07-20 00:23:31 +0100470 if (coda_file->f_pos == 0) {
Jan Harkes97875252007-07-19 01:48:47 -0700471 ret = filldir(buf, ".", 1, 0, de->d_inode->i_ino, DT_DIR);
Al Viro5f47c7e2007-07-20 00:23:31 +0100472 if (ret < 0)
473 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 result++;
Jan Harkes97875252007-07-19 01:48:47 -0700475 coda_file->f_pos++;
Al Viro5f47c7e2007-07-20 00:23:31 +0100476 }
477 if (coda_file->f_pos == 1) {
Jan Harkes97875252007-07-19 01:48:47 -0700478 ret = filldir(buf, "..", 2, 1, de->d_parent->d_inode->i_ino, DT_DIR);
Al Viro5f47c7e2007-07-20 00:23:31 +0100479 if (ret < 0)
480 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 result++;
Jan Harkes97875252007-07-19 01:48:47 -0700482 coda_file->f_pos++;
Al Viro5f47c7e2007-07-20 00:23:31 +0100483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 while (1) {
485 /* read entries from the directory file */
Jan Harkes97875252007-07-19 01:48:47 -0700486 ret = kernel_read(host_file, coda_file->f_pos - 2, (char *)vdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 sizeof(*vdir));
488 if (ret < 0) {
Jan Harkes97875252007-07-19 01:48:47 -0700489 printk(KERN_ERR "coda readdir: read dir %s failed %d\n",
490 coda_f2s(&cii->c_fid), ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 break;
492 }
493 if (ret == 0) break; /* end of directory file reached */
494
495 /* catch truncated reads */
496 if (ret < vdir_size || ret < vdir_size + vdir->d_namlen) {
Jan Harkes97875252007-07-19 01:48:47 -0700497 printk(KERN_ERR "coda readdir: short read on %s\n",
498 coda_f2s(&cii->c_fid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 ret = -EBADF;
500 break;
501 }
502 /* validate whether the directory file actually makes sense */
503 if (vdir->d_reclen < vdir_size + vdir->d_namlen) {
Jan Harkes97875252007-07-19 01:48:47 -0700504 printk(KERN_ERR "coda readdir: invalid dir %s\n",
505 coda_f2s(&cii->c_fid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ret = -EBADF;
507 break;
508 }
509
510 name.len = vdir->d_namlen;
511 name.name = vdir->d_name;
512
513 /* Make sure we skip '.' and '..', we already got those */
514 if (name.name[0] == '.' && (name.len == 1 ||
515 (vdir->d_name[1] == '.' && name.len == 2)))
516 vdir->d_fileno = name.len = 0;
517
518 /* skip null entries */
519 if (vdir->d_fileno && name.len) {
520 /* try to look up this entry in the dcache, that way
521 * userspace doesn't have to worry about breaking
522 * getcwd by having mismatched inode numbers for
523 * internal volume mountpoints. */
Jan Harkes97875252007-07-19 01:48:47 -0700524 ino = find_inode_number(de, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (!ino) ino = vdir->d_fileno;
526
527 type = CDT2DT(vdir->d_type);
Jan Harkes97875252007-07-19 01:48:47 -0700528 ret = filldir(buf, name.name, name.len,
529 coda_file->f_pos, ino, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* failure means no space for filling in this round */
531 if (ret < 0) break;
532 result++;
533 }
534 /* we'll always have progress because d_reclen is unsigned and
535 * we've already established it is non-zero. */
Jan Harkes97875252007-07-19 01:48:47 -0700536 coda_file->f_pos += vdir->d_reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Al Viro5f47c7e2007-07-20 00:23:31 +0100538out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 kfree(vdir);
540 return result ? result : ret;
541}
542
543/* called when a cache lookup succeeds */
544static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd)
545{
Nick Piggin34286d62011-01-07 17:49:57 +1100546 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct coda_inode_info *cii;
548
Nick Piggin34286d62011-01-07 17:49:57 +1100549 if (nd->flags & LOOKUP_RCU)
550 return -ECHILD;
551
552 inode = de->d_inode;
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400553 if (!inode || coda_isroot(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 goto out;
555 if (is_bad_inode(inode))
556 goto bad;
557
558 cii = ITOC(de->d_inode);
559 if (!(cii->c_flags & (C_PURGE | C_FLUSH)))
560 goto out;
561
562 shrink_dcache_parent(de);
563
564 /* propagate for a flush */
565 if (cii->c_flags & C_FLUSH)
566 coda_flag_inode_children(inode, C_FLUSH);
567
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100568 if (de->d_count > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* pretend it's valid, but don't change the flags */
570 goto out;
571
572 /* clear the flags. */
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400573 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400575 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576bad:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return 0;
578out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return 1;
580}
581
582/*
583 * This is the callback from dput() when d_count is going to 0.
584 * We use this to unhash dentries with bad inodes.
585 */
Nick Pigginfe15ce42011-01-07 17:49:23 +1100586static int coda_dentry_delete(const struct dentry * dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 int flags;
589
590 if (!dentry->d_inode)
591 return 0;
592
593 flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE;
594 if (is_bad_inode(dentry->d_inode) || flags) {
595 return 1;
596 }
597 return 0;
598}
599
600
601
602/*
603 * This is called when we want to check if the inode has
604 * changed on the server. Coda makes this easy since the
605 * cache manager Venus issues a downcall to the kernel when this
606 * happens
607 */
608int coda_revalidate_inode(struct dentry *dentry)
609{
610 struct coda_vattr attr;
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400611 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int old_mode;
613 ino_t old_ino;
614 struct inode *inode = dentry->d_inode;
615 struct coda_inode_info *cii = ITOC(inode);
616
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400617 if (!cii->c_flags)
618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) {
621 error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr);
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400622 if (error)
623 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /* this inode may be lost if:
626 - it's ino changed
627 - type changes must be permitted for repair and
628 missing mount points.
629 */
630 old_mode = inode->i_mode;
631 old_ino = inode->i_ino;
632 coda_vattr_to_iattr(inode, &attr);
633
634 if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) {
635 printk("Coda: inode %ld, fid %s changed type!\n",
636 inode->i_ino, coda_f2s(&(cii->c_fid)));
637 }
638
639 /* the following can happen when a local fid is replaced
640 with a global one, here we lose and declare the inode bad */
641 if (inode->i_ino != old_ino)
Yoshihisa Abef7cc02b2010-10-25 02:03:45 -0400642 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 coda_flag_inode_children(inode, C_FLUSH);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400645
646 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400648 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}