inode.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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/mutex.h>
  18. #include <linux/spinlock.h>
  19. #include <linux/file.h>
  20. #include <linux/vfs.h>
  21. #include <linux/slab.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_psdev.h>
  27. #include "coda_linux.h"
  28. #include "coda_cache.h"
  29. #include "coda_int.h"
  30. /* VFS super_block ops */
  31. static void coda_evict_inode(struct inode *);
  32. static void coda_put_super(struct super_block *);
  33. static int coda_statfs(struct dentry *dentry, struct kstatfs *buf);
  34. static struct kmem_cache * coda_inode_cachep;
  35. static struct inode *coda_alloc_inode(struct super_block *sb)
  36. {
  37. struct coda_inode_info *ei;
  38. ei = kmem_cache_alloc(coda_inode_cachep, GFP_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. spin_lock_init(&ei->c_lock);
  46. return &ei->vfs_inode;
  47. }
  48. static void coda_i_callback(struct rcu_head *head)
  49. {
  50. struct inode *inode = container_of(head, struct inode, i_rcu);
  51. kmem_cache_free(coda_inode_cachep, ITOC(inode));
  52. }
  53. static void coda_destroy_inode(struct inode *inode)
  54. {
  55. call_rcu(&inode->i_rcu, coda_i_callback);
  56. }
  57. static void init_once(void *foo)
  58. {
  59. struct coda_inode_info *ei = (struct coda_inode_info *) foo;
  60. inode_init_once(&ei->vfs_inode);
  61. }
  62. int coda_init_inodecache(void)
  63. {
  64. coda_inode_cachep = kmem_cache_create("coda_inode_cache",
  65. sizeof(struct coda_inode_info),
  66. 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
  67. init_once);
  68. if (coda_inode_cachep == NULL)
  69. return -ENOMEM;
  70. return 0;
  71. }
  72. void coda_destroy_inodecache(void)
  73. {
  74. /*
  75. * Make sure all delayed rcu free inodes are flushed before we
  76. * destroy cache.
  77. */
  78. rcu_barrier();
  79. kmem_cache_destroy(coda_inode_cachep);
  80. }
  81. static int coda_remount(struct super_block *sb, int *flags, char *data)
  82. {
  83. *flags |= MS_NOATIME;
  84. return 0;
  85. }
  86. /* exported operations */
  87. static const struct super_operations coda_super_operations =
  88. {
  89. .alloc_inode = coda_alloc_inode,
  90. .destroy_inode = coda_destroy_inode,
  91. .evict_inode = coda_evict_inode,
  92. .put_super = coda_put_super,
  93. .statfs = coda_statfs,
  94. .remount_fs = coda_remount,
  95. };
  96. static int get_device_index(struct coda_mount_data *data)
  97. {
  98. struct fd f;
  99. struct inode *inode;
  100. int idx;
  101. if (data == NULL) {
  102. printk("coda_read_super: Bad mount data\n");
  103. return -1;
  104. }
  105. if (data->version != CODA_MOUNT_VERSION) {
  106. printk("coda_read_super: Bad mount version\n");
  107. return -1;
  108. }
  109. f = fdget(data->fd);
  110. if (!f.file)
  111. goto Ebadf;
  112. inode = f.file->f_path.dentry->d_inode;
  113. if (!S_ISCHR(inode->i_mode) || imajor(inode) != CODA_PSDEV_MAJOR) {
  114. fdput(f);
  115. goto Ebadf;
  116. }
  117. idx = iminor(inode);
  118. fdput(f);
  119. if (idx < 0 || idx >= MAX_CODADEVS) {
  120. printk("coda_read_super: Bad minor number\n");
  121. return -1;
  122. }
  123. return idx;
  124. Ebadf:
  125. printk("coda_read_super: Bad file\n");
  126. return -1;
  127. }
  128. static int coda_fill_super(struct super_block *sb, void *data, int silent)
  129. {
  130. struct inode *root = NULL;
  131. struct venus_comm *vc;
  132. struct CodaFid fid;
  133. int error;
  134. int idx;
  135. idx = get_device_index((struct coda_mount_data *) data);
  136. /* Ignore errors in data, for backward compatibility */
  137. if(idx == -1)
  138. idx = 0;
  139. printk(KERN_INFO "coda_read_super: device index: %i\n", idx);
  140. vc = &coda_comms[idx];
  141. mutex_lock(&vc->vc_mutex);
  142. if (!vc->vc_inuse) {
  143. printk("coda_read_super: No pseudo device\n");
  144. error = -EINVAL;
  145. goto unlock_out;
  146. }
  147. if (vc->vc_sb) {
  148. printk("coda_read_super: Device already mounted\n");
  149. error = -EBUSY;
  150. goto unlock_out;
  151. }
  152. error = bdi_setup_and_register(&vc->bdi, "coda", BDI_CAP_MAP_COPY);
  153. if (error)
  154. goto unlock_out;
  155. vc->vc_sb = sb;
  156. mutex_unlock(&vc->vc_mutex);
  157. sb->s_fs_info = vc;
  158. sb->s_flags |= MS_NOATIME;
  159. sb->s_blocksize = 4096; /* XXXXX what do we put here?? */
  160. sb->s_blocksize_bits = 12;
  161. sb->s_magic = CODA_SUPER_MAGIC;
  162. sb->s_op = &coda_super_operations;
  163. sb->s_d_op = &coda_dentry_operations;
  164. sb->s_bdi = &vc->bdi;
  165. /* get root fid from Venus: this needs the root inode */
  166. error = venus_rootfid(sb, &fid);
  167. if ( error ) {
  168. printk("coda_read_super: coda_get_rootfid failed with %d\n",
  169. error);
  170. goto error;
  171. }
  172. printk("coda_read_super: rootfid is %s\n", coda_f2s(&fid));
  173. /* make root inode */
  174. root = coda_cnode_make(&fid, sb);
  175. if (IS_ERR(root)) {
  176. error = PTR_ERR(root);
  177. printk("Failure of coda_cnode_make for root: error %d\n", error);
  178. goto error;
  179. }
  180. printk("coda_read_super: rootinode is %ld dev %s\n",
  181. root->i_ino, root->i_sb->s_id);
  182. sb->s_root = d_make_root(root);
  183. if (!sb->s_root) {
  184. error = -EINVAL;
  185. goto error;
  186. }
  187. return 0;
  188. error:
  189. mutex_lock(&vc->vc_mutex);
  190. bdi_destroy(&vc->bdi);
  191. vc->vc_sb = NULL;
  192. sb->s_fs_info = NULL;
  193. unlock_out:
  194. mutex_unlock(&vc->vc_mutex);
  195. return error;
  196. }
  197. static void coda_put_super(struct super_block *sb)
  198. {
  199. struct venus_comm *vcp = coda_vcp(sb);
  200. mutex_lock(&vcp->vc_mutex);
  201. bdi_destroy(&vcp->bdi);
  202. vcp->vc_sb = NULL;
  203. sb->s_fs_info = NULL;
  204. mutex_unlock(&vcp->vc_mutex);
  205. printk("Coda: Bye bye.\n");
  206. }
  207. static void coda_evict_inode(struct inode *inode)
  208. {
  209. truncate_inode_pages(&inode->i_data, 0);
  210. clear_inode(inode);
  211. coda_cache_clear_inode(inode);
  212. }
  213. int coda_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
  214. {
  215. int err = coda_revalidate_inode(dentry);
  216. if (!err)
  217. generic_fillattr(dentry->d_inode, stat);
  218. return err;
  219. }
  220. int coda_setattr(struct dentry *de, struct iattr *iattr)
  221. {
  222. struct inode *inode = de->d_inode;
  223. struct coda_vattr vattr;
  224. int error;
  225. memset(&vattr, 0, sizeof(vattr));
  226. inode->i_ctime = CURRENT_TIME_SEC;
  227. coda_iattr_to_vattr(iattr, &vattr);
  228. vattr.va_type = C_VNON; /* cannot set type */
  229. /* Venus is responsible for truncating the container-file!!! */
  230. error = venus_setattr(inode->i_sb, coda_i2f(inode), &vattr);
  231. if (!error) {
  232. coda_vattr_to_iattr(inode, &vattr);
  233. coda_cache_clear_inode(inode);
  234. }
  235. return error;
  236. }
  237. const struct inode_operations coda_file_inode_operations = {
  238. .permission = coda_permission,
  239. .getattr = coda_getattr,
  240. .setattr = coda_setattr,
  241. };
  242. static int coda_statfs(struct dentry *dentry, struct kstatfs *buf)
  243. {
  244. int error;
  245. error = venus_statfs(dentry, buf);
  246. if (error) {
  247. /* fake something like AFS does */
  248. buf->f_blocks = 9000000;
  249. buf->f_bfree = 9000000;
  250. buf->f_bavail = 9000000;
  251. buf->f_files = 9000000;
  252. buf->f_ffree = 9000000;
  253. }
  254. /* and fill in the rest */
  255. buf->f_type = CODA_SUPER_MAGIC;
  256. buf->f_bsize = 4096;
  257. buf->f_namelen = CODA_MAXNAMLEN;
  258. return 0;
  259. }
  260. /* init_coda: used by filesystems.c to register coda */
  261. static struct dentry *coda_mount(struct file_system_type *fs_type,
  262. int flags, const char *dev_name, void *data)
  263. {
  264. return mount_nodev(fs_type, flags, data, coda_fill_super);
  265. }
  266. struct file_system_type coda_fs_type = {
  267. .owner = THIS_MODULE,
  268. .name = "coda",
  269. .mount = coda_mount,
  270. .kill_sb = kill_anon_super,
  271. .fs_flags = FS_BINARY_MOUNTDATA,
  272. };