locale: Handle loading a missing locale twice (Bug 14247)
commit684fbab755e727a8c15f8b621648d66694cd1f53
authorCarlos O'Donell <carlos@redhat.com>
Mon, 22 Apr 2024 12:16:09 +0000 (22 08:16 -0400)
committerCarlos O'Donell <carlos@redhat.com>
Mon, 22 Apr 2024 20:03:00 +0000 (22 16:03 -0400)
tree02588a7a5bdd12ce4976c5c785f55be0bc8fff83
parent25b191f6d33cda5770a18fd18be86cce0ebb3228
locale: Handle loading a missing locale twice (Bug 14247)

Delay setting file->decided until the data has been successfully loaded
by _nl_load_locale().  If the function fails to load the data then we
must return and error and leave decided untouched to allow the caller to
attempt to load the data again at a later time.  We should not set
decided to 1 early in the function since doing so may prevent attempting
to load it again. We want to try loading it again because that allows an
open to fail and set errno correctly.

On the other side of this problem is that if we are called again with
the same inputs we will fetch the cached version of the object and carry
out no open syscalls and that fails to set errno so we must set errno to
ENOENT in that case.  There is a second code path that has to be handled
where the name of the locale matches but the codeset doesn't match.

These changes ensure that errno is correctly set on failure in all the
return paths in _nl_find_locale().

Adds tst-locale-loadlocale to cover the bug.

No regressions on x86_64.

Co-authored-by: Jeff Law <law@redhat.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
gen-locales.mk
locale/findlocale.c
locale/loadlocale.c
localedata/Makefile
localedata/gen-locale.sh
localedata/tst-locale-loadlocale.c [new file with mode: 0644]