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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* cnode related routines for the coda kernel code
  2.    (C) 1996 Peter Braam
  3.    */
  4. #include <linux/types.h>
  5. #include <linux/string.h>
  6. #include <linux/time.h>
  7. #include <linux/coda.h>
  8. #include <linux/coda_linux.h>
  9. #include <linux/coda_fs_i.h>
  10. #include <linux/coda_psdev.h>
  11. extern int coda_debug;
  12. extern int coda_print_entry;
  13. inline int coda_fideq(ViceFid *fid1, ViceFid *fid2)
  14. {
  15. if (fid1->Vnode != fid2->Vnode)   return 0;
  16. if (fid1->Volume != fid2->Volume) return 0;
  17. if (fid1->Unique != fid2->Unique) return 0;
  18. return 1;
  19. }
  20. inline int coda_isnullfid(ViceFid *fid)
  21. {
  22. if (fid->Vnode || fid->Volume || fid->Unique) return 0;
  23. return 1;
  24. }
  25. static int coda_inocmp(struct inode *inode, unsigned long ino, void *opaque)
  26. {
  27. return (coda_fideq((ViceFid *)opaque, &(ITOC(inode)->c_fid)));
  28. }
  29. static struct inode_operations coda_symlink_inode_operations = {
  30. readlink: page_readlink,
  31. follow_link: page_follow_link,
  32. setattr: coda_notify_change,
  33. };
  34. /* cnode.c */
  35. static void coda_fill_inode(struct inode *inode, struct coda_vattr *attr)
  36. {
  37.         CDEBUG(D_SUPER, "ino: %ldn", inode->i_ino);
  38.         if (coda_debug & D_SUPER ) 
  39. print_vattr(attr);
  40.         coda_vattr_to_iattr(inode, attr);
  41.         if (S_ISREG(inode->i_mode)) {
  42.                 inode->i_op = &coda_file_inode_operations;
  43.                 inode->i_fop = &coda_file_operations;
  44.         } else if (S_ISDIR(inode->i_mode)) {
  45.                 inode->i_op = &coda_dir_inode_operations;
  46.                 inode->i_fop = &coda_dir_operations;
  47.         } else if (S_ISLNK(inode->i_mode)) {
  48. inode->i_op = &coda_symlink_inode_operations;
  49. inode->i_data.a_ops = &coda_symlink_aops;
  50. inode->i_mapping = &inode->i_data;
  51. } else
  52.                 init_special_inode(inode, inode->i_mode, attr->va_rdev);
  53. }
  54. struct inode * coda_iget(struct super_block * sb, ViceFid * fid,
  55.  struct coda_vattr * attr)
  56. {
  57. struct inode *inode;
  58. struct coda_inode_info *cii;
  59. ino_t ino = coda_f2i(fid);
  60. inode = iget4(sb, ino, coda_inocmp, fid);
  61. if ( !inode ) { 
  62. CDEBUG(D_CNODE, "coda_iget: no inoden");
  63. return ERR_PTR(-ENOMEM);
  64. }
  65. /* check if the inode is already initialized */
  66. cii = ITOC(inode);
  67. if (coda_isnullfid(&cii->c_fid))
  68. /* new, empty inode found... initializing */
  69. cii->c_fid = *fid;
  70. /* we shouldnt see inode collisions anymore */
  71. if (!coda_fideq(fid, &cii->c_fid)) BUG();
  72. /* always replace the attributes, type might have changed */
  73. coda_fill_inode(inode, attr);
  74. return inode;
  75. }
  76. /* this is effectively coda_iget:
  77.    - get attributes (might be cached)
  78.    - get the inode for the fid using vfs iget
  79.    - link the two up if this is needed
  80.    - fill in the attributes
  81. */
  82. int coda_cnode_make(struct inode **inode, ViceFid *fid, struct super_block *sb)
  83. {
  84.         struct coda_vattr attr;
  85.         int error;
  86.         
  87. /* We get inode numbers from Venus -- see venus source */
  88. error = venus_getattr(sb, fid, &attr);
  89. if ( error ) {
  90.     CDEBUG(D_CNODE, 
  91.    "coda_cnode_make: coda_getvattr returned %d for %s.n", 
  92.    error, coda_f2s(fid));
  93.     *inode = NULL;
  94.     return error;
  95. *inode = coda_iget(sb, fid, &attr);
  96. if ( IS_ERR(*inode) ) {
  97. printk("coda_cnode_make: coda_iget failedn");
  98.                 return PTR_ERR(*inode);
  99.         }
  100. CDEBUG(D_DOWNCALL, "Done making inode: ino %ld, count %d with %sn",
  101. (*inode)->i_ino, atomic_read(&(*inode)->i_count), 
  102. coda_f2s(&ITOC(*inode)->c_fid));
  103. return 0;
  104. }
  105. void coda_replace_fid(struct inode *inode, struct ViceFid *oldfid, 
  106.       struct ViceFid *newfid)
  107. {
  108. struct coda_inode_info *cii;
  109. cii = ITOC(inode);
  110. if (!coda_fideq(&cii->c_fid, oldfid))
  111. BUG();
  112. /* replace fid and rehash inode */
  113. /* XXX we probably need to hold some lock here! */
  114. remove_inode_hash(inode);
  115. cii->c_fid = *newfid;
  116. inode->i_ino = coda_f2i(newfid);
  117. insert_inode_hash(inode);
  118. }
  119. /* convert a fid to an inode. */
  120. struct inode *coda_fid_to_inode(ViceFid *fid, struct super_block *sb) 
  121. {
  122. ino_t nr;
  123. struct inode *inode;
  124. struct coda_inode_info *cii;
  125. if ( !sb ) {
  126. printk("coda_fid_to_inode: no sb!n");
  127. return NULL;
  128. }
  129. CDEBUG(D_INODE, "%sn", coda_f2s(fid));
  130. nr = coda_f2i(fid);
  131. inode = iget4(sb, nr, coda_inocmp, fid);
  132. if ( !inode ) {
  133. printk("coda_fid_to_inode: null from iget, sb %p, nr %ld.n",
  134.        sb, (long)nr);
  135. return NULL;
  136. }
  137. cii = ITOC(inode);
  138. /* The inode could already be purged due to memory pressure */
  139. if (coda_isnullfid(&cii->c_fid)) {
  140. inode->i_nlink = 0;
  141. iput(inode);
  142. return NULL;
  143. }
  144. /* we shouldn't see inode collisions anymore */
  145. if ( !coda_fideq(fid, &cii->c_fid) ) BUG();
  146.         CDEBUG(D_INODE, "found %ldn", inode->i_ino);
  147.         return inode;
  148. }
  149. /* the CONTROL inode is made without asking attributes from Venus */
  150. int coda_cnode_makectl(struct inode **inode, struct super_block *sb)
  151. {
  152.     int error = 0;
  153.     *inode = iget(sb, CTL_INO);
  154.     if ( *inode ) {
  155. (*inode)->i_op = &coda_ioctl_inode_operations;
  156. (*inode)->i_fop = &coda_ioctl_operations;
  157. (*inode)->i_mode = 0444;
  158. error = 0;
  159.     } else { 
  160. error = -ENOMEM;
  161.     }
  162.     
  163.     return error;
  164. }