Line data Source code
1 : /*
2 : * linux/fs/isofs/joliet.c
3 : *
4 : * (C) 1996 Gordon Chaffee
5 : *
6 : * Joliet: Microsoft's Unicode extensions to iso9660
7 : */
8 :
9 : #include <linux/types.h>
10 : #include <linux/nls.h>
11 : #include "isofs.h"
12 :
13 : /*
14 : * Convert Unicode 16 to UTF-8 or ASCII.
15 : */
16 : static int
17 : uni16_to_x8(unsigned char *ascii, __be16 *uni, int len, struct nls_table *nls)
18 : {
19 11 : __be16 *ip, ch;
20 11 : unsigned char *op;
21 11 :
22 22 : ip = uni;
23 22 : op = ascii;
24 11 :
25 77 : while ((ch = get_unaligned(ip)) && len) {
26 11 : int llen;
27 44 : llen = nls->uni2char(be16_to_cpu(ch), op, NLS_MAX_CHARSET_SIZE);
28 22 : if (llen > 0)
29 11 : op += llen;
30 : else
31 33 : *op++ = '?';
32 11 : ip++;
33 :
34 11 : len--;
35 11 : }
36 11 : *op = 0;
37 11 : return (op - ascii);
38 : }
39 :
40 : int
41 : get_joliet_filename(struct iso_directory_record * de, unsigned char *outname, struct inode * inode)
42 : {
43 : unsigned char utf8;
44 11 : struct nls_table *nls;
45 22 : unsigned char len = 0;
46 11 :
47 55 : utf8 = ISOFS_SB(inode->i_sb)->s_utf8;
48 44 : nls = ISOFS_SB(inode->i_sb)->s_nls_iocharset;
49 11 :
50 33 : if (utf8) {
51 22 : len = utf16s_to_utf8s((const wchar_t *) de->name,
52 : de->name_len[0] >> 1, UTF16_BIG_ENDIAN,
53 : outname, PAGE_SIZE);
54 : } else {
55 33 : len = uni16_to_x8(outname, (__be16 *) de->name,
56 : de->name_len[0] >> 1, nls);
57 : }
58 132 : if ((len > 2) && (outname[len-2] == ';') && (outname[len-1] == '1'))
59 22 : len -= 2;
60 :
61 : /*
62 : * Windows doesn't like periods at the end of a name,
63 : * so neither do we
64 : */
65 66 : while (len >= 2 && (outname[len-1] == '.'))
66 22 : len--;
67 22 :
68 11 : return len;
69 : }
|