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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Directory operations for Coda filesystem
  3.  * Original version: (C) 1996 P. Braam and M. Callahan
  4.  * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University
  5.  * 
  6.  * Carnegie Mellon encourages users to contribute improvements to
  7.  * the Coda project. Contact Peter Braam (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/file.h>
  14. #include <linux/stat.h>
  15. #include <linux/errno.h>
  16. #include <linux/locks.h>
  17. #include <linux/string.h>
  18. #include <linux/smp_lock.h>
  19. #include <asm/uaccess.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. #include <linux/coda_proc.h>
  26. /* dir inode-ops */
  27. static int coda_create(struct inode *dir, struct dentry *new, int mode);
  28. static int coda_mknod(struct inode *dir, struct dentry *new, int mode, int rdev);
  29. static struct dentry *coda_lookup(struct inode *dir, struct dentry *target);
  30. static int coda_link(struct dentry *old_dentry, struct inode *dir_inode, 
  31.      struct dentry *entry);
  32. static int coda_unlink(struct inode *dir_inode, struct dentry *entry);
  33. static int coda_symlink(struct inode *dir_inode, struct dentry *entry,
  34. const char *symname);
  35. static int coda_mkdir(struct inode *dir_inode, struct dentry *entry, int mode);
  36. static int coda_rmdir(struct inode *dir_inode, struct dentry *entry);
  37. static int coda_rename(struct inode *old_inode, struct dentry *old_dentry, 
  38.                        struct inode *new_inode, struct dentry *new_dentry);
  39. /* dir file-ops */
  40. static int coda_readdir(struct file *file, void *dirent, filldir_t filldir);
  41. /* dentry ops */
  42. static int coda_dentry_revalidate(struct dentry *de, int);
  43. static int coda_dentry_delete(struct dentry *);
  44. /* support routines */
  45. static void coda_prepare_fakefile(struct file *coda_file, 
  46.   struct dentry *open_dentry,
  47.   struct file *open_file);
  48. static int coda_venus_readdir(struct file *filp, void *dirent, 
  49.       filldir_t filldir);
  50. int coda_fsync(struct file *, struct dentry *dentry, int datasync);
  51. int coda_hasmknod;
  52. struct dentry_operations coda_dentry_operations =
  53. {
  54. d_revalidate: coda_dentry_revalidate,
  55. d_delete: coda_dentry_delete,
  56. };
  57. struct inode_operations coda_dir_inode_operations =
  58. {
  59. create: coda_create,
  60. lookup: coda_lookup,
  61. link: coda_link,
  62. unlink: coda_unlink,
  63. symlink: coda_symlink,
  64. mkdir: coda_mkdir,
  65. rmdir: coda_rmdir,
  66. mknod: coda_mknod,
  67. rename: coda_rename,
  68. permission: coda_permission,
  69.         revalidate: coda_revalidate_inode,
  70. setattr: coda_notify_change,
  71. };
  72. struct file_operations coda_dir_operations = {
  73. read: generic_read_dir,
  74. readdir: coda_readdir,
  75. open: coda_open,
  76. flush:   coda_flush,
  77. release: coda_release,
  78. fsync: coda_fsync,
  79. };
  80. /* inode operations for directories */
  81. /* access routines: lookup, readlink, permission */
  82. static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry)
  83. {
  84. struct inode *res_inode = NULL;
  85. struct ViceFid resfid = {0,0,0};
  86. int dropme = 0; /* to indicate entry should not be cached */
  87. int type = 0;
  88. int error = 0;
  89. const char *name = entry->d_name.name;
  90. size_t length = entry->d_name.len;
  91. if ( length > CODA_MAXNAMLEN ) {
  92.         printk("name too long: lookup, %s (%*s)n", 
  93.        coda_i2s(dir), (int)length, name);
  94. return ERR_PTR(-ENAMETOOLONG);
  95. }
  96.         CDEBUG(D_INODE, "name %s, len %ld in ino %ld, fid %sn", 
  97.        name, (long)length, dir->i_ino, coda_i2s(dir));
  98.         /* control object, create inode on the fly */
  99.         if (coda_isroot(dir) && coda_iscontrol(name, length)) {
  100.         error = coda_cnode_makectl(&res_inode, dir->i_sb);
  101. CDEBUG(D_SPECIAL, 
  102.        "Lookup on CTL object; dir ino %ld, count %dn", 
  103.        dir->i_ino, atomic_read(&dir->i_count));
  104. dropme = 1;
  105.                 goto exit;
  106.         }
  107. error = venus_lookup(dir->i_sb, coda_i2f(dir), 
  108.      (const char *)name, length, &type, &resfid);
  109. res_inode = NULL;
  110. if (!error) {
  111. if (type & CODA_NOCACHE) {
  112. type &= (~CODA_NOCACHE);
  113. CDEBUG(D_INODE, "dropme set for %sn", 
  114.        coda_f2s(&resfid));
  115. dropme = 1;
  116. }
  117.      error = coda_cnode_make(&res_inode, &resfid, dir->i_sb);
  118. if (error) return ERR_PTR(error);
  119. } else if (error != -ENOENT) {
  120.         CDEBUG(D_INODE, "error for %s(%*s)%dn",
  121.        coda_i2s(dir), (int)length, name, error);
  122. return ERR_PTR(error);
  123. }
  124. CDEBUG(D_INODE, "lookup: %s is (%s), type %d result %d, dropme %dn",
  125.        name, coda_f2s(&resfid), type, error, dropme);
  126. exit:
  127. entry->d_time = 0;
  128. entry->d_op = &coda_dentry_operations;
  129. d_add(entry, res_inode);
  130. if ( dropme ) {
  131. d_drop(entry);
  132. coda_flag_inode(res_inode, C_VATTR);
  133. }
  134.         return NULL;
  135. }
  136. int coda_permission(struct inode *inode, int mask)
  137. {
  138.         int error;
  139.  
  140. coda_vfs_stat.permission++;
  141.         if ( mask == 0 )
  142.                 return 0;
  143. if ( coda_access_cache ) {
  144. coda_permission_stat.count++;
  145. if ( coda_cache_check(inode, mask) ) {
  146. coda_permission_stat.hit_count++;
  147. return 0; 
  148. }
  149. }
  150.         CDEBUG(D_INODE, "mask is %on", mask);
  151.         error = venus_access(inode->i_sb, coda_i2f(inode), mask);
  152.     
  153.         CDEBUG(D_INODE, "fid: %s, ino: %ld (mask: %o) error: %dn", 
  154.        coda_i2s(inode), inode->i_ino, mask, error);
  155. if (!error)
  156. coda_cache_enter(inode, mask);
  157.         return error; 
  158. }
  159. static inline void coda_dir_changed(struct inode *dir, int link)
  160. {
  161. #ifdef REQUERY_VENUS_FOR_MTIME
  162. /* invalidate the directory cnode's attributes so we refetch the
  163.  * attributes from venus next time the inode is referenced */
  164. coda_flag_inode(dir, C_VATTR);
  165. #else
  166. /* optimistically we can also act as if our nose bleeds. The
  167.          * granularity of the mtime is coarse anyways so we might actually be
  168.          * right most of the time. Note: we only do this for directories. */
  169. dir->i_mtime = dir->i_ctime = CURRENT_TIME;
  170. #endif
  171. if (link)
  172. dir->i_nlink += link;
  173. }
  174. /* creation routines: create, mknod, mkdir, link, symlink */
  175. static int coda_create(struct inode *dir, struct dentry *de, int mode)
  176. {
  177.         int error=0;
  178. const char *name=de->d_name.name;
  179. int length=de->d_name.len;
  180. struct inode *inode = NULL;
  181. struct ViceFid newfid;
  182. struct coda_vattr attrs;
  183. coda_vfs_stat.create++;
  184. CDEBUG(D_INODE, "name: %s, length %d, mode %on", name, length, mode);
  185. if (coda_isroot(dir) && coda_iscontrol(name, length))
  186. return -EPERM;
  187. error = venus_create(dir->i_sb, coda_i2f(dir), name, length, 
  188. 0, mode, 0, &newfid, &attrs);
  189.         if ( error ) {
  190. CDEBUG(D_INODE, "create: %s, result %dn",
  191.        coda_f2s(&newfid), error); 
  192. d_drop(de);
  193. return error;
  194. }
  195. inode = coda_iget(dir->i_sb, &newfid, &attrs);
  196. if ( IS_ERR(inode) ) {
  197. d_drop(de);
  198. return PTR_ERR(inode);
  199. }
  200. /* invalidate the directory cnode's attributes */
  201. coda_dir_changed(dir, 0);
  202. d_instantiate(de, inode);
  203.         return 0;
  204. }
  205. static int coda_mknod(struct inode *dir, struct dentry *de, int mode, int rdev)
  206. {
  207.         int error=0;
  208. const char *name=de->d_name.name;
  209. int length=de->d_name.len;
  210. struct inode *result = NULL;
  211. struct ViceFid newfid;
  212. struct coda_vattr attrs;
  213. if ( coda_hasmknod == 0 )
  214. return -EIO;
  215. coda_vfs_stat.create++;
  216. CDEBUG(D_INODE, "name: %s, length %d, mode %o, rdev %xn",
  217.        name, length, mode, rdev);
  218. if (coda_isroot(dir) && coda_iscontrol(name, length))
  219. return -EPERM;
  220. error = venus_create(dir->i_sb, coda_i2f(dir), name, length, 
  221. 0, mode, rdev, &newfid, &attrs);
  222.         if ( error ) {
  223. CDEBUG(D_INODE, "mknod: %s, result %dn",
  224.        coda_f2s(&newfid), error); 
  225. d_drop(de);
  226. return error;
  227. }
  228. error = coda_cnode_make(&result, &newfid, dir->i_sb);
  229. if ( error ) {
  230. d_drop(de);
  231. result = NULL;
  232. return error;
  233. }
  234. /* invalidate the directory cnode's attributes */
  235. coda_dir_changed(dir, 0);
  236. d_instantiate(de, result);
  237.         return 0;
  238. }      
  239. static int coda_mkdir(struct inode *dir, struct dentry *de, int mode)
  240. {
  241. struct inode *inode;
  242. struct coda_vattr attr;
  243. const char *name = de->d_name.name;
  244. int len = de->d_name.len;
  245. int error;
  246. struct ViceFid newfid;
  247. coda_vfs_stat.mkdir++;
  248. if (coda_isroot(dir) && coda_iscontrol(name, len))
  249. return -EPERM;
  250. CDEBUG(D_INODE, "mkdir %s (len %d) in %s, mode %o.n", 
  251.        name, len, coda_i2s(dir), mode);
  252. attr.va_mode = mode;
  253. error = venus_mkdir(dir->i_sb, coda_i2f(dir), 
  254.        name, len, &newfid, &attr);
  255.         
  256.         if ( error ) {
  257.         CDEBUG(D_INODE, "mkdir error: %s result %dn", 
  258.        coda_f2s(&newfid), error); 
  259. d_drop(de);
  260.                 return error;
  261.         }
  262.          
  263. CDEBUG(D_INODE, "mkdir: new dir has fid %s.n", 
  264.        coda_f2s(&newfid)); 
  265. error = coda_cnode_make(&inode, &newfid, dir->i_sb);
  266. if ( error ) {
  267. d_drop(de);
  268. return error;
  269. }
  270. /* invalidate the directory cnode's attributes */
  271. coda_dir_changed(dir, 1);
  272. d_instantiate(de, inode);
  273.         return 0;
  274. }
  275. /* try to make de an entry in dir_inodde linked to source_de */ 
  276. static int coda_link(struct dentry *source_de, struct inode *dir_inode, 
  277.   struct dentry *de)
  278. {
  279. struct inode *inode = source_de->d_inode;
  280.         const char * name = de->d_name.name;
  281. int len = de->d_name.len;
  282. int error;
  283. coda_vfs_stat.link++;
  284. if (coda_isroot(dir_inode) && coda_iscontrol(name, len))
  285. return -EPERM;
  286. CDEBUG(D_INODE, "old: fid: %sn", coda_i2s(inode));
  287. CDEBUG(D_INODE, "directory: %sn", coda_i2s(dir_inode));
  288. error = venus_link(dir_inode->i_sb, coda_i2f(inode),
  289.    coda_i2f(dir_inode), (const char *)name, len);
  290. if (error) { 
  291. d_drop(de);
  292. goto out;
  293. }
  294. coda_dir_changed(dir_inode, 0);
  295. atomic_inc(&inode->i_count);
  296. d_instantiate(de, inode);
  297. inode->i_nlink++;
  298.         
  299. out:
  300. CDEBUG(D_INODE, "link result %dn",error);
  301. return(error);
  302. }
  303. static int coda_symlink(struct inode *dir_inode, struct dentry *de,
  304. const char *symname)
  305. {
  306.         const char *name = de->d_name.name;
  307. int len = de->d_name.len;
  308. int symlen;
  309.         int error=0;
  310.         
  311. coda_vfs_stat.symlink++;
  312. if (coda_isroot(dir_inode) && coda_iscontrol(name, len))
  313. return -EPERM;
  314. symlen = strlen(symname);
  315. if ( symlen > CODA_MAXPATHLEN )
  316.                 return -ENAMETOOLONG;
  317.         CDEBUG(D_INODE, "symname: %s, length: %dn", symname, symlen);
  318. /*
  319.  * This entry is now negative. Since we do not create
  320.  * an inode for the entry we have to drop it. 
  321.  */
  322. d_drop(de);
  323. error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len, 
  324.       symname, symlen);
  325. /* mtime is no good anymore */
  326. if ( !error )
  327. coda_dir_changed(dir_inode, 0);
  328.         CDEBUG(D_INODE, "in symlink result %dn",error);
  329.         return error;
  330. }
  331. /* destruction routines: unlink, rmdir */
  332. int coda_unlink(struct inode *dir, struct dentry *de)
  333. {
  334.         int error;
  335. const char *name = de->d_name.name;
  336. int len = de->d_name.len;
  337. coda_vfs_stat.unlink++;
  338.         CDEBUG(D_INODE, " %s in %s, dirino %ldn", name , 
  339.        coda_i2s(dir), dir->i_ino);
  340.         error = venus_remove(dir->i_sb, coda_i2f(dir), name, len);
  341.         if ( error ) {
  342.                 CDEBUG(D_INODE, "upc returned error %dn", error);
  343.                 return error;
  344.         }
  345. coda_dir_changed(dir, 0);
  346. de->d_inode->i_nlink--;
  347.         return 0;
  348. }
  349. int coda_rmdir(struct inode *dir, struct dentry *de)
  350. {
  351. const char *name = de->d_name.name;
  352. int len = de->d_name.len;
  353.         int error;
  354. coda_vfs_stat.rmdir++;
  355. if (!d_unhashed(de))
  356. return -EBUSY;
  357. error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len);
  358.         if ( error ) {
  359.                 CDEBUG(D_INODE, "upc returned error %dn", error);
  360.                 return error;
  361.         }
  362. coda_dir_changed(dir, -1);
  363. de->d_inode->i_nlink--;
  364. d_delete(de);
  365.         return 0;
  366. }
  367. /* rename */
  368. static int coda_rename(struct inode *old_dir, struct dentry *old_dentry, 
  369.        struct inode *new_dir, struct dentry *new_dentry)
  370. {
  371.         const char *old_name = old_dentry->d_name.name;
  372.         const char *new_name = new_dentry->d_name.name;
  373. int old_length = old_dentry->d_name.len;
  374. int new_length = new_dentry->d_name.len;
  375.         int link_adjust = 0;
  376.         int error;
  377. coda_vfs_stat.rename++;
  378.         CDEBUG(D_INODE, "old: %s, (%d length), new: %s"
  379.        "(%d length). old:d_count: %d, new:d_count: %dn", 
  380.        old_name, old_length, new_name, new_length,
  381.        atomic_read(&old_dentry->d_count), atomic_read(&new_dentry->d_count));
  382.         error = venus_rename(old_dir->i_sb, coda_i2f(old_dir), 
  383.      coda_i2f(new_dir), old_length, new_length, 
  384.      (const char *) old_name, (const char *)new_name);
  385.         if ( !error ) {
  386. if ( new_dentry->d_inode ) {
  387. if ( S_ISDIR(new_dentry->d_inode->i_mode) )
  388.                          link_adjust = 1;
  389.                         coda_dir_changed(old_dir, -link_adjust);
  390.                         coda_dir_changed(new_dir,  link_adjust);
  391. coda_flag_inode(new_dentry->d_inode, C_VATTR);
  392. } else {
  393. coda_flag_inode(old_dir, C_VATTR);
  394. coda_flag_inode(new_dir, C_VATTR);
  395.                 }
  396. }
  397. CDEBUG(D_INODE, "result %dn", error); 
  398. return error;
  399. }
  400. /* file operations for directories */
  401. int coda_readdir(struct file *file, void *dirent,  filldir_t filldir)
  402. {
  403.         int result = 0;
  404. struct dentry *cdentry;
  405. struct inode *cinode, *inode = file->f_dentry->d_inode;
  406. struct file *cfile, fakefile;
  407. struct coda_inode_info *cii = ITOC(inode);
  408. coda_vfs_stat.readdir++;
  409.         cfile = cii->c_container;
  410.         if (!cfile) BUG();
  411. cinode = cii->c_container->f_dentry->d_inode;
  412. if ( S_ISREG(cinode->i_mode) ) {
  413. /* Venus: we must read Venus dirents from the file */
  414. cdentry = cii->c_container->f_dentry;
  415. coda_prepare_fakefile(file, cdentry, &fakefile);
  416. result = coda_venus_readdir(&fakefile, dirent, filldir);
  417. file->f_pos = fakefile.f_pos;
  418. file->f_version = fakefile.f_version;
  419.         } else {
  420. /* potemkin case: we are handed a directory inode */
  421. result = vfs_readdir(file, filldir, dirent);
  422.         }
  423. UPDATE_ATIME(inode);
  424. return result;
  425. }
  426. /* support routines */
  427. /* instantiate a fake file to pass to coda_venus_readdir */
  428. static void coda_prepare_fakefile(struct file *coda_file, 
  429.   struct dentry *cont_dentry,
  430.   struct file *fake_file)
  431. {
  432. fake_file->f_dentry = cont_dentry;
  433. fake_file->f_pos = coda_file->f_pos;
  434. fake_file->f_version = coda_file->f_version;
  435. fake_file->f_op = cont_dentry->d_inode->i_fop;
  436. fake_file->f_flags = coda_file->f_flags;
  437. return ;
  438. }
  439. /* 
  440.  * this structure is manipulated by filldir in vfs layer.
  441.  * the count holds the remaining amount of space in the getdents buffer,
  442.  * beyond the current_dir pointer.
  443.  *
  444.  * What structure is this comment referring to?? -JH
  445.  */
  446. /* should be big enough to hold any single directory entry */
  447. #define DIR_BUFSIZE 2048
  448. static int coda_venus_readdir(struct file *filp, void *getdent, 
  449.       filldir_t filldir)
  450. {
  451.         int bufsize;
  452. int offset = filp->f_pos; /* offset in the directory file */
  453. int count = 0;
  454. int pos = 0;      /* offset in the block we read */
  455. int result = 0; /* either an error or # of entries returned */
  456. int errfill;
  457.         char *buff = NULL;
  458.         struct venus_dirent *vdirent;
  459.         int string_offset = (int) (&((struct venus_dirent *)(0))->d_name);
  460. int i;
  461.         CODA_ALLOC(buff, char *, DIR_BUFSIZE);
  462.         if ( !buff ) { 
  463.                 printk("coda_venus_readdir: out of memory.n");
  464.                 return -ENOMEM;
  465.         }
  466.         /* we use this routine to read the file into our buffer */
  467.         bufsize = kernel_read(filp, filp->f_pos, buff, DIR_BUFSIZE);
  468.         if ( bufsize < 0) {
  469.                 printk("coda_venus_readdir: cannot read directory %d.n",
  470.        bufsize);
  471.                 result = bufsize;
  472.                 goto exit;
  473.         }
  474.         if ( bufsize == 0) {
  475.                 result = 0;
  476.                 goto exit;
  477.         }
  478.         /* Parse and write into user space. Filldir tells us when done! */
  479.         CDEBUG(D_FILE, "buffsize: %d offset %d, count %d.n", 
  480.        bufsize, offset, count);
  481. i = 0;
  482. result = 0; 
  483.         while ( pos + string_offset < bufsize && i < 1024) {
  484.                 vdirent = (struct venus_dirent *) (buff + pos);
  485.                 /* test if the name is fully in the buffer */
  486.                 if ( pos + string_offset + (int) vdirent->d_namlen >= bufsize ){
  487. if ( result == 0 )
  488. printk("CODA: Invalid directory cfino: %ldn", 
  489.        filp->f_dentry->d_inode->i_ino);
  490.                         break;
  491.                 }
  492.                 /* now we are certain that we can read the entry from buff */
  493.                 /* if we don't have a null entry, copy it */
  494.                 if ( vdirent->d_fileno && vdirent->d_reclen ) {
  495.                         int namlen  = vdirent->d_namlen;
  496.                         off_t offs  = filp->f_pos; 
  497.                         ino_t ino   = vdirent->d_fileno;
  498.                         char *name  = vdirent->d_name;
  499. errfill = filldir(getdent,  name, namlen, 
  500.   offs, ino, DT_UNKNOWN); 
  501. CDEBUG(D_FILE, "entry %d: ino %ld, namlen %d, reclen %d, type %d, pos %d, string_offs %d, name %*s, offset %d, result: %d, errfill: %d.n", i,vdirent->d_fileno, vdirent->d_namlen, vdirent->d_reclen, vdirent->d_type, pos,  string_offset, vdirent->d_namlen, vdirent->d_name, (u_int) offs, result, errfill);
  502. /* errfill means no space for filling in this round */
  503. if ( errfill < 0 ) {
  504. result = 0;
  505. break;
  506. }
  507.                         /* adjust count */
  508.                         result++;
  509.                 }
  510.                 /* next one */
  511.                 filp->f_pos += vdirent->d_reclen;
  512. if ( filp->f_pos > filp->f_dentry->d_inode->i_size )
  513. break; 
  514. if ( !vdirent->d_reclen ) {
  515. printk("CODA: Invalid directory, cfino: %ldn", 
  516.        filp->f_dentry->d_inode->i_ino);
  517. result = -EINVAL;
  518. break;
  519. }
  520.                 pos += (unsigned int) vdirent->d_reclen;
  521. i++;
  522. if ( i >= 1024 ) {
  523. printk("Repeating too much in readdir %ldn", 
  524.        filp->f_dentry->d_inode->i_ino);
  525. result = -EINVAL;
  526. }
  527. exit:
  528.         CODA_FREE(buff, DIR_BUFSIZE);
  529.         return result;
  530. }
  531. /* called when a cache lookup succeeds */
  532. static int coda_dentry_revalidate(struct dentry *de, int flags)
  533. {
  534. struct inode *inode = de->d_inode;
  535. struct coda_inode_info *cii;
  536. if (!inode)
  537. return 1;
  538. lock_kernel();
  539. if (coda_isroot(inode))
  540. goto out;
  541. if (is_bad_inode(inode))
  542. goto bad;
  543. cii = ITOC(de->d_inode);
  544. if (!(cii->c_flags & (C_PURGE | C_FLUSH)))
  545. goto out;
  546. shrink_dcache_parent(de);
  547. /* propagate for a flush */
  548. if (cii->c_flags & C_FLUSH) 
  549. coda_flag_inode_children(inode, C_FLUSH);
  550. if (atomic_read(&de->d_count) > 1) {
  551. /* pretend it's valid, but don't change the flags */
  552. CDEBUG(D_DOWNCALL, "BOOM for: ino %ld, %sn",
  553.        de->d_inode->i_ino, coda_f2s(&cii->c_fid));
  554. goto out;
  555. }
  556. /* clear the flags. */
  557. cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
  558. bad:
  559. unlock_kernel();
  560. return 0;
  561. out:
  562. unlock_kernel();
  563. return 1;
  564. }
  565. /*
  566.  * This is the callback from dput() when d_count is going to 0.
  567.  * We use this to unhash dentries with bad inodes.
  568.  */
  569. static int coda_dentry_delete(struct dentry * dentry)
  570. {
  571. int flags;
  572. if (!dentry->d_inode) 
  573. return 0;
  574. flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE;
  575. if (is_bad_inode(dentry->d_inode) || flags) {
  576. CDEBUG(D_DOWNCALL, "bad inode, unhashing %s/%s, %ldn", 
  577.        dentry->d_parent->d_name.name, dentry->d_name.name,
  578.        dentry->d_inode->i_ino);
  579. return 1;
  580. }
  581. return 0;
  582. }
  583. /*
  584.  * This is called when we want to check if the inode has
  585.  * changed on the server.  Coda makes this easy since the
  586.  * cache manager Venus issues a downcall to the kernel when this 
  587.  * happens 
  588.  */
  589. int coda_revalidate_inode(struct dentry *dentry)
  590. {
  591. struct coda_vattr attr;
  592. int error = 0;
  593. int old_mode;
  594. ino_t old_ino;
  595. struct inode *inode = dentry->d_inode;
  596. struct coda_inode_info *cii = ITOC(inode);
  597. CDEBUG(D_INODE, "revalidating: %*s/%*sn", 
  598.        dentry->d_name.len, dentry->d_name.name,
  599.        dentry->d_parent->d_name.len, dentry->d_parent->d_name.name);
  600. lock_kernel();
  601. if ( !cii->c_flags )
  602. goto ok;
  603. if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) {
  604. error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr);
  605. if ( error )
  606. goto return_bad_inode;
  607. /* this inode may be lost if:
  608.    - it's ino changed 
  609.    - type changes must be permitted for repair and
  610.    missing mount points.
  611. */
  612. old_mode = inode->i_mode;
  613. old_ino = inode->i_ino;
  614. coda_vattr_to_iattr(inode, &attr);
  615. if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) {
  616. printk("Coda: inode %ld, fid %s changed type!n",
  617.        inode->i_ino, coda_f2s(&(cii->c_fid)));
  618. }
  619. /* the following can happen when a local fid is replaced 
  620.    with a global one, here we lose and declare the inode bad */
  621. if (inode->i_ino != old_ino)
  622. goto return_bad_inode;
  623. if ( cii->c_flags ) 
  624. coda_flag_inode_children(inode, C_FLUSH);
  625. cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
  626. }
  627. ok:
  628. unlock_kernel();
  629. return 0;
  630. return_bad_inode:
  631.         inode->i_mapping = &inode->i_data;
  632. if (cii->c_container) {
  633. fput(cii->c_container);
  634. cii->c_container = NULL;
  635. }
  636. make_bad_inode(inode);
  637. unlock_kernel();
  638. return -EIO;
  639. }