5 * Routines for converting between UTF-8 and OSTA Compressed Unicode.
6 * Also handles filename mangling
9 * OSTA Compressed Unicode is explained in the OSTA UDF specification.
10 * http://www.osta.org/
11 * UTF-8 is explained in the IETF RFC XXXX.
12 * ftp://ftp.internic.net/rfc/rfcxxxx.txt
15 * This file is distributed under the terms of the GNU General Public
16 * License (GPL). Copies of the GPL can be obtained from:
17 * ftp://prep.ai.mit.edu/pub/gnu/GPL
18 * Each contributing author retains all rights to their own work.
23 #include <linux/kernel.h>
24 #include <linux/string.h> /* for memset */
25 #include <linux/nls.h>
29 static int udf_translate_to_linux(uint8_t *, uint8_t *, int, uint8_t *, int);
31 static int udf_char_to_ustr(struct ustr *dest, const uint8_t *src, int strlen)
33 if ((!dest) || (!src) || (!strlen) || (strlen > UDF_NAME_LEN - 2))
36 memset(dest, 0, sizeof(struct ustr));
37 memcpy(dest->u_name, src, strlen);
47 int udf_build_ustr(struct ustr *dest, dstring *ptr, int size)
51 if (!dest || !ptr || !size)
55 usesize = min_t(size_t, ptr[size - 1], sizeof(dest->u_name));
56 usesize = min(usesize, size - 2);
57 dest->u_cmpID = ptr[0];
58 dest->u_len = usesize;
59 memcpy(dest->u_name, ptr + 1, usesize);
60 memset(dest->u_name + usesize, 0, sizeof(dest->u_name) - usesize);
66 * udf_build_ustr_exact
68 static int udf_build_ustr_exact(struct ustr *dest, dstring *ptr, int exactsize)
70 if ((!dest) || (!ptr) || (!exactsize))
73 memset(dest, 0, sizeof(struct ustr));
74 dest->u_cmpID = ptr[0];
75 dest->u_len = exactsize - 1;
76 memcpy(dest->u_name, ptr + 1, exactsize - 1);
85 * Convert OSTA Compressed Unicode to the UTF-8 equivalent.
88 * utf Pointer to UTF-8 output buffer.
89 * ocu Pointer to OSTA Compressed Unicode input buffer
90 * of size UDF_NAME_LEN bytes.
91 * both of type "struct ustr *"
94 * <return> Zero on success.
97 * November 12, 1997 - Andrew E. Mileski
98 * Written, tested, and released.
100 int udf_CS0toUTF8(struct ustr *utf_o, const struct ustr *ocu_i)
103 uint8_t cmp_id, ocu_len;
106 ocu_len = ocu_i->u_len;
108 memset(utf_o, 0, sizeof(struct ustr));
112 cmp_id = ocu_i->u_cmpID;
113 if (cmp_id != 8 && cmp_id != 16) {
114 memset(utf_o, 0, sizeof(struct ustr));
115 printk(KERN_ERR "udf: unknown compression code (%d) stri=%s\n",
116 cmp_id, ocu_i->u_name);
122 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
124 /* Expand OSTA compressed Unicode to Unicode */
125 uint32_t c = ocu[i++];
127 c = (c << 8) | ocu[i++];
129 /* Compress Unicode to UTF-8 */
131 utf_o->u_name[utf_o->u_len++] = (uint8_t)c;
132 else if (c < 0x800U) {
133 utf_o->u_name[utf_o->u_len++] =
134 (uint8_t)(0xc0 | (c >> 6));
135 utf_o->u_name[utf_o->u_len++] =
136 (uint8_t)(0x80 | (c & 0x3f));
138 utf_o->u_name[utf_o->u_len++] =
139 (uint8_t)(0xe0 | (c >> 12));
140 utf_o->u_name[utf_o->u_len++] =
143 utf_o->u_name[utf_o->u_len++] =
144 (uint8_t)(0x80 | (c & 0x3f));
157 * Convert UTF-8 to the OSTA Compressed Unicode equivalent.
160 * This routine is only called by udf_lookup().
163 * ocu Pointer to OSTA Compressed Unicode output
164 * buffer of size UDF_NAME_LEN bytes.
165 * utf Pointer to UTF-8 input buffer.
166 * utf_len Length of UTF-8 input buffer in bytes.
169 * <return> Zero on success.
172 * November 12, 1997 - Andrew E. Mileski
173 * Written, tested, and released.
175 static int udf_UTF8toCS0(dstring *ocu, struct ustr *utf, int length)
177 unsigned c, i, max_val, utf_char;
180 memset(ocu, 0, sizeof(dstring) * length);
188 for (i = 0U; i < utf->u_len; i++) {
189 c = (uint8_t)utf->u_name[i];
191 /* Complete a multi-byte UTF-8 character */
193 utf_char = (utf_char << 6) | (c & 0x3fU);
197 /* Check for a multi-byte UTF-8 character */
199 /* Start a multi-byte UTF-8 character */
200 if ((c & 0xe0U) == 0xc0U) {
201 utf_char = c & 0x1fU;
203 } else if ((c & 0xf0U) == 0xe0U) {
204 utf_char = c & 0x0fU;
206 } else if ((c & 0xf8U) == 0xf0U) {
207 utf_char = c & 0x07U;
209 } else if ((c & 0xfcU) == 0xf8U) {
210 utf_char = c & 0x03U;
212 } else if ((c & 0xfeU) == 0xfcU) {
213 utf_char = c & 0x01U;
220 /* Single byte UTF-8 character (most common) */
225 /* Choose no compression if necessary */
226 if (utf_char > max_val) {
227 if (max_val == 0xffU) {
229 ocu[0] = (uint8_t)0x10U;
235 if (max_val == 0xffffU)
236 ocu[++u_len] = (uint8_t)(utf_char >> 8);
237 ocu[++u_len] = (uint8_t)(utf_char & 0xffU);
243 printk(KERN_DEBUG "udf: bad UTF-8 character\n");
246 ocu[length - 1] = (uint8_t)u_len + 1;
251 static int udf_CS0toNLS(struct nls_table *nls, struct ustr *utf_o,
252 const struct ustr *ocu_i)
255 uint8_t cmp_id, ocu_len;
259 ocu_len = ocu_i->u_len;
261 memset(utf_o, 0, sizeof(struct ustr));
265 cmp_id = ocu_i->u_cmpID;
266 if (cmp_id != 8 && cmp_id != 16) {
267 memset(utf_o, 0, sizeof(struct ustr));
268 printk(KERN_ERR "udf: unknown compression code (%d) stri=%s\n",
269 cmp_id, ocu_i->u_name);
275 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
276 /* Expand OSTA compressed Unicode to Unicode */
277 uint32_t c = ocu[i++];
279 c = (c << 8) | ocu[i++];
281 utf_o->u_len += nls->uni2char(c, &utf_o->u_name[utf_o->u_len],
282 UDF_NAME_LEN - utf_o->u_len);
289 static int udf_NLStoCS0(struct nls_table *nls, dstring *ocu, struct ustr *uni,
292 unsigned len, i, max_val;
296 memset(ocu, 0, sizeof(dstring) * length);
302 for (i = 0U; i < uni->u_len; i++) {
303 len = nls->char2uni(&uni->u_name[i], uni->u_len - i, &uni_char);
307 if (uni_char > max_val) {
309 ocu[0] = (uint8_t)0x10U;
313 if (max_val == 0xffffU)
314 ocu[++u_len] = (uint8_t)(uni_char >> 8);
315 ocu[++u_len] = (uint8_t)(uni_char & 0xffU);
319 ocu[length - 1] = (uint8_t)u_len + 1;
323 int udf_get_filename(struct super_block *sb, uint8_t *sname, uint8_t *dname,
326 struct ustr filename, unifilename;
329 if (udf_build_ustr_exact(&unifilename, sname, flen))
332 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
333 if (!udf_CS0toUTF8(&filename, &unifilename)) {
334 udf_debug("Failed in udf_get_filename: sname = %s\n",
338 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
339 if (!udf_CS0toNLS(UDF_SB(sb)->s_nls_map, &filename,
341 udf_debug("Failed in udf_get_filename: sname = %s\n",
348 len = udf_translate_to_linux(dname, filename.u_name, filename.u_len,
349 unifilename.u_name, unifilename.u_len);
356 int udf_put_filename(struct super_block *sb, const uint8_t *sname,
357 uint8_t *dname, int flen)
359 struct ustr unifilename;
362 if (!udf_char_to_ustr(&unifilename, sname, flen))
365 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
366 namelen = udf_UTF8toCS0(dname, &unifilename, UDF_NAME_LEN);
369 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
370 namelen = udf_NLStoCS0(UDF_SB(sb)->s_nls_map, dname,
371 &unifilename, UDF_NAME_LEN);
380 #define ILLEGAL_CHAR_MARK '_'
385 static int udf_translate_to_linux(uint8_t *newName, uint8_t *udfName,
386 int udfLen, uint8_t *fidName,
389 int index, newIndex = 0, needsCRC = 0;
390 int extIndex = 0, newExtIndex = 0, hasExt = 0;
391 unsigned short valueCRC;
393 const uint8_t hexChar[] = "0123456789ABCDEF";
395 if (udfName[0] == '.' &&
396 (udfLen == 1 || (udfLen == 2 && udfName[1] == '.'))) {
399 memcpy(newName, udfName, udfLen);
401 for (index = 0; index < udfLen; index++) {
402 curr = udfName[index];
403 if (curr == '/' || curr == 0) {
405 curr = ILLEGAL_CHAR_MARK;
406 while (index + 1 < udfLen &&
407 (udfName[index + 1] == '/' ||
408 udfName[index + 1] == 0))
411 if (curr == EXT_MARK &&
412 (udfLen - index - 1) <= EXT_SIZE) {
413 if (udfLen == index + 1)
418 newExtIndex = newIndex;
422 newName[newIndex++] = curr;
428 uint8_t ext[EXT_SIZE];
429 int localExtIndex = 0;
434 index < EXT_SIZE && extIndex + index + 1 < udfLen;
436 curr = udfName[extIndex + index + 1];
438 if (curr == '/' || curr == 0) {
440 curr = ILLEGAL_CHAR_MARK;
441 while (extIndex + index + 2 < udfLen &&
442 (index + 1 < EXT_SIZE &&
443 (udfName[extIndex + index + 2] == '/' ||
444 udfName[extIndex + index + 2] == 0)))
447 ext[localExtIndex++] = curr;
449 maxFilenameLen = 250 - localExtIndex;
450 if (newIndex > maxFilenameLen)
451 newIndex = maxFilenameLen;
453 newIndex = newExtIndex;
454 } else if (newIndex > 250)
456 newName[newIndex++] = CRC_MARK;
457 valueCRC = udf_crc(fidName, fidNameLen, 0);
458 newName[newIndex++] = hexChar[(valueCRC & 0xf000) >> 12];
459 newName[newIndex++] = hexChar[(valueCRC & 0x0f00) >> 8];
460 newName[newIndex++] = hexChar[(valueCRC & 0x00f0) >> 4];
461 newName[newIndex++] = hexChar[(valueCRC & 0x000f)];
464 newName[newIndex++] = EXT_MARK;
465 for (index = 0; index < localExtIndex; index++)
466 newName[newIndex++] = ext[index];