Acknowledgement sent
to "McSinyx" <cnx@loang.net>:
New bug report received and forwarded. Copy sent to bug-guix@gnu.org.
(Fri, 26 Apr 2024 06:46:09 GMT) (full text, mbox, link).
From: Liliana Marie Prikler <liliana.prikler@ist.tugraz.at>
To: McSinyx <cnx@loang.net>, 70581@debbugs.gnu.org
Cc: guix-security@gnu.org
Subject: Re: PHP, glibc, and CVE-2024-2961
Date: Fri, 26 Apr 2024 09:20:53 +0200
Hi McSinyx,
security-relevant bugs ought to go to <guix-security@gnu.org>, see [1].
Since a patch exists for glibc all the way back to 2.30, I suppose a
graft can be used and should be performed timely.
Cheers
[1] https://guix.gnu.org/en/security/
Added tag(s) security.
Request was from Ludovic Courtès <ludo@gnu.org>
to control@debbugs.gnu.org.
(Sat, 25 May 2024 09:13:01 GMT) (full text, mbox, link).
Information forwarded
to cnx@loang.net, liliana.prikler@ist.tugraz.at, ludo@gnu.org, andreas@enge.fr, janneke@gnu.org, bug-guix@gnu.org: bug#70581; Package guix.
(Sat, 14 Dec 2024 14:23:01 GMT) (full text, mbox, link).
Cc: Ludovic Courtès <ludo@gnu.org>, guix-security@gnu.org,
Liliana Marie Prikler <liliana.prikler@ist.tugraz.at>,
Andreas Enge <andreas@enge.fr>, McSinyx <cnx@loang.net>,
Janneke Nieuwenhuizen <janneke@gnu.org>
Subject: Re: bug#70581: PHP, glibc, and CVE-2024-2961
Date: Wed, 18 Dec 2024 16:31:37 +0900
Hi
Maxim Cournoyer <maxim.cournoyer@gmail.com> writes:
> * gnu/packages/base.scm (%glibc-patches): New variable.
> (glibc) [source]: Use it.
> [properties]: Mark CVE-2024-2961 as hidden (resolved).
> [replacement]: Add field to graft with...
> (glibc/fixed): ... this new package.
>
> Fixes: <https://issues.guix.gnu.org/70581>
> Change-Id: I6dd70b0e157283925824348f180c466c2f6387c9
Applied.
--
Thanks,
Maxim
Information forwarded
to bug-guix@gnu.org: bug#70581; Package guix.
(Wed, 18 Dec 2024 10:09:02 GMT) (full text, mbox, link).
Cc: guix-security@gnu.org,
Liliana Marie Prikler <liliana.prikler@ist.tugraz.at>,
Andreas Enge <andreas@enge.fr>, 70581@debbugs.gnu.org, McSinyx <cnx@loang.net>,
Janneke Nieuwenhuizen <janneke@gnu.org>
Subject: Re: bug#70581: PHP, glibc, and CVE-2024-2961
Date: Thu, 19 Dec 2024 11:25:53 +0900
Hi Ludovic,
Ludovic Courtès <ludo@gnu.org> writes:
[...]
>> + (patches (map search-patch
>> + (fold (cut delete <...>)
>> + %glibc-patches
>> + '("glibc-2.39-git-updates.patch"))))))))
>
> Or: (delete "glibc-2.39-git-updates.patch" (search-patches %glibc-patches)).
It doesn't seem to work the way you'd intuitively expect, because
search-patches is syntax, and %glibc-patches is a list. So you at least
need the map and search-patch procedure:
--8<---------------cut here---------------start------------->8---
(delete "glibc-2.39-git-updates.patch" (map search-patch %glibc-patches)).
--8<---------------cut here---------------end--------------->8---
And then the delete has no effect because 'search-path' returns absolute
paths, so the patch to delete is now something like
'/home/maxim/src/guix/gnu/packages/patches/glibc-2.39-git-updates.patch',
for example.
--
Thanks,
Maxim
Information forwarded
to bug-guix@gnu.org: bug#70581; Package guix.
(Fri, 20 Dec 2024 07:56:01 GMT) (full text, mbox, link).
Subject: Re: bug#70581: PHP, glibc, and CVE-2024-2961
Date: Fri, 20 Dec 2024 08:00:13 +0100
Am Donnerstag, dem 19.12.2024 um 11:25 +0900 schrieb Maxim Cournoyer:
> Hi Ludovic,
>
> Ludovic Courtès <ludo@gnu.org> writes:
>
> [...]
>
> > > + (patches (map search-patch
> > > + (fold (cut delete <...>)
> > > + %glibc-patches
> > > + '("glibc-2.39-git-
> > > updates.patch"))))))))
> >
> > Or: (delete "glibc-2.39-git-updates.patch" (search-patches %glibc-
> > patches)).
>
> It doesn't seem to work the way you'd intuitively expect, because
> search-patches is syntax, and %glibc-patches is a list. So you at
> least need the map and search-patch procedure:
>
> --8<---------------cut here---------------start------------->8---
> (delete "glibc-2.39-git-updates.patch" (map search-patch %glibc-
> patches)).
> --8<---------------cut here---------------end--------------->8---
>
> And then the delete has no effect because 'search-path' returns
> absolute paths, so the patch to delete is now something like
> '/home/maxim/src/guix/gnu/packages/patches/glibc-2.39-git-
> updates.patch', for example.
What about
(map search-patch
(delete "glibc-2.39-git-updates.patch" %glibc-patches))
?
Debbugs is free software and licensed under the terms of the
GNU Public License version 2. The current version can be
obtained from https://bugs.debian.org/debbugs-source/.