inode.c 7.0 KB

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