cache.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Cache operations for Coda.
  3.  * For Linux 2.1: (C) 1997 Carnegie Mellon University
  4.  * For Linux 2.3: (C) 2000 Carnegie Mellon University
  5.  *
  6.  * Carnegie Mellon encourages users of this code to contribute improvements
  7.  * to the Coda project http://www.coda.cs.cmu.edu/ <coda@cs.cmu.edu>.
  8.  */
  9. #include <linux/types.h>
  10. #include <linux/kernel.h>
  11. #include <linux/sched.h>
  12. #include <linux/fs.h>
  13. #include <linux/stat.h>
  14. #include <linux/errno.h>
  15. #include <linux/locks.h>
  16. #include <asm/segment.h>
  17. #include <asm/uaccess.h>
  18. #include <linux/string.h>
  19. #include <linux/list.h>
  20. #include <linux/coda.h>
  21. #include <linux/coda_linux.h>
  22. #include <linux/coda_psdev.h>
  23. #include <linux/coda_fs_i.h>
  24. #include <linux/coda_cache.h>
  25. /* replace or extend an acl cache hit */
  26. void coda_cache_enter(struct inode *inode, int mask)
  27. {
  28. struct coda_inode_info *cii = ITOC(inode);
  29.         if ( !coda_cred_ok(&cii->c_cached_cred) ) {
  30.                 coda_load_creds(&cii->c_cached_cred);
  31.                 cii->c_cached_perm = mask;
  32.         } else
  33.                 cii->c_cached_perm |= mask;
  34. }
  35. /* remove cached acl from an inode */
  36. void coda_cache_clear_inode(struct inode *inode)
  37. {
  38. struct coda_inode_info *cii = ITOC(inode);
  39.         cii->c_cached_perm = 0;
  40. }
  41. /* remove all acl caches for a principal (or all principals when cred == NULL)*/
  42. void coda_cache_clear_all(struct super_block *sb, struct coda_cred *cred)
  43. {
  44.         struct coda_sb_info *sbi;
  45.         struct coda_inode_info *cii;
  46.         struct list_head *tmp;
  47.         sbi = coda_sbp(sb);
  48.         if (!sbi) BUG();
  49.         list_for_each(tmp, &sbi->sbi_cihead)
  50.         {
  51. cii = list_entry(tmp, struct coda_inode_info, c_cilist);
  52.                 if (!cred || coda_cred_eq(cred, &cii->c_cached_cred))
  53.                         cii->c_cached_perm = 0;
  54. }
  55. }
  56. /* check if the mask has been matched against the acl already */
  57. int coda_cache_check(struct inode *inode, int mask)
  58. {
  59. struct coda_inode_info *cii = ITOC(inode);
  60.         int hit;
  61.         hit = ((mask & cii->c_cached_perm) == mask) &&
  62.                 coda_cred_ok(&cii->c_cached_cred);
  63.         CDEBUG(D_CACHE, "%s for ino %ldn", hit ? "HIT" : "MISS", inode->i_ino);
  64.         return hit;
  65. }
  66. /* Purging dentries and children */
  67. /* The following routines drop dentries which are not
  68.    in use and flag dentries which are in use to be 
  69.    zapped later.
  70.    The flags are detected by:
  71.    - coda_dentry_revalidate (for lookups) if the flag is C_PURGE
  72.    - coda_dentry_delete: to remove dentry from the cache when d_count
  73.      falls to zero
  74.    - an inode method coda_revalidate (for attributes) if the 
  75.      flag is C_VATTR
  76. */
  77. /* this won't do any harm: just flag all children */
  78. static void coda_flag_children(struct dentry *parent, int flag)
  79. {
  80. struct list_head *child;
  81. struct dentry *de;
  82. spin_lock(&dcache_lock);
  83. list_for_each(child, &parent->d_subdirs)
  84. {
  85. de = list_entry(child, struct dentry, d_child);
  86. /* don't know what to do with negative dentries */
  87. if ( ! de->d_inode ) 
  88. continue;
  89. CDEBUG(D_DOWNCALL, "%d for %*s/%*sn", flag, 
  90.        de->d_name.len, de->d_name.name, 
  91.        de->d_parent->d_name.len, de->d_parent->d_name.name);
  92. coda_flag_inode(de->d_inode, flag);
  93. }
  94. spin_unlock(&dcache_lock);
  95. return; 
  96. }
  97. void coda_flag_inode_children(struct inode *inode, int flag)
  98. {
  99. struct dentry *alias_de;
  100. if ( !inode || !S_ISDIR(inode->i_mode)) 
  101. return; 
  102. alias_de = d_find_alias(inode);
  103. if (!alias_de)
  104. return;
  105. coda_flag_children(alias_de, flag);
  106. shrink_dcache_parent(alias_de);
  107. dput(alias_de);
  108. }