unicode.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  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.  *
  14.  * CONTACTS
  15.  * E-mail regarding any portion of the Linux UDF file system should be
  16.  * directed to the development team's mailing list (run by majordomo):
  17.  * linux_udf@hpesjro.fc.hp.com
  18.  *
  19.  * COPYRIGHT
  20.  * This file is distributed under the terms of the GNU General Public
  21.  * License (GPL). Copies of the GPL can be obtained from:
  22.  * ftp://prep.ai.mit.edu/pub/gnu/GPL
  23.  * Each contributing author retains all rights to their own work.
  24.  */
  25. #ifdef __KERNEL__
  26. #include <linux/kernel.h>
  27. #include <linux/string.h> /* for memset */
  28. #include <linux/nls.h>
  29. #include <linux/udf_fs.h>
  30. #include "udf_sb.h"
  31. #else
  32. #include <string.h>
  33. #endif
  34. #include "udfdecl.h"
  35. int udf_ustr_to_dchars(Uint8 *dest, const struct ustr *src, int strlen)
  36. {
  37. if ( (!dest) || (!src) || (!strlen) || (src->u_len > strlen) )
  38. return 0;
  39. memcpy(dest+1, src->u_name, src->u_len);
  40. dest[0] = src->u_cmpID;
  41. return src->u_len + 1;
  42. }
  43. int udf_ustr_to_char(Uint8 *dest, const struct ustr *src, int strlen)
  44. {
  45. if ( (!dest) || (!src) || (!strlen) || (src->u_len >= strlen) )
  46. return 0;
  47. memcpy(dest, src->u_name, src->u_len);
  48. return src->u_len;
  49. }
  50. int udf_ustr_to_dstring(dstring *dest, const struct ustr *src, int dlength)
  51. {
  52. if ( udf_ustr_to_dchars(dest, src, dlength-1) )
  53. {
  54. dest[dlength-1] = src->u_len + 1;
  55. return dlength;
  56. }
  57. else
  58. return 0;
  59. }
  60. int udf_dchars_to_ustr(struct ustr *dest, const Uint8 *src, int strlen)
  61. {
  62. if ( (!dest) || (!src) || (!strlen) || (strlen > UDF_NAME_LEN) )
  63. return 0;
  64. memset(dest, 0, sizeof(struct ustr));
  65. memcpy(dest->u_name, src+1, strlen-1);
  66. dest->u_cmpID = src[0];
  67. dest->u_len = strlen-1;
  68. return strlen-1;
  69. }
  70. int udf_char_to_ustr(struct ustr *dest, const Uint8 *src, int strlen)
  71. {
  72. if ( (!dest) || (!src) || (!strlen) || (strlen >= UDF_NAME_LEN) )
  73. return 0;
  74. memset(dest, 0, sizeof(struct ustr));
  75. memcpy(dest->u_name, src, strlen);
  76. dest->u_cmpID = 0x08;
  77. dest->u_len = strlen;
  78. return strlen;
  79. }
  80. int udf_dstring_to_ustr(struct ustr *dest, const dstring *src, int dlength)
  81. {
  82. if ( dlength && udf_dchars_to_ustr(dest, src, src[dlength-1]) )
  83. return dlength;
  84. else
  85. return 0;
  86. }
  87. /*
  88.  * udf_build_ustr
  89.  */
  90. int udf_build_ustr(struct ustr *dest, dstring *ptr, int size)
  91. {
  92. int usesize;
  93. if ( (!dest) || (!ptr) || (!size) )
  94. return -1;
  95. memset(dest, 0, sizeof(struct ustr));
  96. usesize= (size > UDF_NAME_LEN) ? UDF_NAME_LEN : size;
  97. dest->u_cmpID=ptr[0];
  98. dest->u_len=ptr[size-1];
  99. memcpy(dest->u_name, ptr+1, usesize-1);
  100. return 0;
  101. }
  102. /*
  103.  * udf_build_ustr_exact
  104.  */
  105. int udf_build_ustr_exact(struct ustr *dest, dstring *ptr, int exactsize)
  106. {
  107. if ( (!dest) || (!ptr) || (!exactsize) )
  108. return -1;
  109. memset(dest, 0, sizeof(struct ustr));
  110. dest->u_cmpID=ptr[0];
  111. dest->u_len=exactsize-1;
  112. memcpy(dest->u_name, ptr+1, exactsize-1);
  113. return 0;
  114. }
  115. /*
  116.  * udf_ocu_to_utf8
  117.  *
  118.  * PURPOSE
  119.  * Convert OSTA Compressed Unicode to the UTF-8 equivalent.
  120.  *
  121.  * DESCRIPTION
  122.  * This routine is only called by udf_filldir().
  123.  *
  124.  * PRE-CONDITIONS
  125.  * utf Pointer to UTF-8 output buffer.
  126.  * ocu Pointer to OSTA Compressed Unicode input buffer
  127.  * of size UDF_NAME_LEN bytes.
  128.  *  both of type "struct ustr *"
  129.  *
  130.  * POST-CONDITIONS
  131.  * <return> Zero on success.
  132.  *
  133.  * HISTORY
  134.  * November 12, 1997 - Andrew E. Mileski
  135.  * Written, tested, and released.
  136.  */
  137. int udf_CS0toUTF8(struct ustr *utf_o, struct ustr *ocu_i)
  138. {
  139. Uint8 *ocu;
  140. Uint32 c;
  141. Uint8 cmp_id, ocu_len;
  142. int i;
  143. ocu = ocu_i->u_name;
  144. ocu_len = ocu_i->u_len;
  145. cmp_id = ocu_i->u_cmpID;
  146. utf_o->u_len = 0;
  147. if (ocu_len == 0)
  148. {
  149. memset(utf_o, 0, sizeof(struct ustr));
  150. utf_o->u_cmpID = 0;
  151. utf_o->u_len = 0;
  152. return 0;
  153. }
  154. if ((cmp_id != 8) && (cmp_id != 16))
  155. {
  156. #ifdef __KERNEL__
  157. printk(KERN_ERR "udf: unknown compression code (%d) stri=%sn", cmp_id, ocu_i->u_name);
  158. #endif
  159. return 0;
  160. }
  161. for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN-3)) ;)
  162. {
  163. /* Expand OSTA compressed Unicode to Unicode */
  164. c = ocu[i++];
  165. if (cmp_id == 16)
  166. c = (c << 8) | ocu[i++];
  167. /* Compress Unicode to UTF-8 */
  168. if (c < 0x80U)
  169. utf_o->u_name[utf_o->u_len++] = (Uint8)c;
  170. else if (c < 0x800U)
  171. {
  172. utf_o->u_name[utf_o->u_len++] = (Uint8)(0xc0 | (c >> 6));
  173. utf_o->u_name[utf_o->u_len++] = (Uint8)(0x80 | (c & 0x3f));
  174. }
  175. else
  176. {
  177. utf_o->u_name[utf_o->u_len++] = (Uint8)(0xe0 | (c >> 12));
  178. utf_o->u_name[utf_o->u_len++] = (Uint8)(0x80 | ((c >> 6) & 0x3f));
  179. utf_o->u_name[utf_o->u_len++] = (Uint8)(0x80 | (c & 0x3f));
  180. }
  181. }
  182. utf_o->u_cmpID=8;
  183. utf_o->u_hash=0L;
  184. utf_o->padding=0;
  185. return utf_o->u_len;
  186. }
  187. /*
  188.  *
  189.  * udf_utf8_to_ocu
  190.  *
  191.  * PURPOSE
  192.  * Convert UTF-8 to the OSTA Compressed Unicode equivalent.
  193.  *
  194.  * DESCRIPTION
  195.  * This routine is only called by udf_lookup().
  196.  *
  197.  * PRE-CONDITIONS
  198.  * ocu Pointer to OSTA Compressed Unicode output
  199.  * buffer of size UDF_NAME_LEN bytes.
  200.  * utf Pointer to UTF-8 input buffer.
  201.  * utf_len Length of UTF-8 input buffer in bytes.
  202.  *
  203.  * POST-CONDITIONS
  204.  * <return> Zero on success.
  205.  *
  206.  * HISTORY
  207.  * November 12, 1997 - Andrew E. Mileski
  208.  * Written, tested, and released.
  209.  */
  210. int udf_UTF8toCS0(dstring *ocu, struct ustr *utf, int length)
  211. {
  212. unsigned c, i, max_val, utf_char;
  213. int utf_cnt;
  214. int u_len = 0;
  215. memset(ocu, 0, sizeof(dstring) * length);
  216. ocu[0] = 8;
  217. max_val = 0xffU;
  218. try_again:
  219. utf_char = 0U;
  220. utf_cnt = 0U;
  221. for (i = 0U; i < utf->u_len; i++)
  222. {
  223. c = (Uint8)utf->u_name[i];
  224. /* Complete a multi-byte UTF-8 character */
  225. if (utf_cnt)
  226. {
  227. utf_char = (utf_char << 6) | (c & 0x3fU);
  228. if (--utf_cnt)
  229. continue;
  230. }
  231. else
  232. {
  233. /* Check for a multi-byte UTF-8 character */
  234. if (c & 0x80U)
  235. {
  236. /* Start a multi-byte UTF-8 character */
  237. if ((c & 0xe0U) == 0xc0U)
  238. {
  239. utf_char = c & 0x1fU;
  240. utf_cnt = 1;
  241. }
  242. else if ((c & 0xf0U) == 0xe0U)
  243. {
  244. utf_char = c & 0x0fU;
  245. utf_cnt = 2;
  246. }
  247. else if ((c & 0xf8U) == 0xf0U)
  248. {
  249. utf_char = c & 0x07U;
  250. utf_cnt = 3;
  251. }
  252. else if ((c & 0xfcU) == 0xf8U)
  253. {
  254. utf_char = c & 0x03U;
  255. utf_cnt = 4;
  256. }
  257. else if ((c & 0xfeU) == 0xfcU)
  258. {
  259. utf_char = c & 0x01U;
  260. utf_cnt = 5;
  261. }
  262. else
  263. goto error_out;
  264. continue;
  265. } else
  266. /* Single byte UTF-8 character (most common) */
  267. utf_char = c;
  268. }
  269. /* Choose no compression if necessary */
  270. if (utf_char > max_val)
  271. {
  272. if ( 0xffU == max_val )
  273. {
  274. max_val = 0xffffU;
  275. ocu[0] = (Uint8)0x10U;
  276. goto try_again;
  277. }
  278. goto error_out;
  279. }
  280. if (max_val == 0xffffU)
  281. {
  282. ocu[++u_len] = (Uint8)(utf_char >> 8);
  283. }
  284. ocu[++u_len] = (Uint8)(utf_char & 0xffU);
  285. }
  286. if (utf_cnt)
  287. {
  288. error_out:
  289. #ifdef __KERNEL__
  290. printk(KERN_ERR "udf: bad UTF-8 charactern");
  291. #endif
  292. return 0;
  293. }
  294. ocu[length - 1] = (Uint8)u_len + 1;
  295. return u_len + 1;
  296. }
  297. #ifdef __KERNEL__
  298. int udf_CS0toNLS(struct nls_table *nls, struct ustr *utf_o, struct ustr *ocu_i)
  299. {
  300. Uint8 *ocu;
  301. Uint32 c;
  302. Uint8 cmp_id, ocu_len;
  303. int i;
  304. ocu = ocu_i->u_name;
  305. ocu_len = ocu_i->u_len;
  306. cmp_id = ocu_i->u_cmpID;
  307. utf_o->u_len = 0;
  308. if (ocu_len == 0)
  309. {
  310. memset(utf_o, 0, sizeof(struct ustr));
  311. utf_o->u_cmpID = 0;
  312. utf_o->u_len = 0;
  313. return 0;
  314. }
  315. if ((cmp_id != 8) && (cmp_id != 16))
  316. {
  317. printk(KERN_ERR "udf: unknown compression code (%d) stri=%sn", cmp_id, ocu_i->u_name);
  318. return 0;
  319. }
  320. for (i = 0; (i < ocu_len) && (utf_o->u_len <= (UDF_NAME_LEN-3)) ;)
  321. {
  322. /* Expand OSTA compressed Unicode to Unicode */
  323. c = ocu[i++];
  324. if (cmp_id == 16)
  325. c = (c << 8) | ocu[i++];
  326. utf_o->u_len += nls->uni2char(c, &utf_o->u_name[utf_o->u_len], 
  327. UDF_NAME_LEN - utf_o->u_len);
  328. }
  329. utf_o->u_cmpID=8;
  330. utf_o->u_hash=0L;
  331. utf_o->padding=0;
  332. return utf_o->u_len;
  333. }
  334. int udf_NLStoCS0(struct nls_table *nls, dstring *ocu, struct ustr *uni, int length)
  335. {
  336. unsigned len, i, max_val;
  337. Uint16 uni_char;
  338. int uni_cnt;
  339. int u_len = 0;
  340. memset(ocu, 0, sizeof(dstring) * length);
  341. ocu[0] = 8;
  342. max_val = 0xffU;
  343. try_again:
  344. uni_char = 0U;
  345. uni_cnt = 0U;
  346. for (i = 0U; i < uni->u_len; i++)
  347. {
  348. len = nls->char2uni(&uni->u_name[i], uni->u_len-i, &uni_char);
  349. if (len == 2 && max_val == 0xff)
  350. {
  351. max_val = 0xffffU;
  352. ocu[0] = (Uint8)0x10U;
  353. goto try_again;
  354. }
  355. if (max_val == 0xffffU)
  356. {
  357. ocu[++u_len] = (Uint8)(uni_char >> 8);
  358. i++;
  359. }
  360. ocu[++u_len] = (Uint8)(uni_char & 0xffU);
  361. }
  362. ocu[length - 1] = (Uint8)u_len + 1;
  363. return u_len + 1;
  364. }
  365. int udf_get_filename(struct super_block *sb, Uint8 *sname, Uint8 *dname, int flen)
  366. {
  367. struct ustr filename, unifilename;
  368. int len;
  369. if (udf_build_ustr_exact(&unifilename, sname, flen))
  370. {
  371. return 0;
  372. }
  373. if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
  374. {
  375. if (!udf_CS0toUTF8(&filename, &unifilename) )
  376. {
  377. udf_debug("Failed in udf_get_filename: sname = %sn", sname);
  378. return 0;
  379. }
  380. }
  381. else if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
  382. {
  383. if (!udf_CS0toNLS(UDF_SB(sb)->s_nls_map, &filename, &unifilename) )
  384. {
  385. udf_debug("Failed in udf_get_filename: sname = %sn", sname);
  386. return 0;
  387. }
  388. }
  389. else
  390. return 0;
  391. if ((len = udf_translate_to_linux(dname, filename.u_name, filename.u_len,
  392. unifilename.u_name, unifilename.u_len)))
  393. {
  394. return len;
  395. }
  396. return 0;
  397. }
  398. #endif
  399. #define ILLEGAL_CHAR_MARK '_'
  400. #define EXT_MARK '.'
  401. #define CRC_MARK '#'
  402. #define EXT_SIZE 5
  403. int udf_translate_to_linux(Uint8 *newName, Uint8 *udfName, int udfLen, Uint8 *fidName, int fidNameLen)
  404. {
  405. int index, newIndex = 0, needsCRC = 0;
  406. int extIndex = 0, newExtIndex = 0, hasExt = 0;
  407. unsigned short valueCRC;
  408. Uint8 curr;
  409. const Uint8 hexChar[] = "0123456789ABCDEF";
  410. if (udfName[0] == '.' && (udfLen == 1 ||
  411. (udfLen == 2 && udfName[1] == '.')))
  412. {
  413. needsCRC = 1;
  414. newIndex = udfLen;
  415. memcpy(newName, udfName, udfLen);
  416. }
  417. else
  418. {
  419. for (index = 0; index < udfLen; index++)
  420. {
  421. curr = udfName[index];
  422. if (curr == '/' || curr == 0)
  423. {
  424. needsCRC = 1;
  425. curr = ILLEGAL_CHAR_MARK;
  426. while (index+1 < udfLen && (udfName[index+1] == '/' ||
  427. udfName[index+1] == 0))
  428. index++;
  429. }
  430. if (curr == EXT_MARK && (udfLen - index - 1) <= EXT_SIZE)
  431. {
  432. if (udfLen == index + 1)
  433. hasExt = 0;
  434. else
  435. {
  436. hasExt = 1;
  437. extIndex = index;
  438. newExtIndex = newIndex;
  439. }
  440. }
  441. if (newIndex < 256)
  442. newName[newIndex++] = curr;
  443. else
  444. needsCRC = 1;
  445. }
  446. }
  447. if (needsCRC)
  448. {
  449. Uint8 ext[EXT_SIZE];
  450. int localExtIndex = 0;
  451. if (hasExt)
  452. {
  453. int maxFilenameLen;
  454. for(index = 0; index<EXT_SIZE && extIndex + index +1 < udfLen;
  455. index++ )
  456. {
  457. curr = udfName[extIndex + index + 1];
  458. if (curr == '/' || curr == 0)
  459. {
  460. needsCRC = 1;
  461. curr = ILLEGAL_CHAR_MARK;
  462. while(extIndex + index + 2 < udfLen && (index + 1 < EXT_SIZE
  463. && (udfName[extIndex + index + 2] == '/' ||
  464. udfName[extIndex + index + 2] == 0)))
  465. index++;
  466. }
  467. ext[localExtIndex++] = curr;
  468. }
  469. maxFilenameLen = 250 - localExtIndex;
  470. if (newIndex > maxFilenameLen)
  471. newIndex = maxFilenameLen;
  472. else
  473. newIndex = newExtIndex;
  474. }
  475. else if (newIndex > 250)
  476. newIndex = 250;
  477. newName[newIndex++] = CRC_MARK;
  478. valueCRC = udf_crc(fidName, fidNameLen, 0);
  479. newName[newIndex++] = hexChar[(valueCRC & 0xf000) >> 12];
  480. newName[newIndex++] = hexChar[(valueCRC & 0x0f00) >> 8];
  481. newName[newIndex++] = hexChar[(valueCRC & 0x00f0) >> 4];
  482. newName[newIndex++] = hexChar[(valueCRC & 0x000f)];
  483. if (hasExt)
  484. {
  485. newName[newIndex++] = EXT_MARK;
  486. for (index = 0;index < localExtIndex ;index++ )
  487. newName[newIndex++] = ext[index];
  488. }
  489. }
  490. return newIndex;
  491. }