2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
24 Includes Unicode 3.2 decomposition code derived from Core Foundation
27 #include <sys/param.h>
28 #include <sys/utfconv.h>
29 #include <sys/errno.h>
30 #include <architecture/byte_order.h>
33 * UTF-8 (Unicode Transformation Format)
35 * UTF-8 is the Unicode Transformation Format that serializes a Unicode
36 * character as a sequence of one to four bytes. Only the shortest form
37 * required to represent the significant Unicode bits is legal.
39 * UTF-8 Multibyte Codes
41 * Bytes Bits Unicode Min Unicode Max UTF-8 Byte Sequence (binary)
42 * -----------------------------------------------------------------------------
43 * 1 7 0x0000 0x007F 0xxxxxxx
44 * 2 11 0x0080 0x07FF 110xxxxx 10xxxxxx
45 * 3 16 0x0800 0xFFFF 1110xxxx 10xxxxxx 10xxxxxx
46 * 4 21 0x10000 0x10FFFF 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
47 * -----------------------------------------------------------------------------
51 #define UNICODE_TO_UTF8_LEN(c) \
52 ((c) < 0x0080 ? 1 : ((c) < 0x0800 ? 2 : (((c) & 0xf800) == 0xd800 ? 2 : 3)))
54 #define UCS_ALT_NULL 0x2400
56 /* Surrogate Pair Constants */
57 #define SP_HALF_SHIFT 10
58 #define SP_HALF_BASE 0x0010000UL
59 #define SP_HALF_MASK 0x3FFUL
61 #define SP_HIGH_FIRST 0xD800UL
62 #define SP_HIGH_LAST 0xDBFFUL
63 #define SP_LOW_FIRST 0xDC00UL
64 #define SP_LOW_LAST 0xDFFFUL
67 #include "vfs_utfconvdata.h"
71 * Test for a combining character.
73 * Similar to __CFUniCharIsNonBaseCharacter except that
74 * unicode_combinable also includes Hangul Jamo characters.
77 unicode_combinable(u_int16_t character
)
79 const u_int8_t
*bitmap
= __CFUniCharCombiningBitmap
;
82 if (character
< 0x0300)
85 value
= bitmap
[(character
>> 8) & 0xFF];
90 bitmap
= bitmap
+ ((value
- 1) * 32) + 256;
91 return (bitmap
[(character
& 0xFF) / 8] & (1 << (character
% 8)) ? 1 : 0);
97 * Test for a precomposed character.
99 * Similar to __CFUniCharIsDecomposableCharacter.
102 unicode_decomposeable(u_int16_t character
) {
103 const u_int8_t
*bitmap
= __CFUniCharDecomposableBitmap
;
106 if (character
< 0x00C0)
109 value
= bitmap
[(character
>> 8) & 0xFF];
114 bitmap
= bitmap
+ ((value
- 1) * 32) + 256;
115 return (bitmap
[(character
& 0xFF) / 8] & (1 << (character
% 8)) ? 1 : 0);
120 static int unicode_decompose(u_int16_t character
, u_int16_t
*convertedChars
);
122 static u_int16_t
unicode_combine(u_int16_t base
, u_int16_t combining
);
125 char utf_extrabytes
[32] = {
126 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
127 -1, -1, -1, -1, -1, -1, -1, -1, 1, 1, 1, 1, 2, 2, 3, -1
132 * utf8_encodelen - Calculates the UTF-8 encoding length for a Unicode filename
135 * If '/' chars are allowed on disk then an alternate
136 * (replacement) char must be provided in altslash.
139 * UTF_REVERSE_ENDIAN: Unicode byteorder is opposite current runtime
142 utf8_encodelen(const u_int16_t
* ucsp
, size_t ucslen
, u_int16_t altslash
,
147 int swapbytes
= (flags
& UTF_REVERSE_ENDIAN
);
150 charcnt
= ucslen
/ 2;
153 while (charcnt
-- > 0) {
157 ucs_ch
= NXSwapShort(ucs_ch
);
159 ucs_ch
= altslash
? altslash
: '_';
160 else if (ucs_ch
== '\0')
161 ucs_ch
= UCS_ALT_NULL
;
163 len
+= UNICODE_TO_UTF8_LEN(ucs_ch
);
171 * utf8_encodestr - Encodes a Unicode string to UTF-8
174 * The resulting UTF-8 string is NULL terminated.
176 * If '/' chars are allowed on disk then an alternate
177 * (replacement) char must be provided in altslash.
180 * UTF_REVERSE_ENDIAN: Unicode byteorder is opposite current runtime
181 * UTF_NO_NULL_TERM: don't add NULL termination to UTF-8 output
184 * ENAMETOOLONG: Name didn't fit; only buflen bytes were encoded
185 * EINVAL: Illegal char found; char was replaced by an '_'.
188 utf8_encodestr(const u_int16_t
* ucsp
, size_t ucslen
, u_int8_t
* utf8p
,
189 size_t * utf8len
, size_t buflen
, u_int16_t altslash
, int flags
)
194 u_int16_t
* chp
= NULL
;
195 u_int16_t sequence
[8];
198 int swapbytes
= (flags
& UTF_REVERSE_ENDIAN
);
199 int nullterm
= ((flags
& UTF_NO_NULL_TERM
) == 0);
200 int decompose
= (flags
& UTF_DECOMPOSED
);
204 bufend
= bufstart
+ buflen
;
207 charcnt
= ucslen
/ 2;
209 while (charcnt
-- > 0) {
214 ucs_ch
= swapbytes
? NXSwapShort(*ucsp
++) : *ucsp
++;
216 if (decompose
&& unicode_decomposeable(ucs_ch
)) {
217 extra
= unicode_decompose(ucs_ch
, sequence
) - 1;
219 ucs_ch
= sequence
[0];
224 /* Slash and NULL are not permitted */
232 } else if (ucs_ch
== '\0') {
233 ucs_ch
= UCS_ALT_NULL
;
236 if (ucs_ch
< 0x0080) {
237 if (utf8p
>= bufend
) {
238 result
= ENAMETOOLONG
;
243 } else if (ucs_ch
< 0x800) {
244 if ((utf8p
+ 1) >= bufend
) {
245 result
= ENAMETOOLONG
;
248 *utf8p
++ = 0xc0 | (ucs_ch
>> 6);
249 *utf8p
++ = 0x80 | (0x3f & ucs_ch
);
252 /* Combine valid surrogate pairs */
253 if (ucs_ch
>= SP_HIGH_FIRST
&& ucs_ch
<= SP_HIGH_LAST
258 ch2
= swapbytes
? NXSwapShort(*ucsp
) : *ucsp
;
259 if (ch2
>= SP_LOW_FIRST
&& ch2
<= SP_LOW_LAST
) {
260 pair
= ((ucs_ch
- SP_HIGH_FIRST
) << SP_HALF_SHIFT
)
261 + (ch2
- SP_LOW_FIRST
) + SP_HALF_BASE
;
262 if ((utf8p
+ 3) >= bufend
) {
263 result
= ENAMETOOLONG
;
268 *utf8p
++ = 0xf0 | (pair
>> 18);
269 *utf8p
++ = 0x80 | (0x3f & (pair
>> 12));
270 *utf8p
++ = 0x80 | (0x3f & (pair
>> 6));
271 *utf8p
++ = 0x80 | (0x3f & pair
);
275 if ((utf8p
+ 2) >= bufend
) {
276 result
= ENAMETOOLONG
;
279 *utf8p
++ = 0xe0 | (ucs_ch
>> 12);
280 *utf8p
++ = 0x80 | (0x3f & (ucs_ch
>> 6));
281 *utf8p
++ = 0x80 | (0x3f & ucs_ch
);
285 *utf8len
= utf8p
- bufstart
;
294 * utf8_decodestr - Decodes a UTF-8 string back to Unicode
297 * The input UTF-8 string does not need to be null terminated
300 * If '/' chars are allowed on disk then an alternate
301 * (replacement) char must be provided in altslash.
304 * UTF_REV_ENDIAN: Unicode byteorder is oposite current runtime
305 * UTF_DECOMPOSED: Unicode output string must be fully decompsed
308 * ENAMETOOLONG: Name didn't fit; only ucslen chars were decoded.
309 * EINVAL: Illegal UTF-8 sequence found.
312 utf8_decodestr(const u_int8_t
* utf8p
, size_t utf8len
, u_int16_t
* ucsp
,
313 size_t *ucslen
, size_t buflen
, u_int16_t altslash
, int flags
)
320 int decompose
, precompose
, swapbytes
;
322 decompose
= (flags
& UTF_DECOMPOSED
);
323 precompose
= (flags
& UTF_PRECOMPOSED
);
324 swapbytes
= (flags
& UTF_REVERSE_ENDIAN
);
327 bufend
= (u_int16_t
*)((u_int8_t
*)ucsp
+ buflen
);
329 while (utf8len
-- > 0 && (byte
= *utf8p
++) != '\0') {
333 /* check for ascii */
335 ucs_ch
= byte
; /* 1st byte */
338 int extrabytes
= utf_extrabytes
[byte
>> 3];
340 if (utf8len
< extrabytes
)
342 utf8len
-= extrabytes
;
344 switch (extrabytes
) {
345 case 1: ch
= byte
; /* 1st byte */
347 ch
+= *utf8p
++; /* 2nd byte */
354 case 2: ch
= byte
; /* 1st byte */
356 ch
+= *utf8p
++; /* 2nd byte */
358 ch
+= *utf8p
++; /* 3rd byte */
365 case 3: ch
= byte
; /* 1st byte */
367 ch
+= *utf8p
++; /* 2nd byte */
369 ch
+= *utf8p
++; /* 3rd byte */
371 ch
+= *utf8p
++; /* 4th byte */
372 ch
-= 0x03C82080UL
+ SP_HALF_BASE
;
373 ucs_ch
= (ch
>> SP_HALF_SHIFT
) + SP_HIGH_FIRST
;
374 *ucsp
++ = swapbytes
? NXSwapShort(ucs_ch
) : ucs_ch
;
377 ucs_ch
= (ch
& SP_HALF_MASK
) + SP_LOW_FIRST
;
378 *ucsp
++ = swapbytes
? NXSwapShort(ucs_ch
) : ucs_ch
;
385 if (unicode_decomposeable(ucs_ch
)) {
386 u_int16_t sequence
[8];
389 count
= unicode_decompose(ucs_ch
, sequence
);
391 for (i
= 0; i
< count
; ++i
) {
392 ucs_ch
= sequence
[i
];
393 *ucsp
++ = swapbytes
? NXSwapShort(ucs_ch
) : ucs_ch
;
399 } else if (precompose
&& (ucsp
!= bufstart
)) {
400 u_int16_t composite
, base
;
402 if (unicode_combinable(ucs_ch
)) {
403 base
= swapbytes
? NXSwapShort(*(ucsp
- 1)) : *(ucsp
- 1);
404 composite
= unicode_combine(base
, ucs_ch
);
411 if (ucs_ch
== UCS_ALT_NULL
)
414 if (ucs_ch
== altslash
)
417 *ucsp
++ = swapbytes
? NXSwapShort(ucs_ch
) : ucs_ch
;
421 *ucslen
= (u_int8_t
*)ucsp
- (u_int8_t
*)bufstart
;
430 result
= ENAMETOOLONG
;
436 * Unicode 3.2 decomposition code (derived from Core Foundation)
442 } unicode_mappings32
;
444 static inline u_int32_t
445 getmappedvalue32(const unicode_mappings32
*theTable
, u_int32_t numElem
,
448 const unicode_mappings32
*p
, *q
, *divider
;
450 if ((character
< theTable
[0]._key
) || (character
> theTable
[numElem
-1]._key
))
456 divider
= p
+ ((q
- p
) >> 1); /* divide by 2 */
457 if (character
< divider
->_key
) { q
= divider
- 1; }
458 else if (character
> divider
->_key
) { p
= divider
+ 1; }
459 else { return (divider
->_value
); }
464 #define RECURSIVE_DECOMPOSITION (1 << 15)
465 #define EXTRACT_COUNT(value) (((value) >> 12) & 0x0007)
470 } unicode_mappings16
;
472 static inline u_int16_t
473 getmappedvalue16(const unicode_mappings16
*theTable
, u_int32_t numElem
,
476 const unicode_mappings16
*p
, *q
, *divider
;
478 if ((character
< theTable
[0]._key
) || (character
> theTable
[numElem
-1]._key
))
484 divider
= p
+ ((q
- p
) >> 1); /* divide by 2 */
485 if (character
< divider
->_key
)
487 else if (character
> divider
->_key
)
490 return (divider
->_value
);
497 unicode_recursive_decompose(u_int16_t character
, u_int16_t
*convertedChars
)
503 const u_int16_t
*bmpMappings
;
504 u_int32_t usedLength
;
506 value
= getmappedvalue16(
507 (const unicode_mappings16
*)__CFUniCharDecompositionTable
,
508 __UniCharDecompositionTableLength
, character
);
509 length
= EXTRACT_COUNT(value
);
510 firstChar
= value
& 0x0FFF;
512 bmpMappings
= (length
== 1 ? &theChar
: __CFUniCharMultipleDecompositionTable
+ firstChar
);
515 if (value
& RECURSIVE_DECOMPOSITION
) {
516 usedLength
= unicode_recursive_decompose((u_int16_t
)*bmpMappings
, convertedChars
);
518 --length
; /* Decrement for the first char */
522 convertedChars
+= usedLength
;
525 usedLength
+= length
;
528 *(convertedChars
++) = *(bmpMappings
++);
533 #define HANGUL_SBASE 0xAC00
534 #define HANGUL_LBASE 0x1100
535 #define HANGUL_VBASE 0x1161
536 #define HANGUL_TBASE 0x11A7
538 #define HANGUL_SCOUNT 11172
539 #define HANGUL_LCOUNT 19
540 #define HANGUL_VCOUNT 21
541 #define HANGUL_TCOUNT 28
542 #define HANGUL_NCOUNT (HANGUL_VCOUNT * HANGUL_TCOUNT)
545 * unicode_decompose - decompose a composed Unicode char
547 * Composed Unicode characters are forbidden on
548 * HFS Plus volumes. ucs_decompose will convert a
549 * composed character into its correct decomposed
552 * Similar to CFUniCharDecomposeCharacter
555 unicode_decompose(u_int16_t character
, u_int16_t
*convertedChars
)
557 if ((character
>= HANGUL_SBASE
) &&
558 (character
<= (HANGUL_SBASE
+ HANGUL_SCOUNT
))) {
561 character
-= HANGUL_SBASE
;
562 length
= (character
% HANGUL_TCOUNT
? 3 : 2);
564 *(convertedChars
++) =
565 character
/ HANGUL_NCOUNT
+ HANGUL_LBASE
;
566 *(convertedChars
++) =
567 (character
% HANGUL_NCOUNT
) / HANGUL_TCOUNT
+ HANGUL_VBASE
;
569 *convertedChars
= (character
% HANGUL_TCOUNT
) + HANGUL_TBASE
;
572 return (unicode_recursive_decompose(character
, convertedChars
));
577 * unicode_combine - generate a precomposed Unicode char
579 * Precomposed Unicode characters are required for some volume
580 * formats and network protocols. unicode_combine will combine
581 * a decomposed character sequence into a single precomposed
582 * (composite) character.
584 * Similar toCFUniCharPrecomposeCharacter but unicode_combine
585 * also handles Hangul Jamo characters.
588 unicode_combine(u_int16_t base
, u_int16_t combining
)
593 if ((combining
>= HANGUL_VBASE
) && (combining
< (HANGUL_TBASE
+ HANGUL_TCOUNT
))) {
594 /* 2 char Hangul sequences */
595 if ((combining
< (HANGUL_VBASE
+ HANGUL_VCOUNT
)) &&
596 (base
>= HANGUL_LBASE
&& base
< (HANGUL_LBASE
+ HANGUL_LCOUNT
))) {
597 return (HANGUL_SBASE
+
598 ((base
- HANGUL_LBASE
)*(HANGUL_VCOUNT
*HANGUL_TCOUNT
)) +
599 ((combining
- HANGUL_VBASE
)*HANGUL_TCOUNT
));
602 /* 3 char Hangul sequences */
603 if ((combining
> HANGUL_TBASE
) &&
604 (base
>= HANGUL_SBASE
&& base
< (HANGUL_SBASE
+ HANGUL_SCOUNT
))) {
605 if ((base
- HANGUL_SBASE
) % HANGUL_TCOUNT
)
608 return (base
+ (combining
- HANGUL_TBASE
));
612 value
= getmappedvalue32(
613 (const unicode_mappings32
*)__CFUniCharPrecompSourceTable
,
614 __CFUniCharPrecompositionTableLength
, combining
);
617 value
= getmappedvalue16(
618 (const unicode_mappings16
*)
619 ((u_int32_t
*)__CFUniCharBMPPrecompDestinationTable
+ (value
& 0xFFFF)),
620 (value
>> 16), base
);