diff options
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r-- | fs/ecryptfs/Makefile | 2 | ||||
-rw-r--r-- | fs/ecryptfs/ecryptfs_kernel.h | 19 | ||||
-rw-r--r-- | fs/ecryptfs/file.c | 7 | ||||
-rw-r--r-- | fs/ecryptfs/kthread.c | 203 | ||||
-rw-r--r-- | fs/ecryptfs/main.c | 42 |
5 files changed, 251 insertions, 22 deletions
diff --git a/fs/ecryptfs/Makefile b/fs/ecryptfs/Makefile index 1e34a7fd4884..b4755a85996e 100644 --- a/fs/ecryptfs/Makefile +++ b/fs/ecryptfs/Makefile | |||
@@ -4,4 +4,4 @@ | |||
4 | 4 | ||
5 | obj-$(CONFIG_ECRYPT_FS) += ecryptfs.o | 5 | obj-$(CONFIG_ECRYPT_FS) += ecryptfs.o |
6 | 6 | ||
7 | ecryptfs-objs := dentry.o file.o inode.o main.o super.o mmap.o read_write.o crypto.o keystore.o messaging.o netlink.o miscdev.o debug.o | 7 | ecryptfs-objs := dentry.o file.o inode.o main.o super.o mmap.o read_write.o crypto.o keystore.o messaging.o netlink.o miscdev.o kthread.o debug.o |
diff --git a/fs/ecryptfs/ecryptfs_kernel.h b/fs/ecryptfs/ecryptfs_kernel.h index c15c25745e05..b4a0cccfdd7c 100644 --- a/fs/ecryptfs/ecryptfs_kernel.h +++ b/fs/ecryptfs/ecryptfs_kernel.h | |||
@@ -559,6 +559,20 @@ extern struct kmem_cache *ecryptfs_key_record_cache; | |||
559 | extern struct kmem_cache *ecryptfs_key_sig_cache; | 559 | extern struct kmem_cache *ecryptfs_key_sig_cache; |
560 | extern struct kmem_cache *ecryptfs_global_auth_tok_cache; | 560 | extern struct kmem_cache *ecryptfs_global_auth_tok_cache; |
561 | extern struct kmem_cache *ecryptfs_key_tfm_cache; | 561 | extern struct kmem_cache *ecryptfs_key_tfm_cache; |
562 | extern struct kmem_cache *ecryptfs_open_req_cache; | ||
563 | |||
564 | struct ecryptfs_open_req { | ||
565 | #define ECRYPTFS_REQ_PROCESSED 0x00000001 | ||
566 | #define ECRYPTFS_REQ_DROPPED 0x00000002 | ||
567 | #define ECRYPTFS_REQ_ZOMBIE 0x00000004 | ||
568 | u32 flags; | ||
569 | struct file **lower_file; | ||
570 | struct dentry *lower_dentry; | ||
571 | struct vfsmount *lower_mnt; | ||
572 | wait_queue_head_t wait; | ||
573 | struct mutex mux; | ||
574 | struct list_head kthread_ctl_list; | ||
575 | }; | ||
562 | 576 | ||
563 | int ecryptfs_interpose(struct dentry *hidden_dentry, | 577 | int ecryptfs_interpose(struct dentry *hidden_dentry, |
564 | struct dentry *this_dentry, struct super_block *sb, | 578 | struct dentry *this_dentry, struct super_block *sb, |
@@ -690,5 +704,10 @@ void ecryptfs_msg_ctx_alloc_to_free(struct ecryptfs_msg_ctx *msg_ctx); | |||
690 | int | 704 | int |
691 | ecryptfs_spawn_daemon(struct ecryptfs_daemon **daemon, uid_t euid, | 705 | ecryptfs_spawn_daemon(struct ecryptfs_daemon **daemon, uid_t euid, |
692 | struct user_namespace *user_ns, struct pid *pid); | 706 | struct user_namespace *user_ns, struct pid *pid); |
707 | int ecryptfs_init_kthread(void); | ||
708 | void ecryptfs_destroy_kthread(void); | ||
709 | int ecryptfs_privileged_open(struct file **lower_file, | ||
710 | struct dentry *lower_dentry, | ||
711 | struct vfsmount *lower_mnt); | ||
693 | 712 | ||
694 | #endif /* #ifndef ECRYPTFS_KERNEL_H */ | 713 | #endif /* #ifndef ECRYPTFS_KERNEL_H */ |
diff --git a/fs/ecryptfs/file.c b/fs/ecryptfs/file.c index 24749bf0668f..f0be29051528 100644 --- a/fs/ecryptfs/file.c +++ b/fs/ecryptfs/file.c | |||
@@ -192,6 +192,13 @@ static int ecryptfs_open(struct inode *inode, struct file *file) | |||
192 | | ECRYPTFS_ENCRYPTED); | 192 | | ECRYPTFS_ENCRYPTED); |
193 | } | 193 | } |
194 | mutex_unlock(&crypt_stat->cs_mutex); | 194 | mutex_unlock(&crypt_stat->cs_mutex); |
195 | if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_RDONLY) | ||
196 | && !(file->f_flags & O_RDONLY)) { | ||
197 | rc = -EPERM; | ||
198 | printk(KERN_WARNING "%s: Lower persistent file is RO; eCryptfs " | ||
199 | "file must hence be opened RO\n", __func__); | ||
200 | goto out; | ||
201 | } | ||
195 | ecryptfs_set_file_lower( | 202 | ecryptfs_set_file_lower( |
196 | file, ecryptfs_inode_to_private(inode)->lower_file); | 203 | file, ecryptfs_inode_to_private(inode)->lower_file); |
197 | if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) { | 204 | if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) { |
diff --git a/fs/ecryptfs/kthread.c b/fs/ecryptfs/kthread.c new file mode 100644 index 000000000000..c440c6b58b2d --- /dev/null +++ b/fs/ecryptfs/kthread.c | |||
@@ -0,0 +1,203 @@ | |||
1 | /** | ||
2 | * eCryptfs: Linux filesystem encryption layer | ||
3 | * | ||
4 | * Copyright (C) 2008 International Business Machines Corp. | ||
5 | * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License as | ||
9 | * published by the Free Software Foundation; either version 2 of the | ||
10 | * License, or (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, but | ||
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | ||
20 | * 02111-1307, USA. | ||
21 | */ | ||
22 | |||
23 | #include <linux/kthread.h> | ||
24 | #include <linux/freezer.h> | ||
25 | #include <linux/wait.h> | ||
26 | #include <linux/mount.h> | ||
27 | #include "ecryptfs_kernel.h" | ||
28 | |||
29 | struct kmem_cache *ecryptfs_open_req_cache; | ||
30 | |||
31 | static struct ecryptfs_kthread_ctl { | ||
32 | #define ECRYPTFS_KTHREAD_ZOMBIE 0x00000001 | ||
33 | u32 flags; | ||
34 | struct mutex mux; | ||
35 | struct list_head req_list; | ||
36 | wait_queue_head_t wait; | ||
37 | } ecryptfs_kthread_ctl; | ||
38 | |||
39 | static struct task_struct *ecryptfs_kthread; | ||
40 | |||
41 | /** | ||
42 | * ecryptfs_threadfn | ||
43 | * @ignored: ignored | ||
44 | * | ||
45 | * The eCryptfs kernel thread that has the responsibility of getting | ||
46 | * the lower persistent file with RW permissions. | ||
47 | * | ||
48 | * Returns zero on success; non-zero otherwise | ||
49 | */ | ||
50 | static int ecryptfs_threadfn(void *ignored) | ||
51 | { | ||
52 | set_freezable(); | ||
53 | while (1) { | ||
54 | struct ecryptfs_open_req *req; | ||
55 | |||
56 | wait_event_freezable( | ||
57 | ecryptfs_kthread_ctl.wait, | ||
58 | (!list_empty(&ecryptfs_kthread_ctl.req_list) | ||
59 | || kthread_should_stop())); | ||
60 | mutex_lock(&ecryptfs_kthread_ctl.mux); | ||
61 | if (ecryptfs_kthread_ctl.flags & ECRYPTFS_KTHREAD_ZOMBIE) { | ||
62 | mutex_unlock(&ecryptfs_kthread_ctl.mux); | ||
63 | goto out; | ||
64 | } | ||
65 | while (!list_empty(&ecryptfs_kthread_ctl.req_list)) { | ||
66 | req = list_first_entry(&ecryptfs_kthread_ctl.req_list, | ||
67 | struct ecryptfs_open_req, | ||
68 | kthread_ctl_list); | ||
69 | mutex_lock(&req->mux); | ||
70 | list_del(&req->kthread_ctl_list); | ||
71 | if (!(req->flags & ECRYPTFS_REQ_ZOMBIE)) { | ||
72 | dget(req->lower_dentry); | ||
73 | mntget(req->lower_mnt); | ||
74 | (*req->lower_file) = dentry_open( | ||
75 | req->lower_dentry, req->lower_mnt, | ||
76 | (O_RDWR | O_LARGEFILE)); | ||
77 | req->flags |= ECRYPTFS_REQ_PROCESSED; | ||
78 | } | ||
79 | wake_up(&req->wait); | ||
80 | mutex_unlock(&req->mux); | ||
81 | } | ||
82 | mutex_unlock(&ecryptfs_kthread_ctl.mux); | ||
83 | } | ||
84 | out: | ||
85 | return 0; | ||
86 | } | ||
87 | |||
88 | int ecryptfs_init_kthread(void) | ||
89 | { | ||
90 | int rc = 0; | ||
91 | |||
92 | mutex_init(&ecryptfs_kthread_ctl.mux); | ||
93 | init_waitqueue_head(&ecryptfs_kthread_ctl.wait); | ||
94 | INIT_LIST_HEAD(&ecryptfs_kthread_ctl.req_list); | ||
95 | ecryptfs_kthread = kthread_run(&ecryptfs_threadfn, NULL, | ||
96 | "ecryptfs-kthread"); | ||
97 | if (IS_ERR(ecryptfs_kthread)) { | ||
98 | rc = PTR_ERR(ecryptfs_kthread); | ||
99 | printk(KERN_ERR "%s: Failed to create kernel thread; rc = [%d]" | ||
100 | "\n", __func__, rc); | ||
101 | } | ||
102 | return rc; | ||
103 | } | ||
104 | |||
105 | void ecryptfs_destroy_kthread(void) | ||
106 | { | ||
107 | struct ecryptfs_open_req *req; | ||
108 | |||
109 | mutex_lock(&ecryptfs_kthread_ctl.mux); | ||
110 | ecryptfs_kthread_ctl.flags |= ECRYPTFS_KTHREAD_ZOMBIE; | ||
111 | list_for_each_entry(req, &ecryptfs_kthread_ctl.req_list, | ||
112 | kthread_ctl_list) { | ||
113 | mutex_lock(&req->mux); | ||
114 | req->flags |= ECRYPTFS_REQ_ZOMBIE; | ||
115 | wake_up(&req->wait); | ||
116 | mutex_unlock(&req->mux); | ||
117 | } | ||
118 | mutex_unlock(&ecryptfs_kthread_ctl.mux); | ||
119 | kthread_stop(ecryptfs_kthread); | ||
120 | wake_up(&ecryptfs_kthread_ctl.wait); | ||
121 | } | ||
122 | |||
123 | /** | ||
124 | * ecryptfs_privileged_open | ||
125 | * @lower_file: Result of dentry_open by root on lower dentry | ||
126 | * @lower_dentry: Lower dentry for file to open | ||
127 | * @lower_mnt: Lower vfsmount for file to open | ||
128 | * | ||
129 | * This function gets a r/w file opened againt the lower dentry. | ||
130 | * | ||
131 | * Returns zero on success; non-zero otherwise | ||
132 | */ | ||
133 | int ecryptfs_privileged_open(struct file **lower_file, | ||
134 | struct dentry *lower_dentry, | ||
135 | struct vfsmount *lower_mnt) | ||
136 | { | ||
137 | struct ecryptfs_open_req *req; | ||
138 | int rc = 0; | ||
139 | |||
140 | /* Corresponding dput() and mntput() are done when the | ||
141 | * persistent file is fput() when the eCryptfs inode is | ||
142 | * destroyed. */ | ||
143 | dget(lower_dentry); | ||
144 | mntget(lower_mnt); | ||
145 | (*lower_file) = dentry_open(lower_dentry, lower_mnt, | ||
146 | (O_RDWR | O_LARGEFILE)); | ||
147 | if (!IS_ERR(*lower_file)) | ||
148 | goto out; | ||
149 | req = kmem_cache_alloc(ecryptfs_open_req_cache, GFP_KERNEL); | ||
150 | if (!req) { | ||
151 | rc = -ENOMEM; | ||
152 | goto out; | ||
153 | } | ||
154 | mutex_init(&req->mux); | ||
155 | req->lower_file = lower_file; | ||
156 | req->lower_dentry = lower_dentry; | ||
157 | req->lower_mnt = lower_mnt; | ||
158 | init_waitqueue_head(&req->wait); | ||
159 | req->flags = 0; | ||
160 | mutex_lock(&ecryptfs_kthread_ctl.mux); | ||
161 | if (ecryptfs_kthread_ctl.flags & ECRYPTFS_KTHREAD_ZOMBIE) { | ||
162 | rc = -EIO; | ||
163 | mutex_unlock(&ecryptfs_kthread_ctl.mux); | ||
164 | printk(KERN_ERR "%s: We are in the middle of shutting down; " | ||
165 | "aborting privileged request to open lower file\n", | ||
166 | __func__); | ||
167 | goto out_free; | ||
168 | } | ||
169 | list_add_tail(&req->kthread_ctl_list, &ecryptfs_kthread_ctl.req_list); | ||
170 | mutex_unlock(&ecryptfs_kthread_ctl.mux); | ||
171 | wake_up(&ecryptfs_kthread_ctl.wait); | ||
172 | wait_event(req->wait, (req->flags != 0)); | ||
173 | mutex_lock(&req->mux); | ||
174 | BUG_ON(req->flags == 0); | ||
175 | if (req->flags & ECRYPTFS_REQ_DROPPED | ||
176 | || req->flags & ECRYPTFS_REQ_ZOMBIE) { | ||
177 | rc = -EIO; | ||
178 | printk(KERN_WARNING "%s: Privileged open request dropped\n", | ||
179 | __func__); | ||
180 | goto out_unlock; | ||
181 | } | ||
182 | if (IS_ERR(*req->lower_file)) { | ||
183 | rc = PTR_ERR(*req->lower_file); | ||
184 | dget(lower_dentry); | ||
185 | mntget(lower_mnt); | ||
186 | (*lower_file) = dentry_open(lower_dentry, lower_mnt, | ||
187 | (O_RDONLY | O_LARGEFILE)); | ||
188 | if (IS_ERR(*lower_file)) { | ||
189 | rc = PTR_ERR(*req->lower_file); | ||
190 | (*lower_file) = NULL; | ||
191 | printk(KERN_WARNING "%s: Error attempting privileged " | ||
192 | "open of lower file with either RW or RO " | ||
193 | "perms; rc = [%d]. Giving up.\n", | ||
194 | __func__, rc); | ||
195 | } | ||
196 | } | ||
197 | out_unlock: | ||
198 | mutex_unlock(&req->mux); | ||
199 | out_free: | ||
200 | kmem_cache_free(ecryptfs_open_req_cache, req); | ||
201 | out: | ||
202 | return rc; | ||
203 | } | ||
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index d603631601eb..f36ab2feea28 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c | |||
@@ -130,26 +130,12 @@ static int ecryptfs_init_persistent_file(struct dentry *ecryptfs_dentry) | |||
130 | ecryptfs_dentry_to_lower_mnt(ecryptfs_dentry); | 130 | ecryptfs_dentry_to_lower_mnt(ecryptfs_dentry); |
131 | 131 | ||
132 | lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry); | 132 | lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry); |
133 | /* Corresponding dput() and mntput() are done when the | 133 | rc = ecryptfs_privileged_open(&inode_info->lower_file, |
134 | * persistent file is fput() when the eCryptfs inode | 134 | lower_dentry, lower_mnt); |
135 | * is destroyed. */ | 135 | if (rc || IS_ERR(inode_info->lower_file)) { |
136 | dget(lower_dentry); | ||
137 | mntget(lower_mnt); | ||
138 | inode_info->lower_file = dentry_open(lower_dentry, | ||
139 | lower_mnt, | ||
140 | (O_RDWR | O_LARGEFILE)); | ||
141 | if (IS_ERR(inode_info->lower_file)) { | ||
142 | dget(lower_dentry); | ||
143 | mntget(lower_mnt); | ||
144 | inode_info->lower_file = dentry_open(lower_dentry, | ||
145 | lower_mnt, | ||
146 | (O_RDONLY | ||
147 | | O_LARGEFILE)); | ||
148 | } | ||
149 | if (IS_ERR(inode_info->lower_file)) { | ||
150 | printk(KERN_ERR "Error opening lower persistent file " | 136 | printk(KERN_ERR "Error opening lower persistent file " |
151 | "for lower_dentry [0x%p] and lower_mnt [0x%p]\n", | 137 | "for lower_dentry [0x%p] and lower_mnt [0x%p]; " |
152 | lower_dentry, lower_mnt); | 138 | "rc = [%d]\n", lower_dentry, lower_mnt, rc); |
153 | rc = PTR_ERR(inode_info->lower_file); | 139 | rc = PTR_ERR(inode_info->lower_file); |
154 | inode_info->lower_file = NULL; | 140 | inode_info->lower_file = NULL; |
155 | } | 141 | } |
@@ -679,6 +665,11 @@ static struct ecryptfs_cache_info { | |||
679 | .name = "ecryptfs_key_tfm_cache", | 665 | .name = "ecryptfs_key_tfm_cache", |
680 | .size = sizeof(struct ecryptfs_key_tfm), | 666 | .size = sizeof(struct ecryptfs_key_tfm), |
681 | }, | 667 | }, |
668 | { | ||
669 | .cache = &ecryptfs_open_req_cache, | ||
670 | .name = "ecryptfs_open_req_cache", | ||
671 | .size = sizeof(struct ecryptfs_open_req), | ||
672 | }, | ||
682 | }; | 673 | }; |
683 | 674 | ||
684 | static void ecryptfs_free_kmem_caches(void) | 675 | static void ecryptfs_free_kmem_caches(void) |
@@ -795,11 +786,17 @@ static int __init ecryptfs_init(void) | |||
795 | printk(KERN_ERR "sysfs registration failed\n"); | 786 | printk(KERN_ERR "sysfs registration failed\n"); |
796 | goto out_unregister_filesystem; | 787 | goto out_unregister_filesystem; |
797 | } | 788 | } |
789 | rc = ecryptfs_init_kthread(); | ||
790 | if (rc) { | ||
791 | printk(KERN_ERR "%s: kthread initialization failed; " | ||
792 | "rc = [%d]\n", __func__, rc); | ||
793 | goto out_do_sysfs_unregistration; | ||
794 | } | ||
798 | rc = ecryptfs_init_messaging(ecryptfs_transport); | 795 | rc = ecryptfs_init_messaging(ecryptfs_transport); |
799 | if (rc) { | 796 | if (rc) { |
800 | ecryptfs_printk(KERN_ERR, "Failure occured while attempting to " | 797 | printk(KERN_ERR "Failure occured while attempting to " |
801 | "initialize the eCryptfs netlink socket\n"); | 798 | "initialize the eCryptfs netlink socket\n"); |
802 | goto out_do_sysfs_unregistration; | 799 | goto out_destroy_kthread; |
803 | } | 800 | } |
804 | rc = ecryptfs_init_crypto(); | 801 | rc = ecryptfs_init_crypto(); |
805 | if (rc) { | 802 | if (rc) { |
@@ -814,6 +811,8 @@ static int __init ecryptfs_init(void) | |||
814 | goto out; | 811 | goto out; |
815 | out_release_messaging: | 812 | out_release_messaging: |
816 | ecryptfs_release_messaging(ecryptfs_transport); | 813 | ecryptfs_release_messaging(ecryptfs_transport); |
814 | out_destroy_kthread: | ||
815 | ecryptfs_destroy_kthread(); | ||
817 | out_do_sysfs_unregistration: | 816 | out_do_sysfs_unregistration: |
818 | do_sysfs_unregistration(); | 817 | do_sysfs_unregistration(); |
819 | out_unregister_filesystem: | 818 | out_unregister_filesystem: |
@@ -833,6 +832,7 @@ static void __exit ecryptfs_exit(void) | |||
833 | printk(KERN_ERR "Failure whilst attempting to destroy crypto; " | 832 | printk(KERN_ERR "Failure whilst attempting to destroy crypto; " |
834 | "rc = [%d]\n", rc); | 833 | "rc = [%d]\n", rc); |
835 | ecryptfs_release_messaging(ecryptfs_transport); | 834 | ecryptfs_release_messaging(ecryptfs_transport); |
835 | ecryptfs_destroy_kthread(); | ||
836 | do_sysfs_unregistration(); | 836 | do_sysfs_unregistration(); |
837 | unregister_filesystem(&ecryptfs_fs_type); | 837 | unregister_filesystem(&ecryptfs_fs_type); |
838 | ecryptfs_free_kmem_caches(); | 838 | ecryptfs_free_kmem_caches(); |