[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20170517113616.61499-1-david@sigma-star.at>
Date: Wed, 17 May 2017 13:36:16 +0200
From: David Gstir <david@...ma-star.at>
To: richard@....at, dedekind1@...il.com, adrian.hunter@...el.com
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-fscrypt@...r.kernel.org, linux-mtd@...ts.infradead.org,
David Gstir <david@...ma-star.at>, stable@...r.kernel.org
Subject: [PATCH] ubifs: Don't encrypt special files on creation
When a new inode is created, we check if the containing folder has a encryption
policy set and inherit that. This should however only be done for regular
files, links and subdirectories. Not for sockes fifos etc.
Fixes: d475a507457b ("ubifs: Add skeleton for fscrypto")
Cc: stable@...r.kernel.org
Signed-off-by: David Gstir <david@...ma-star.at>
---
fs/ubifs/dir.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c
index 566079d9b402..c67f6a3a606c 100644
--- a/fs/ubifs/dir.c
+++ b/fs/ubifs/dir.c
@@ -143,6 +143,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
case S_IFBLK:
case S_IFCHR:
inode->i_op = &ubifs_file_inode_operations;
+ encrypted = false;
break;
default:
BUG();
--
2.12.0
Powered by blists - more mailing lists