From: Aurelien Jarno <aurelien@aurel32.net>
To: Leon Alrae <leon.alrae@imgtec.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] target-mips: fix resource leak reported by Coverity
Date: Tue, 14 Jul 2015 17:45:38 +0200 [thread overview]
Message-ID: <20150714154538.GA7054@aurel32.net> (raw)
In-Reply-To: <1436868495-4359-3-git-send-email-leon.alrae@imgtec.com>
On 2015-07-14 11:08, Leon Alrae wrote:
> UHI assert and link operations call lock_user_string() twice to obtain two
> strings pointed by gpr[4] and gpr[5]. If the second lock_user_string()
> fails, then the first one won't get freed. Fix this by introducing another
> macro responsible for obtaining two strings and handling allocation
> failure.
>
> Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
> ---
> target-mips/mips-semi.c | 23 +++++++++++++++++++----
> 1 file changed, 19 insertions(+), 4 deletions(-)
>
> diff --git a/target-mips/mips-semi.c b/target-mips/mips-semi.c
> index 1162c76..5050940 100644
> --- a/target-mips/mips-semi.c
> +++ b/target-mips/mips-semi.c
> @@ -220,6 +220,23 @@ static int copy_argn_to_target(CPUMIPSState *env, int arg_num,
> } \
> } while (0)
>
> +#define GET_TARGET_STRINGS_2(p, addr, p2, addr2) \
> + do { \
> + p = lock_user_string(addr); \
> + if (!p) { \
> + gpr[2] = -1; \
> + gpr[3] = EFAULT; \
> + goto uhi_done; \
> + } \
> + p2 = lock_user_string(addr2); \
> + if (!p2) { \
> + unlock_user(p, addr, 0); \
> + gpr[2] = -1; \
> + gpr[3] = EFAULT; \
> + goto uhi_done; \
> + } \
> + } while (0)
> +
> #define FREE_TARGET_STRING(p, gpr) \
> do { \
> unlock_user(p, gpr, 0); \
> @@ -322,8 +339,7 @@ void helper_do_semihosting(CPUMIPSState *env)
> FREE_TARGET_STRING(p, gpr[4]);
> break;
> case UHI_assert:
> - GET_TARGET_STRING(p, gpr[4]);
> - GET_TARGET_STRING(p2, gpr[5]);
> + GET_TARGET_STRINGS_2(p, gpr[4], p2, gpr[5]);
> printf("assertion '");
> printf("\"%s\"", p);
> printf("': file \"%s\", line %d\n", p2, (int)gpr[6]);
> @@ -341,8 +357,7 @@ void helper_do_semihosting(CPUMIPSState *env)
> break;
> #ifndef _WIN32
> case UHI_link:
> - GET_TARGET_STRING(p, gpr[4]);
> - GET_TARGET_STRING(p2, gpr[5]);
> + GET_TARGET_STRINGS_2(p, gpr[4], p2, gpr[5]);
> gpr[2] = link(p, p2);
> gpr[3] = errno_mips(errno);
> FREE_TARGET_STRING(p2, gpr[5]);
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
--
Aurelien Jarno GPG: 4096R/1DDD8C9B
aurelien@aurel32.net http://www.aurel32.net
next prev parent reply other threads:[~2015-07-14 15:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-14 10:08 [Qemu-devel] [PATCH] target-mips: correct DERET instruction Leon Alrae
2015-07-14 10:08 ` [Qemu-devel] [PATCH] target-mips: fix logically dead code reported by Coverity Leon Alrae
2015-07-14 15:45 ` Aurelien Jarno
2015-07-14 16:22 ` Leon Alrae
2015-07-14 16:26 ` Aurelien Jarno
2015-07-14 10:08 ` [Qemu-devel] [PATCH] target-mips: fix resource leak " Leon Alrae
2015-07-14 15:45 ` Aurelien Jarno [this message]
2015-07-14 15:45 ` [Qemu-devel] [PATCH] target-mips: correct DERET instruction Aurelien Jarno
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150714154538.GA7054@aurel32.net \
--to=aurelien@aurel32.net \
--cc=leon.alrae@imgtec.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).