qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] target/mips: Handle lock_user() failure in UHI_plog semihosting call
@ 2022-07-19 19:17 Peter Maydell
  2022-07-23 21:37 ` Richard Henderson
  2022-08-08 21:21 ` Philippe Mathieu-Daudé via
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Maydell @ 2022-07-19 19:17 UTC (permalink / raw)
  To: qemu-devel
  Cc: Richard Henderson, Philippe Mathieu-Daudé, Aurelien Jarno,
	Jiaxun Yang, Aleksandar Rikalo

Coverity notes that we forgot to check the error return from
lock_user() in one place in the handling of the UHI_plog semihosting
call.  Add the missing error handling.

report_fault() is rather brutal in that it will call abort(), but
this is the same error-handling used in the rest of this file.

Resolves: Coverity CID 1490684
Fixes: ea4210600db3c5 ("target/mips: Avoid qemu_semihosting_log_out for UHI_plog")
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
NB: only tested with 'make check' and 'make check-tcg', which
almost certainly don't actually exercise this codepath.
---
 target/mips/tcg/sysemu/mips-semi.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/target/mips/tcg/sysemu/mips-semi.c b/target/mips/tcg/sysemu/mips-semi.c
index 5fb1ad90920..85f0567a7fa 100644
--- a/target/mips/tcg/sysemu/mips-semi.c
+++ b/target/mips/tcg/sysemu/mips-semi.c
@@ -321,6 +321,9 @@ void mips_semihosting(CPUMIPSState *env)
             if (use_gdb_syscalls()) {
                 addr = gpr[29] - str->len;
                 p = lock_user(VERIFY_WRITE, addr, str->len, 0);
+                if (!p) {
+                    report_fault(env);
+                }
                 memcpy(p, str->str, str->len);
                 unlock_user(p, addr, str->len);
                 semihost_sys_write(cs, uhi_cb, 2, addr, str->len);
-- 
2.25.1



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

* Re: [PATCH] target/mips: Handle lock_user() failure in UHI_plog semihosting call
  2022-07-19 19:17 [PATCH] target/mips: Handle lock_user() failure in UHI_plog semihosting call Peter Maydell
@ 2022-07-23 21:37 ` Richard Henderson
  2022-08-08 21:21 ` Philippe Mathieu-Daudé via
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2022-07-23 21:37 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel
  Cc: Philippe Mathieu-Daudé, Aurelien Jarno, Jiaxun Yang,
	Aleksandar Rikalo

On 7/20/22 00:47, Peter Maydell wrote:
> Coverity notes that we forgot to check the error return from
> lock_user() in one place in the handling of the UHI_plog semihosting
> call.  Add the missing error handling.
> 
> report_fault() is rather brutal in that it will call abort(), but
> this is the same error-handling used in the rest of this file.
> 
> Resolves: Coverity CID 1490684
> Fixes: ea4210600db3c5 ("target/mips: Avoid qemu_semihosting_log_out for UHI_plog")
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> NB: only tested with 'make check' and 'make check-tcg', which
> almost certainly don't actually exercise this codepath.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~

> ---
>   target/mips/tcg/sysemu/mips-semi.c | 3 +++
>   1 file changed, 3 insertions(+)
> 
> diff --git a/target/mips/tcg/sysemu/mips-semi.c b/target/mips/tcg/sysemu/mips-semi.c
> index 5fb1ad90920..85f0567a7fa 100644
> --- a/target/mips/tcg/sysemu/mips-semi.c
> +++ b/target/mips/tcg/sysemu/mips-semi.c
> @@ -321,6 +321,9 @@ void mips_semihosting(CPUMIPSState *env)
>               if (use_gdb_syscalls()) {
>                   addr = gpr[29] - str->len;
>                   p = lock_user(VERIFY_WRITE, addr, str->len, 0);
> +                if (!p) {
> +                    report_fault(env);
> +                }
>                   memcpy(p, str->str, str->len);
>                   unlock_user(p, addr, str->len);
>                   semihost_sys_write(cs, uhi_cb, 2, addr, str->len);



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

* Re: [PATCH] target/mips: Handle lock_user() failure in UHI_plog semihosting call
  2022-07-19 19:17 [PATCH] target/mips: Handle lock_user() failure in UHI_plog semihosting call Peter Maydell
  2022-07-23 21:37 ` Richard Henderson
@ 2022-08-08 21:21 ` Philippe Mathieu-Daudé via
  1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-08-08 21:21 UTC (permalink / raw)
  To: Peter Maydell
  Cc: qemu-devel@nongnu.org Developers, Richard Henderson,
	Aurelien Jarno, Jiaxun Yang, Aleksandar Rikalo

On Tue, Jul 19, 2022 at 9:17 PM Peter Maydell <peter.maydell@linaro.org> wrote:
>
> Coverity notes that we forgot to check the error return from
> lock_user() in one place in the handling of the UHI_plog semihosting
> call.  Add the missing error handling.
>
> report_fault() is rather brutal in that it will call abort(), but
> this is the same error-handling used in the rest of this file.
>
> Resolves: Coverity CID 1490684
> Fixes: ea4210600db3c5 ("target/mips: Avoid qemu_semihosting_log_out for UHI_plog")
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> NB: only tested with 'make check' and 'make check-tcg', which
> almost certainly don't actually exercise this codepath.
> ---
>  target/mips/tcg/sysemu/mips-semi.c | 3 +++
>  1 file changed, 3 insertions(+)

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Queued to mips-fixes, thanks!


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

end of thread, other threads:[~2022-08-08 21:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-19 19:17 [PATCH] target/mips: Handle lock_user() failure in UHI_plog semihosting call Peter Maydell
2022-07-23 21:37 ` Richard Henderson
2022-08-08 21:21 ` Philippe Mathieu-Daudé via

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).