blob: 05bc505ec01a752ad7e1fa48a49fc2a97321051b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * unicode.c
3 *
4 * PURPOSE
5 * Routines for converting between UTF-8 and OSTA Compressed Unicode.
6 * Also handles filename mangling
7 *
8 * DESCRIPTION
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
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * COPYRIGHT
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.
19 */
20
21#include "udfdecl.h"
22
23#include <linux/kernel.h>
24#include <linux/string.h> /* for memset */
25#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "udf_sb.h"
28
29static int udf_translate_to_linux(uint8_t *, uint8_t *, int, uint8_t *, int);
30
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070031static int udf_char_to_ustr(struct ustr *dest, const uint8_t *src, int strlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070033 if ((!dest) || (!src) || (!strlen) || (strlen > UDF_NAME_LEN - 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 memset(dest, 0, sizeof(struct ustr));
37 memcpy(dest->u_name, src, strlen);
38 dest->u_cmpID = 0x08;
39 dest->u_len = strlen;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 return strlen;
42}
43
44/*
45 * udf_build_ustr
46 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070047int udf_build_ustr(struct ustr *dest, dstring *ptr, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 int usesize;
50
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070051 if ((!dest) || (!ptr) || (!size))
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return -1;
53
54 memset(dest, 0, sizeof(struct ustr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070055 usesize = (size > UDF_NAME_LEN) ? UDF_NAME_LEN : size;
56 dest->u_cmpID = ptr[0];
57 dest->u_len = ptr[size - 1];
58 memcpy(dest->u_name, ptr + 1, usesize - 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61}
62
63/*
64 * udf_build_ustr_exact
65 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070066static int udf_build_ustr_exact(struct ustr *dest, dstring *ptr, int exactsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070068 if ((!dest) || (!ptr) || (!exactsize))
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return -1;
70
71 memset(dest, 0, sizeof(struct ustr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070072 dest->u_cmpID = ptr[0];
73 dest->u_len = exactsize - 1;
74 memcpy(dest->u_name, ptr + 1, exactsize - 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
77}
78
79/*
80 * udf_ocu_to_utf8
81 *
82 * PURPOSE
83 * Convert OSTA Compressed Unicode to the UTF-8 equivalent.
84 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * PRE-CONDITIONS
86 * utf Pointer to UTF-8 output buffer.
87 * ocu Pointer to OSTA Compressed Unicode input buffer
88 * of size UDF_NAME_LEN bytes.
89 * both of type "struct ustr *"
90 *
91 * POST-CONDITIONS
92 * <return> Zero on success.
93 *
94 * HISTORY
95 * November 12, 1997 - Andrew E. Mileski
96 * Written, tested, and released.
97 */
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +010098int udf_CS0toUTF8(struct ustr *utf_o, const struct ustr *ocu_i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100100 const uint8_t *ocu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 uint8_t cmp_id, ocu_len;
102 int i;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 ocu_len = ocu_i->u_len;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700105 if (ocu_len == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 memset(utf_o, 0, sizeof(struct ustr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return 0;
108 }
109
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100110 cmp_id = ocu_i->u_cmpID;
111 if (cmp_id != 8 && cmp_id != 16) {
112 memset(utf_o, 0, sizeof(struct ustr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700113 printk(KERN_ERR "udf: unknown compression code (%d) stri=%s\n",
114 cmp_id, ocu_i->u_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return 0;
116 }
117
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100118 ocu = ocu_i->u_name;
119 utf_o->u_len = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700120 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* Expand OSTA compressed Unicode to Unicode */
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100123 uint32_t c = ocu[i++];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (cmp_id == 16)
125 c = (c << 8) | ocu[i++];
126
127 /* Compress Unicode to UTF-8 */
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100128 if (c < 0x80U)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700129 utf_o->u_name[utf_o->u_len++] = (uint8_t)c;
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100130 else if (c < 0x800U) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800131 utf_o->u_name[utf_o->u_len++] =
132 (uint8_t)(0xc0 | (c >> 6));
133 utf_o->u_name[utf_o->u_len++] =
134 (uint8_t)(0x80 | (c & 0x3f));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700135 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800136 utf_o->u_name[utf_o->u_len++] =
137 (uint8_t)(0xe0 | (c >> 12));
138 utf_o->u_name[utf_o->u_len++] =
139 (uint8_t)(0x80 |
140 ((c >> 6) & 0x3f));
141 utf_o->u_name[utf_o->u_len++] =
142 (uint8_t)(0x80 | (c & 0x3f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700145 utf_o->u_cmpID = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 return utf_o->u_len;
148}
149
150/*
151 *
152 * udf_utf8_to_ocu
153 *
154 * PURPOSE
155 * Convert UTF-8 to the OSTA Compressed Unicode equivalent.
156 *
157 * DESCRIPTION
158 * This routine is only called by udf_lookup().
159 *
160 * PRE-CONDITIONS
161 * ocu Pointer to OSTA Compressed Unicode output
162 * buffer of size UDF_NAME_LEN bytes.
163 * utf Pointer to UTF-8 input buffer.
164 * utf_len Length of UTF-8 input buffer in bytes.
165 *
166 * POST-CONDITIONS
167 * <return> Zero on success.
168 *
169 * HISTORY
170 * November 12, 1997 - Andrew E. Mileski
171 * Written, tested, and released.
172 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700173static int udf_UTF8toCS0(dstring *ocu, struct ustr *utf, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 unsigned c, i, max_val, utf_char;
176 int utf_cnt, u_len;
177
178 memset(ocu, 0, sizeof(dstring) * length);
179 ocu[0] = 8;
180 max_val = 0xffU;
181
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700182try_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 u_len = 0U;
184 utf_char = 0U;
185 utf_cnt = 0U;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700186 for (i = 0U; i < utf->u_len; i++) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700187 c = (uint8_t)utf->u_name[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /* Complete a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700190 if (utf_cnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 utf_char = (utf_char << 6) | (c & 0x3fU);
192 if (--utf_cnt)
193 continue;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700194 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* Check for a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700196 if (c & 0x80U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* Start a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700198 if ((c & 0xe0U) == 0xc0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 utf_char = c & 0x1fU;
200 utf_cnt = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700201 } else if ((c & 0xf0U) == 0xe0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 utf_char = c & 0x0fU;
203 utf_cnt = 2;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700204 } else if ((c & 0xf8U) == 0xf0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 utf_char = c & 0x07U;
206 utf_cnt = 3;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700207 } else if ((c & 0xfcU) == 0xf8U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 utf_char = c & 0x03U;
209 utf_cnt = 4;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700210 } else if ((c & 0xfeU) == 0xfcU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 utf_char = c & 0x01U;
212 utf_cnt = 5;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700213 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 goto error_out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 continue;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700217 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* Single byte UTF-8 character (most common) */
219 utf_char = c;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
223 /* Choose no compression if necessary */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700224 if (utf_char > max_val) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700225 if (max_val == 0xffU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 max_val = 0xffffU;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700227 ocu[0] = (uint8_t)0x10U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 goto try_again;
229 }
230 goto error_out;
231 }
232
Marcin Slusarz4b111112008-02-08 04:20:36 -0800233 if (max_val == 0xffffU)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700234 ocu[++u_len] = (uint8_t)(utf_char >> 8);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700235 ocu[++u_len] = (uint8_t)(utf_char & 0xffU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700238 if (utf_cnt) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700239error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 ocu[++u_len] = '?';
241 printk(KERN_DEBUG "udf: bad UTF-8 character\n");
242 }
243
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700244 ocu[length - 1] = (uint8_t)u_len + 1;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return u_len + 1;
247}
248
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700249static int udf_CS0toNLS(struct nls_table *nls, struct ustr *utf_o,
250 struct ustr *ocu_i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 uint8_t *ocu;
253 uint32_t c;
254 uint8_t cmp_id, ocu_len;
255 int i;
256
257 ocu = ocu_i->u_name;
258
259 ocu_len = ocu_i->u_len;
260 cmp_id = ocu_i->u_cmpID;
261 utf_o->u_len = 0;
262
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700263 if (ocu_len == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 memset(utf_o, 0, sizeof(struct ustr));
265 utf_o->u_cmpID = 0;
266 utf_o->u_len = 0;
267 return 0;
268 }
269
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700270 if ((cmp_id != 8) && (cmp_id != 16)) {
271 printk(KERN_ERR "udf: unknown compression code (%d) stri=%s\n",
272 cmp_id, ocu_i->u_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return 0;
274 }
275
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700276 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* Expand OSTA compressed Unicode to Unicode */
278 c = ocu[i++];
279 if (cmp_id == 16)
280 c = (c << 8) | ocu[i++];
281
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700282 utf_o->u_len += nls->uni2char(c, &utf_o->u_name[utf_o->u_len],
283 UDF_NAME_LEN - utf_o->u_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700285 utf_o->u_cmpID = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 return utf_o->u_len;
288}
289
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700290static int udf_NLStoCS0(struct nls_table *nls, dstring *ocu, struct ustr *uni,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700291 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 unsigned len, i, max_val;
294 uint16_t uni_char;
295 int u_len;
296
297 memset(ocu, 0, sizeof(dstring) * length);
298 ocu[0] = 8;
299 max_val = 0xffU;
300
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700301try_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 u_len = 0U;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700303 for (i = 0U; i < uni->u_len; i++) {
304 len = nls->char2uni(&uni->u_name[i], uni->u_len - i, &uni_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (len <= 0)
306 continue;
307
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700308 if (uni_char > max_val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 max_val = 0xffffU;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700310 ocu[0] = (uint8_t)0x10U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 goto try_again;
312 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (max_val == 0xffffU)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700315 ocu[++u_len] = (uint8_t)(uni_char >> 8);
316 ocu[++u_len] = (uint8_t)(uni_char & 0xffU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 i += len - 1;
318 }
319
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700320 ocu[length - 1] = (uint8_t)u_len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return u_len + 1;
322}
323
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700324int udf_get_filename(struct super_block *sb, uint8_t *sname, uint8_t *dname,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700325 int flen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct ustr filename, unifilename;
328 int len;
329
Marcin Slusarz4b111112008-02-08 04:20:36 -0800330 if (udf_build_ustr_exact(&unifilename, sname, flen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700333 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
334 if (!udf_CS0toUTF8(&filename, &unifilename)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800335 udf_debug("Failed in udf_get_filename: sname = %s\n",
336 sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return 0;
338 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700339 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800340 if (!udf_CS0toNLS(UDF_SB(sb)->s_nls_map, &filename,
341 &unifilename)) {
342 udf_debug("Failed in udf_get_filename: sname = %s\n",
343 sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return 0;
345 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800346 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700349 len = udf_translate_to_linux(dname, filename.u_name, filename.u_len,
350 unifilename.u_name, unifilename.u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800351 if (len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return len;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0;
355}
356
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700357int udf_put_filename(struct super_block *sb, const uint8_t *sname,
358 uint8_t *dname, int flen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 struct ustr unifilename;
361 int namelen;
362
Marcin Slusarz4b111112008-02-08 04:20:36 -0800363 if (!udf_char_to_ustr(&unifilename, sname, flen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700366 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700367 namelen = udf_UTF8toCS0(dname, &unifilename, UDF_NAME_LEN);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800368 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700370 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800371 namelen = udf_NLStoCS0(UDF_SB(sb)->s_nls_map, dname,
372 &unifilename, UDF_NAME_LEN);
373 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800375 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377
378 return namelen;
379}
380
381#define ILLEGAL_CHAR_MARK '_'
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382#define EXT_MARK '.'
383#define CRC_MARK '#'
384#define EXT_SIZE 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Marcin Slusarz4b111112008-02-08 04:20:36 -0800386static int udf_translate_to_linux(uint8_t *newName, uint8_t *udfName,
387 int udfLen, uint8_t *fidName,
388 int fidNameLen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700390 int index, newIndex = 0, needsCRC = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int extIndex = 0, newExtIndex = 0, hasExt = 0;
392 unsigned short valueCRC;
393 uint8_t curr;
394 const uint8_t hexChar[] = "0123456789ABCDEF";
395
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700396 if (udfName[0] == '.' &&
397 (udfLen == 1 || (udfLen == 2 && udfName[1] == '.'))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 needsCRC = 1;
399 newIndex = udfLen;
400 memcpy(newName, udfName, udfLen);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700401 } else {
402 for (index = 0; index < udfLen; index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 curr = udfName[index];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700404 if (curr == '/' || curr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 needsCRC = 1;
406 curr = ILLEGAL_CHAR_MARK;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800407 while (index + 1 < udfLen &&
408 (udfName[index + 1] == '/' ||
409 udfName[index + 1] == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 index++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800411 }
412 if (curr == EXT_MARK &&
413 (udfLen - index - 1) <= EXT_SIZE) {
414 if (udfLen == index + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 hasExt = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800416 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 hasExt = 1;
418 extIndex = index;
419 newExtIndex = newIndex;
420 }
421 }
422 if (newIndex < 256)
423 newName[newIndex++] = curr;
424 else
425 needsCRC = 1;
426 }
427 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 if (needsCRC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 uint8_t ext[EXT_SIZE];
430 int localExtIndex = 0;
431
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700432 if (hasExt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 int maxFilenameLen;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800434 for (index = 0;
435 index < EXT_SIZE && extIndex + index + 1 < udfLen;
436 index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 curr = udfName[extIndex + index + 1];
438
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700439 if (curr == '/' || curr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 needsCRC = 1;
441 curr = ILLEGAL_CHAR_MARK;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800442 while (extIndex + index + 2 < udfLen &&
443 (index + 1 < EXT_SIZE &&
444 (udfName[extIndex + index + 2] == '/' ||
445 udfName[extIndex + index + 2] == 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 index++;
447 }
448 ext[localExtIndex++] = curr;
449 }
450 maxFilenameLen = 250 - localExtIndex;
451 if (newIndex > maxFilenameLen)
452 newIndex = maxFilenameLen;
453 else
454 newIndex = newExtIndex;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800455 } else if (newIndex > 250)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 newIndex = 250;
457 newName[newIndex++] = CRC_MARK;
458 valueCRC = udf_crc(fidName, fidNameLen, 0);
459 newName[newIndex++] = hexChar[(valueCRC & 0xf000) >> 12];
460 newName[newIndex++] = hexChar[(valueCRC & 0x0f00) >> 8];
461 newName[newIndex++] = hexChar[(valueCRC & 0x00f0) >> 4];
462 newName[newIndex++] = hexChar[(valueCRC & 0x000f)];
463
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700464 if (hasExt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 newName[newIndex++] = EXT_MARK;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700466 for (index = 0; index < localExtIndex; index++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 newName[newIndex++] = ext[index];
468 }
469 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return newIndex;
472}