forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
charset.c
653 lines (562 loc) · 18 KB
/
charset.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
/**
* @file
* Conversion between different character encodings
*
* @authors
* Copyright (C) 1999-2002,2007 Thomas Roessler <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <ctype.h>
#include <errno.h>
#include <langinfo.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include "mutt.h"
#include "charset.h"
#include "globals.h"
#include "lib/lib.h"
#include "protos.h"
#ifndef EILSEQ
#define EILSEQ EINVAL
#endif
/*
* The following list has been created manually from the data under:
* http://www.isi.edu/in-notes/iana/assignments/character-sets
* Last update: 2000-09-07
*
* Note that it includes only the subset of character sets for which a preferred
* MIME name is given.
*/
static const struct
{
const char *key;
const char *pref;
}
// clang-format off
PreferredMIMENames[] =
{
{ "ansi_x3.4-1968", "us-ascii" },
{ "iso-ir-6", "us-ascii" },
{ "iso_646.irv:1991", "us-ascii" },
{ "ascii", "us-ascii" },
{ "iso646-us", "us-ascii" },
{ "us", "us-ascii" },
{ "ibm367", "us-ascii" },
{ "cp367", "us-ascii" },
{ "csASCII", "us-ascii" },
{ "csISO2022KR", "iso-2022-kr" },
{ "csEUCKR", "euc-kr" },
{ "csISO2022JP", "iso-2022-jp" },
{ "csISO2022JP2", "iso-2022-jp-2" },
{ "ISO_8859-1:1987", "iso-8859-1" },
{ "iso-ir-100", "iso-8859-1" },
{ "iso_8859-1", "iso-8859-1" },
{ "latin1", "iso-8859-1" },
{ "l1", "iso-8859-1" },
{ "IBM819", "iso-8859-1" },
{ "CP819", "iso-8859-1" },
{ "csISOLatin1", "iso-8859-1" },
{ "ISO_8859-2:1987", "iso-8859-2" },
{ "iso-ir-101", "iso-8859-2" },
{ "iso_8859-2", "iso-8859-2" },
{ "latin2", "iso-8859-2" },
{ "l2", "iso-8859-2" },
{ "csISOLatin2", "iso-8859-2" },
{ "ISO_8859-3:1988", "iso-8859-3" },
{ "iso-ir-109", "iso-8859-3" },
{ "ISO_8859-3", "iso-8859-3" },
{ "latin3", "iso-8859-3" },
{ "l3", "iso-8859-3" },
{ "csISOLatin3", "iso-8859-3" },
{ "ISO_8859-4:1988", "iso-8859-4" },
{ "iso-ir-110", "iso-8859-4" },
{ "ISO_8859-4", "iso-8859-4" },
{ "latin4", "iso-8859-4" },
{ "l4", "iso-8859-4" },
{ "csISOLatin4", "iso-8859-4" },
{ "ISO_8859-6:1987", "iso-8859-6" },
{ "iso-ir-127", "iso-8859-6" },
{ "iso_8859-6", "iso-8859-6" },
{ "ECMA-114", "iso-8859-6" },
{ "ASMO-708", "iso-8859-6" },
{ "arabic", "iso-8859-6" },
{ "csISOLatinArabic", "iso-8859-6" },
{ "ISO_8859-7:1987", "iso-8859-7" },
{ "iso-ir-126", "iso-8859-7" },
{ "ISO_8859-7", "iso-8859-7" },
{ "ELOT_928", "iso-8859-7" },
{ "ECMA-118", "iso-8859-7" },
{ "greek", "iso-8859-7" },
{ "greek8", "iso-8859-7" },
{ "csISOLatinGreek", "iso-8859-7" },
{ "ISO_8859-8:1988", "iso-8859-8" },
{ "iso-ir-138", "iso-8859-8" },
{ "ISO_8859-8", "iso-8859-8" },
{ "hebrew", "iso-8859-8" },
{ "csISOLatinHebrew", "iso-8859-8" },
{ "ISO_8859-5:1988", "iso-8859-5" },
{ "iso-ir-144", "iso-8859-5" },
{ "ISO_8859-5", "iso-8859-5" },
{ "cyrillic", "iso-8859-5" },
{ "csISOLatinCyrillic", "iso-8859-5" },
{ "ISO_8859-9:1989", "iso-8859-9" },
{ "iso-ir-148", "iso-8859-9" },
{ "ISO_8859-9", "iso-8859-9" },
{ "latin5", "iso-8859-9" }, /* this is not a bug */
{ "l5", "iso-8859-9" },
{ "csISOLatin5", "iso-8859-9" },
{ "ISO_8859-10:1992", "iso-8859-10" },
{ "iso-ir-157", "iso-8859-10" },
{ "latin6", "iso-8859-10" }, /* this is not a bug */
{ "l6", "iso-8859-10" },
{ "csISOLatin6", "iso-8859-10" },
{ "csKOI8r", "koi8-r" },
{ "MS_Kanji", "Shift_JIS" }, /* Note the underscore! */
{ "csShiftJis", "Shift_JIS" },
{ "Extended_UNIX_Code_Packed_Format_for_Japanese",
"euc-jp" },
{ "csEUCPkdFmtJapanese", "euc-jp" },
{ "csGB2312", "gb2312" },
{ "csbig5", "big5" },
/*
* End of official brain damage. What follows has been taken from glibc's
* localedata files.
*/
{ "iso_8859-13", "iso-8859-13" },
{ "iso-ir-179", "iso-8859-13" },
{ "latin7", "iso-8859-13" }, /* this is not a bug */
{ "l7", "iso-8859-13" },
{ "iso_8859-14", "iso-8859-14" },
{ "latin8", "iso-8859-14" }, /* this is not a bug */
{ "l8", "iso-8859-14" },
{ "iso_8859-15", "iso-8859-15" },
{ "latin9", "iso-8859-15" }, /* this is not a bug */
/* Suggested by Ionel Mugurel Ciobica <[email protected]> */
{ "latin0", "iso-8859-15" }, /* this is not a bug */
{ "iso_8859-16", "iso-8859-16" },
{ "latin10", "iso-8859-16" }, /* this is not a bug */
{ "646", "us-ascii" },
/*
* http://www.sun.com/software/white-papers/wp-unicode/
*/
{ "eucJP", "euc-jp" },
{ "PCK", "Shift_JIS" },
{ "ko_KR-euc", "euc-kr" },
{ "zh_TW-big5", "big5" },
/* seems to be common on some systems */
{ "sjis", "Shift_JIS" },
{ "euc-jp-ms", "eucJP-ms" },
/*
* If you happen to encounter system-specific brain-damage with respect to
* character set naming, please add it above this comment, and submit a patch
* to <[email protected]>.
*/
/* End of aliases. Please keep this line last. */
{ NULL, NULL },
};
// clang-format on
void mutt_set_langinfo_charset(void)
{
char buff[LONG_STRING];
char buff2[LONG_STRING];
strfcpy(buff, nl_langinfo(CODESET), sizeof(buff));
mutt_canonical_charset(buff2, sizeof(buff2), buff);
/* finally, set $charset */
if (!(Charset = safe_strdup(buff2)))
Charset = safe_strdup("iso-8859-1");
}
/**
* mutt_canonical_charset - Canonicalise the charset of a string
*
* this first ties off any charset extension such as //TRANSLIT,
* canonicalizes the charset and re-adds the extension
*/
void mutt_canonical_charset(char *dest, size_t dlen, const char *name)
{
char *p = NULL, *ext = NULL;
char in[LONG_STRING], scratch[LONG_STRING];
strfcpy(in, name, sizeof(in));
if ((ext = strchr(in, '/')))
*ext++ = '\0';
if ((mutt_strcasecmp(in, "utf-8") == 0) || (mutt_strcasecmp(in, "utf8") == 0))
{
strfcpy(dest, "utf-8", dlen);
goto out;
}
/* catch some common iso-8859-something misspellings */
if ((mutt_strncasecmp(in, "8859", 4) == 0) && in[4] != '-')
snprintf(scratch, sizeof(scratch), "iso-8859-%s", in + 4);
else if (mutt_strncasecmp(in, "8859-", 5) == 0)
snprintf(scratch, sizeof(scratch), "iso-8859-%s", in + 5);
else if ((mutt_strncasecmp(in, "iso8859", 7) == 0) && in[7] != '-')
snprintf(scratch, sizeof(scratch), "iso_8859-%s", in + 7);
else if (mutt_strncasecmp(in, "iso8859-", 8) == 0)
snprintf(scratch, sizeof(scratch), "iso_8859-%s", in + 8);
else
strfcpy(scratch, in, sizeof(scratch));
for (size_t i = 0; PreferredMIMENames[i].key; i++)
if ((mutt_strcasecmp(scratch, PreferredMIMENames[i].key) == 0) ||
(mutt_strcasecmp(scratch, PreferredMIMENames[i].key) == 0))
{
strfcpy(dest, PreferredMIMENames[i].pref, dlen);
goto out;
}
strfcpy(dest, scratch, dlen);
/* for cosmetics' sake, transform to lowercase. */
for (p = dest; *p; p++)
*p = tolower(*p);
out:
if (ext && *ext)
{
safe_strcat(dest, dlen, "/");
safe_strcat(dest, dlen, ext);
}
}
int mutt_chscmp(const char *s, const char *chs)
{
char buffer[STRING];
int a, b;
if (!s)
return 0;
/* charsets may have extensions mutt_canonical_charset()
leaves intact; we expect `chs' to originate from mutt
code, not user input (i.e. `chs' does _not_ have any
extension)
we simply check if the shorter string is a prefix for
the longer */
mutt_canonical_charset(buffer, sizeof(buffer), s);
a = mutt_strlen(buffer);
b = mutt_strlen(chs);
return (mutt_strncasecmp(a > b ? buffer : chs, a > b ? chs : buffer, MIN(a, b)) == 0);
}
char *mutt_get_default_charset(void)
{
static char fcharset[SHORT_STRING];
const char *c = AssumedCharset;
const char *c1 = NULL;
if (c && *c)
{
c1 = strchr(c, ':');
strfcpy(fcharset, c, c1 ? (c1 - c + 1) : sizeof(fcharset));
return fcharset;
}
return strcpy(fcharset, "us-ascii");
}
/**
* mutt_iconv_open - Set up iconv for conversions
*
* Like iconv_open, but canonicalises the charsets, applies charset-hooks,
* recanonicalises, and finally applies iconv-hooks. Parameter flags=0 skips
* charset-hooks, while MUTT_ICONV_HOOK_FROM applies them to fromcode. Callers
* should use flags=0 when fromcode can safely be considered true, either some
* constant, or some value provided by the user; MUTT_ICONV_HOOK_FROM should be
* used only when fromcode is unsure, taken from a possibly wrong incoming MIME
* label, or such. Misusing MUTT_ICONV_HOOK_FROM leads to unwanted interactions
* in some setups. Note: By design charset-hooks should never be, and are never,
* applied to tocode. Highlight note: The top-well-named MUTT_ICONV_HOOK_FROM
* acts on charset-hooks, not at all on iconv-hooks.
*/
iconv_t mutt_iconv_open(const char *tocode, const char *fromcode, int flags)
{
char tocode1[SHORT_STRING];
char fromcode1[SHORT_STRING];
char *tocode2 = NULL, *fromcode2 = NULL;
char *tmp = NULL;
iconv_t cd;
/* transform to MIME preferred charset names */
mutt_canonical_charset(tocode1, sizeof(tocode1), tocode);
mutt_canonical_charset(fromcode1, sizeof(fromcode1), fromcode);
/* maybe apply charset-hooks and recanonicalise fromcode,
* but only when caller asked us to sanitize a potentially wrong
* charset name incoming from the wild exterior. */
if ((flags & MUTT_ICONV_HOOK_FROM) && (tmp = mutt_charset_hook(fromcode1)))
mutt_canonical_charset(fromcode1, sizeof(fromcode1), tmp);
/* always apply iconv-hooks to suit system's iconv tastes */
tocode2 = mutt_iconv_hook(tocode1);
tocode2 = (tocode2) ? tocode2 : tocode1;
fromcode2 = mutt_iconv_hook(fromcode1);
fromcode2 = (fromcode2) ? fromcode2 : fromcode1;
/* call system iconv with names it appreciates */
if ((cd = iconv_open(tocode2, fromcode2)) != (iconv_t) -1)
return cd;
return (iconv_t) -1;
}
/**
* mutt_iconv - Change the encoding of a string
*
* Like iconv, but keeps going even when the input is invalid
* If you're supplying inrepls, the source charset should be stateless;
* if you're supplying an outrepl, the target charset should be.
*/
size_t mutt_iconv(iconv_t cd, ICONV_CONST char **inbuf, size_t *inbytesleft,
char **outbuf, size_t *outbytesleft,
ICONV_CONST char **inrepls, const char *outrepl)
{
size_t ret = 0, ret1;
ICONV_CONST char *ib = *inbuf;
size_t ibl = *inbytesleft;
char *ob = *outbuf;
size_t obl = *outbytesleft;
for (;;)
{
ret1 = iconv(cd, &ib, &ibl, &ob, &obl);
if (ret1 != (size_t) -1)
ret += ret1;
if (ibl && obl && errno == EILSEQ)
{
if (inrepls)
{
/* Try replacing the input */
ICONV_CONST char **t = NULL;
for (t = inrepls; *t; t++)
{
ICONV_CONST char *ib1 = *t;
size_t ibl1 = strlen(*t);
char *ob1 = ob;
size_t obl1 = obl;
iconv(cd, &ib1, &ibl1, &ob1, &obl1);
if (!ibl1)
{
ib++;
ibl--;
ob = ob1;
obl = obl1;
ret++;
break;
}
}
if (*t)
continue;
}
/* Replace the output */
if (!outrepl)
outrepl = "?";
iconv(cd, 0, 0, &ob, &obl);
if (obl)
{
int n = strlen(outrepl);
if (n > obl)
{
outrepl = "?";
n = 1;
}
memcpy(ob, outrepl, n);
ib++;
ibl--;
ob += n;
obl -= n;
ret++;
iconv(cd, 0, 0, 0, 0); /* for good measure */
continue;
}
}
*inbuf = ib;
*inbytesleft = ibl;
*outbuf = ob;
*outbytesleft = obl;
return ret;
}
}
/**
* mutt_convert_string - Convert a string between encodings
*
* Parameter flags is given as-is to mutt_iconv_open().
* See there for its meaning and usage policy.
*/
int mutt_convert_string(char **ps, const char *from, const char *to, int flags)
{
iconv_t cd;
ICONV_CONST char *repls[] = { "\357\277\275", "?", 0 };
char *s = *ps;
if (!s || !*s)
return 0;
if (to && from && (cd = mutt_iconv_open(to, from, flags)) != (iconv_t) -1)
{
int len;
ICONV_CONST char *ib = NULL;
char *buf = NULL, *ob = NULL;
size_t ibl, obl;
ICONV_CONST char **inrepls = NULL;
char *outrepl = NULL;
if (mutt_is_utf8(to))
outrepl = "\357\277\275";
else if (mutt_is_utf8(from))
inrepls = repls;
else
outrepl = "?";
len = strlen(s);
ib = s;
ibl = len + 1;
obl = MB_LEN_MAX * ibl;
ob = buf = safe_malloc(obl + 1);
mutt_iconv(cd, &ib, &ibl, &ob, &obl, inrepls, outrepl);
iconv_close(cd);
*ob = '\0';
FREE(ps);
*ps = buf;
mutt_str_adjust(ps);
return 0;
}
else
return -1;
}
/*
* FGETCONV stuff for converting a file while reading it.
* Used in sendlib.c for converting from mutt's Charset
*/
/**
* struct FgetConv - Cursor for converting a file's encoding
*/
struct FgetConv
{
FILE *file;
iconv_t cd;
char bufi[512];
char bufo[512];
char *p;
char *ob;
char *ib;
size_t ibl;
ICONV_CONST char **inrepls;
};
/**
* struct FgetConvNot - A dummy converter
*/
struct FgetConvNot
{
FILE *file;
iconv_t cd;
};
/**
* fgetconv_open - Open a file and convert its encoding
*
* Parameter flags is given as-is to mutt_iconv_open().
* See there for its meaning and usage policy.
*/
FGETCONV *fgetconv_open(FILE *file, const char *from, const char *to, int flags)
{
struct FgetConv *fc = NULL;
iconv_t cd = (iconv_t) -1;
static ICONV_CONST char *repls[] = { "\357\277\275", "?", 0 };
if (from && to)
cd = mutt_iconv_open(to, from, flags);
if (cd != (iconv_t) -1)
{
fc = safe_malloc(sizeof(struct FgetConv));
fc->p = fc->ob = fc->bufo;
fc->ib = fc->bufi;
fc->ibl = 0;
fc->inrepls = mutt_is_utf8(to) ? repls : repls + 1;
}
else
fc = safe_malloc(sizeof(struct FgetConvNot));
fc->file = file;
fc->cd = cd;
return (FGETCONV *) fc;
}
char *fgetconvs(char *buf, size_t l, FGETCONV *_fc)
{
int c;
size_t r;
for (r = 0; r + 1 < l;)
{
if ((c = fgetconv(_fc)) == EOF)
break;
buf[r++] = (char) c;
if (c == '\n')
break;
}
buf[r] = '\0';
if (r)
return buf;
else
return NULL;
}
int fgetconv(FGETCONV *_fc)
{
struct FgetConv *fc = (struct FgetConv *) _fc;
if (!fc)
return EOF;
if (fc->cd == (iconv_t) -1)
return fgetc(fc->file);
if (!fc->p)
return EOF;
if (fc->p < fc->ob)
return (unsigned char) *(fc->p)++;
/* Try to convert some more */
fc->p = fc->ob = fc->bufo;
if (fc->ibl)
{
size_t obl = sizeof(fc->bufo);
iconv(fc->cd, (ICONV_CONST char **) &fc->ib, &fc->ibl, &fc->ob, &obl);
if (fc->p < fc->ob)
return (unsigned char) *(fc->p)++;
}
/* If we trusted iconv a bit more, we would at this point
* ask why it had stopped converting ... */
/* Try to read some more */
if (fc->ibl == sizeof(fc->bufi) ||
(fc->ibl && fc->ib + fc->ibl < fc->bufi + sizeof(fc->bufi)))
{
fc->p = 0;
return EOF;
}
if (fc->ibl)
memcpy(fc->bufi, fc->ib, fc->ibl);
fc->ib = fc->bufi;
fc->ibl += fread(fc->ib + fc->ibl, 1, sizeof(fc->bufi) - fc->ibl, fc->file);
/* Try harder this time to convert some */
if (fc->ibl)
{
size_t obl = sizeof(fc->bufo);
mutt_iconv(fc->cd, (ICONV_CONST char **) &fc->ib, &fc->ibl, &fc->ob, &obl,
fc->inrepls, 0);
if (fc->p < fc->ob)
return (unsigned char) *(fc->p)++;
}
/* Either the file has finished or one of the buffers is too small */
fc->p = 0;
return EOF;
}
void fgetconv_close(FGETCONV **_fc)
{
struct FgetConv *fc = (struct FgetConv *) *_fc;
if (fc->cd != (iconv_t) -1)
iconv_close(fc->cd);
FREE(_fc);
}
bool mutt_check_charset(const char *s, bool strict)
{
int i;
iconv_t cd;
if (mutt_is_utf8(s))
return true;
if (!strict)
for (i = 0; PreferredMIMENames[i].key; i++)
{
if ((mutt_strcasecmp(PreferredMIMENames[i].key, s) == 0) ||
(mutt_strcasecmp(PreferredMIMENames[i].pref, s) == 0))
return true;
}
if ((cd = mutt_iconv_open(s, s, 0)) != (iconv_t)(-1))
{
iconv_close(cd);
return true;
}
return false;
}