aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2016-07-05 17:32:30 -0400
committerTyler Hicks <tyhicks@canonical.com>2016-07-08 11:35:28 -0400
commitf0fe970df3838c202ef6c07a4c2b36838ef0a88b (patch)
treef9556752b553050c87aef3172147f94e242778a9
parent78c4e172412de5d0456dc00d2b34050aa0b683b5 (diff)
ecryptfs: don't allow mmap when the lower fs doesn't support it
There are legitimate reasons to disallow mmap on certain files, notably in sysfs or procfs. We shouldn't emulate mmap support on file systems that don't offer support natively. CVE-2016-1583 Signed-off-by: Jeff Mahoney <jeffm@suse.com> Cc: stable@vger.kernel.org [tyhicks: clean up f_op check by using ecryptfs_file_to_lower()] Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
-rw-r--r--fs/ecryptfs/file.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/fs/ecryptfs/file.c b/fs/ecryptfs/file.c
index 53d0141b9c20..ca4e83750214 100644
--- a/fs/ecryptfs/file.c
+++ b/fs/ecryptfs/file.c
@@ -169,6 +169,19 @@ out:
169 return rc; 169 return rc;
170} 170}
171 171
172static int ecryptfs_mmap(struct file *file, struct vm_area_struct *vma)
173{
174 struct file *lower_file = ecryptfs_file_to_lower(file);
175 /*
176 * Don't allow mmap on top of file systems that don't support it
177 * natively. If FILESYSTEM_MAX_STACK_DEPTH > 2 or ecryptfs
178 * allows recursive mounting, this will need to be extended.
179 */
180 if (!lower_file->f_op->mmap)
181 return -ENODEV;
182 return generic_file_mmap(file, vma);
183}
184
172/** 185/**
173 * ecryptfs_open 186 * ecryptfs_open
174 * @inode: inode specifying file to open 187 * @inode: inode specifying file to open
@@ -403,7 +416,7 @@ const struct file_operations ecryptfs_main_fops = {
403#ifdef CONFIG_COMPAT 416#ifdef CONFIG_COMPAT
404 .compat_ioctl = ecryptfs_compat_ioctl, 417 .compat_ioctl = ecryptfs_compat_ioctl,
405#endif 418#endif
406 .mmap = generic_file_mmap, 419 .mmap = ecryptfs_mmap,
407 .open = ecryptfs_open, 420 .open = ecryptfs_open,
408 .flush = ecryptfs_flush, 421 .flush = ecryptfs_flush,
409 .release = ecryptfs_release, 422 .release = ecryptfs_release,