All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ola x Nilsson <ola.x.nilsson@axis.com>
To: Ola x Nilsson <olani@axis.com>
Cc: <openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] [scarthgap][PATCH] glibc: Fix missing randomness in __gen_tempname
Date: Mon, 21 Oct 2024 16:37:24 +0200	[thread overview]
Message-ID: <jwqwmi1ldy3.fsf@axis.com> (raw)
In-Reply-To: <20241021100352.56570-1-olani@axis.com> (Ola x. Nilsson's message of "Mon, 21 Oct 2024 12:03:52 +0200")


Please ignore this patch.  I was supposed to send it for styhead but got
mixed up.

/Ola


On Mon, Oct 21 2024, Ola x Nilsson wrote:

> From: Ola x Nilsson <olani@axis.com>
>
> Backport the fix for glibc bug 32214.
>
> The missing randomness in early boot may cause some systemd services
> to fail when they occasionally try to create tempdirs like
> /run/systemd/namespace-aaaaaa at the same time.
> The error messages can contain things like
> "Failed to set up mount namespacing".
>
> Signed-off-by: Ola x Nilsson <olani@axis.com>
> ---
>  ...ndomness-in-__gen_tempname-bug-32214.patch | 29 +++++++++++++++++++
>  meta/recipes-core/glibc/glibc_2.39.bb         |  1 +
>  2 files changed, 30 insertions(+)
>  create mode 100644 meta/recipes-core/glibc/glibc/0024-Fix-missing-randomness-in-__gen_tempname-bug-32214.patch
>
> diff --git a/meta/recipes-core/glibc/glibc/0024-Fix-missing-randomness-in-__gen_tempname-bug-32214.patch b/meta/recipes-core/glibc/glibc/0024-Fix-missing-randomness-in-__gen_tempname-bug-32214.patch
> new file mode 100644
> index 0000000000..c9f3e32f58
> --- /dev/null
> +++ b/meta/recipes-core/glibc/glibc/0024-Fix-missing-randomness-in-__gen_tempname-bug-32214.patch
> @@ -0,0 +1,29 @@
> +From 9d30d58c32fe9d5f8ec6cda79fb11159e6789bcf Mon Sep 17 00:00:00 2001
> +From: Andreas Schwab <schwab@suse.de>
> +Date: Wed, 25 Sep 2024 11:49:30 +0200
> +Subject: [PATCH] Fix missing randomness in __gen_tempname (bug 32214)
> +
> +Make sure to update the random value also if getrandom fails.
> +
> +Fixes: 686d542025 ("posix: Sync tempname with gnulib")
> +
> +Upstream-Status: Backport [https://sourceware.org/git/?p=glibc.git;a=commit;h=5f62cf88c4530c11904482775b7582bd7f6d80d2]
> +
> +Signed-off-by: Ola x Nilsson <olani@axis.com>
> +---
> + sysdeps/posix/tempname.c | 2 ++
> + 1 file changed, 2 insertions(+)
> +
> +diff --git a/sysdeps/posix/tempname.c b/sysdeps/posix/tempname.c
> +index c00fe0c181..fc30958a0c 100644
> +--- a/sysdeps/posix/tempname.c
> ++++ b/sysdeps/posix/tempname.c
> +@@ -117,6 +117,8 @@ random_bits (random_value *r, random_value s)
> +      succeed.  */
> + #if !_LIBC
> +   *r = mix_random_values (v, clock ());
> ++#else
> ++  *r = v;
> + #endif
> +   return false;
> + }
> diff --git a/meta/recipes-core/glibc/glibc_2.39.bb b/meta/recipes-core/glibc/glibc_2.39.bb
> index 2484ae1cd9..2db18251e3 100644
> --- a/meta/recipes-core/glibc/glibc_2.39.bb
> +++ b/meta/recipes-core/glibc/glibc_2.39.bb
> @@ -53,6 +53,7 @@ SRC_URI =  "${GLIBC_GIT_URI};branch=${SRCBRANCH};name=glibc \
>             file://0021-fix-create-thread-failed-in-unprivileged-process-BZ-.patch \
>             file://0022-Avoid-hardcoded-build-time-paths-in-the-output-binar.patch \
>             file://0023-qemu-stale-process.patch \
> +           file://0024-Fix-missing-randomness-in-__gen_tempname-bug-32214.patch \
>  "
>  S = "${WORKDIR}/git"
>  B = "${WORKDIR}/build-${TARGET_SYS}"


      reply	other threads:[~2024-10-21 14:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-21 10:03 [scarthgap][PATCH] glibc: Fix missing randomness in __gen_tempname olani
2024-10-21 14:37 ` Ola x Nilsson [this message]

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=jwqwmi1ldy3.fsf@axis.com \
    --to=ola.x.nilsson@axis.com \
    --cc=olani@axis.com \
    --cc=openembedded-core@lists.openembedded.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.