This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH] locale: don't crash if locale-archive is an empty file
- From: OndÅej BÃlka <neleai at seznam dot cz>
- To: Aurelien Jarno <aurelien at aurel32 dot net>
- Cc: libc-alpha at sourceware dot org
- Date: Fri, 29 Nov 2013 16:49:42 +0100
- Subject: Re: [PATCH] locale: don't crash if locale-archive is an empty file
- Authentication-results: sourceware.org; auth=none
- References: <1385739561-27038-1-git-send-email-aurelien at aurel32 dot net>
On Fri, Nov 29, 2013 at 04:39:21PM +0100, Aurelien Jarno wrote:
> In case of power failure followed by filesystem issues locale-archive
> can end-up containing all zeros. In that case all calls to setlocale()
> generate a SIGFPE. This renders a system with a default non-C locale
> unbootable.
>
> Avoid this by ignoring the locale instead of generating a SIGFPE.
> ---
> locale/loadarchive.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> 2013-11-29 Aurelien Jarno <aurelien@aurel32.net>
>
> * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
> division by 0.
>
> diff --git a/locale/loadarchive.c b/locale/loadarchive.c
> index 70136dc..7cfc498 100644
> --- a/locale/loadarchive.c
> +++ b/locale/loadarchive.c
> @@ -274,6 +274,10 @@ _nl_load_locale_from_archive (int category, const char **namep)
> namehashtab = (struct namehashent *) ((char *) head
> + head->namehash_offset);
>
> + /* Avoid division by 0 if the file is corrupted. */
> + if (__builtin_expect (head->namehash_size == 0, 0))
> + goto close_and_out;
> +
> idx = hval % head->namehash_size;
> incr = 1 + hval % (head->namehash_size - 2);
>
> --
> 1.8.4.2
looks ok.