qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Michael Tokarev <mjt@tls.msk.ru>, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org
Subject: Re: [PULL 6/9] backends/cryptodev-builtin: Fix local_error leaks
Date: Mon, 29 Apr 2024 05:13:42 -0700	[thread overview]
Message-ID: <7f26e395-b478-4554-b038-74a3dbfcda65@linaro.org> (raw)
In-Reply-To: <20240429064536.238392-7-mjt@tls.msk.ru>

On 4/28/24 23:45, Michael Tokarev wrote:
> From: Li Zhijian via <qemu-devel@nongnu.org>

Please fix the author on this patch.

r~

> 
> It seems that this error does not need to be propagated to the upper,
> directly output the error to avoid the leaks
> 
> Closes: https://gitlab.com/qemu-project/qemu/-/issues/2283
> Fixes: 2fda101de07 ("virtio-crypto: Support asynchronous mode")
> Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> Reviewed-by: zhenwei pi <pizhenwei@bytedance.com>
> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> ---
>   backends/cryptodev-builtin.c | 9 +++++----
>   1 file changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/backends/cryptodev-builtin.c b/backends/cryptodev-builtin.c
> index a514bbb310..940104ee55 100644
> --- a/backends/cryptodev-builtin.c
> +++ b/backends/cryptodev-builtin.c
> @@ -23,6 +23,7 @@
>   
>   #include "qemu/osdep.h"
>   #include "sysemu/cryptodev.h"
> +#include "qemu/error-report.h"
>   #include "qapi/error.h"
>   #include "standard-headers/linux/virtio_crypto.h"
>   #include "crypto/cipher.h"
> @@ -396,8 +397,8 @@ static int cryptodev_builtin_create_session(
>       case VIRTIO_CRYPTO_HASH_CREATE_SESSION:
>       case VIRTIO_CRYPTO_MAC_CREATE_SESSION:
>       default:
> -        error_setg(&local_error, "Unsupported opcode :%" PRIu32 "",
> -                   sess_info->op_code);
> +        error_report("Unsupported opcode :%" PRIu32 "",
> +                     sess_info->op_code);
>           return -VIRTIO_CRYPTO_NOTSUPP;
>       }
>   
> @@ -554,8 +555,8 @@ static int cryptodev_builtin_operation(
>   
>       if (op_info->session_id >= MAX_NUM_SESSIONS ||
>                 builtin->sessions[op_info->session_id] == NULL) {
> -        error_setg(&local_error, "Cannot find a valid session id: %" PRIu64 "",
> -                   op_info->session_id);
> +        error_report("Cannot find a valid session id: %" PRIu64 "",
> +                     op_info->session_id);
>           return -VIRTIO_CRYPTO_INVSESS;
>       }
>   



  reply	other threads:[~2024-04-29 12:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-29  6:45 [PULL 0/9] Trivial patches for 2024-04-29 Michael Tokarev
2024-04-29  6:45 ` [PULL 1/9] target/i386/cpu: Remove "x86" prefix from the CPU list Michael Tokarev
2024-04-29  6:45 ` [PULL 2/9] target/s390x/cpu_models: Rework the output of "-cpu help" Michael Tokarev
2024-04-29  6:45 ` [PULL 3/9] target/ppc/cpu_init: Remove "PowerPC" prefix from the CPU list Michael Tokarev
2024-04-29  6:45 ` [PULL 4/9] scripts/checkpatch: Avoid author email mangled by qemu-*@nongnu.org Michael Tokarev
2024-04-29  6:45 ` [PULL 5/9] scripts/checkpatch: Do not use mailmap Michael Tokarev
2024-04-29  6:45 ` [PULL 6/9] backends/cryptodev-builtin: Fix local_error leaks Michael Tokarev
2024-04-29 12:13   ` Richard Henderson [this message]
2024-04-29  6:45 ` [PULL 7/9] target/loongarch/cpu.c: typo fix: expection Michael Tokarev
2024-04-29  6:45 ` [PULL 8/9] target/riscv/kvm: remove sneaky strerrorname_np() instance Michael Tokarev
2024-04-29  6:45 ` [PULL 9/9] checkpatch.pl: forbid strerrorname_np() Michael Tokarev

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=7f26e395-b478-4554-b038-74a3dbfcda65@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=mjt@tls.msk.ru \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@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).