- Linus: drop support for old-style Makefiles entirely. Big.
[davej-history.git] / fs / isofs / joliet.c
blob5b93f458154b6a8d25a1ae14de13e85a8b62d125
1 /*
2 * linux/fs/isofs/joliet.c
4 * (C) 1996 Gordon Chaffee
6 * Joliet: Microsoft's Unicode extensions to iso9660
7 */
9 #include <linux/string.h>
10 #include <linux/nls.h>
11 #include <linux/malloc.h>
12 #include <linux/iso_fs.h>
15 * Convert Unicode 16 to UTF8 or ASCII.
17 static int
18 uni16_to_x8(unsigned char *ascii, u16 *uni, int len, struct nls_table *nls)
20 wchar_t *ip;
21 unsigned char *op;
23 ip = uni;
24 op = ascii;
26 while (*ip && len) {
27 int llen;
28 wchar_t ch = be16_to_cpu(*ip);
29 if ((llen = nls->uni2char(ch, op, NLS_MAX_CHARSET_SIZE)) > 0)
30 op += llen;
31 else
32 *op++ = '?';
33 ip++;
35 len--;
37 *op = 0;
38 return (op - ascii);
41 /* Convert big endian wide character string to utf8 */
42 static int
43 wcsntombs_be(__u8 *s, const __u8 *pwcs, int inlen, int maxlen)
45 const __u8 *ip;
46 __u8 *op;
47 int size;
48 __u16 c;
50 op = s;
51 ip = pwcs;
52 while ((*ip || ip[1]) && (maxlen > 0) && (inlen > 0)) {
53 c = (*ip << 8) | ip[1];
54 if (c > 0x7f) {
55 size = utf8_wctomb(op, c, maxlen);
56 if (size == -1) {
57 /* Ignore character and move on */
58 maxlen--;
59 } else {
60 op += size;
61 maxlen -= size;
63 } else {
64 *op++ = (__u8) c;
66 ip += 2;
67 inlen--;
69 return (op - s);
72 int
73 get_joliet_filename(struct iso_directory_record * de, unsigned char *outname, struct inode * inode)
75 unsigned char utf8;
76 struct nls_table *nls;
77 unsigned char len = 0;
79 utf8 = inode->i_sb->u.isofs_sb.s_utf8;
80 nls = inode->i_sb->u.isofs_sb.s_nls_iocharset;
82 if (utf8) {
83 len = wcsntombs_be(outname, de->name,
84 de->name_len[0] >> 1, PAGE_SIZE);
85 } else {
86 len = uni16_to_x8(outname, (u16 *) de->name,
87 de->name_len[0] >> 1, nls);
89 if ((len > 2) && (outname[len-2] == ';') && (outname[len-1] == '1')) {
90 len -= 2;
94 * Windows doesn't like periods at the end of a name,
95 * so neither do we
97 while (len >= 2 && (outname[len-1] == '.')) {
98 len--;
101 return len;