super.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /**
  2. * eCryptfs: Linux filesystem encryption layer
  3. *
  4. * Copyright (C) 1997-2003 Erez Zadok
  5. * Copyright (C) 2001-2003 Stony Brook University
  6. * Copyright (C) 2004-2006 International Business Machines Corp.
  7. * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
  8. * Michael C. Thompson <mcthomps@us.ibm.com>
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  23. * 02111-1307, USA.
  24. */
  25. #include <linux/fs.h>
  26. #include <linux/mount.h>
  27. #include <linux/key.h>
  28. #include <linux/slab.h>
  29. #include <linux/seq_file.h>
  30. #include <linux/file.h>
  31. #include <linux/crypto.h>
  32. #include <linux/statfs.h>
  33. #include <linux/magic.h>
  34. #include "ecryptfs_kernel.h"
  35. struct kmem_cache *ecryptfs_inode_info_cache;
  36. /**
  37. * ecryptfs_alloc_inode - allocate an ecryptfs inode
  38. * @sb: Pointer to the ecryptfs super block
  39. *
  40. * Called to bring an inode into existence.
  41. *
  42. * Only handle allocation, setting up structures should be done in
  43. * ecryptfs_read_inode. This is because the kernel, between now and
  44. * then, will 0 out the private data pointer.
  45. *
  46. * Returns a pointer to a newly allocated inode, NULL otherwise
  47. */
  48. static struct inode *ecryptfs_alloc_inode(struct super_block *sb)
  49. {
  50. struct ecryptfs_inode_info *inode_info;
  51. struct inode *inode = NULL;
  52. inode_info = kmem_cache_alloc(ecryptfs_inode_info_cache, GFP_KERNEL);
  53. if (unlikely(!inode_info))
  54. goto out;
  55. ecryptfs_init_crypt_stat(&inode_info->crypt_stat);
  56. mutex_init(&inode_info->lower_file_mutex);
  57. atomic_set(&inode_info->lower_file_count, 0);
  58. inode_info->lower_file = NULL;
  59. inode = &inode_info->vfs_inode;
  60. out:
  61. return inode;
  62. }
  63. static void ecryptfs_i_callback(struct rcu_head *head)
  64. {
  65. struct inode *inode = container_of(head, struct inode, i_rcu);
  66. struct ecryptfs_inode_info *inode_info;
  67. inode_info = ecryptfs_inode_to_private(inode);
  68. kmem_cache_free(ecryptfs_inode_info_cache, inode_info);
  69. }
  70. /**
  71. * ecryptfs_destroy_inode
  72. * @inode: The ecryptfs inode
  73. *
  74. * This is used during the final destruction of the inode. All
  75. * allocation of memory related to the inode, including allocated
  76. * memory in the crypt_stat struct, will be released here.
  77. * There should be no chance that this deallocation will be missed.
  78. */
  79. static void ecryptfs_destroy_inode(struct inode *inode)
  80. {
  81. struct ecryptfs_inode_info *inode_info;
  82. inode_info = ecryptfs_inode_to_private(inode);
  83. BUG_ON(inode_info->lower_file);
  84. ecryptfs_destroy_crypt_stat(&inode_info->crypt_stat);
  85. call_rcu(&inode->i_rcu, ecryptfs_i_callback);
  86. }
  87. /**
  88. * ecryptfs_statfs
  89. * @sb: The ecryptfs super block
  90. * @buf: The struct kstatfs to fill in with stats
  91. *
  92. * Get the filesystem statistics. Currently, we let this pass right through
  93. * to the lower filesystem and take no action ourselves.
  94. */
  95. static int ecryptfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  96. {
  97. struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
  98. int rc;
  99. if (!lower_dentry->d_sb->s_op->statfs)
  100. return -ENOSYS;
  101. rc = lower_dentry->d_sb->s_op->statfs(lower_dentry, buf);
  102. if (rc)
  103. return rc;
  104. buf->f_type = ECRYPTFS_SUPER_MAGIC;
  105. rc = ecryptfs_set_f_namelen(&buf->f_namelen, buf->f_namelen,
  106. &ecryptfs_superblock_to_private(dentry->d_sb)->mount_crypt_stat);
  107. return rc;
  108. }
  109. /**
  110. * ecryptfs_evict_inode
  111. * @inode - The ecryptfs inode
  112. *
  113. * Called by iput() when the inode reference count reached zero
  114. * and the inode is not hashed anywhere. Used to clear anything
  115. * that needs to be, before the inode is completely destroyed and put
  116. * on the inode free list. We use this to drop out reference to the
  117. * lower inode.
  118. */
  119. static void ecryptfs_evict_inode(struct inode *inode)
  120. {
  121. truncate_inode_pages_final(&inode->i_data);
  122. clear_inode(inode);
  123. iput(ecryptfs_inode_to_lower(inode));
  124. }
  125. /**
  126. * ecryptfs_show_options
  127. *
  128. * Prints the mount options for a given superblock.
  129. * Returns zero; does not fail.
  130. */
  131. static int ecryptfs_show_options(struct seq_file *m, struct dentry *root)
  132. {
  133. struct super_block *sb = root->d_sb;
  134. struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
  135. &ecryptfs_superblock_to_private(sb)->mount_crypt_stat;
  136. struct ecryptfs_global_auth_tok *walker;
  137. mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
  138. list_for_each_entry(walker,
  139. &mount_crypt_stat->global_auth_tok_list,
  140. mount_crypt_stat_list) {
  141. if (walker->flags & ECRYPTFS_AUTH_TOK_FNEK)
  142. seq_printf(m, ",ecryptfs_fnek_sig=%s", walker->sig);
  143. else
  144. seq_printf(m, ",ecryptfs_sig=%s", walker->sig);
  145. }
  146. mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
  147. seq_printf(m, ",ecryptfs_cipher=%s",
  148. mount_crypt_stat->global_default_cipher_name);
  149. if (mount_crypt_stat->global_default_cipher_key_size)
  150. seq_printf(m, ",ecryptfs_key_bytes=%zd",
  151. mount_crypt_stat->global_default_cipher_key_size);
  152. if (mount_crypt_stat->flags & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)
  153. seq_printf(m, ",ecryptfs_passthrough");
  154. if (mount_crypt_stat->flags & ECRYPTFS_XATTR_METADATA_ENABLED)
  155. seq_printf(m, ",ecryptfs_xattr_metadata");
  156. if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
  157. seq_printf(m, ",ecryptfs_encrypted_view");
  158. if (mount_crypt_stat->flags & ECRYPTFS_UNLINK_SIGS)
  159. seq_printf(m, ",ecryptfs_unlink_sigs");
  160. if (mount_crypt_stat->flags & ECRYPTFS_GLOBAL_MOUNT_AUTH_TOK_ONLY)
  161. seq_printf(m, ",ecryptfs_mount_auth_tok_only");
  162. return 0;
  163. }
  164. const struct super_operations ecryptfs_sops = {
  165. .alloc_inode = ecryptfs_alloc_inode,
  166. .destroy_inode = ecryptfs_destroy_inode,
  167. .statfs = ecryptfs_statfs,
  168. .remount_fs = NULL,
  169. .evict_inode = ecryptfs_evict_inode,
  170. .show_options = ecryptfs_show_options
  171. };