public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] pstore: add vmalloc error check
@ 2015-10-16 15:25 Geliang Tang
  2015-10-16 15:25 ` [PATCH 2/3] pstore: add a helper function pstore_register_kmsg Geliang Tang
  0 siblings, 1 reply; 18+ messages in thread
From: Geliang Tang @ 2015-10-16 15:25 UTC (permalink / raw)
  To: Anton Vorontsov, Colin Cross, Kees Cook, Tony Luck
  Cc: Geliang Tang, linux-kernel

If vmalloc is failed, return -ENOMEM.

Signed-off-by: Geliang Tang <geliangtang@163.com>
Acked-by: Kees Cook <keescook@chromium.org>
---
 Send it again.
---
 fs/pstore/pmsg.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fs/pstore/pmsg.c b/fs/pstore/pmsg.c
index feb5dd2..5a2f05a 100644
--- a/fs/pstore/pmsg.c
+++ b/fs/pstore/pmsg.c
@@ -37,6 +37,8 @@ static ssize_t write_pmsg(struct file *file, const char __user *buf,
 	if (buffer_size > PMSG_MAX_BOUNCE_BUFFER_SIZE)
 		buffer_size = PMSG_MAX_BOUNCE_BUFFER_SIZE;
 	buffer = vmalloc(buffer_size);
+	if (!buffer)
+		return -ENOMEM;
 
 	mutex_lock(&pmsg_lock);
 	for (i = 0; i < count; ) {
-- 
2.5.0



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

end of thread, other threads:[~2015-10-21 16:38 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-16 15:25 [PATCH 1/3] pstore: add vmalloc error check Geliang Tang
2015-10-16 15:25 ` [PATCH 2/3] pstore: add a helper function pstore_register_kmsg Geliang Tang
2015-10-16 15:25   ` [PATCH 3/3] pstore: add 'rmmod ramoops' support Geliang Tang
2015-10-16 15:50     ` Kees Cook
2015-10-18 10:49       ` [PATCH v2 0/3] pstore: add pstore unregister Geliang Tang
2015-10-18 10:49         ` [PATCH v2 1/3] pstore: add vmalloc error check Geliang Tang
2015-10-18 10:49           ` [PATCH v2 2/3] pstore: add a helper function pstore_register_kmsg Geliang Tang
2015-10-18 10:49             ` [PATCH v2 3/3] pstore: add pstore unregister Geliang Tang
2015-10-19 22:56               ` Luck, Tony
2015-10-20  7:39                 ` [PATCH v3 0/3] " Geliang Tang
2015-10-20  7:39                   ` [PATCH v3 1/3] pstore: add vmalloc error check Geliang Tang
2015-10-20  7:39                     ` [PATCH v3 2/3] pstore: add a helper function pstore_register_kmsg Geliang Tang
2015-10-20  7:39                       ` [PATCH v3 3/3] pstore: add pstore unregister Geliang Tang
2015-10-20 17:19                   ` [PATCH v3 0/3] " Kees Cook
2015-10-21  2:52                     ` Geliang Tang
2015-10-21  3:01                       ` Kees Cook
2015-10-21  4:11                         ` Geliang Tang
2015-10-21 16:38                           ` Luck, Tony

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