2 * Copyright notice from original mutt:
3 * Copyright (C) 2000 Edmund Grimley Evans <edmundo@rano.org>
5 * This file is part of mutt-ng, see http://www.muttng.org/.
6 * It's licensed under the GNU General Public License,
7 * please see the file GPL in the top level source directory.
16 #include "imap_private.h"
20 static int Index_64[128] = {
21 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
22 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
23 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, 63, -1, -1, -1,
24 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
25 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
26 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
27 -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
28 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1
31 static char B64Chars[64] = {
32 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
33 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd',
34 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
35 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7',
40 * Convert the data (u7,u7len) from RFC 2060's UTF-7 to UTF-8.
41 * The result is null-terminated and returned, and also stored
42 * in (*u8,*u8len) if u8 or u8len is non-zero.
43 * If input data is invalid, return 0 and don't store anything.
44 * RFC 2060 obviously intends the encoding to be unique (see
45 * point 5 in section 5.1.3), so we reject any non-canonical
46 * form, such as &ACY- (instead of &-) or &AMA-&AMA- (instead
49 static char *utf7_to_utf8 (const char *u7, size_t u7len, char **u8,
55 p = buf = safe_malloc (u7len + u7len / 8 + 1);
57 for (; u7len; u7++, u7len--) {
61 if (u7len && *u7 == '-') {
68 for (; u7len; u7++, u7len--) {
69 if ((*u7 & 0x80) || (b = Index_64[(int) *u7]) == -1)
78 if (0x20 <= ch && ch < 0x7f)
79 /* Printable US-ASCII */
83 else if (ch < 0x800) {
84 *p++ = 0xc0 | (ch >> 6);
85 *p++ = 0x80 | (ch & 0x3f);
88 *p++ = 0xe0 | (ch >> 12);
89 *p++ = 0x80 | ((ch >> 6) & 0x3f);
90 *p++ = 0x80 | (ch & 0x3f);
92 ch = (b << (16 + k)) & 0xffff;
97 /* Non-zero or too many extra bits */
99 if (!u7len || *u7 != '-')
100 /* BASE64 not properly terminated */
102 if (u7len > 2 && u7[1] == '&' && u7[2] != '-')
103 /* Adjacent BASE64 sections */
106 else if (*u7 < 0x20 || *u7 >= 0x7f)
107 /* Not printable US-ASCII */
116 safe_realloc (&buf, p - buf);
127 * Convert the data (u8,u8len) from UTF-8 to RFC 2060's UTF-7.
128 * The result is null-terminated and returned, and also stored
129 * in (*u7,*u7len) if u7 or u7len is non-zero.
130 * Unicode characters above U+FFFF are replaced by U+FFFE.
131 * If input data is invalid, return 0 and don't store anything.
133 static char *utf8_to_utf7 (const char *u8, size_t u8len, char **u7,
138 int n, i, b = 0, k = 0;
142 * In the worst case we convert 2 chars to 7 chars. For example:
143 * "\x10&\x10&..." -> "&ABA-&-&ABA-&-...".
145 p = buf = safe_malloc ((u8len / 2) * 7 + 6);
148 unsigned char c = *u8;
155 ch = c & 0x1f, n = 1;
157 ch = c & 0x0f, n = 2;
159 ch = c & 0x07, n = 3;
161 ch = c & 0x03, n = 4;
163 ch = c & 0x01, n = 5;
170 for (i = 0; i < n; i++) {
171 if ((u8[i] & 0xc0) != 0x80)
173 ch = (ch << 6) | (u8[i] & 0x3f);
175 if (n > 1 && !(ch >> (n * 5 + 1)))
179 if (ch < 0x20 || ch >= 0x7f) {
188 *p++ = B64Chars[b | ch >> k];
190 for (; k >= 0; k -= 6)
191 *p++ = B64Chars[(ch >> k) & 0x3f];
192 b = (ch << (-k)) & 0x3f;
222 safe_realloc (&buf, p - buf);
232 void imap_utf7_encode (char **s)
235 char *t = safe_strdup (*s);
237 if (!mutt_convert_string (&t, Charset, "UTF-8", 0))
238 utf8_to_utf7 (t, mutt_strlen (t), s, 0);
243 void imap_utf7_decode (char **s)
246 char *t = utf7_to_utf8 (*s, mutt_strlen (*s), 0, 0);
248 if (t && !mutt_convert_string (&t, "UTF-8", Charset, 0)) {