1 /* $NetBSD: localeio.c,v 1.1.10.1 2009/01/04 17:02:19 christos Exp $ */
3 * Copyright (c) 2008, The NetBSD Foundation, Inc.
6 * This code is derived from software contributed to The NetBSD Foundation
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/cdefs.h>
32 #if defined(LIBC_SCCS) && !defined(lint)
33 __RCSID("$NetBSD: localeio.c,v 1.1.10.1 2009/01/04 17:02:19 christos Exp $");
34 #endif /* LIBC_SCCS and not lint */
36 #include "namespace.h"
38 #include <sys/types.h>
54 __loadlocale(const char *name
, size_t nstr
, size_t nbytes
,
55 size_t localesize
, void *currentlocale
)
58 unsigned char **ap
, *buf
, *bp
, *cp
, *cbp
, *ebp
;
59 unsigned char ***locale
;
63 _DIAGASSERT(name
!= NULL
);
64 _DIAGASSERT(localesize
!= 0);
65 _DIAGASSERT(currentlocale
!= NULL
);
67 if ((fd
= open(name
, O_RDONLY
)) == -1)
70 if ((fstat(fd
, &st
) == -1) || !S_ISREG(st
.st_mode
) ||
76 bufsize
= localesize
+ (size_t)st
.st_size
;
77 if ((buf
= malloc(bufsize
)) == NULL
) {
82 bp
= buf
+ localesize
;
83 if (read(fd
, bp
, (size_t)st
.st_size
) != st
.st_size
) {
88 ap
= (unsigned char **)(void *)buf
;
89 for (i
= 0, ebp
= buf
+ bufsize
; i
< nstr
; i
++) {
91 while (bp
!= ebp
&& *bp
!= '\n')
100 cp
= buf
+ (sizeof(unsigned char *) * nstr
);
101 for (i
= 0, cbp
= bp
; i
< nbytes
; i
++) {
104 while (bp
!= ebp
&& *bp
!= '\n')
110 /* ignore overflow/underflow and bad characters */
111 n
= (unsigned char)strtol((char *)cbp
, NULL
, 0);
112 cp
[i
] = (unsigned char)(n
& CHAR_MAX
);
116 locale
= currentlocale
;
118 *locale
= (unsigned char **)(void *)buf
;