mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
684fbab755
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>
68 lines
2.6 KiB
C
68 lines
2.6 KiB
C
/* Test for locale loading error handling (Bug 14247)
|
|
Copyright (C) 2024 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <locale.h>
|
|
#include <support/check.h>
|
|
#include <support/support.h>
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
locale_t loc = NULL;
|
|
|
|
/* We must load an en_US-based locale for the final test to fail.
|
|
The locale loading code will find the en_US locale already loaded
|
|
but the codesets won't match. */
|
|
xsetlocale (LC_ALL, "en_US.UTF-8");
|
|
|
|
/* Call newlocale with an invalid locale. We expect the test system
|
|
does not have "invalidlocale" locale. */
|
|
errno = 0;
|
|
loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK, "invalidlocale.utf8", 0);
|
|
TEST_VERIFY (loc == NULL && errno != 0);
|
|
|
|
/* Call newlocale again with the same name. This triggers bug 14247 where
|
|
the second call fails to set errno correctly. */
|
|
errno = 0;
|
|
loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK, "invalidlocale.utf8", 0);
|
|
TEST_VERIFY (loc == NULL && errno != 0);
|
|
|
|
/* Next we attempt to load a locale that exists but whose codeset
|
|
does not match the codeset of the locale on the system.
|
|
This is more difficult to test but we rely on the fact that locale
|
|
processing will normalize the locale name and attempt to open
|
|
"en_US" with no codeset as a fallback and this will allow us to
|
|
compare a loaded "en_US" locale with a UTF-8 codeset to the
|
|
ficiticious "en_US.utf99" and get a codeset match failure. */
|
|
errno = 0;
|
|
loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK, "en_US.utf99", 0);
|
|
TEST_VERIFY (loc == NULL && errno != 0);
|
|
|
|
/* Call newlocale again with the same name. This triggers bug 14247 where
|
|
the second call fails to set errno correctly. */
|
|
errno = 0;
|
|
loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK, "en_US.utf99", 0);
|
|
TEST_VERIFY (loc == NULL && errno != 0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#include <support/test-driver.c>
|