From: Paolo Bonzini <pbonzini@redhat.com>
To: Greg Kurz <groug@kaod.org>, qemu-devel@nongnu.org
Cc: "Richard Henderson" <richard.henderson@linaro.org>,
"Alex Bennée" <alex.bennee@linaro.org>
Subject: Re: [PATCH] util/log: Always send errors to logfile when daemonized
Date: Fri, 14 Oct 2022 10:51:36 +0200 [thread overview]
Message-ID: <398b4657-7b21-5e15-1db6-e9225e6f3d4e@redhat.com> (raw)
In-Reply-To: <20221014060807.660587-1-groug@kaod.org>
On 10/14/22 08:08, Greg Kurz wrote:
>
> + need_to_open_file = log_flags && !per_thread;
Pre-existing, but I think this should check log_per_thread instead of
per_thread.
> + } else if (filename) {
> + /*
> + * If we are daemonized, we will only log if there is a filename.
> + */
> + need_to_open_file = true;
Slightly nicer:
} else {
/*
* If daemonized, always log to the -D file if present.
*/
need_to_open_file = filename != NULL;
}
> @@ -271,10 +276,22 @@ static bool qemu_set_log_internal(const char *filename, bool changed_name,
>
> if (!logfile && need_to_open_file) {
> if (filename) {
> - logfile = fopen(filename, log_append ? "a" : "w");
> + g_autofree char *fname = NULL;
> +
> + /*
> + * If per-thread, filename contains a single %d that should be
> + * converted.
> + */
> + if (per_thread) {
> + fname = g_strdup_printf(filename, getpid());
> + } else {
> + fname = g_strdup(filename);
> + }
> +
> + logfile = fopen(fname, log_append ? "a" : "w");
> if (!logfile) {
> error_setg_errno(errp, errno, "Error opening logfile %s",
> - filename);
> + fname);
> return false;
> }
> /* In case we are a daemon redirect stderr to logfile */
This could conflict with the file opened by qemu_log_trylock() when
per-thread logging is enabled *and* QEMU is daemonized. Perhaps
something like:
1) change qemu_log_trylock() to
- if (log_per_thread) {
+ if (log_per_thread && log_thread_id() != getpid()) {
i.e. use the global_file for the main thread
2) change qemu_log_unlock() to
- if (!log_per_thread) {
+ if (!thread_file) {
to match (1)
3) change log_thread_id() to something like
...
#else
static __thread int my_id = -1;
static int counter;
if (my_id == -1) {
my_id = getpid() + qatomic_fetch_inc(&counter);
}
return my_id;
#endif
and perhaps do a dummy trylock/unlock late in qemu_set_log_internal(),
to ensure that the main thread is the one with log_thread_id() == getpid()?
I think this can be a separate patch before this one.
Paolo
next prev parent reply other threads:[~2022-10-14 8:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-14 6:08 [PATCH] util/log: Always send errors to logfile when daemonized Greg Kurz
2022-10-14 8:51 ` Paolo Bonzini [this message]
2022-10-14 16:07 ` Greg Kurz
2022-10-14 18:28 ` Paolo Bonzini
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=398b4657-7b21-5e15-1db6-e9225e6f3d4e@redhat.com \
--to=pbonzini@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=groug@kaod.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.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).