blob: e788a05aab83670de6be03dc48eb519e2d2ae5d9 [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 */
Fabian Frederick31f25662015-04-08 21:23:52 +020071static void udf_build_ustr_exact(struct ustr *dest, dstring *ptr, int exactsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 memset(dest, 0, sizeof(struct ustr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070074 dest->u_cmpID = ptr[0];
75 dest->u_len = exactsize - 1;
76 memcpy(dest->u_name, ptr + 1, exactsize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
Fabian Frederickd67e4a42015-04-08 21:23:53 +020080 * udf_CS0toUTF8
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 *
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
Fabian Fredericke9d4cf412015-04-08 21:23:54 +020092 * <return> >= 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
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));
Joe Perches78ace702011-10-10 01:08:05 -0700113 pr_err("unknown compression code (%d) stri=%s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700114 cmp_id, ocu_i->u_name);
Fabian Fredericke9d4cf412015-04-08 21:23:54 +0200115 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
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) {
Andrew Gabbasovad402b22015-12-24 10:25:32 -0600131 if (utf_o->u_len > (UDF_NAME_LEN - 4))
132 break;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800133 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));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700137 } else {
Andrew Gabbasovad402b22015-12-24 10:25:32 -0600138 if (utf_o->u_len > (UDF_NAME_LEN - 5))
139 break;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800140 utf_o->u_name[utf_o->u_len++] =
141 (uint8_t)(0xe0 | (c >> 12));
142 utf_o->u_name[utf_o->u_len++] =
143 (uint8_t)(0x80 |
144 ((c >> 6) & 0x3f));
145 utf_o->u_name[utf_o->u_len++] =
146 (uint8_t)(0x80 | (c & 0x3f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700149 utf_o->u_cmpID = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 return utf_o->u_len;
152}
153
154/*
155 *
Fabian Frederickd67e4a42015-04-08 21:23:53 +0200156 * udf_UTF8toCS0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
158 * PURPOSE
159 * Convert UTF-8 to the OSTA Compressed Unicode equivalent.
160 *
161 * DESCRIPTION
162 * This routine is only called by udf_lookup().
163 *
164 * PRE-CONDITIONS
165 * ocu Pointer to OSTA Compressed Unicode output
166 * buffer of size UDF_NAME_LEN bytes.
167 * utf Pointer to UTF-8 input buffer.
168 * utf_len Length of UTF-8 input buffer in bytes.
169 *
170 * POST-CONDITIONS
171 * <return> Zero on success.
172 *
173 * HISTORY
174 * November 12, 1997 - Andrew E. Mileski
175 * Written, tested, and released.
176 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700177static int udf_UTF8toCS0(dstring *ocu, struct ustr *utf, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 unsigned c, i, max_val, utf_char;
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600180 int utf_cnt, u_len, u_ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 memset(ocu, 0, sizeof(dstring) * length);
183 ocu[0] = 8;
184 max_val = 0xffU;
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600185 u_ch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
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++) {
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600192 /* Name didn't fit? */
193 if (u_len + 1 + u_ch >= length)
194 return 0;
195
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700196 c = (uint8_t)utf->u_name[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 /* Complete a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700199 if (utf_cnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 utf_char = (utf_char << 6) | (c & 0x3fU);
201 if (--utf_cnt)
202 continue;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700203 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* Check for a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700205 if (c & 0x80U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /* Start a multi-byte UTF-8 character */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700207 if ((c & 0xe0U) == 0xc0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 utf_char = c & 0x1fU;
209 utf_cnt = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700210 } else if ((c & 0xf0U) == 0xe0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 utf_char = c & 0x0fU;
212 utf_cnt = 2;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700213 } else if ((c & 0xf8U) == 0xf0U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 utf_char = c & 0x07U;
215 utf_cnt = 3;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700216 } else if ((c & 0xfcU) == 0xf8U) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 utf_char = c & 0x03U;
218 utf_cnt = 4;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700219 } else if ((c & 0xfeU) == 0xfcU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 utf_char = c & 0x01U;
221 utf_cnt = 5;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700222 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 goto error_out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 continue;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700226 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* Single byte UTF-8 character (most common) */
228 utf_char = c;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231
232 /* Choose no compression if necessary */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700233 if (utf_char > max_val) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700234 if (max_val == 0xffU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 max_val = 0xffffU;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700236 ocu[0] = (uint8_t)0x10U;
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600237 u_ch = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto try_again;
239 }
240 goto error_out;
241 }
242
Marcin Slusarz4b111112008-02-08 04:20:36 -0800243 if (max_val == 0xffffU)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700244 ocu[++u_len] = (uint8_t)(utf_char >> 8);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700245 ocu[++u_len] = (uint8_t)(utf_char & 0xffU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700248 if (utf_cnt) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700249error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 ocu[++u_len] = '?';
Joe Perches78ace702011-10-10 01:08:05 -0700251 printk(KERN_DEBUG pr_fmt("bad UTF-8 character\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700254 ocu[length - 1] = (uint8_t)u_len + 1;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return u_len + 1;
257}
258
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700259static int udf_CS0toNLS(struct nls_table *nls, struct ustr *utf_o,
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100260 const struct ustr *ocu_i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100262 const uint8_t *ocu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 uint8_t cmp_id, ocu_len;
Jan Kara59285c22009-02-04 19:46:11 +0100264 int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 ocu_len = ocu_i->u_len;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700268 if (ocu_len == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 memset(utf_o, 0, sizeof(struct ustr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return 0;
271 }
272
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100273 cmp_id = ocu_i->u_cmpID;
274 if (cmp_id != 8 && cmp_id != 16) {
275 memset(utf_o, 0, sizeof(struct ustr));
Joe Perches78ace702011-10-10 01:08:05 -0700276 pr_err("unknown compression code (%d) stri=%s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700277 cmp_id, ocu_i->u_name);
Fabian Frederick78fc2e62015-04-08 21:23:55 +0200278 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100281 ocu = ocu_i->u_name;
282 utf_o->u_len = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700283 for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN - 3));) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* Expand OSTA compressed Unicode to Unicode */
marcin.slusarz@gmail.com34f953d2008-02-27 22:38:36 +0100285 uint32_t c = ocu[i++];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (cmp_id == 16)
287 c = (c << 8) | ocu[i++];
288
Jan Kara59285c22009-02-04 19:46:11 +0100289 len = nls->uni2char(c, &utf_o->u_name[utf_o->u_len],
Andrew Gabbasovad402b22015-12-24 10:25:32 -0600290 UDF_NAME_LEN - 2 - utf_o->u_len);
Jan Kara59285c22009-02-04 19:46:11 +0100291 /* Valid character? */
292 if (len >= 0)
293 utf_o->u_len += len;
294 else
295 utf_o->u_name[utf_o->u_len++] = '?';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700297 utf_o->u_cmpID = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 return utf_o->u_len;
300}
301
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700302static int udf_NLStoCS0(struct nls_table *nls, dstring *ocu, struct ustr *uni,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700303 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Jan Kara59285c22009-02-04 19:46:11 +0100305 int len;
306 unsigned i, max_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 uint16_t uni_char;
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600308 int u_len, u_ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 memset(ocu, 0, sizeof(dstring) * length);
311 ocu[0] = 8;
312 max_val = 0xffU;
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600313 u_ch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700315try_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 u_len = 0U;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700317 for (i = 0U; i < uni->u_len; i++) {
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600318 /* Name didn't fit? */
319 if (u_len + 1 + u_ch >= length)
320 return 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700321 len = nls->char2uni(&uni->u_name[i], uni->u_len - i, &uni_char);
Jan Kara59285c22009-02-04 19:46:11 +0100322 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 continue;
Jan Kara59285c22009-02-04 19:46:11 +0100324 /* Invalid character, deal with it */
325 if (len < 0) {
326 len = 1;
327 uni_char = '?';
328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700330 if (uni_char > max_val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 max_val = 0xffffU;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700332 ocu[0] = (uint8_t)0x10U;
Andrew Gabbasovbb00c892015-12-24 10:25:33 -0600333 u_ch = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto try_again;
335 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (max_val == 0xffffU)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700338 ocu[++u_len] = (uint8_t)(uni_char >> 8);
339 ocu[++u_len] = (uint8_t)(uni_char & 0xffU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 i += len - 1;
341 }
342
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700343 ocu[length - 1] = (uint8_t)u_len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return u_len + 1;
345}
346
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100347int udf_get_filename(struct super_block *sb, uint8_t *sname, int slen,
348 uint8_t *dname, int dlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100350 struct ustr *filename, *unifilename;
Fabian Frederick6ce63832015-04-08 21:23:57 +0200351 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Fabian Frederick31f25662015-04-08 21:23:52 +0200353 if (!slen)
354 return -EIO;
355
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100356 filename = kmalloc(sizeof(struct ustr), GFP_NOFS);
357 if (!filename)
Fabian Frederick5ceb8b52015-04-08 21:23:51 +0200358 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100360 unifilename = kmalloc(sizeof(struct ustr), GFP_NOFS);
Fabian Frederick5ceb8b52015-04-08 21:23:51 +0200361 if (!unifilename) {
362 ret = -ENOMEM;
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100363 goto out1;
Fabian Frederick5ceb8b52015-04-08 21:23:51 +0200364 }
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100365
Fabian Frederick31f25662015-04-08 21:23:52 +0200366 udf_build_ustr_exact(unifilename, sname, slen);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700367 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
Fabian Fredericke9d4cf412015-04-08 21:23:54 +0200368 ret = udf_CS0toUTF8(filename, unifilename);
369 if (ret < 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800370 udf_debug("Failed in udf_get_filename: sname = %s\n",
371 sname);
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100372 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700374 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
Fabian Frederick78fc2e62015-04-08 21:23:55 +0200375 ret = udf_CS0toNLS(UDF_SB(sb)->s_nls_map, filename,
376 unifilename);
377 if (ret < 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800378 udf_debug("Failed in udf_get_filename: sname = %s\n",
379 sname);
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100380 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800382 } else
Fabian Frederick5dce54b2015-04-08 21:23:56 +0200383 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Fabian Frederick5ceb8b52015-04-08 21:23:51 +0200385 ret = udf_translate_to_linux(dname, dlen,
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100386 filename->u_name, filename->u_len,
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100387 unifilename->u_name, unifilename->u_len);
Fabian Frederick6ce63832015-04-08 21:23:57 +0200388 /* Zero length filename isn't valid... */
389 if (ret == 0)
390 ret = -EINVAL;
Marcin Slusarz530f1a52008-11-16 19:02:45 +0100391out2:
392 kfree(unifilename);
393out1:
394 kfree(filename);
Fabian Frederick5ceb8b52015-04-08 21:23:51 +0200395 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700398int udf_put_filename(struct super_block *sb, const uint8_t *sname,
399 uint8_t *dname, int flen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct ustr unifilename;
402 int namelen;
403
Marcin Slusarz4b111112008-02-08 04:20:36 -0800404 if (!udf_char_to_ustr(&unifilename, sname, flen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700407 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700408 namelen = udf_UTF8toCS0(dname, &unifilename, UDF_NAME_LEN);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800409 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700411 } else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800412 namelen = udf_NLStoCS0(UDF_SB(sb)->s_nls_map, dname,
413 &unifilename, UDF_NAME_LEN);
414 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800416 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return 0;
418
419 return namelen;
420}
421
422#define ILLEGAL_CHAR_MARK '_'
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700423#define EXT_MARK '.'
424#define CRC_MARK '#'
425#define EXT_SIZE 5
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100426/* Number of chars we need to store generated CRC to make filename unique */
427#define CRC_LEN 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100429static int udf_translate_to_linux(uint8_t *newName, int newLen,
430 uint8_t *udfName, int udfLen,
431 uint8_t *fidName, int fidNameLen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700433 int index, newIndex = 0, needsCRC = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int extIndex = 0, newExtIndex = 0, hasExt = 0;
435 unsigned short valueCRC;
436 uint8_t curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700438 if (udfName[0] == '.' &&
439 (udfLen == 1 || (udfLen == 2 && udfName[1] == '.'))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 needsCRC = 1;
441 newIndex = udfLen;
442 memcpy(newName, udfName, udfLen);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700443 } else {
444 for (index = 0; index < udfLen; index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 curr = udfName[index];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700446 if (curr == '/' || curr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 needsCRC = 1;
448 curr = ILLEGAL_CHAR_MARK;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800449 while (index + 1 < udfLen &&
450 (udfName[index + 1] == '/' ||
451 udfName[index + 1] == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 index++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800453 }
454 if (curr == EXT_MARK &&
455 (udfLen - index - 1) <= EXT_SIZE) {
456 if (udfLen == index + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 hasExt = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800458 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 hasExt = 1;
460 extIndex = index;
461 newExtIndex = newIndex;
462 }
463 }
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100464 if (newIndex < newLen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 newName[newIndex++] = curr;
466 else
467 needsCRC = 1;
468 }
469 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700470 if (needsCRC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 uint8_t ext[EXT_SIZE];
472 int localExtIndex = 0;
473
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700474 if (hasExt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int maxFilenameLen;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800476 for (index = 0;
477 index < EXT_SIZE && extIndex + index + 1 < udfLen;
478 index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 curr = udfName[extIndex + index + 1];
480
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700481 if (curr == '/' || curr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 needsCRC = 1;
483 curr = ILLEGAL_CHAR_MARK;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800484 while (extIndex + index + 2 < udfLen &&
485 (index + 1 < EXT_SIZE &&
486 (udfName[extIndex + index + 2] == '/' ||
487 udfName[extIndex + index + 2] == 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 index++;
489 }
490 ext[localExtIndex++] = curr;
491 }
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100492 maxFilenameLen = newLen - CRC_LEN - localExtIndex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (newIndex > maxFilenameLen)
494 newIndex = maxFilenameLen;
495 else
496 newIndex = newExtIndex;
Jan Kara0e5cc9a2014-12-18 22:37:50 +0100497 } else if (newIndex > newLen - CRC_LEN)
498 newIndex = newLen - CRC_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 newName[newIndex++] = CRC_MARK;
Bob Copelandf845fce2008-04-17 09:47:48 +0200500 valueCRC = crc_itu_t(0, fidName, fidNameLen);
Andy Shevchenkoc7ff4822014-07-09 15:35:30 +0300501 newName[newIndex++] = hex_asc_upper_hi(valueCRC >> 8);
502 newName[newIndex++] = hex_asc_upper_lo(valueCRC >> 8);
503 newName[newIndex++] = hex_asc_upper_hi(valueCRC);
504 newName[newIndex++] = hex_asc_upper_lo(valueCRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700506 if (hasExt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 newName[newIndex++] = EXT_MARK;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700508 for (index = 0; index < localExtIndex; index++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 newName[newIndex++] = ext[index];
510 }
511 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return newIndex;
514}