inode.c 7.3 KB

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