From: James Hogan Date: Tue, 25 Mar 2014 23:21:50 +0000 (+0000) Subject: linux-user: Assert stack used for auxvec, envp, argv X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8c0f0a60d48a6f62c20f4ce77dceb82047d3d57f;p=osstest%2Fqemu.git linux-user: Assert stack used for auxvec, envp, argv Assert that the amount of stack space used for auxvec, envp & argv exactly matches the amount allocated. This catches if DLINFO_ITEMS isn't updated when another NEW_AUX_ENT is added. Signed-off-by: James Hogan Cc: Riku Voipio Cc: Peter Maydell Signed-off-by: Riku Voipio --- diff --git a/linux-user/elfload.c b/linux-user/elfload.c index d2380b6cc..ecf6f350e 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -1455,6 +1455,8 @@ static abi_ulong create_elf_tables(abi_ulong p, int argc, int envc, info->auxv_len = sp_auxv - sp; sp = loader_build_argptr(envc, argc, sp, p, 0); + /* Check the right amount of stack was allocated for auxvec, envp & argv. */ + assert(sp_auxv - sp == size); return sp; }