xref: /freebsd/lib/libc/locale/utf8.c (revision d37ea99837e6ad50837fd9fe1771ddf1c3ba6002)
1 /*-
2  * Copyright (c) 2002-2004 Tim J. Robbins
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/param.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <errno.h>
31 #include <runetype.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <wchar.h>
35 #include "mblocal.h"
36 
37 size_t	_UTF8_mbrtowc(wchar_t * __restrict, const char * __restrict, size_t,
38 	    mbstate_t * __restrict);
39 int	_UTF8_mbsinit(const mbstate_t *);
40 size_t	_UTF8_wcrtomb(char * __restrict, wchar_t, mbstate_t * __restrict);
41 
42 typedef struct {
43 	wchar_t	ch;
44 	int	want;
45 	wchar_t	lbound;
46 } _UTF8State;
47 
48 int
49 _UTF8_init(_RuneLocale *rl)
50 {
51 
52 	__mbrtowc = _UTF8_mbrtowc;
53 	__wcrtomb = _UTF8_wcrtomb;
54 	__mbsinit = _UTF8_mbsinit;
55 	_CurrentRuneLocale = rl;
56 	__mb_cur_max = 6;
57 
58 	return (0);
59 }
60 
61 int
62 _UTF8_mbsinit(const mbstate_t *ps)
63 {
64 
65 	return (ps == NULL || ((const _UTF8State *)ps)->want == 0);
66 }
67 
68 size_t
69 _UTF8_mbrtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n,
70     mbstate_t * __restrict ps)
71 {
72 	_UTF8State *us;
73 	int ch, i, mask, want;
74 	wchar_t lbound, wch;
75 
76 	us = (_UTF8State *)ps;
77 
78 	if (us->want < 0 || us->want > 6) {
79 		errno = EINVAL;
80 		return ((size_t)-1);
81 	}
82 
83 	if (s == NULL) {
84 		s = "";
85 		n = 1;
86 		pwc = NULL;
87 	}
88 
89 	if (n == 0)
90 		/* Incomplete multibyte sequence */
91 		return ((size_t)-2);
92 
93 	if (us->want == 0) {
94 		/*
95 		 * Determine the number of octets that make up this character
96 		 * from the first octet, and a mask that extracts the
97 		 * interesting bits of the first octet. We already know
98 		 * the character is at least two bytes long.
99 		 *
100 		 * We also specify a lower bound for the character code to
101 		 * detect redundant, non-"shortest form" encodings. For
102 		 * example, the sequence C0 80 is _not_ a legal representation
103 		 * of the null character. This enforces a 1-to-1 mapping
104 		 * between character codes and their multibyte representations.
105 		 */
106 		ch = (unsigned char)*s;
107 		if ((ch & 0x80) == 0) {
108 			mask = 0x7f;
109 			want = 1;
110 			lbound = 0;
111 		} else if ((ch & 0xe0) == 0xc0) {
112 			mask = 0x1f;
113 			want = 2;
114 			lbound = 0x80;
115 		} else if ((ch & 0xf0) == 0xe0) {
116 			mask = 0x0f;
117 			want = 3;
118 			lbound = 0x800;
119 		} else if ((ch & 0xf8) == 0xf0) {
120 			mask = 0x07;
121 			want = 4;
122 			lbound = 0x10000;
123 		} else if ((ch & 0xfc) == 0xf8) {
124 			mask = 0x03;
125 			want = 5;
126 			lbound = 0x200000;
127 		} else if ((ch & 0xfc) == 0xfc) {
128 			mask = 0x01;
129 			want = 6;
130 			lbound = 0x4000000;
131 		} else {
132 			/*
133 			 * Malformed input; input is not UTF-8.
134 			 */
135 			errno = EILSEQ;
136 			return ((size_t)-1);
137 		}
138 	} else {
139 		want = us->want;
140 		lbound = us->lbound;
141 	}
142 
143 	/*
144 	 * Decode the octet sequence representing the character in chunks
145 	 * of 6 bits, most significant first.
146 	 */
147 	if (us->want == 0)
148 		wch = (unsigned char)*s++ & mask;
149 	else
150 		wch = us->ch;
151 	for (i = (us->want == 0) ? 1 : 0; i < MIN(want, n); i++) {
152 		if ((*s & 0xc0) != 0x80) {
153 			/*
154 			 * Malformed input; bad characters in the middle
155 			 * of a character.
156 			 */
157 			errno = EILSEQ;
158 			return ((size_t)-1);
159 		}
160 		wch <<= 6;
161 		wch |= *s++ & 0x3f;
162 	}
163 	if (i < want) {
164 		/* Incomplete multibyte sequence. */
165 		us->want = want - i;
166 		us->lbound = lbound;
167 		us->ch = wch;
168 		return ((size_t)-2);
169 	}
170 	if (wch < lbound) {
171 		/*
172 		 * Malformed input; redundant encoding.
173 		 */
174 		errno = EILSEQ;
175 		return ((size_t)-1);
176 	}
177 	if (pwc != NULL)
178 		*pwc = wch;
179 	us->want = 0;
180 	return (wch == L'\0' ? 0 : want);
181 }
182 
183 size_t
184 _UTF8_wcrtomb(char * __restrict s, wchar_t wc, mbstate_t * __restrict ps)
185 {
186 	_UTF8State *us;
187 	unsigned char lead;
188 	int i, len;
189 
190 	us = (_UTF8State *)ps;
191 
192 	if (us->want != 0) {
193 		errno = EINVAL;
194 		return ((size_t)-1);
195 	}
196 
197 	if (s == NULL)
198 		/* Reset to initial shift state (no-op) */
199 		return (1);
200 
201 	/*
202 	 * Determine the number of octets needed to represent this character.
203 	 * We always output the shortest sequence possible. Also specify the
204 	 * first few bits of the first octet, which contains the information
205 	 * about the sequence length.
206 	 */
207 	if ((wc & ~0x7f) == 0) {
208 		lead = 0;
209 		len = 1;
210 	} else if ((wc & ~0x7ff) == 0) {
211 		lead = 0xc0;
212 		len = 2;
213 	} else if ((wc & ~0xffff) == 0) {
214 		lead = 0xe0;
215 		len = 3;
216 	} else if ((wc & ~0x1fffff) == 0) {
217 		lead = 0xf0;
218 		len = 4;
219 	} else if ((wc & ~0x3ffffff) == 0) {
220 		lead = 0xf8;
221 		len = 5;
222 	} else if ((wc & ~0x7fffffff) == 0) {
223 		lead = 0xfc;
224 		len = 6;
225 	} else {
226 		errno = EILSEQ;
227 		return ((size_t)-1);
228 	}
229 
230 	/*
231 	 * Output the octets representing the character in chunks
232 	 * of 6 bits, least significant last. The first octet is
233 	 * a special case because it contains the sequence length
234 	 * information.
235 	 */
236 	for (i = len - 1; i > 0; i--) {
237 		s[i] = (wc & 0x3f) | 0x80;
238 		wc >>= 6;
239 	}
240 	*s = (wc & 0xff) | lead;
241 
242 	return (len);
243 }
244