file.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * File operations for Coda.
  3.  * Original version: (C) 1996 Peter Braam 
  4.  * Rewritten for Linux 2.1: (C) 1997 Carnegie Mellon University
  5.  *
  6.  * Carnegie Mellon encourages users of this code to contribute improvements
  7.  * to 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/file.h>
  13. #include <linux/fs.h>
  14. #include <linux/stat.h>
  15. #include <linux/errno.h>
  16. #include <linux/locks.h>
  17. #include <linux/smp_lock.h>
  18. #include <linux/string.h>
  19. #include <asm/uaccess.h>
  20. #include <linux/coda.h>
  21. #include <linux/coda_linux.h>
  22. #include <linux/coda_fs_i.h>
  23. #include <linux/coda_psdev.h>
  24. #include <linux/coda_proc.h>
  25. /* if CODA_STORE fails with EOPNOTSUPP, venus clearly doesn't support
  26.  * CODA_STORE/CODA_RELEASE and we fall back on using the CODA_CLOSE upcall */
  27. int use_coda_close;
  28. static ssize_t
  29. coda_file_read(struct file *coda_file, char *buf, size_t count, loff_t *ppos)
  30. {
  31. struct coda_file_info *cfi;
  32. struct file *host_file;
  33. cfi = CODA_FTOC(coda_file);
  34. if (!cfi || cfi->cfi_magic != CODA_MAGIC) BUG();
  35. host_file = cfi->cfi_container;
  36. if (!host_file->f_op || !host_file->f_op->read)
  37. return -EINVAL;
  38. return host_file->f_op->read(host_file, buf, count, ppos);
  39. }
  40. static ssize_t
  41. coda_file_write(struct file *coda_file, const char *buf, size_t count, loff_t *ppos)
  42. {
  43. struct inode *coda_inode = coda_file->f_dentry->d_inode;
  44. struct coda_file_info *cfi;
  45. struct file *host_file;
  46. ssize_t ret;
  47. cfi = CODA_FTOC(coda_file);
  48. if (!cfi || cfi->cfi_magic != CODA_MAGIC) BUG();
  49. host_file = cfi->cfi_container;
  50. if (!host_file->f_op || !host_file->f_op->write)
  51. return -EINVAL;
  52. down(&coda_inode->i_sem);
  53. ret = host_file->f_op->write(host_file, buf, count, ppos);
  54. coda_inode->i_size = host_file->f_dentry->d_inode->i_size;
  55. coda_inode->i_blocks = (coda_inode->i_size + 511) >> 9;
  56. coda_inode->i_mtime = coda_inode->i_ctime = CURRENT_TIME;
  57. up(&coda_inode->i_sem);
  58. return ret;
  59. }
  60. static int
  61. coda_file_mmap(struct file *coda_file, struct vm_area_struct *vma)
  62. {
  63. struct coda_file_info *cfi;
  64. struct coda_inode_info *cii;
  65. struct file *host_file;
  66. struct inode *coda_inode, *host_inode;
  67. cfi = CODA_FTOC(coda_file);
  68. if (!cfi || cfi->cfi_magic != CODA_MAGIC) BUG();
  69. host_file = cfi->cfi_container;
  70. if (!host_file->f_op || !host_file->f_op->mmap)
  71. return -ENODEV;
  72. coda_inode = coda_file->f_dentry->d_inode;
  73. host_inode = host_file->f_dentry->d_inode;
  74. if (coda_inode->i_mapping == &coda_inode->i_data)
  75. coda_inode->i_mapping = host_inode->i_mapping;
  76. /* only allow additional mmaps as long as userspace isn't changing
  77.  * the container file on us! */
  78. else if (coda_inode->i_mapping != host_inode->i_mapping)
  79. return -EBUSY;
  80. /* keep track of how often the coda_inode/host_file has been mmapped */
  81. cii = ITOC(coda_inode);
  82. cii->c_mapcount++;
  83. cfi->cfi_mapcount++;
  84.  
  85. return host_file->f_op->mmap(host_file, vma);
  86. }
  87. int coda_open(struct inode *coda_inode, struct file *coda_file)
  88. {
  89. struct file *host_file = NULL;
  90. int error;
  91. unsigned short flags = coda_file->f_flags & (~O_EXCL);
  92. unsigned short coda_flags = coda_flags_to_cflags(flags);
  93. struct coda_file_info *cfi;
  94. struct inode *host_inode;
  95. coda_vfs_stat.open++;
  96. cfi = kmalloc(sizeof(struct coda_file_info), GFP_KERNEL);
  97. if (!cfi) {
  98. unlock_kernel();
  99. return -ENOMEM;
  100. }
  101. lock_kernel();
  102. error = venus_open(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags,
  103.    &host_file); 
  104. if (error || !host_file) {
  105. kfree(cfi);
  106. unlock_kernel();
  107. return error;
  108. }
  109. host_file->f_flags |= coda_file->f_flags & (O_APPEND | O_SYNC);
  110. cfi->cfi_magic = CODA_MAGIC;
  111. cfi->cfi_mapcount = 0;
  112. cfi->cfi_container = host_file;
  113. coda_load_creds(&cfi->cfi_cred);
  114. host_inode = host_file->f_dentry->d_inode;
  115. if (coda_inode->i_mapping == &coda_inode->i_data)
  116. coda_inode->i_mapping = host_inode->i_mapping;
  117. else if (coda_inode->i_mapping != host_inode->i_mapping) {
  118. /* This is not a good thing, it doesn't happen with 'venus'
  119.  * Coda's own userspace daemon, but others might not provide
  120.  * the same guarantees. Still looking for the real fix. */
  121. printk("coda_open: changed mappingn");
  122. coda_inode->i_mapping = host_inode->i_mapping;
  123. }
  124. if (coda_file->private_data != NULL) BUG();
  125. coda_file->private_data = cfi;
  126. unlock_kernel();
  127. return 0;
  128. }
  129. int coda_flush(struct file *coda_file)
  130. {
  131. unsigned short flags = coda_file->f_flags & ~O_EXCL;
  132. unsigned short coda_flags = coda_flags_to_cflags(flags);
  133. struct coda_file_info *cfi;
  134. struct inode *coda_inode;
  135. int err = 0, fcnt;
  136. coda_vfs_stat.flush++;
  137. /* No need to make an upcall when we have not made any modifications
  138.  * to the file */
  139. if ((coda_file->f_flags & O_ACCMODE) == O_RDONLY)
  140. return 0;
  141. if (use_coda_close)
  142. return 0;
  143. fcnt = file_count(coda_file);
  144. if (fcnt > 1) return 0;
  145. coda_inode = coda_file->f_dentry->d_inode;
  146. cfi = CODA_FTOC(coda_file);
  147. if (!cfi || cfi->cfi_magic != CODA_MAGIC) BUG();
  148. err = venus_store(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags,
  149.   &cfi->cfi_cred);
  150. if (err == -EOPNOTSUPP) {
  151. use_coda_close = 1;
  152. err = 0;
  153. }
  154. return err;
  155. }
  156. int coda_release(struct inode *coda_inode, struct file *coda_file)
  157. {
  158. unsigned short flags = (coda_file->f_flags) & (~O_EXCL);
  159. unsigned short coda_flags = coda_flags_to_cflags(flags);
  160. struct coda_file_info *cfi;
  161. struct coda_inode_info *cii;
  162. struct inode *host_inode;
  163. int err = 0;
  164. lock_kernel();
  165. coda_vfs_stat.release++;
  166.  
  167. if (!use_coda_close) {
  168. err = venus_release(coda_inode->i_sb, coda_i2f(coda_inode),
  169.     coda_flags);
  170. if (err == -EOPNOTSUPP) {
  171. use_coda_close = 1;
  172. err = 0;
  173. }
  174. }
  175. cfi = CODA_FTOC(coda_file);
  176. if (!cfi || cfi->cfi_magic != CODA_MAGIC) BUG();
  177. if (use_coda_close)
  178. err = venus_close(coda_inode->i_sb, coda_i2f(coda_inode),
  179.   coda_flags, &cfi->cfi_cred);
  180. host_inode = cfi->cfi_container->f_dentry->d_inode;
  181. cii = ITOC(coda_inode);
  182. /* did we mmap this file? */
  183. if (coda_inode->i_mapping == &host_inode->i_data) {
  184. cii->c_mapcount -= cfi->cfi_mapcount;
  185. if (!cii->c_mapcount)
  186. coda_inode->i_mapping = &coda_inode->i_data;
  187. }
  188. fput(cfi->cfi_container);
  189. kfree(coda_file->private_data);
  190. coda_file->private_data = NULL;
  191. unlock_kernel();
  192. return err;
  193. }
  194. int coda_fsync(struct file *coda_file, struct dentry *coda_dentry, int datasync)
  195. {
  196. struct file *host_file;
  197. struct dentry *host_dentry;
  198. struct inode *host_inode, *coda_inode = coda_dentry->d_inode;
  199. struct coda_file_info *cfi;
  200. int err = 0;
  201. if (!(S_ISREG(coda_inode->i_mode) || S_ISDIR(coda_inode->i_mode) ||
  202.       S_ISLNK(coda_inode->i_mode)))
  203. return -EINVAL;
  204. cfi = CODA_FTOC(coda_file);
  205. if (!cfi || cfi->cfi_magic != CODA_MAGIC) BUG();
  206. host_file = cfi->cfi_container;
  207. coda_vfs_stat.fsync++;
  208. if (host_file->f_op && host_file->f_op->fsync) {
  209. host_dentry = host_file->f_dentry;
  210. host_inode = host_dentry->d_inode;
  211. down(&host_inode->i_sem);
  212. err = host_file->f_op->fsync(host_file, host_dentry, datasync);
  213. up(&host_inode->i_sem);
  214. }
  215. if ( !err && !datasync ) {
  216. lock_kernel();
  217. err = venus_fsync(coda_inode->i_sb, coda_i2f(coda_inode));
  218. unlock_kernel();
  219. }
  220. return err;
  221. }
  222. struct file_operations coda_file_operations = {
  223. llseek: generic_file_llseek,
  224. read: coda_file_read,
  225. write: coda_file_write,
  226. mmap: coda_file_mmap,
  227. open: coda_open,
  228. flush:   coda_flush,
  229. release: coda_release,
  230. fsync: coda_fsync,
  231. };