kexec: prevent double free on image allocation failure
authorSasha Levin <sasha.levin@oracle.com>
Thu, 28 Feb 2013 01:03:28 +0000 (17:03 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 28 Feb 2013 03:10:12 +0000 (19:10 -0800)
commitfe88f2ee33731f0934e8fb26f762b6715e43ff6f
treeb6e8af3812192ca5d8a60c51faaa9a025dbe7a5e
parent0d0bf6674136eb861b37213160b16388cfc1926d
kexec: prevent double free on image allocation failure

If kimage_normal_alloc() fails to initialize an allocated kimage, it will
free the image but would still set 'rimage', as a result kexec_load will
try to free it again.

This would explode as part of the freeing process is accessing internal
members which point to uninitialized memory.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/kexec.c