From: Florian Weimer Date: Mon, 28 Oct 2024 13:45:30 +0000 (+0100) Subject: elf: Change ldconfig auxcache magic number (bug 32231) X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=a4d9258090d32ac154226b45c7e4309bd22825e9;p=thirdparty%2Fglibc.git elf: Change ldconfig auxcache magic number (bug 32231) In commit c628c2296392ed3bf2cb8d8470668e64fe53389f (elf: Remove ldconfig kernel version check), the layout of auxcache entries changed because the osversion field was removed from struct aux_cache_file_entry. However, AUX_CACHEMAGIC was not changed, so existing files are still used, potentially leading to unintended ldconfig behavior. This commit changes AUX_CACHEMAGIC, so that the file is regenerated. Reported-by: DJ Delorie Reviewed-by: Adhemerval Zanella (cherry picked from commit 0a536f6e2f76e3ef581b3fd9af1e5cf4ddc7a5a2) --- diff --git a/NEWS b/NEWS index 8431eb0d51..046335b49d 100644 --- a/NEWS +++ b/NEWS @@ -71,6 +71,7 @@ The following bugs are resolved with this release: [31968] mremap implementation in C does not handle arguments correctly [32052] Name space violation in fortify wrappers [32137] libio: Attempt wide backup free only for non-legacy code + [32231] elf: Change ldconfig auxcache magic number Version 2.37 diff --git a/elf/cache.c b/elf/cache.c index c4c3139264..de9ccb2cd5 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -817,7 +817,7 @@ struct aux_cache_entry struct aux_cache_entry *next; }; -#define AUX_CACHEMAGIC "glibc-ld.so.auxcache-1.0" +#define AUX_CACHEMAGIC "glibc-ld.so.auxcache-2.0" struct aux_cache_file_entry {