3 exFAT file system implementation library.
5 Copyright (C) 2009, 2010 Andrew Nayenko
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 static char* wchar_to_utf8(char* output, wchar_t wc, size_t outsize)
30 *output++ = (char) wc;
36 *output++ = 0xc0 | (wc >> 6);
37 *output++ = 0x80 | (wc & 0x3f);
39 else if (wc <= 0xffff)
43 *output++ = 0xe0 | (wc >> 12);
44 *output++ = 0x80 | ((wc >> 6) & 0x3f);
45 *output++ = 0x80 | (wc & 0x3f);
47 else if (wc <= 0x1fffff)
51 *output++ = 0xf0 | (wc >> 18);
52 *output++ = 0x80 | ((wc >> 12) & 0x3f);
53 *output++ = 0x80 | ((wc >> 6) & 0x3f);
54 *output++ = 0x80 | (wc & 0x3f);
56 else if (wc <= 0x3ffffff)
60 *output++ = 0xf8 | (wc >> 24);
61 *output++ = 0x80 | ((wc >> 18) & 0x3f);
62 *output++ = 0x80 | ((wc >> 12) & 0x3f);
63 *output++ = 0x80 | ((wc >> 6) & 0x3f);
64 *output++ = 0x80 | (wc & 0x3f);
66 else if (wc <= 0x7fffffff)
70 *output++ = 0xfc | (wc >> 30);
71 *output++ = 0x80 | ((wc >> 24) & 0x3f);
72 *output++ = 0x80 | ((wc >> 18) & 0x3f);
73 *output++ = 0x80 | ((wc >> 12) & 0x3f);
74 *output++ = 0x80 | ((wc >> 6) & 0x3f);
75 *output++ = 0x80 | (wc & 0x3f);
83 static const le16_t* utf16_to_wchar(const le16_t* input, wchar_t* wc,
86 if ((le16_to_cpu(input[0]) & 0xfc00) == 0xd800)
88 if (insize < 2 || (le16_to_cpu(input[1]) & 0xfc00) != 0xdc00)
90 *wc = ((wchar_t) (le16_to_cpu(input[0]) & 0x3ff) << 10);
91 *wc |= (le16_to_cpu(input[1]) & 0x3ff);
96 *wc = le16_to_cpu(*input);
101 int utf16_to_utf8(char* output, const le16_t* input, size_t outsize,
104 const le16_t* inp = input;
108 while (inp - input < insize && le16_to_cpu(*inp))
110 inp = utf16_to_wchar(inp, &wc, insize - (inp - input));
113 exfat_error("illegal UTF-16 sequence");
116 outp = wchar_to_utf8(outp, wc, outsize - (outp - output));
119 exfat_error("name is too long");
120 return -ENAMETOOLONG;
127 static const char* utf8_to_wchar(const char* input, wchar_t* wc,
130 if ((input[0] & 0x80) == 0 && insize >= 1)
132 *wc = (wchar_t) input[0];
135 if ((input[0] & 0xe0) == 0xc0 && insize >= 2)
137 *wc = (((wchar_t) input[0] & 0x1f) << 6) |
138 ((wchar_t) input[1] & 0x3f);
141 if ((input[0] & 0xf0) == 0xe0 && insize >= 3)
143 *wc = (((wchar_t) input[0] & 0x0f) << 12) |
144 (((wchar_t) input[1] & 0x3f) << 6) |
145 ((wchar_t) input[2] & 0x3f);
148 if ((input[0] & 0xf8) == 0xf0 && insize >= 4)
150 *wc = (((wchar_t) input[0] & 0x07) << 18) |
151 (((wchar_t) input[1] & 0x3f) << 12) |
152 (((wchar_t) input[2] & 0x3f) << 6) |
153 ((wchar_t) input[3] & 0x3f);
156 if ((input[0] & 0xfc) == 0xf8 && insize >= 5)
158 *wc = (((wchar_t) input[0] & 0x03) << 24) |
159 (((wchar_t) input[1] & 0x3f) << 18) |
160 (((wchar_t) input[2] & 0x3f) << 12) |
161 (((wchar_t) input[3] & 0x3f) << 6) |
162 ((wchar_t) input[4] & 0x3f);
165 if ((input[0] & 0xfe) == 0xfc && insize >= 6)
167 *wc = (((wchar_t) input[0] & 0x01) << 30) |
168 (((wchar_t) input[1] & 0x3f) << 24) |
169 (((wchar_t) input[2] & 0x3f) << 18) |
170 (((wchar_t) input[3] & 0x3f) << 12) |
171 (((wchar_t) input[4] & 0x3f) << 6) |
172 ((wchar_t) input[5] & 0x3f);
178 static le16_t* wchar_to_utf16(le16_t* output, wchar_t wc, size_t outsize)
180 if (wc <= 0xffff) /* if character is from BMP */
184 output[0] = cpu_to_le16(wc);
189 output[0] = cpu_to_le16(0xd800 | ((wc >> 10) & 0x3ff));
190 output[1] = cpu_to_le16(0xdc00 | (wc & 0x3ff));
194 int utf8_to_utf16(le16_t* output, const char* input, size_t outsize,
197 const char* inp = input;
198 le16_t* outp = output;
201 while (inp - input < insize && *inp)
203 inp = utf8_to_wchar(inp, &wc, insize - (inp - input));
206 exfat_error("illegal UTF-8 sequence");
209 outp = wchar_to_utf16(outp, wc, outsize - (outp - output));
212 exfat_error("name is too long");
213 return -ENAMETOOLONG;
216 *outp = cpu_to_le16(0);
220 size_t utf16_length(const le16_t* str)
224 while (le16_to_cpu(str[i]))