From: Markus Armbruster <armbru@redhat.com>
To: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: qemu-devel@nongnu.org, "Michael Roth" <michael.roth@amd.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>
Subject: Re: [PATCH 1/5] qapi: allow for g_autoptr(Error) usage
Date: Tue, 23 Jul 2024 13:36:32 +0200 [thread overview]
Message-ID: <87jzhcuypr.fsf@pond.sub.org> (raw)
In-Reply-To: <20240722131611.2820041-2-berrange@redhat.com> ("Daniel P. Berrangé"'s message of "Mon, 22 Jul 2024 14:16:07 +0100")
Daniel P. Berrangé <berrange@redhat.com> writes:
> While common error propagation practice does not require manually
> free'ing of local 'Error' objects, there are some cases where this
> is needed. One example is where the 'Error' object is only used
> for providing info to a trace event probe. Supporting g_autoptr
> avoids the need to manually call 'error_free'.
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> include/qapi/error.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/qapi/error.h b/include/qapi/error.h
> index 71f8fb2c50..6e429809d8 100644
> --- a/include/qapi/error.h
> +++ b/include/qapi/error.h
> @@ -437,6 +437,8 @@ Error *error_copy(const Error *err);
> */
> void error_free(Error *err);
>
> +G_DEFINE_AUTOPTR_CLEANUP_FUNC(Error, error_free);
> +
> /*
> * Convenience function to assert that *@errp is set, then silently free it.
> */
The Error interface is designed for a certain way of using it: an Error
object flows from the spot detecting the error to a spot handling it.
Failure to handle the error is a memory leak. Our tooling can help with
tracking these down.
The interface tries to make the intended use easy: functions that report
an error consume the Error object. Explicit error_free() should only
needed when you handle an error in some other way.
When such an explicit error_free() is needed on all paths to return,
then replacing it with auto-freeing is nice. But what if it isn't?
Say we add a new error path and use error_report_err(err) there. This
has always been just fine. No more: if @err is auto-freed, this is a
double-free. We have to also add err = NULL. Feels like a trap for
developers to me.
Your use of auto-freeing is in the next patch. It's this pattern:
g_autoptr(Error) err = NULL;
if (!frobnicate(args, &err)) {
trace_frobnicate_err(..., error_get_pretty(err));
}
You want to report the error to a trace point. That's perfectly
legitimate. The problem is that this kind of error reporting function
does not free, unlike the ones provided by qapi/error.h.
We could extend tracing to accept Error values, so that
trace_frobnicate_err(..., err);
does free. Doesn't seem worthwhile unless we find quite a few more uses
for it.
If we conclude we want to provide auto-free as an option, we at least
need to point out the trap in a comment. A bit of a pain to write, and
whether people will read, understand, and remember it is uncertain.
My gut feeling right now: stick to the design, and free manually. If
you think my gut is wrong, tell me.
next prev parent reply other threads:[~2024-07-23 11:37 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-22 13:16 [PATCH 0/5] crypto: improve error reporting detail Daniel P. Berrangé
2024-07-22 13:16 ` [PATCH 1/5] qapi: allow for g_autoptr(Error) usage Daniel P. Berrangé
2024-07-22 14:31 ` Philippe Mathieu-Daudé
2024-07-23 11:36 ` Markus Armbruster [this message]
2024-07-23 13:06 ` Daniel P. Berrangé
2024-07-24 8:17 ` Markus Armbruster
2024-07-22 13:16 ` [PATCH 2/5] chardev: add tracing of socket error conditions Daniel P. Berrangé
2024-07-22 14:31 ` Philippe Mathieu-Daudé
2024-07-22 13:16 ` [PATCH 3/5] crypto: drop gnutls debug logging support Daniel P. Berrangé
2024-07-22 14:32 ` Philippe Mathieu-Daudé
2024-07-22 15:03 ` Daniel P. Berrangé
2024-07-22 13:16 ` [PATCH 4/5] crypto: push error reporting into TLS session I/O APIs Daniel P. Berrangé
2024-07-22 14:37 ` Philippe Mathieu-Daudé
2024-07-22 13:16 ` [PATCH 5/5] crypto: propagate errors from TLS session I/O callbacks Daniel P. Berrangé
2024-07-22 14:35 ` Philippe Mathieu-Daudé
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=87jzhcuypr.fsf@pond.sub.org \
--to=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=michael.roth@amd.com \
--cc=pbonzini@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.