Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1
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>
15#include <linux/slab.h>
16#include <linux/file.h>
17#include <linux/stat.h>
18#include <linux/errno.h>
19#include <linux/string.h>
20#include <linux/spinlock.h>
21#include <linux/namei.h>
22#include <linux/uaccess.h>
23
24#include <linux/coda.h>
25#include <linux/coda_psdev.h>
26#include "coda_linux.h"
27#include "coda_cache.h"
28
29#include "coda_int.h"
30
31/* dir inode-ops */
32static int coda_create(struct inode *dir, struct dentry *new, umode_t mode, bool excl);
33static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, unsigned int flags);
34static int coda_link(struct dentry *old_dentry, struct inode *dir_inode,
35 struct dentry *entry);
36static int coda_unlink(struct inode *dir_inode, struct dentry *entry);
37static int coda_symlink(struct inode *dir_inode, struct dentry *entry,
38 const char *symname);
39static int coda_mkdir(struct inode *dir_inode, struct dentry *entry, umode_t mode);
40static int coda_rmdir(struct inode *dir_inode, struct dentry *entry);
41static int coda_rename(struct inode *old_inode, struct dentry *old_dentry,
42 struct inode *new_inode, struct dentry *new_dentry);
43
44/* dir file-ops */
45static int coda_readdir(struct file *file, struct dir_context *ctx);
46
47/* dentry ops */
48static int coda_dentry_revalidate(struct dentry *de, unsigned int flags);
49static int coda_dentry_delete(const struct dentry *);
50
51/* support routines */
52static int coda_venus_readdir(struct file *, struct dir_context *);
53
54/* same as fs/bad_inode.c */
55static int coda_return_EIO(void)
56{
57 return -EIO;
58}
59#define CODA_EIO_ERROR ((void *) (coda_return_EIO))
60
61const struct dentry_operations coda_dentry_operations =
62{
63 .d_revalidate = coda_dentry_revalidate,
64 .d_delete = coda_dentry_delete,
65};
66
67const struct inode_operations coda_dir_inode_operations =
68{
69 .create = coda_create,
70 .lookup = coda_lookup,
71 .link = coda_link,
72 .unlink = coda_unlink,
73 .symlink = coda_symlink,
74 .mkdir = coda_mkdir,
75 .rmdir = coda_rmdir,
76 .mknod = CODA_EIO_ERROR,
77 .rename = coda_rename,
78 .permission = coda_permission,
79 .getattr = coda_getattr,
80 .setattr = coda_setattr,
81};
82
83const struct file_operations coda_dir_operations = {
84 .llseek = generic_file_llseek,
85 .read = generic_read_dir,
86 .iterate = coda_readdir,
87 .open = coda_open,
88 .release = coda_release,
89 .fsync = coda_fsync,
90};
91
92
93/* inode operations for directories */
94/* access routines: lookup, readlink, permission */
95static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry, unsigned int flags)
96{
97 struct super_block *sb = dir->i_sb;
98 const char *name = entry->d_name.name;
99 size_t length = entry->d_name.len;
100 struct inode *inode;
101 int type = 0;
102
103 if (length > CODA_MAXNAMLEN) {
104 pr_err("name too long: lookup, %s (%*s)\n",
105 coda_i2s(dir), (int)length, name);
106 return ERR_PTR(-ENAMETOOLONG);
107 }
108
109 /* control object, create inode on the fly */
110 if (coda_isroot(dir) && coda_iscontrol(name, length)) {
111 inode = coda_cnode_makectl(sb);
112 type = CODA_NOCACHE;
113 } else {
114 struct CodaFid fid = { { 0, } };
115 int error = venus_lookup(sb, coda_i2f(dir), name, length,
116 &type, &fid);
117 inode = !error ? coda_cnode_make(&fid, sb) : ERR_PTR(error);
118 }
119
120 if (!IS_ERR(inode) && (type & CODA_NOCACHE))
121 coda_flag_inode(inode, C_VATTR | C_PURGE);
122
123 if (inode == ERR_PTR(-ENOENT))
124 inode = NULL;
125
126 return d_splice_alias(inode, entry);
127}
128
129
130int coda_permission(struct inode *inode, int mask)
131{
132 int error;
133
134 if (mask & MAY_NOT_BLOCK)
135 return -ECHILD;
136
137 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
138
139 if (!mask)
140 return 0;
141
142 if ((mask & MAY_EXEC) && !execute_ok(inode))
143 return -EACCES;
144
145 if (coda_cache_check(inode, mask))
146 return 0;
147
148 error = venus_access(inode->i_sb, coda_i2f(inode), mask);
149
150 if (!error)
151 coda_cache_enter(inode, mask);
152
153 return error;
154}
155
156
157static inline void coda_dir_update_mtime(struct inode *dir)
158{
159#ifdef REQUERY_VENUS_FOR_MTIME
160 /* invalidate the directory cnode's attributes so we refetch the
161 * attributes from venus next time the inode is referenced */
162 coda_flag_inode(dir, C_VATTR);
163#else
164 /* optimistically we can also act as if our nose bleeds. The
165 * granularity of the mtime is coarse anyways so we might actually be
166 * right most of the time. Note: we only do this for directories. */
167 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
168#endif
169}
170
171/* we have to wrap inc_nlink/drop_nlink because sometimes userspace uses a
172 * trick to fool GNU find's optimizations. If we can't be sure of the link
173 * (because of volume mount points) we set i_nlink to 1 which forces find
174 * to consider every child as a possible directory. We should also never
175 * see an increment or decrement for deleted directories where i_nlink == 0 */
176static inline void coda_dir_inc_nlink(struct inode *dir)
177{
178 if (dir->i_nlink >= 2)
179 inc_nlink(dir);
180}
181
182static inline void coda_dir_drop_nlink(struct inode *dir)
183{
184 if (dir->i_nlink > 2)
185 drop_nlink(dir);
186}
187
188/* creation routines: create, mknod, mkdir, link, symlink */
189static int coda_create(struct inode *dir, struct dentry *de, umode_t mode, bool excl)
190{
191 int error;
192 const char *name=de->d_name.name;
193 int length=de->d_name.len;
194 struct inode *inode;
195 struct CodaFid newfid;
196 struct coda_vattr attrs;
197
198 if (coda_isroot(dir) && coda_iscontrol(name, length))
199 return -EPERM;
200
201 error = venus_create(dir->i_sb, coda_i2f(dir), name, length,
202 0, mode, &newfid, &attrs);
203 if (error)
204 goto err_out;
205
206 inode = coda_iget(dir->i_sb, &newfid, &attrs);
207 if (IS_ERR(inode)) {
208 error = PTR_ERR(inode);
209 goto err_out;
210 }
211
212 /* invalidate the directory cnode's attributes */
213 coda_dir_update_mtime(dir);
214 d_instantiate(de, inode);
215 return 0;
216err_out:
217 d_drop(de);
218 return error;
219}
220
221static int coda_mkdir(struct inode *dir, struct dentry *de, umode_t mode)
222{
223 struct inode *inode;
224 struct coda_vattr attrs;
225 const char *name = de->d_name.name;
226 int len = de->d_name.len;
227 int error;
228 struct CodaFid newfid;
229
230 if (coda_isroot(dir) && coda_iscontrol(name, len))
231 return -EPERM;
232
233 attrs.va_mode = mode;
234 error = venus_mkdir(dir->i_sb, coda_i2f(dir),
235 name, len, &newfid, &attrs);
236 if (error)
237 goto err_out;
238
239 inode = coda_iget(dir->i_sb, &newfid, &attrs);
240 if (IS_ERR(inode)) {
241 error = PTR_ERR(inode);
242 goto err_out;
243 }
244
245 /* invalidate the directory cnode's attributes */
246 coda_dir_inc_nlink(dir);
247 coda_dir_update_mtime(dir);
248 d_instantiate(de, inode);
249 return 0;
250err_out:
251 d_drop(de);
252 return error;
253}
254
255/* try to make de an entry in dir_inodde linked to source_de */
256static int coda_link(struct dentry *source_de, struct inode *dir_inode,
257 struct dentry *de)
258{
259 struct inode *inode = source_de->d_inode;
260 const char * name = de->d_name.name;
261 int len = de->d_name.len;
262 int error;
263
264 if (coda_isroot(dir_inode) && coda_iscontrol(name, len))
265 return -EPERM;
266
267 error = venus_link(dir_inode->i_sb, coda_i2f(inode),
268 coda_i2f(dir_inode), (const char *)name, len);
269 if (error) {
270 d_drop(de);
271 return error;
272 }
273
274 coda_dir_update_mtime(dir_inode);
275 ihold(inode);
276 d_instantiate(de, inode);
277 inc_nlink(inode);
278 return 0;
279}
280
281
282static int coda_symlink(struct inode *dir_inode, struct dentry *de,
283 const char *symname)
284{
285 const char *name = de->d_name.name;
286 int len = de->d_name.len;
287 int symlen;
288 int error;
289
290 if (coda_isroot(dir_inode) && coda_iscontrol(name, len))
291 return -EPERM;
292
293 symlen = strlen(symname);
294 if (symlen > CODA_MAXPATHLEN)
295 return -ENAMETOOLONG;
296
297 /*
298 * This entry is now negative. Since we do not create
299 * an inode for the entry we have to drop it.
300 */
301 d_drop(de);
302 error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len,
303 symname, symlen);
304
305 /* mtime is no good anymore */
306 if (!error)
307 coda_dir_update_mtime(dir_inode);
308
309 return error;
310}
311
312/* destruction routines: unlink, rmdir */
313static int coda_unlink(struct inode *dir, struct dentry *de)
314{
315 int error;
316 const char *name = de->d_name.name;
317 int len = de->d_name.len;
318
319 error = venus_remove(dir->i_sb, coda_i2f(dir), name, len);
320 if (error)
321 return error;
322
323 coda_dir_update_mtime(dir);
324 drop_nlink(de->d_inode);
325 return 0;
326}
327
328static int coda_rmdir(struct inode *dir, struct dentry *de)
329{
330 const char *name = de->d_name.name;
331 int len = de->d_name.len;
332 int error;
333
334 error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len);
335 if (!error) {
336 /* VFS may delete the child */
337 if (de->d_inode)
338 clear_nlink(de->d_inode);
339
340 /* fix the link count of the parent */
341 coda_dir_drop_nlink(dir);
342 coda_dir_update_mtime(dir);
343 }
344 return error;
345}
346
347/* rename */
348static int coda_rename(struct inode *old_dir, struct dentry *old_dentry,
349 struct inode *new_dir, struct dentry *new_dentry)
350{
351 const char *old_name = old_dentry->d_name.name;
352 const char *new_name = new_dentry->d_name.name;
353 int old_length = old_dentry->d_name.len;
354 int new_length = new_dentry->d_name.len;
355 int error;
356
357 error = venus_rename(old_dir->i_sb, coda_i2f(old_dir),
358 coda_i2f(new_dir), old_length, new_length,
359 (const char *) old_name, (const char *)new_name);
360 if (!error) {
361 if (new_dentry->d_inode) {
362 if (S_ISDIR(new_dentry->d_inode->i_mode)) {
363 coda_dir_drop_nlink(old_dir);
364 coda_dir_inc_nlink(new_dir);
365 }
366 coda_dir_update_mtime(old_dir);
367 coda_dir_update_mtime(new_dir);
368 coda_flag_inode(new_dentry->d_inode, C_VATTR);
369 } else {
370 coda_flag_inode(old_dir, C_VATTR);
371 coda_flag_inode(new_dir, C_VATTR);
372 }
373 }
374 return error;
375}
376
377
378/* file operations for directories */
379static int coda_readdir(struct file *coda_file, struct dir_context *ctx)
380{
381 struct coda_file_info *cfi;
382 struct file *host_file;
383 int ret;
384
385 cfi = CODA_FTOC(coda_file);
386 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
387 host_file = cfi->cfi_container;
388
389 if (host_file->f_op->iterate) {
390 struct inode *host_inode = file_inode(host_file);
391 mutex_lock(&host_inode->i_mutex);
392 ret = -ENOENT;
393 if (!IS_DEADDIR(host_inode)) {
394 ret = host_file->f_op->iterate(host_file, ctx);
395 file_accessed(host_file);
396 }
397 mutex_unlock(&host_inode->i_mutex);
398 return ret;
399 }
400 /* Venus: we must read Venus dirents from a file */
401 return coda_venus_readdir(coda_file, ctx);
402}
403
404static inline unsigned int CDT2DT(unsigned char cdt)
405{
406 unsigned int dt;
407
408 switch(cdt) {
409 case CDT_UNKNOWN: dt = DT_UNKNOWN; break;
410 case CDT_FIFO: dt = DT_FIFO; break;
411 case CDT_CHR: dt = DT_CHR; break;
412 case CDT_DIR: dt = DT_DIR; break;
413 case CDT_BLK: dt = DT_BLK; break;
414 case CDT_REG: dt = DT_REG; break;
415 case CDT_LNK: dt = DT_LNK; break;
416 case CDT_SOCK: dt = DT_SOCK; break;
417 case CDT_WHT: dt = DT_WHT; break;
418 default: dt = DT_UNKNOWN; break;
419 }
420 return dt;
421}
422
423/* support routines */
424static int coda_venus_readdir(struct file *coda_file, struct dir_context *ctx)
425{
426 struct coda_file_info *cfi;
427 struct coda_inode_info *cii;
428 struct file *host_file;
429 struct dentry *de;
430 struct venus_dirent *vdir;
431 unsigned long vdir_size = offsetof(struct venus_dirent, d_name);
432 unsigned int type;
433 struct qstr name;
434 ino_t ino;
435 int ret;
436
437 cfi = CODA_FTOC(coda_file);
438 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
439 host_file = cfi->cfi_container;
440
441 de = coda_file->f_path.dentry;
442 cii = ITOC(de->d_inode);
443
444 vdir = kmalloc(sizeof(*vdir), GFP_KERNEL);
445 if (!vdir) return -ENOMEM;
446
447 if (!dir_emit_dots(coda_file, ctx))
448 goto out;
449
450 while (1) {
451 /* read entries from the directory file */
452 ret = kernel_read(host_file, ctx->pos - 2, (char *)vdir,
453 sizeof(*vdir));
454 if (ret < 0) {
455 pr_err("%s: read dir %s failed %d\n",
456 __func__, coda_f2s(&cii->c_fid), ret);
457 break;
458 }
459 if (ret == 0) break; /* end of directory file reached */
460
461 /* catch truncated reads */
462 if (ret < vdir_size || ret < vdir_size + vdir->d_namlen) {
463 pr_err("%s: short read on %s\n",
464 __func__, coda_f2s(&cii->c_fid));
465 ret = -EBADF;
466 break;
467 }
468 /* validate whether the directory file actually makes sense */
469 if (vdir->d_reclen < vdir_size + vdir->d_namlen) {
470 pr_err("%s: invalid dir %s\n",
471 __func__, coda_f2s(&cii->c_fid));
472 ret = -EBADF;
473 break;
474 }
475
476 name.len = vdir->d_namlen;
477 name.name = vdir->d_name;
478
479 /* Make sure we skip '.' and '..', we already got those */
480 if (name.name[0] == '.' && (name.len == 1 ||
481 (name.name[1] == '.' && name.len == 2)))
482 vdir->d_fileno = name.len = 0;
483
484 /* skip null entries */
485 if (vdir->d_fileno && name.len) {
486 ino = vdir->d_fileno;
487 type = CDT2DT(vdir->d_type);
488 if (!dir_emit(ctx, name.name, name.len, ino, type))
489 break;
490 }
491 /* we'll always have progress because d_reclen is unsigned and
492 * we've already established it is non-zero. */
493 ctx->pos += vdir->d_reclen;
494 }
495out:
496 kfree(vdir);
497 return 0;
498}
499
500/* called when a cache lookup succeeds */
501static int coda_dentry_revalidate(struct dentry *de, unsigned int flags)
502{
503 struct inode *inode;
504 struct coda_inode_info *cii;
505
506 if (flags & LOOKUP_RCU)
507 return -ECHILD;
508
509 inode = de->d_inode;
510 if (!inode || coda_isroot(inode))
511 goto out;
512 if (is_bad_inode(inode))
513 goto bad;
514
515 cii = ITOC(de->d_inode);
516 if (!(cii->c_flags & (C_PURGE | C_FLUSH)))
517 goto out;
518
519 shrink_dcache_parent(de);
520
521 /* propagate for a flush */
522 if (cii->c_flags & C_FLUSH)
523 coda_flag_inode_children(inode, C_FLUSH);
524
525 if (d_count(de) > 1)
526 /* pretend it's valid, but don't change the flags */
527 goto out;
528
529 /* clear the flags. */
530 spin_lock(&cii->c_lock);
531 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
532 spin_unlock(&cii->c_lock);
533bad:
534 return 0;
535out:
536 return 1;
537}
538
539/*
540 * This is the callback from dput() when d_count is going to 0.
541 * We use this to unhash dentries with bad inodes.
542 */
543static int coda_dentry_delete(const struct dentry * dentry)
544{
545 int flags;
546
547 if (!dentry->d_inode)
548 return 0;
549
550 flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE;
551 if (is_bad_inode(dentry->d_inode) || flags) {
552 return 1;
553 }
554 return 0;
555}
556
557
558
559/*
560 * This is called when we want to check if the inode has
561 * changed on the server. Coda makes this easy since the
562 * cache manager Venus issues a downcall to the kernel when this
563 * happens
564 */
565int coda_revalidate_inode(struct inode *inode)
566{
567 struct coda_vattr attr;
568 int error;
569 int old_mode;
570 ino_t old_ino;
571 struct coda_inode_info *cii = ITOC(inode);
572
573 if (!cii->c_flags)
574 return 0;
575
576 if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) {
577 error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr);
578 if (error)
579 return -EIO;
580
581 /* this inode may be lost if:
582 - it's ino changed
583 - type changes must be permitted for repair and
584 missing mount points.
585 */
586 old_mode = inode->i_mode;
587 old_ino = inode->i_ino;
588 coda_vattr_to_iattr(inode, &attr);
589
590 if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) {
591 pr_warn("inode %ld, fid %s changed type!\n",
592 inode->i_ino, coda_f2s(&(cii->c_fid)));
593 }
594
595 /* the following can happen when a local fid is replaced
596 with a global one, here we lose and declare the inode bad */
597 if (inode->i_ino != old_ino)
598 return -EIO;
599
600 coda_flag_inode_children(inode, C_FLUSH);
601
602 spin_lock(&cii->c_lock);
603 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
604 spin_unlock(&cii->c_lock);
605 }
606 return 0;
607}