2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kernel.h>
33 #include <sys/malloc.h>
34 #include <sys/queue.h>
35 #include <sys/utfconv.h>
36 #include <kern/host.h>
37 #include <mach/host_priv.h>
42 lck_grp_t
* encodinglst_lck_grp
;
43 lck_grp_attr_t
* encodinglst_lck_grp_attr
;
44 lck_attr_t
* encodinglst_lck_attr
;
47 /* hfs encoding converter list */
48 SLIST_HEAD(encodinglst
, hfs_encoding
) hfs_encoding_list
= {0};
50 lck_mtx_t encodinglst_mutex
;
54 /* hfs encoding converter entry */
56 SLIST_ENTRY(hfs_encoding
) link
;
60 hfs_to_unicode_func_t get_unicode_func
;
61 unicode_to_hfs_func_t get_hfsname_func
;
64 #define MAX_HFS_UNICODE_CHARS (15*5)
66 static int unicode_to_mac_roman(UniChar
*uni_str
, u_int32_t unicodeChars
, Str31 hfs_str
);
69 hfs_converterinit(void)
71 SLIST_INIT(&hfs_encoding_list
);
73 encodinglst_lck_grp_attr
= lck_grp_attr_alloc_init();
74 encodinglst_lck_grp
= lck_grp_alloc_init("cnode_hash", encodinglst_lck_grp_attr
);
75 encodinglst_lck_attr
= lck_attr_alloc_init();
77 lck_mtx_init(&encodinglst_mutex
, encodinglst_lck_grp
, encodinglst_lck_attr
);
80 * add resident MacRoman converter and take a reference
81 * since its always "loaded".
83 hfs_addconverter(0, kTextEncodingMacRoman
, mac_roman_to_unicode
, unicode_to_mac_roman
);
84 SLIST_FIRST(&hfs_encoding_list
)->refcount
++;
89 * hfs_addconverter - add an HFS encoding converter
91 * This is called exclusivly by kernel loadable modules
92 * (like HFS_Japanese.kmod) to register hfs encoding
93 * conversion routines.
97 hfs_addconverter(int id
, u_int32_t encoding
, hfs_to_unicode_func_t get_unicode
, unicode_to_hfs_func_t get_hfsname
)
99 struct hfs_encoding
*encp
;
101 MALLOC(encp
, struct hfs_encoding
*, sizeof(struct hfs_encoding
), M_TEMP
, M_WAITOK
);
103 lck_mtx_lock(&encodinglst_mutex
);
105 encp
->link
.sle_next
= NULL
;
107 encp
->encoding
= encoding
;
108 encp
->get_unicode_func
= get_unicode
;
109 encp
->get_hfsname_func
= get_hfsname
;
111 SLIST_INSERT_HEAD(&hfs_encoding_list
, encp
, link
);
113 lck_mtx_unlock(&encodinglst_mutex
);
119 * hfs_remconverter - remove an HFS encoding converter
121 * Can be called by a kernel loadable module's finalize
122 * routine to remove an encoding converter so that the
123 * module (i.e. the code) can be unloaded.
125 * However, in the normal case, the removing and unloading
126 * of these converters is done in hfs_relconverter.
127 * The call is initiated from within the kernel during the unmounting of an hfs voulume.
130 hfs_remconverter(int id
, u_int32_t encoding
)
132 struct hfs_encoding
*encp
;
134 lck_mtx_lock(&encodinglst_mutex
);
135 SLIST_FOREACH(encp
, &hfs_encoding_list
, link
) {
136 if (encp
->encoding
== encoding
&& encp
->kmod_id
== id
) {
139 /* if converter is no longer in use, release it */
140 if (encp
->refcount
<= 0 && encp
->kmod_id
!= 0) {
141 SLIST_REMOVE(&hfs_encoding_list
, encp
, hfs_encoding
, link
);
142 lck_mtx_unlock(&encodinglst_mutex
);
146 lck_mtx_unlock(&encodinglst_mutex
);
147 return (1); /* busy */
152 lck_mtx_unlock(&encodinglst_mutex
);
159 * hfs_getconverter - get HFS encoding converters
161 * Normally called during the mounting of an hfs voulume.
164 hfs_getconverter(u_int32_t encoding
, hfs_to_unicode_func_t
*get_unicode
, unicode_to_hfs_func_t
*get_hfsname
)
166 struct hfs_encoding
*encp
;
169 lck_mtx_lock(&encodinglst_mutex
);
170 SLIST_FOREACH(encp
, &hfs_encoding_list
, link
) {
171 if (encp
->encoding
== encoding
) {
173 *get_unicode
= encp
->get_unicode_func
;
174 *get_hfsname
= encp
->get_hfsname_func
;
179 lck_mtx_unlock(&encodinglst_mutex
);
192 * hfs_relconverter - release interest in an HFS encoding converter
194 * Normally called during the unmounting of an hfs voulume.
197 hfs_relconverter(u_int32_t encoding
)
199 struct hfs_encoding
*encp
;
201 lck_mtx_lock(&encodinglst_mutex
);
202 SLIST_FOREACH(encp
, &hfs_encoding_list
, link
) {
203 if (encp
->encoding
== encoding
) {
206 /* if converter is no longer in use, release it */
207 if (encp
->refcount
<= 0 && encp
->kmod_id
!= 0) {
208 int id
= encp
->kmod_id
;
210 SLIST_REMOVE(&hfs_encoding_list
, encp
, hfs_encoding
, link
);
211 lck_mtx_unlock(&encodinglst_mutex
);
214 kmod_destroy((host_priv_t
) host_priv_self(), id
);
217 lck_mtx_unlock(&encodinglst_mutex
);
221 lck_mtx_unlock(&encodinglst_mutex
);
228 * Convert HFS encoded string into UTF-8
230 * Unicode output is fully decomposed
231 * '/' chars are converted to ':'
234 hfs_to_utf8(ExtendedVCB
*vcb
, const Str31 hfs_str
, ByteCount maxDstLen
, ByteCount
*actualDstLen
, unsigned char* dstStr
)
237 UniChar uniStr
[MAX_HFS_UNICODE_CHARS
];
240 hfs_to_unicode_func_t hfs_get_unicode
= VCBTOHFS(vcb
)->hfs_get_unicode
;
242 error
= hfs_get_unicode(hfs_str
, uniStr
, MAX_HFS_UNICODE_CHARS
, &uniCount
);
248 error
= utf8_encodestr(uniStr
, uniCount
* sizeof(UniChar
), dstStr
, &utf8len
, maxDstLen
, ':', 0);
249 if (error
== ENAMETOOLONG
)
250 *actualDstLen
= utf8_encodelen(uniStr
, uniCount
* sizeof(UniChar
), ':', 0);
252 *actualDstLen
= utf8len
;
260 * When an HFS name cannot be encoded with the current
261 * volume encoding then MacRoman is used as a fallback.
264 mac_roman_to_utf8(const Str31 hfs_str
, ByteCount maxDstLen
, ByteCount
*actualDstLen
, unsigned char* dstStr
)
267 UniChar uniStr
[MAX_HFS_UNICODE_CHARS
];
271 error
= mac_roman_to_unicode(hfs_str
, uniStr
, MAX_HFS_UNICODE_CHARS
, &uniCount
);
277 error
= utf8_encodestr(uniStr
, uniCount
* sizeof(UniChar
), dstStr
, &utf8len
, maxDstLen
, ':', 0);
278 if (error
== ENAMETOOLONG
)
279 *actualDstLen
= utf8_encodelen(uniStr
, uniCount
* sizeof(UniChar
), ':', 0);
281 *actualDstLen
= utf8len
;
289 * Convert Unicode string into HFS encoding
291 * ':' chars are converted to '/'
292 * Assumes input represents fully decomposed Unicode
295 unicode_to_hfs(ExtendedVCB
*vcb
, ByteCount srcLen
, u_int16_t
* srcStr
, Str31 dstStr
, int retry
)
298 unicode_to_hfs_func_t hfs_get_hfsname
= VCBTOHFS(vcb
)->hfs_get_hfsname
;
300 error
= hfs_get_hfsname(srcStr
, srcLen
/sizeof(UniChar
), dstStr
);
301 if (error
&& retry
) {
302 error
= unicode_to_mac_roman(srcStr
, srcLen
/sizeof(UniChar
), dstStr
);
308 * Convert UTF-8 string into HFS encoding
310 * ':' chars are converted to '/'
311 * Assumes input represents fully decomposed Unicode
314 utf8_to_hfs(ExtendedVCB
*vcb
, ByteCount srcLen
, const unsigned char* srcStr
, Str31 dstStr
/*, int retry*/)
317 UniChar uniStr
[MAX_HFS_UNICODE_CHARS
];
320 error
= utf8_decodestr(srcStr
, srcLen
, uniStr
, &ucslen
, sizeof(uniStr
), ':', 0);
322 error
= unicode_to_hfs(vcb
, ucslen
, uniStr
, dstStr
, 1);
328 utf8_to_mac_roman(ByteCount srcLen
, const unsigned char* srcStr
, Str31 dstStr
)
331 UniChar uniStr
[MAX_HFS_UNICODE_CHARS
];
334 error
= utf8_decodestr(srcStr
, srcLen
, uniStr
, &ucslen
, sizeof(uniStr
), ':', 0);
336 error
= unicode_to_mac_roman(uniStr
, ucslen
/sizeof(UniChar
), dstStr
);
342 * HFS MacRoman to/from Unicode conversions are built into the kernel
343 * All others hfs encodings are loadable.
346 /* 0x00A0 - 0x00FF = Latin 1 Supplement (30 total) */
347 static u_int8_t gLatin1Table
[] = {
348 /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
349 /* 0x00A0 */ 0xCA, 0xC1, 0xA2, 0xA3, 0xDB, 0xB4, '?', 0xA4, 0xAC, 0xA9, 0xBB, 0xC7, 0xC2, '?', 0xA8, 0xF8,
350 /* 0x00B0 */ 0xA1, 0XB1, '?', '?', 0xAB, 0xB5, 0xA6, 0xe1, 0xFC, '?', 0xBC, 0xC8, '?', '?', '?', 0xC0,
351 /* 0x00C0 */ '?', '?', '?', '?', '?', '?', 0xAE, '?', '?', '?', '?', '?', '?', '?', '?', '?',
352 /* 0x00D0 */ '?', '?', '?', '?', '?', '?', '?', '?', 0xAF, '?', '?', '?', '?', '?', '?', 0xA7,
353 /* 0x00E0 */ '?', '?', '?', '?', '?', '?', 0xBE, '?', '?', '?', '?', '?', '?', '?', '?', '?',
354 /* 0x00F0 */ '?', '?', '?', '?', '?', '?', '?', 0xD6, 0xBF, '?', '?', '?', '?', '?', '?', '?'
357 /* 0x02C0 - 0x02DF = Spacing Modifiers (8 total) */
358 static u_int8_t gSpaceModsTable
[] = {
359 /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
360 /* 0x02C0 */ '?', '?', '?', '?', '?', '?', 0xF6, 0xFF, '?', '?', '?', '?', '?', '?', '?', '?',
361 /* 0x02D0 */ '?', '?', '?', '?', '?', '?', '?', '?', 0xF9, 0xFA, 0xFB, 0xFE, 0xF7, 0xFD, '?', '?'
364 /* 0x2010 - 0x20AF = General Punctuation (17 total) */
365 static u_int8_t gPunctTable
[] = {
366 /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
367 /* 0x2010 */ '?', '?', '?', 0xd0, 0xd1, '?', '?', '?', 0xd4, 0xd5, 0xe2, '?', 0xd2, 0xd3, 0xe3, '?',
368 /* 0x2020 */ 0xa0, 0xe0, 0xa5, '?', '?', '?', 0xc9, '?', '?', '?', '?', '?', '?', '?', '?', '?',
369 /* 0x2030 */ 0xe4, '?', '?', '?', '?', '?', '?', '?', '?', 0xdc, 0xdd, '?', '?', '?', '?', '?',
370 /* 0x2040 */ '?', '?', '?', '?', 0xda, '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
371 /* 0x2050 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
372 /* 0x2060 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
373 /* 0x2070 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
374 /* 0x2080 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
375 /* 0x2090 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
376 /* 0x20A0 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', 0xdb, '?', '?', '?'
379 /* 0x22xx = Mathematical Operators (11 total) */
380 static u_int8_t gMathTable
[] = {
381 /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
382 /* 0x2200 */ '?', '?', 0xb6, '?', '?', '?', 0xc6, '?', '?', '?', '?', '?', '?', '?', '?', 0xb8,
383 /* 0x2210 */ '?', 0xb7, '?', '?', '?', '?', '?', '?', '?', '?', 0xc3, '?', '?', '?', 0xb0, '?',
384 /* 0x2220 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', 0xba, '?', '?', '?', '?',
385 /* 0x2230 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
386 /* 0x2240 */ '?', '?', '?', '?', '?', '?', '?', '?', 0xc5, '?', '?', '?', '?', '?', '?', '?',
387 /* 0x2250 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?',
388 /* 0x2260 */ 0xad, '?', '?', '?', 0xb2, 0xb3, '?', '?'
392 static u_int8_t gReverseCombTable
[] = {
393 /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
394 /* 0x40 */ 0xDA, 0x40, 0xDA, 0xDA, 0xDA, 0x56, 0xDA, 0xDA, 0xDA, 0x6C, 0xDA, 0xDA, 0xDA, 0xDA, 0x82, 0x98,
395 /* 0x50 */ 0xDA, 0xDA, 0xDA, 0xDA, 0xDA, 0xAE, 0xDA, 0xDA, 0xDA, 0xC4, 0xDA, 0xDA, 0xDA, 0xDA, 0xDA, 0xDA,
396 /* 0x60 */ 0xDA, 0x4B, 0xDA, 0xDA, 0xDA, 0x61, 0xDA, 0xDA, 0xDA, 0x77, 0xDA, 0xDA, 0xDA, 0xDA, 0x8D, 0xA3,
397 /* 0x70 */ 0xDA, 0xDA, 0xDA, 0xDA, 0xDA, 0xB9, 0xDA, 0xDA, 0xDA, 0xCF, 0xDA, 0xDA, 0xDA, 0xDA, 0xDA, 0xDA,
399 /* Combining Diacritical Marks (0x0300 - 0x030A) */
400 /* 0 1 2 3 4 5 6 7 8 9 A */
402 /* 0x0300 */ 0xCB, 0xE7, 0xE5, 0xCC, '?', '?', '?', '?', 0x80, '?', 0x81,
405 /* 0x0300 */ 0x88, 0x87, 0x89, 0x8B, '?', '?', '?', '?', 0x8A, '?', 0x8C,
408 /* 0x0300 */ 0xE9, 0x83, 0xE6, '?', '?', '?', '?', '?', 0xE8, '?', '?',
411 /* 0x0300 */ 0x8F, 0x8E, 0x90, '?', '?', '?', '?', '?', 0x91, '?', '?',
414 /* 0x0300 */ 0xED, 0xEA, 0xEB, '?', '?', '?', '?', '?', 0xEC, '?', '?',
417 /* 0x0300 */ 0x93, 0x92, 0x94, '?', '?', '?', '?', '?', 0x95, '?', '?',
420 /* 0x0300 */ '?', '?', '?', 0x84, '?', '?', '?', '?', '?', '?', '?',
423 /* 0x0300 */ '?', '?', '?', 0x96, '?', '?', '?', '?', '?', '?', '?',
426 /* 0x0300 */ 0xF1, 0xEE, 0xEF, 0xCD, '?', '?', '?', '?', 0x85, '?', '?',
429 /* 0x0300 */ 0x98, 0x97, 0x99, 0x9B, '?', '?', '?', '?', 0x9A, '?', '?',
432 /* 0x0300 */ 0xF4, 0xF2, 0xF3, '?', '?', '?', '?', '?', 0x86, '?', '?',
435 /* 0x0300 */ 0x9D, 0x9C, 0x9E, '?', '?', '?', '?', '?', 0x9F, '?', '?',
438 /* 0x0300 */ '?', '?', '?', '?', '?', '?', '?', '?', 0xD9, '?', '?',
441 /* 0x0300 */ '?', '?', '?', '?', '?', '?', '?', '?', 0xD8, '?', '?',
444 /* 0x0300 */ '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?'
449 * Convert Unicode string into HFS MacRoman encoding
451 * Assumes Unicode input is fully decomposed
453 static int unicode_to_mac_roman(UniChar
*uni_str
, u_int32_t unicodeChars
, Str31 hfs_str
)
459 u_int16_t inputChars
;
460 u_int16_t pascalChars
;
461 OSErr result
= noErr
;
466 mask
= (UniChar
) 0xFF80;
469 inputChars
= unicodeChars
;
470 pascalChars
= prevChar
= 0;
477 * If its not 7-bit ascii, then we need to map it
481 switch (c
& 0xFF00) {
484 mc
= gLatin1Table
[lsb
- 0xA0];
488 if (lsb
>= 0xC0 && lsb
<= 0xDF)
489 mc
= gSpaceModsTable
[lsb
- 0xC0];
493 if (lsb
>= 0x10 && lsb
<= 0xAF)
494 mc
= gPunctTable
[lsb
- 0x10];
499 mc
= gMathTable
[lsb
];
504 if (prevChar
>= 'A' && prevChar
< 'z') {
505 mc
= gReverseCombTable
[gReverseCombTable
[prevChar
- 0x40] + lsb
];
506 --p
; /* backup over base char */
511 case 0x0327: /* combining cedilla */
514 else if (prevChar
== 'c')
518 --p
; /* backup over base char */
522 case 0x03A9: mc
= 0xBD; break; /* omega */
524 case 0x03C0: mc
= 0xB9; break; /* pi */
531 case 0x0131: mc
= 0xf5; break; /* dotless i */
533 case 0x0152: mc
= 0xce; break; /* OE */
535 case 0x0153: mc
= 0xcf; break; /* oe */
537 case 0x0192: mc
= 0xc4; break; /* Ä */
539 case 0x2122: mc
= 0xaa; break; /* TM */
541 case 0x25ca: mc
= 0xd7; break; /* diamond */
543 case 0xf8ff: mc
= 0xf0; break; /* apple logo */
545 case 0xfb01: mc
= 0xde; break; /* fi */
547 case 0xfb02: mc
= 0xdf; break; /* fl */
549 } /* end switch (c & 0xFF00) */
552 * If we have an unmapped character then we need to mangle the name...
555 result
= kTECUsedFallbacksStatus
;
564 if (pascalChars
>= 31)
573 hfs_str
[0] = pascalChars
;
576 result
= ENAMETOOLONG
; /* ran out of room! */
582 static UniChar gHiBitBaseUnicode
[128] = {
583 /* 0x80 */ 0x0041, 0x0041, 0x0043, 0x0045, 0x004e, 0x004f, 0x0055, 0x0061,
584 /* 0x88 */ 0x0061, 0x0061, 0x0061, 0x0061, 0x0061, 0x0063, 0x0065, 0x0065,
585 /* 0x90 */ 0x0065, 0x0065, 0x0069, 0x0069, 0x0069, 0x0069, 0x006e, 0x006f,
586 /* 0x98 */ 0x006f, 0x006f, 0x006f, 0x006f, 0x0075, 0x0075, 0x0075, 0x0075,
587 /* 0xa0 */ 0x2020, 0x00b0, 0x00a2, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df,
588 /* 0xa8 */ 0x00ae, 0x00a9, 0x2122, 0x00b4, 0x00a8, 0x2260, 0x00c6, 0x00d8,
589 /* 0xb0 */ 0x221e, 0x00b1, 0x2264, 0x2265, 0x00a5, 0x00b5, 0x2202, 0x2211,
590 /* 0xb8 */ 0x220f, 0x03c0, 0x222b, 0x00aa, 0x00ba, 0x03a9, 0x00e6, 0x00f8,
591 /* 0xc0 */ 0x00bf, 0x00a1, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab,
592 /* 0xc8 */ 0x00bb, 0x2026, 0x00a0, 0x0041, 0x0041, 0x004f, 0x0152, 0x0153,
593 /* 0xd0 */ 0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca,
594 /* 0xd8 */ 0x0079, 0x0059, 0x2044, 0x20ac, 0x2039, 0x203a, 0xfb01, 0xfb02,
595 /* 0xe0 */ 0x2021, 0x00b7, 0x201a, 0x201e, 0x2030, 0x0041, 0x0045, 0x0041,
596 /* 0xe8 */ 0x0045, 0x0045, 0x0049, 0x0049, 0x0049, 0x0049, 0x004f, 0x004f,
597 /* 0xf0 */ 0xf8ff, 0x004f, 0x0055, 0x0055, 0x0055, 0x0131, 0x02c6, 0x02dc,
598 /* 0xf8 */ 0x00af, 0x02d8, 0x02d9, 0x02da, 0x00b8, 0x02dd, 0x02db, 0x02c7
601 static UniChar gHiBitCombUnicode
[128] = {
602 /* 0x80 */ 0x0308, 0x030a, 0x0327, 0x0301, 0x0303, 0x0308, 0x0308, 0x0301,
603 /* 0x88 */ 0x0300, 0x0302, 0x0308, 0x0303, 0x030a, 0x0327, 0x0301, 0x0300,
604 /* 0x90 */ 0x0302, 0x0308, 0x0301, 0x0300, 0x0302, 0x0308, 0x0303, 0x0301,
605 /* 0x98 */ 0x0300, 0x0302, 0x0308, 0x0303, 0x0301, 0x0300, 0x0302, 0x0308,
606 /* 0xa0 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
607 /* 0xa8 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
608 /* 0xb0 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
609 /* 0xb8 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
610 /* 0xc0 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
611 /* 0xc8 */ 0x0000, 0x0000, 0x0000, 0x0300, 0x0303, 0x0303, 0x0000, 0x0000,
612 /* 0xd0 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
613 /* 0xd8 */ 0x0308, 0x0308, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
614 /* 0xe0 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0302, 0x0302, 0x0301,
615 /* 0xe8 */ 0x0308, 0x0300, 0x0301, 0x0302, 0x0308, 0x0300, 0x0301, 0x0302,
616 /* 0xf0 */ 0x0000, 0x0300, 0x0301, 0x0302, 0x0300, 0x0000, 0x0000, 0x0000,
617 /* 0xf8 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
622 * Convert HFS MacRoman encoded string into Unicode
624 * Unicode output is fully decomposed
627 mac_roman_to_unicode(const Str31 hfs_str
, UniChar
*uni_str
,
628 __unused u_int32_t maxCharLen
, u_int32_t
*unicodeChars
)
632 u_int16_t pascalChars
;
638 *unicodeChars
= pascalChars
= *(p
++); /* pick up length byte */
640 while (pascalChars
--) {
643 if ( (int8_t) c
>= 0 ) { /* check if seven bit ascii */
644 *(u
++) = (UniChar
) c
; /* just pad high byte with zero */
645 } else { /* its a hi bit character */
649 *(u
++) = uc
= gHiBitBaseUnicode
[c
];
652 * if the unicode character we get back is an alpha char
653 * then we must have an additional combining character
655 if ((uc
<= (UniChar
) 'z') && (uc
>= (UniChar
) 'A')) {
656 *(u
++) = gHiBitCombUnicode
[c
];
665 #else /* not HFS - temp workaround until 4277828 is fixed */
666 /* stubs for exported routines that aren't present when we build kernel without HFS */
668 #include <sys/types.h>
669 #include <sys/errno.h>
671 int hfs_addconverter(int id
, u_int32_t encoding
, void * get_unicode
, void * get_hfsname
);
672 int hfs_getconverter(u_int32_t encoding
, void *get_unicode
, void *get_hfsname
);
673 int hfs_relconverter(u_int32_t encoding
);
674 int hfs_remconverter(int id
, u_int32_t encoding
);
676 int hfs_addconverter( __unused
int id
,
677 __unused u_int32_t encoding
,
678 __unused
void * get_unicode
,
679 __unused
void * get_hfsname
)
684 int hfs_getconverter(__unused u_int32_t encoding
, __unused
void *get_unicode
, __unused
void *get_hfsname
)
689 int hfs_relconverter(__unused u_int32_t encoding
)
694 int hfs_remconverter(__unused
int id
, __unused u_int32_t encoding
)