When using iconv(3) from and to areas must not overlap or iconv() will
[infodrom/newmail] / rfc2047.c
1 /*
2     Copyright (c) 2006  Joey Schulze <joey@infodrom.org>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <ctype.h>
23 #include "charset.h"
24
25 /*
26  * Index_hex and Index_64 imported from Mutt:handler.c
27  * decode_quotedprintable() and decode_base64() as well
28  */
29 int Index_hex[128] = {
30   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
31   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
32   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
33   0, 1, 2, 3,  4, 5, 6, 7,  8, 9,-1,-1, -1,-1,-1,-1,
34   -1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
35   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
36   -1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
37   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1
38 };
39
40 int Index_64[128] = {
41   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
42   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
43   -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
44   52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
45   -1, 0, 1, 2,  3, 4, 5, 6,  7, 8, 9,10, 11,12,13,14,
46   15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
47   -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
48   41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
49 };
50 #define hexval(c) Index_hex[(unsigned int)(c)]
51 #define base64val(c) Index_64[(unsigned int)(c)]
52
53
54 /*
55  * Decode a string from quoted printable
56  */
57 char *decode_quotedprintable(char *buf)
58 {
59   char *inp, *outp;
60   char *endp;
61
62   endp = buf+strlen(buf);
63   
64   for (inp = outp = buf; inp < endp; inp++) {
65     if (*inp == '_')
66       *(outp++) = ' ';
67     else if (*inp == '=' && inp+2 < endp &&
68              (!(*(inp+1) & ~127) && hexval(*(inp+1)) != -1) &&
69              (!(*(inp+2) & ~127) && hexval(*(inp+2)) != -1)) {
70       *(outp++) = (hexval(*(inp+1)) << 4) | hexval(*(inp+2));
71       inp += 2;
72     } else
73       *(outp++) = *inp;
74   }
75   *outp = '\0';
76
77   return buf;
78 }
79
80 /*
81  * Decode a string from base43
82  */
83 char *decode_base64(char *buf)
84 {
85   char *inp, *outp;
86   char *endp;
87   int c, b = 0, k = 0;
88
89   endp = buf+strlen(buf);
90
91   for (inp = outp = buf; inp < endp; inp++) {
92     if (*inp == '=')
93       break;
94     if ((*inp & ~127) || (c = base64val(*inp)) == -1)
95       continue;
96     if (k + 6 >= 8)
97       {
98         k -= 2;
99         *(outp++) = b | (c >> k);
100         b = c << (8 - k);
101       }
102     else
103       {
104         b |= c << (k + 2);
105         k += 6;
106       }
107     *outp = '\0';
108   }
109
110   return buf;
111 }
112
113 /*
114  * converts a header line into the current character set if required
115  */
116 char *convert_header(char *buf)
117 {
118   char *charset;
119   int encoding;
120   char *inp, *outp, *encstart, *wordp, *encp, *endp;
121   char *decode;
122   char *output;
123   size_t size;
124   size_t outlen;
125
126   endp = buf+strlen(buf);
127   inp = buf;
128
129   outlen = strlen(buf)+1;
130   if ((output = (char *)malloc(outlen)) == NULL) {
131     perror ("malloc");
132     return buf;
133   }
134
135   memset(output, 0, outlen);
136   outp = output;
137
138   while ((encstart = strstr (inp, "=?"))) {
139     if (encstart != inp) {
140       memcpy (outp, inp, encstart-inp-1);
141       outp += encstart-inp-1;
142     }
143     charset = encstart+2;
144
145     if ((encp = strchr (charset, '?')) == NULL) {
146       memcpy (outp, inp, strlen(inp)+1);
147       break;
148     }
149
150     *encp = '\0';
151
152     if ((encp + 3 >= endp) || !strchr ("BbQq", *encp) || (*(encp+2) != '?')) {
153       *encp = '?';
154       memcpy (outp, inp, strlen(inp)+1);
155       outp += strlen(inp)+1;
156       inp += strlen(inp)+1;
157       break;
158     }
159
160     encoding = toupper(*(encp+1));
161
162     inp = encp + 3;
163
164     if ((wordp = strstr (inp, "?=")) == NULL) {
165       memcpy (outp, inp, strlen(inp)+1);
166       outp += strlen(inp)+1;
167       inp += strlen(inp)+1;
168       break;
169     }
170
171     *wordp = '\0';
172     wordp += 2;
173
174     switch (encoding) {
175     case 'B':
176       decode = decode_base64 (inp);
177       break;
178     case 'Q':
179       decode = decode_quotedprintable (inp);
180       break;
181     default:
182       decode = inp;
183       break;
184     }
185
186     size = outlen - strlen(output);
187     decode = convert_word (charset, decode, outp, size);
188
189     outp += strlen(decode);
190
191     inp = wordp;
192   }
193
194   if (strlen(inp))
195     memcpy (outp, inp, strlen(inp)+1);
196
197   memcpy (buf, output, strlen(output)+1);
198   free (output);
199
200   return buf;
201 }
202
203
204 /*
205  * Needs to be called with LANG=de_DE.ISO-8859-1
206
207 #include <stdio.h>
208
209 void test_rfc2047()
210 {
211   char *qp;
212   char *b64;
213   char *subject;
214
215   set_charset();
216
217   qp = strdup ("f=FCr");
218   printf ("\t%s -> ", qp);
219   b64 = decode_quotedprintable (qp);
220   printf ("%s\n", qp);
221   if (!strcmp (qp, "für"))
222     printf ("rfc2047.c: decode_quotedprintable() passed\n");
223   else
224     printf ("rfc2047.c: decode_quotedprintable() failed\n");
225   free (qp);
226
227   qp = strdup ("f=FCr_Umlaute_=EFm_Sub");
228   printf ("\t%s -> ", qp);
229   b64 = decode_quotedprintable (qp);
230   printf ("%s\n", qp);
231   if (!strcmp (qp, "für Umlaute ïm Sub"))
232     printf ("rfc2047.c: decode_quotedprintable() passed\n");
233   else
234     printf ("rfc2047.c: decode_quotedprintable() failed\n");
235   free (qp);
236
237   b64 = strdup ("ZvxyINxtbOT8dOs=");
238   printf ("\t%s -> ", b64);
239   b64 = decode_base64 (b64);
240   printf ("%s\n", b64);
241   if (!strcmp (b64, "für Ümläütë"))
242     printf ("rfc2047.c: decode_base64() passed\n");
243   else
244     printf ("rfc2047.c: decode_base64() failed\n");
245   free (b64);
246
247   subject = strdup ("Vorschlag =?ISO-8859-1?Q?f=FCr?= ein Eintrittskonzept");
248   printf ("\t%s\n", subject);
249   subject = convert_header (subject);
250   printf ("\t%s\n", subject);
251   if (!strcmp (subject, "Vorschlag für ein Eintrittskonzept"))
252     printf ("rfc2047.c: convert_header() passed\n");
253   else
254     printf ("rfc2047.c: convert_header() failed\n");
255   free (subject);
256
257   subject = strdup ("=?utf-8?q?Google=3A_Chat_f=C3=BCr_die_Ewigkeit?=");
258   printf ("\t%s\n", subject);
259   subject = convert_header (subject);
260   printf ("\t%s\n", subject);
261   if (!strcmp (subject, "Google: Chat für die Ewigkeit"))
262     printf ("rfc2047.c: convert_header() passed\n");
263   else
264     printf ("rfc2047.c: convert_header() failed\n");
265   free (subject);
266
267   subject = strdup ("=?iso-8859-1?B?ZvxyINxtbOT8dOs=?= testen");
268   printf ("\t%s\n", subject);
269   subject = convert_header (subject);
270   printf ("\t%s\n", subject);
271   if (!strcmp (subject, "für Ümläütë testen"))
272     printf ("rfc2047.c: convert_header() passed\n");
273   else
274     printf ("rfc2047.c: convert_header() failed\n");
275   free (subject);
276
277 }
278 */