blob: b84fee372734bd494ba5eb86f5ce5c8c28b99b5a [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>
Bob Copelandf845fce2008-04-17 09:47:48 +020026#include <linux/crc-itu-t.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include "udf_sb.h"
30
Jan Kara0e5cc9a2014-12-18 22:37:50 +010031static int udf_translate_to_linux(uint8_t *, int, uint8_t *, int, uint8_t *,
32 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070034static int udf_char_to_ustr(struct ustr *dest, const uint8_t *src, int strlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070036 if ((!dest) || (!src) || (!strlen) || (strlen > UDF_NAME_LEN - 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 memset(dest, 0, sizeof(struct ustr));
40 memcpy(dest->u_name, src, strlen);
41 dest->u_cmpID = 0x08;
42 dest->u_len = strlen;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return strlen;
45}
46
47/*
48 * udf_build_ustr
49 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070050int udf_build_ustr(struct ustr *dest, dstring *ptr, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 int usesize;
53
Marcin Slusarz6305a0a2008-02-04 22:27:39 +010054 if (!dest || !ptr || !size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return -1;
Marcin Slusarz6305a0a2008-02-04 22:27:39 +010056 BUG_ON(size < 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Marcin Slusarz6305a0a2008-02-04 22:27:39 +010058 usesize = min_t(size_t, ptr[size - 1], sizeof(dest->u_name));
59 usesize = min(usesize, size - 2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070060 dest->u_cmpID = ptr[0];
Marcin Slusarz6305a0a2008-02-04 22:27:39 +010061 dest->u_len = usesize;
62 memcpy(dest->u_name, ptr + 1, usesize);
63 memset(dest->u_name + usesize, 0, sizeof(dest->u_name) - usesize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return 0;
66}
67
68/*
69 * udf_build_ustr_exact
70 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070071static int udf_build_ustr_exact(struct ustr *dest, dstring *ptr, int exactsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070073 if ((!dest) || (!ptr) || (!exactsize))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return -1;
75
76 memset(dest, 0, sizeof(struct ustr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070077 dest->u_cmpID = ptr[0];
78 dest->u_len = exactsize - 1;
79 memcpy(dest->u_name, ptr + 1, exactsize - 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 0;
82}
83
84/*
85 * udf_ocu_to_utf8
86 *
87 * PURPOSE
88 * Convert OSTA Compressed Unicode to the UTF-8 equivalent.
89 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * PRE-CONDITIONS
91 * utf Pointer to UTF-8 output buffer.
92 * ocu Pointer to OSTA Compressed Unicode input buffer
93 * of size UDF_NAME_LEN bytes.
94 * both of type "struct ustr *"
95 *
96 * POST-CONDITIONS
97 * <return> Zero on success.
98 *
99 * HISTORY
100 * November 12, 1997 - Andrew E. Mileski
101 * Written, tested, and released.
102 */
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100103int udf_CS0toUTF8(struct ustr *utf_o, const struct ustr *ocu_i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100105 const uint8_t *ocu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 uint8_t cmp_id, ocu_len;
107 int i;
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ocu_len = ocu_i->u_len;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700110 if (ocu_len == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 memset(utf_o, 0, sizeof(struct ustr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0;
113 }
114
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100115 cmp_id = ocu_i->u_cmpID;
116 if (cmp_id != 8 && cmp_id != 16) {
117 memset(utf_o, 0, sizeof(struct ustr));
Joe Perches78ace702011-10-10 01:08:05 -0700118 pr_err("unknown compression code (%d) stri=%s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700119 cmp_id, ocu_i->u_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return 0;
121 }
122
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100123 ocu = ocu_i->u_name;
124 utf_o->u_len = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700125 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* Expand OSTA compressed Unicode to Unicode */
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100128 uint32_t c = ocu[i++];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (cmp_id == 16)
130 c = (c << 8) | ocu[i++];
131
132 /* Compress Unicode to UTF-8 */
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100133 if (c < 0x80U)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700134 utf_o->u_name[utf_o->u_len++] = (uint8_t)c;
marcin.slusarz@gmail.com79cfe0f2008-01-30 22:03:51 +0100135 else if (c < 0x800U) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800136 utf_o->u_name[utf_o->u_len++] =
137 (uint8_t)(0xc0 | (c >> 6));
138 utf_o->u_name[utf_o->u_len++] =
139 (uint8_t)(0x80 | (c & 0x3f));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700140 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800141 utf_o->u_name[utf_o->u_len++] =
142 (uint8_t)(0xe0 | (c >> 12));
143 utf_o->u_name[utf_o->u_len++] =
144 (uint8_t)(0x80 |
145 ((c >> 6) & 0x3f));
146 utf_o->u_name[utf_o->u_len++] =
147 (uint8_t)(0x80 | (c & 0x3f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700150 utf_o->u_cmpID = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 return utf_o->u_len;
153}
154
155/*
156 *
157 * udf_utf8_to_ocu
158 *
159 * PURPOSE
160 * Convert UTF-8 to the OSTA Compressed Unicode equivalent.
161 *
162 * DESCRIPTION
163 * This routine is only called by udf_lookup().
164 *
165 * PRE-CONDITIONS
166 * ocu Pointer to OSTA Compressed Unicode output
167 * buffer of size UDF_NAME_LEN bytes.
168 * utf Pointer to UTF-8 input buffer.
169 * utf_len Length of UTF-8 input buffer in bytes.
170 *
171 * POST-CONDITIONS
172 * <return> Zero on success.
173 *
174 * HISTORY
175 * November 12, 1997 - Andrew E. Mileski
176 * Written, tested, and released.
177 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700178static int udf_UTF8toCS0(dstring *ocu, struct ustr *utf, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 unsigned c, i, max_val, utf_char;
181 int utf_cnt, u_len;
182
183 memset(ocu, 0, sizeof(dstring) * length);
184 ocu[0] = 8;
185 max_val = 0xffU;
186
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700187try_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 u_len = 0U;
189 utf_char = 0U;
190 utf_cnt = 0U;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700191 for (i = 0U; i < utf->u_len; i++) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700192 c = (uint8_t)utf->u_name[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* Complete a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700195 if (utf_cnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 utf_char = (utf_char << 6) | (c & 0x3fU);
197 if (--utf_cnt)
198 continue;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700199 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Check for a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700201 if (c & 0x80U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Start a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700203 if ((c & 0xe0U) == 0xc0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 utf_char = c & 0x1fU;
205 utf_cnt = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700206 } else if ((c & 0xf0U) == 0xe0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 utf_char = c & 0x0fU;
208 utf_cnt = 2;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700209 } else if ((c & 0xf8U) == 0xf0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 utf_char = c & 0x07U;
211 utf_cnt = 3;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700212 } else if ((c & 0xfcU) == 0xf8U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 utf_char = c & 0x03U;
214 utf_cnt = 4;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700215 } else if ((c & 0xfeU) == 0xfcU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 utf_char = c & 0x01U;
217 utf_cnt = 5;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700218 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 goto error_out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 continue;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700222 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /* Single byte UTF-8 character (most common) */
224 utf_char = c;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 /* Choose no compression if necessary */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700229 if (utf_char > max_val) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700230 if (max_val == 0xffU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 max_val = 0xffffU;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700232 ocu[0] = (uint8_t)0x10U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 goto try_again;
234 }
235 goto error_out;
236 }
237
Marcin Slusarz4b111112008-02-08 04:20:36 -0800238 if (max_val == 0xffffU)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700239 ocu[++u_len] = (uint8_t)(utf_char >> 8);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700240 ocu[++u_len] = (uint8_t)(utf_char & 0xffU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700243 if (utf_cnt) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700244error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 ocu[++u_len] = '?';
Joe Perches78ace702011-10-10 01:08:05 -0700246 printk(KERN_DEBUG pr_fmt("bad UTF-8 character\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700249 ocu[length - 1] = (uint8_t)u_len + 1;
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return u_len + 1;
252}
253
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700254static int udf_CS0toNLS(struct nls_table *nls, struct ustr *utf_o,
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100255 const struct ustr *ocu_i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100257 const uint8_t *ocu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 uint8_t cmp_id, ocu_len;
Jan Kara59285c22009-02-04 19:46:11 +0100259 int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 ocu_len = ocu_i->u_len;
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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
266 }
267
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100268 cmp_id = ocu_i->u_cmpID;
269 if (cmp_id != 8 && cmp_id != 16) {
270 memset(utf_o, 0, sizeof(struct ustr));
Joe Perches78ace702011-10-10 01:08:05 -0700271 pr_err("unknown compression code (%d) stri=%s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700272 cmp_id, ocu_i->u_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return 0;
274 }
275
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100276 ocu = ocu_i->u_name;
277 utf_o->u_len = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700278 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Expand OSTA compressed Unicode to Unicode */
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100280 uint32_t c = ocu[i++];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (cmp_id == 16)
282 c = (c << 8) | ocu[i++];
283
Jan Kara59285c22009-02-04 19:46:11 +0100284 len = nls->uni2char(c, &utf_o->u_name[utf_o->u_len],
285 UDF_NAME_LEN - utf_o->u_len);
286 /* Valid character? */
287 if (len >= 0)
288 utf_o->u_len += len;
289 else
290 utf_o->u_name[utf_o->u_len++] = '?';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700292 utf_o->u_cmpID = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 return utf_o->u_len;
295}
296
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700297static int udf_NLStoCS0(struct nls_table *nls, dstring *ocu, struct ustr *uni,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700298 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Jan Kara59285c22009-02-04 19:46:11 +0100300 int len;
301 unsigned i, max_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 uint16_t uni_char;
303 int u_len;
304
305 memset(ocu, 0, sizeof(dstring) * length);
306 ocu[0] = 8;
307 max_val = 0xffU;
308
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700309try_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 u_len = 0U;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700311 for (i = 0U; i < uni->u_len; i++) {
312 len = nls->char2uni(&uni->u_name[i], uni->u_len - i, &uni_char);
Jan Kara59285c22009-02-04 19:46:11 +0100313 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 continue;
Jan Kara59285c22009-02-04 19:46:11 +0100315 /* Invalid character, deal with it */
316 if (len < 0) {
317 len = 1;
318 uni_char = '?';
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700321 if (uni_char > max_val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 max_val = 0xffffU;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700323 ocu[0] = (uint8_t)0x10U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 goto try_again;
325 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (max_val == 0xffffU)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700328 ocu[++u_len] = (uint8_t)(uni_char >> 8);
329 ocu[++u_len] = (uint8_t)(uni_char & 0xffU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 i += len - 1;
331 }
332
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700333 ocu[length - 1] = (uint8_t)u_len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return u_len + 1;
335}
336
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100337int udf_get_filename(struct super_block *sb, uint8_t *sname, int slen,
338 uint8_t *dname, int dlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100340 struct ustr *filename, *unifilename;
341 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100343 filename = kmalloc(sizeof(struct ustr), GFP_NOFS);
344 if (!filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100347 unifilename = kmalloc(sizeof(struct ustr), GFP_NOFS);
348 if (!unifilename)
349 goto out1;
350
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100351 if (udf_build_ustr_exact(unifilename, sname, slen))
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100352 goto out2;
353
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700354 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100355 if (!udf_CS0toUTF8(filename, unifilename)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800356 udf_debug("Failed in udf_get_filename: sname = %s\n",
357 sname);
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100358 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700360 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100361 if (!udf_CS0toNLS(UDF_SB(sb)->s_nls_map, filename,
362 unifilename)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800363 udf_debug("Failed in udf_get_filename: sname = %s\n",
364 sname);
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100365 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800367 } else
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100368 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100370 len = udf_translate_to_linux(dname, dlen,
371 filename->u_name, filename->u_len,
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100372 unifilename->u_name, unifilename->u_len);
373out2:
374 kfree(unifilename);
375out1:
376 kfree(filename);
377 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700380int udf_put_filename(struct super_block *sb, const uint8_t *sname,
381 uint8_t *dname, int flen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct ustr unifilename;
384 int namelen;
385
Marcin Slusarz4b111112008-02-08 04:20:36 -0800386 if (!udf_char_to_ustr(&unifilename, sname, flen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700389 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700390 namelen = udf_UTF8toCS0(dname, &unifilename, UDF_NAME_LEN);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800391 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700393 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800394 namelen = udf_NLStoCS0(UDF_SB(sb)->s_nls_map, dname,
395 &unifilename, UDF_NAME_LEN);
396 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800398 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
400
401 return namelen;
402}
403
404#define ILLEGAL_CHAR_MARK '_'
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700405#define EXT_MARK '.'
406#define CRC_MARK '#'
407#define EXT_SIZE 5
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100408/* Number of chars we need to store generated CRC to make filename unique */
409#define CRC_LEN 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100411static int udf_translate_to_linux(uint8_t *newName, int newLen,
412 uint8_t *udfName, int udfLen,
413 uint8_t *fidName, int fidNameLen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700415 int index, newIndex = 0, needsCRC = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int extIndex = 0, newExtIndex = 0, hasExt = 0;
417 unsigned short valueCRC;
418 uint8_t curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700420 if (udfName[0] == '.' &&
421 (udfLen == 1 || (udfLen == 2 && udfName[1] == '.'))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 needsCRC = 1;
423 newIndex = udfLen;
424 memcpy(newName, udfName, udfLen);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700425 } else {
426 for (index = 0; index < udfLen; index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 curr = udfName[index];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 if (curr == '/' || curr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 needsCRC = 1;
430 curr = ILLEGAL_CHAR_MARK;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800431 while (index + 1 < udfLen &&
432 (udfName[index + 1] == '/' ||
433 udfName[index + 1] == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 index++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800435 }
436 if (curr == EXT_MARK &&
437 (udfLen - index - 1) <= EXT_SIZE) {
438 if (udfLen == index + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 hasExt = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800440 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 hasExt = 1;
442 extIndex = index;
443 newExtIndex = newIndex;
444 }
445 }
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100446 if (newIndex < newLen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 newName[newIndex++] = curr;
448 else
449 needsCRC = 1;
450 }
451 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700452 if (needsCRC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 uint8_t ext[EXT_SIZE];
454 int localExtIndex = 0;
455
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700456 if (hasExt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 int maxFilenameLen;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800458 for (index = 0;
459 index < EXT_SIZE && extIndex + index + 1 < udfLen;
460 index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 curr = udfName[extIndex + index + 1];
462
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700463 if (curr == '/' || curr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 needsCRC = 1;
465 curr = ILLEGAL_CHAR_MARK;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800466 while (extIndex + index + 2 < udfLen &&
467 (index + 1 < EXT_SIZE &&
468 (udfName[extIndex + index + 2] == '/' ||
469 udfName[extIndex + index + 2] == 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 index++;
471 }
472 ext[localExtIndex++] = curr;
473 }
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100474 maxFilenameLen = newLen - CRC_LEN - localExtIndex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (newIndex > maxFilenameLen)
476 newIndex = maxFilenameLen;
477 else
478 newIndex = newExtIndex;
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100479 } else if (newIndex > newLen - CRC_LEN)
480 newIndex = newLen - CRC_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 newName[newIndex++] = CRC_MARK;
Bob Copelandf845fce2008-04-17 09:47:48 +0200482 valueCRC = crc_itu_t(0, fidName, fidNameLen);
Andy Shevchenkoc7ff4822014-07-09 15:35:30 +0300483 newName[newIndex++] = hex_asc_upper_hi(valueCRC >> 8);
484 newName[newIndex++] = hex_asc_upper_lo(valueCRC >> 8);
485 newName[newIndex++] = hex_asc_upper_hi(valueCRC);
486 newName[newIndex++] = hex_asc_upper_lo(valueCRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700488 if (hasExt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 newName[newIndex++] = EXT_MARK;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700490 for (index = 0; index < localExtIndex; index++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 newName[newIndex++] = ext[index];
492 }
493 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return newIndex;
496}