linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] initramfs: Fix a missing-chek bug in dir_add()
@ 2019-05-24  3:30 Gen Zhang
  2019-05-24  3:35 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Gen Zhang @ 2019-05-24  3:30 UTC (permalink / raw)
  To: akpm, rppt, david.engraf, steven.price, osandov,
	luc.vanoostenryck, axboe
  Cc: linux-kernel

In dir_add() and do_name(), de->name and vcollected are allocated by
kstrdup(). And de->name and vcollected are dereferenced in the following
codes. However, memory allocation functions such as kstrdup() may fail. 
Dereferencing this null pointer may cause the kernel go wrong. Thus we
should check these two kstrdup() operations.
Further, if kstrdup() returns NULL, we should free de in dir_add().

Signed-off-by: Gen Zhang <blackgod016574@gmail.com>
---
diff --git a/init/initramfs.c b/init/initramfs.c
index 178130f..1421488 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -125,6 +125,10 @@ static void __init dir_add(const char *name, time64_t mtime)
		panic("can't allocate dir_entry buffer");
	INIT_LIST_HEAD(&de->list);
	de->name = kstrdup(name, GFP_KERNEL);
+	if (!de->name) {
+		kfree(de);
+		panic("can't allocate dir_entry name buffer");
+	}
	de->mtime = mtime;
	list_add(&de->list, &dir_list);
 }
@@ -340,6 +344,10 @@ static int __init do_name(void)
				if (body_len)
					ksys_ftruncate(wfd, body_len);
				vcollected = kstrdup(collected, GFP_KERNEL);
+				if (!vcollected) {
+					panic("can't allocate vcollected buffer");
+					return 0;
+				}
				state = CopyFile;
			}
		}

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

* Re: [PATCH v2] initramfs: Fix a missing-chek bug in dir_add()
  2019-05-24  3:30 [PATCH v2] initramfs: Fix a missing-chek bug in dir_add() Gen Zhang
@ 2019-05-24  3:35 ` Andrew Morton
  2019-05-24  3:45   ` [PATCH v2] initramfs: Fix a missing-chek bug in dir_add()teven.price@arm.com、 Gen Zhang
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2019-05-24  3:35 UTC (permalink / raw)
  To: Gen Zhang
  Cc: rppt, david.engraf, steven.price, osandov, luc.vanoostenryck,
	axboe, linux-kernel

On Fri, 24 May 2019 11:30:45 +0800 Gen Zhang <blackgod016574@gmail.com> wrote:

> In dir_add() and do_name(), de->name and vcollected are allocated by
> kstrdup(). And de->name and vcollected are dereferenced in the following
> codes. However, memory allocation functions such as kstrdup() may fail. 
> Dereferencing this null pointer may cause the kernel go wrong. Thus we
> should check these two kstrdup() operations.
> Further, if kstrdup() returns NULL, we should free de in dir_add().

We generally assume that memory allocations within __init code cannot
fail.  If one does fail, something quite horrid has happened.  The
resulting oops will provide the same information as the proposed panic()
anyway.

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

* Re: [PATCH v2] initramfs: Fix a missing-chek bug in dir_add()teven.price@arm.com、
  2019-05-24  3:35 ` Andrew Morton
@ 2019-05-24  3:45   ` Gen Zhang
  0 siblings, 0 replies; 3+ messages in thread
From: Gen Zhang @ 2019-05-24  3:45 UTC (permalink / raw)
  To: Andrew Morton
  Cc: rppt, david.engraf, steven.price, osandov, luc.vanoostenryck,
	axboe, linux-kernel

On Thu, May 23, 2019 at 08:35:23PM -0700, Andrew Morton wrote:
> On Fri, 24 May 2019 11:30:45 +0800 Gen Zhang <blackgod016574@gmail.com> wrote:
> 
> > In dir_add() and do_name(), de->name and vcollected are allocated by
> > kstrdup(). And de->name and vcollected are dereferenced in the following
> > codes. However, memory allocation functions such as kstrdup() may fail. 
> > Dereferencing this null pointer may cause the kernel go wrong. Thus we
> > should check these two kstrdup() operations.
> > Further, if kstrdup() returns NULL, we should free de in dir_add().
> 
> We generally assume that memory allocations within __init code cannot
> fail.  If one does fail, something quite horrid has happened.  The
> resulting oops will provide the same information as the proposed panic()
> anyway.
Thanks for your reply, Andrew.
You mean that it is not necessary to check memory allcoation in __init,
right?
Thanks
Gen

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

end of thread, other threads:[~2019-05-24  3:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-24  3:30 [PATCH v2] initramfs: Fix a missing-chek bug in dir_add() Gen Zhang
2019-05-24  3:35 ` Andrew Morton
2019-05-24  3:45   ` [PATCH v2] initramfs: Fix a missing-chek bug in dir_add()teven.price@arm.com、 Gen Zhang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).