inode.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /*
  2. * Super block/filesystem wide operations
  3. *
  4. * Copyright (C) 1996 Peter J. Braam <braam@maths.ox.ac.uk> and
  5. * Michael Callahan <callahan@maths.ox.ac.uk>
  6. *
  7. * Rewritten for Linux 2.1. Peter Braam <braam@cs.cmu.edu>
  8. * Copyright (C) Carnegie Mellon University
  9. */
  10. #include <linux/module.h>
  11. #include <linux/kernel.h>
  12. #include <linux/mm.h>
  13. #include <linux/string.h>
  14. #include <linux/stat.h>
  15. #include <linux/errno.h>
  16. #include <linux/unistd.h>
  17. #include <linux/smp_lock.h>
  18. #include <linux/file.h>
  19. #include <linux/vfs.h>
  20. #include <linux/slab.h>
  21. #include <asm/system.h>
  22. #include <asm/uaccess.h>
  23. #include <linux/fs.h>
  24. #include <linux/vmalloc.h>
  25. #include <linux/coda.h>
  26. #include <linux/coda_linux.h>
  27. #include <linux/coda_psdev.h>
  28. #include <linux/coda_fs_i.h>
  29. #include <linux/coda_cache.h>
  30. #include "coda_int.h"
  31. /* VFS super_block ops */
  32. static void coda_clear_inode(struct inode *);
  33. static void coda_put_super(struct super_block *);
  34. static int coda_statfs(struct dentry *dentry, struct kstatfs *buf);
  35. static struct kmem_cache * coda_inode_cachep;
  36. static struct inode *coda_alloc_inode(struct super_block *sb)
  37. {
  38. struct coda_inode_info *ei;
  39. ei = (struct coda_inode_info *)kmem_cache_alloc(coda_inode_cachep, GFP_KERNEL);
  40. if (!ei)
  41. return NULL;
  42. memset(&ei->c_fid, 0, sizeof(struct CodaFid));
  43. ei->c_flags = 0;
  44. ei->c_uid = 0;
  45. ei->c_cached_perm = 0;
  46. return &ei->vfs_inode;
  47. }
  48. static void coda_destroy_inode(struct inode *inode)
  49. {
  50. kmem_cache_free(coda_inode_cachep, ITOC(inode));
  51. }
  52. static void init_once(void *foo)
  53. {
  54. struct coda_inode_info *ei = (struct coda_inode_info *) foo;
  55. inode_init_once(&ei->vfs_inode);
  56. }
  57. int coda_init_inodecache(void)
  58. {
  59. coda_inode_cachep = kmem_cache_create("coda_inode_cache",
  60. sizeof(struct coda_inode_info),
  61. 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
  62. init_once);
  63. if (coda_inode_cachep == NULL)
  64. return -ENOMEM;
  65. return 0;
  66. }
  67. void coda_destroy_inodecache(void)
  68. {
  69. kmem_cache_destroy(coda_inode_cachep);
  70. }
  71. static int coda_remount(struct super_block *sb, int *flags, char *data)
  72. {
  73. *flags |= MS_NOATIME;
  74. return 0;
  75. }
  76. /* exported operations */
  77. static const struct super_operations coda_super_operations =
  78. {
  79. .alloc_inode = coda_alloc_inode,
  80. .destroy_inode = coda_destroy_inode,
  81. .clear_inode = coda_clear_inode,
  82. .put_super = coda_put_super,
  83. .statfs = coda_statfs,
  84. .remount_fs = coda_remount,
  85. };
  86. static int get_device_index(struct coda_mount_data *data)
  87. {
  88. struct file *file;
  89. struct inode *inode;
  90. int idx;
  91. if(data == NULL) {
  92. printk("coda_read_super: Bad mount data\n");
  93. return -1;
  94. }
  95. if(data->version != CODA_MOUNT_VERSION) {
  96. printk("coda_read_super: Bad mount version\n");
  97. return -1;
  98. }
  99. file = fget(data->fd);
  100. inode = NULL;
  101. if(file)
  102. inode = file->f_path.dentry->d_inode;
  103. if(!inode || !S_ISCHR(inode->i_mode) ||
  104. imajor(inode) != CODA_PSDEV_MAJOR) {
  105. if(file)
  106. fput(file);
  107. printk("coda_read_super: Bad file\n");
  108. return -1;
  109. }
  110. idx = iminor(inode);
  111. fput(file);
  112. if(idx < 0 || idx >= MAX_CODADEVS) {
  113. printk("coda_read_super: Bad minor number\n");
  114. return -1;
  115. }
  116. return idx;
  117. }
  118. static int coda_fill_super(struct super_block *sb, void *data, int silent)
  119. {
  120. struct inode *root = NULL;
  121. struct venus_comm *vc = NULL;
  122. struct CodaFid fid;
  123. int error;
  124. int idx;
  125. idx = get_device_index((struct coda_mount_data *) data);
  126. /* Ignore errors in data, for backward compatibility */
  127. if(idx == -1)
  128. idx = 0;
  129. printk(KERN_INFO "coda_read_super: device index: %i\n", idx);
  130. vc = &coda_comms[idx];
  131. if (!vc->vc_inuse) {
  132. printk("coda_read_super: No pseudo device\n");
  133. return -EINVAL;
  134. }
  135. if ( vc->vc_sb ) {
  136. printk("coda_read_super: Device already mounted\n");
  137. return -EBUSY;
  138. }
  139. vc->vc_sb = sb;
  140. sb->s_fs_info = vc;
  141. sb->s_flags |= MS_NOATIME;
  142. sb->s_blocksize = 4096; /* XXXXX what do we put here?? */
  143. sb->s_blocksize_bits = 12;
  144. sb->s_magic = CODA_SUPER_MAGIC;
  145. sb->s_op = &coda_super_operations;
  146. /* get root fid from Venus: this needs the root inode */
  147. error = venus_rootfid(sb, &fid);
  148. if ( error ) {
  149. printk("coda_read_super: coda_get_rootfid failed with %d\n",
  150. error);
  151. goto error;
  152. }
  153. printk("coda_read_super: rootfid is %s\n", coda_f2s(&fid));
  154. /* make root inode */
  155. error = coda_cnode_make(&root, &fid, sb);
  156. if ( error || !root ) {
  157. printk("Failure of coda_cnode_make for root: error %d\n", error);
  158. goto error;
  159. }
  160. printk("coda_read_super: rootinode is %ld dev %s\n",
  161. root->i_ino, root->i_sb->s_id);
  162. sb->s_root = d_alloc_root(root);
  163. if (!sb->s_root)
  164. goto error;
  165. return 0;
  166. error:
  167. if (root)
  168. iput(root);
  169. if (vc)
  170. vc->vc_sb = NULL;
  171. return -EINVAL;
  172. }
  173. static void coda_put_super(struct super_block *sb)
  174. {
  175. coda_vcp(sb)->vc_sb = NULL;
  176. sb->s_fs_info = NULL;
  177. printk("Coda: Bye bye.\n");
  178. }
  179. static void coda_clear_inode(struct inode *inode)
  180. {
  181. coda_cache_clear_inode(inode);
  182. }
  183. int coda_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
  184. {
  185. int err = coda_revalidate_inode(dentry);
  186. if (!err)
  187. generic_fillattr(dentry->d_inode, stat);
  188. return err;
  189. }
  190. int coda_setattr(struct dentry *de, struct iattr *iattr)
  191. {
  192. struct inode *inode = de->d_inode;
  193. struct coda_vattr vattr;
  194. int error;
  195. lock_kernel();
  196. memset(&vattr, 0, sizeof(vattr));
  197. inode->i_ctime = CURRENT_TIME_SEC;
  198. coda_iattr_to_vattr(iattr, &vattr);
  199. vattr.va_type = C_VNON; /* cannot set type */
  200. /* Venus is responsible for truncating the container-file!!! */
  201. error = venus_setattr(inode->i_sb, coda_i2f(inode), &vattr);
  202. if ( !error ) {
  203. coda_vattr_to_iattr(inode, &vattr);
  204. coda_cache_clear_inode(inode);
  205. }
  206. unlock_kernel();
  207. return error;
  208. }
  209. const struct inode_operations coda_file_inode_operations = {
  210. .permission = coda_permission,
  211. .getattr = coda_getattr,
  212. .setattr = coda_setattr,
  213. };
  214. static int coda_statfs(struct dentry *dentry, struct kstatfs *buf)
  215. {
  216. int error;
  217. lock_kernel();
  218. error = venus_statfs(dentry, buf);
  219. unlock_kernel();
  220. if (error) {
  221. /* fake something like AFS does */
  222. buf->f_blocks = 9000000;
  223. buf->f_bfree = 9000000;
  224. buf->f_bavail = 9000000;
  225. buf->f_files = 9000000;
  226. buf->f_ffree = 9000000;
  227. }
  228. /* and fill in the rest */
  229. buf->f_type = CODA_SUPER_MAGIC;
  230. buf->f_bsize = 4096;
  231. buf->f_namelen = CODA_MAXNAMLEN;
  232. return 0;
  233. }
  234. /* init_coda: used by filesystems.c to register coda */
  235. static int coda_get_sb(struct file_system_type *fs_type,
  236. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  237. {
  238. return get_sb_nodev(fs_type, flags, data, coda_fill_super, mnt);
  239. }
  240. struct file_system_type coda_fs_type = {
  241. .owner = THIS_MODULE,
  242. .name = "coda",
  243. .get_sb = coda_get_sb,
  244. .kill_sb = kill_anon_super,
  245. .fs_flags = FS_BINARY_MOUNTDATA,
  246. };