EcryptFS development
 help / color / mirror / Atom feed
* [PATCH] eCryptfs: Allocate sufficient buffer space for encrypted filename decoding
@ 2014-11-21 17:02 Michael Halcrow
  2014-11-26 17:11 ` Michael Halcrow
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Halcrow @ 2014-11-21 17:02 UTC (permalink / raw)
  To: tyhicks; +Cc: dmitryc, ecryptfs, Michael Halcrow

Dmitry Chernenkov used KASAN to discover that eCryptfs writes past the
end of the allocated buffer during encrypted filename decoding. This
fix corrects the issue by ensuring that there is sufficient buffer
space allocated.

Signed-off-by: Michael Halcrow <mhalcrow@google.com>
---
 fs/ecryptfs/crypto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c
index 2f6735d..53d4f2e 100644
--- a/fs/ecryptfs/crypto.c
+++ b/fs/ecryptfs/crypto.c
@@ -1871,7 +1871,7 @@ static size_t ecryptfs_max_decoded_size(size_t encoded_size)
 	 * the caller with the maximum amount of allocated
 	 * space that @dst will need to point to in a
 	 * subsequent call. */
-	return ((encoded_size + 1) * 3) / 4;
+	return (((encoded_size + 1) * 3) / 4) + 1;
 }
 
 /**
-- 
2.1.0.rc2.206.gedb03e5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-11-26 17:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-21 17:02 [PATCH] eCryptfs: Allocate sufficient buffer space for encrypted filename decoding Michael Halcrow
2014-11-26 17:11 ` Michael Halcrow
2014-11-26 17:23   ` Tyler Hicks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox