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 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
|
/*
* Copyright (C) 1996-2000,2002,2010,2013 Michael R. Elkins <me@mutt.org>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include "mutt.h"
#include "mutt_curses.h"
#include "rfc1524.h"
#include "keymap.h"
#include "mime.h"
#include "copy.h"
#include "charset.h"
#include "mutt_crypt.h"
#include "rfc3676.h"
#include "pager.h"
#define BUFI_SIZE 1000
#define BUFO_SIZE 2000
typedef int (*handler_t) (BODY *, STATE *);
const int Index_hex[128] = {
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,-1,-1, -1,-1,-1,-1,
-1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1
};
const int Index_64[128] = {
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
-1, 0, 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,-1, -1,-1,-1,-1,
-1,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,-1, -1,-1,-1,-1
};
static void state_prefix_put (const char *d, size_t dlen, STATE *s)
{
if (s->prefix)
while (dlen--)
state_prefix_putc (*d++, s);
else
fwrite (d, dlen, 1, s->fpout);
}
static void mutt_convert_to_state(iconv_t cd, char *bufi, size_t *l, STATE *s)
{
char bufo[BUFO_SIZE];
ICONV_CONST char *ib;
char *ob;
size_t ibl, obl;
if (!bufi)
{
if (cd != (iconv_t)(-1))
{
ob = bufo, obl = sizeof (bufo);
iconv (cd, 0, 0, &ob, &obl);
if (ob != bufo)
state_prefix_put (bufo, ob - bufo, s);
}
return;
}
if (cd == (iconv_t)(-1))
{
state_prefix_put (bufi, *l, s);
*l = 0;
return;
}
ib = bufi, ibl = *l;
for (;;)
{
ob = bufo, obl = sizeof (bufo);
mutt_iconv (cd, &ib, &ibl, &ob, &obl, 0, "?");
if (ob == bufo)
break;
state_prefix_put (bufo, ob - bufo, s);
}
memmove (bufi, ib, ibl);
*l = ibl;
}
static void mutt_decode_xbit (STATE *s, long len, int istext, iconv_t cd)
{
int c, ch;
char bufi[BUFI_SIZE];
size_t l = 0;
if (istext)
{
state_set_prefix(s);
while ((c = fgetc(s->fpin)) != EOF && len--)
{
if (c == '\r' && len)
{
if ((ch = fgetc(s->fpin)) == '\n')
{
c = ch;
len--;
}
else
ungetc(ch, s->fpin);
}
bufi[l++] = c;
if (l == sizeof (bufi))
mutt_convert_to_state (cd, bufi, &l, s);
}
mutt_convert_to_state (cd, bufi, &l, s);
mutt_convert_to_state (cd, 0, 0, s);
state_reset_prefix (s);
}
else
mutt_copy_bytes (s->fpin, s->fpout, len);
}
static int qp_decode_triple (char *s, char *d)
{
/* soft line break */
if (*s == '=' && !(*(s+1)))
return 1;
/* quoted-printable triple */
if (*s == '=' &&
isxdigit ((unsigned char) *(s+1)) &&
isxdigit ((unsigned char) *(s+2)))
{
*d = (hexval (*(s+1)) << 4) | hexval (*(s+2));
return 0;
}
/* something else */
return -1;
}
static void qp_decode_line (char *dest, char *src, size_t *l,
int last)
{
char *d, *s;
char c = 0;
int kind = -1;
int soft = 0;
/* decode the line */
for (d = dest, s = src; *s;)
{
switch ((kind = qp_decode_triple (s, &c)))
{
case 0: *d++ = c; s += 3; break; /* qp triple */
case -1: *d++ = *s++; break; /* single character */
case 1: soft = 1; s++; break; /* soft line break */
}
}
if (!soft && last == '\n')
{
/* neither \r nor \n as part of line-terminating CRLF
* may be qp-encoded, so remove \r and \n-terminate;
* see RfC2045, sect. 6.7, (1): General 8bit representation */
if (kind == 0 && c == '\r')
*(d-1) = '\n';
else
*d++ = '\n';
}
*d = '\0';
*l = d - dest;
}
/*
* Decode an attachment encoded with quoted-printable.
*
* Why doesn't this overflow any buffers? First, it's guaranteed
* that the length of a line grows when you _en_-code it to
* quoted-printable. That means that we always can store the
* result in a buffer of at most the _same_ size.
*
* Now, we don't special-case if the line we read with fgets()
* isn't terminated. We don't care about this, since STRING > 78,
* so corrupted input will just be corrupted a bit more. That
* implies that STRING+1 bytes are always sufficient to store the
* result of qp_decode_line.
*
* Finally, at soft line breaks, some part of a multibyte character
* may have been left over by mutt_convert_to_state(). This shouldn't
* be more than 6 characters, so STRING + 7 should be sufficient
* memory to store the decoded data.
*
* Just to make sure that I didn't make some off-by-one error
* above, we just use STRING*2 for the target buffer's size.
*
*/
static void mutt_decode_quoted (STATE *s, long len, int istext, iconv_t cd)
{
char line[STRING];
char decline[2*STRING];
size_t l = 0;
size_t linelen; /* number of input bytes in `line' */
size_t l3;
int last; /* store the last character in the input line */
if (istext)
state_set_prefix(s);
while (len > 0)
{
last = 0;
/*
* It's ok to use a fixed size buffer for input, even if the line turns
* out to be longer than this. Just process the line in chunks. This
* really shouldn't happen according the MIME spec, since Q-P encoded
* lines are at most 76 characters, but we should be liberal about what
* we accept.
*/
if (fgets (line, MIN ((ssize_t)sizeof (line), len + 1), s->fpin) == NULL)
break;
linelen = strlen(line);
len -= linelen;
/*
* inspect the last character we read so we can tell if we got the
* entire line.
*/
last = linelen ? line[linelen - 1] : 0;
/* chop trailing whitespace if we got the full line */
if (last == '\n')
{
while (linelen > 0 && ISSPACE (line[linelen-1]))
linelen--;
line[linelen]=0;
}
/* decode and do character set conversion */
qp_decode_line (decline + l, line, &l3, last);
l += l3;
mutt_convert_to_state (cd, decline, &l, s);
}
mutt_convert_to_state (cd, 0, 0, s);
state_reset_prefix(s);
}
void mutt_decode_base64 (STATE *s, long len, int istext, iconv_t cd)
{
char buf[5];
int c1, c2, c3, c4, ch, cr = 0, i;
char bufi[BUFI_SIZE];
size_t l = 0;
buf[4] = 0;
if (istext)
state_set_prefix(s);
while (len > 0)
{
for (i = 0 ; i < 4 && len > 0 ; len--)
{
if ((ch = fgetc (s->fpin)) == EOF)
break;
if (ch >= 0 && ch < 128 && (base64val(ch) != -1 || ch == '='))
buf[i++] = ch;
}
if (i != 4)
{
/* "i" may be zero if there is trailing whitespace, which is not an error */
if (i != 0)
dprint (2, (debugfile, "%s:%d [mutt_decode_base64()]: "
"didn't get a multiple of 4 chars.\n", __FILE__, __LINE__));
break;
}
c1 = base64val (buf[0]);
c2 = base64val (buf[1]);
ch = (c1 << 2) | (c2 >> 4);
if (cr && ch != '\n')
bufi[l++] = '\r';
cr = 0;
if (istext && ch == '\r')
cr = 1;
else
bufi[l++] = ch;
if (buf[2] == '=')
break;
c3 = base64val (buf[2]);
ch = ((c2 & 0xf) << 4) | (c3 >> 2);
if (cr && ch != '\n')
bufi[l++] = '\r';
cr = 0;
if (istext && ch == '\r')
cr = 1;
else
bufi[l++] = ch;
if (buf[3] == '=') break;
c4 = base64val (buf[3]);
ch = ((c3 & 0x3) << 6) | c4;
if (cr && ch != '\n')
bufi[l++] = '\r';
cr = 0;
if (istext && ch == '\r')
cr = 1;
else
bufi[l++] = ch;
if (l + 8 >= sizeof (bufi))
mutt_convert_to_state (cd, bufi, &l, s);
}
if (cr) bufi[l++] = '\r';
mutt_convert_to_state (cd, bufi, &l, s);
mutt_convert_to_state (cd, 0, 0, s);
state_reset_prefix(s);
}
static unsigned char decode_byte (char ch)
{
if (ch == 96)
return 0;
return ch - 32;
}
static void mutt_decode_uuencoded (STATE *s, long len, int istext, iconv_t cd)
{
char tmps[SHORT_STRING];
char linelen, c, l, out;
char *pt;
char bufi[BUFI_SIZE];
size_t k = 0;
if (istext)
state_set_prefix(s);
while (len > 0)
{
if ((fgets(tmps, sizeof(tmps), s->fpin)) == NULL)
return;
len -= mutt_strlen(tmps);
if ((!mutt_strncmp (tmps, "begin", 5)) && ISSPACE (tmps[5]))
break;
}
while (len > 0)
{
if ((fgets(tmps, sizeof(tmps), s->fpin)) == NULL)
return;
len -= mutt_strlen(tmps);
if (!mutt_strncmp (tmps, "end", 3))
break;
pt = tmps;
linelen = decode_byte (*pt);
pt++;
for (c = 0; c < linelen && *pt;)
{
for (l = 2; l <= 6 && *pt && *(pt + 1); l += 2)
{
out = decode_byte (*pt) << l;
pt++;
out |= (decode_byte (*pt) >> (6 - l));
bufi[k++] = out;
c++;
if (c == linelen)
break;
}
mutt_convert_to_state (cd, bufi, &k, s);
pt++;
}
}
mutt_convert_to_state (cd, bufi, &k, s);
mutt_convert_to_state (cd, 0, 0, s);
state_reset_prefix(s);
}
/* ----------------------------------------------------------------------------
* A (not so) minimal implementation of RFC1563.
*/
#define IndentSize (4)
enum { RICH_PARAM=0, RICH_BOLD, RICH_UNDERLINE, RICH_ITALIC, RICH_NOFILL,
RICH_INDENT, RICH_INDENT_RIGHT, RICH_EXCERPT, RICH_CENTER, RICH_FLUSHLEFT,
RICH_FLUSHRIGHT, RICH_COLOR, RICH_LAST_TAG };
static const struct {
const wchar_t *tag_name;
int index;
} EnrichedTags[] = {
{ L"param", RICH_PARAM },
{ L"bold", RICH_BOLD },
{ L"italic", RICH_ITALIC },
{ L"underline", RICH_UNDERLINE },
{ L"nofill", RICH_NOFILL },
{ L"excerpt", RICH_EXCERPT },
{ L"indent", RICH_INDENT },
{ L"indentright", RICH_INDENT_RIGHT },
{ L"center", RICH_CENTER },
{ L"flushleft", RICH_FLUSHLEFT },
{ L"flushright", RICH_FLUSHRIGHT },
{ L"flushboth", RICH_FLUSHLEFT },
{ L"color", RICH_COLOR },
{ L"x-color", RICH_COLOR },
{ NULL, -1 }
};
struct enriched_state
{
wchar_t *buffer;
wchar_t *line;
wchar_t *param;
size_t buff_len;
size_t line_len;
size_t line_used;
size_t line_max;
size_t indent_len;
size_t word_len;
size_t buff_used;
size_t param_used;
size_t param_len;
int tag_level[RICH_LAST_TAG];
int WrapMargin;
STATE *s;
};
static void enriched_wrap (struct enriched_state *stte)
{
int x;
int extra;
if (stte->line_len)
{
if (stte->tag_level[RICH_CENTER] || stte->tag_level[RICH_FLUSHRIGHT])
{
/* Strip trailing white space */
size_t y = stte->line_used - 1;
while (y && iswspace (stte->line[y]))
{
stte->line[y] = (wchar_t) '\0';
y--;
stte->line_used--;
stte->line_len--;
}
if (stte->tag_level[RICH_CENTER])
{
/* Strip leading whitespace */
y = 0;
while (stte->line[y] && iswspace (stte->line[y]))
y++;
if (y)
{
size_t z;
for (z = y ; z <= stte->line_used; z++)
{
stte->line[z - y] = stte->line[z];
}
stte->line_len -= y;
stte->line_used -= y;
}
}
}
extra = stte->WrapMargin - stte->line_len - stte->indent_len -
(stte->tag_level[RICH_INDENT_RIGHT] * IndentSize);
if (extra > 0)
{
if (stte->tag_level[RICH_CENTER])
{
x = extra / 2;
while (x)
{
state_putc (' ', stte->s);
x--;
}
}
else if (stte->tag_level[RICH_FLUSHRIGHT])
{
x = extra-1;
while (x)
{
state_putc (' ', stte->s);
x--;
}
}
}
state_putws ((const wchar_t*) stte->line, stte->s);
}
state_putc ('\n', stte->s);
stte->line[0] = (wchar_t) '\0';
stte->line_len = 0;
stte->line_used = 0;
stte->indent_len = 0;
if (stte->s->prefix)
{
state_puts (stte->s->prefix, stte->s);
stte->indent_len += mutt_strlen (stte->s->prefix);
}
if (stte->tag_level[RICH_EXCERPT])
{
x = stte->tag_level[RICH_EXCERPT];
while (x)
{
if (stte->s->prefix)
{
state_puts (stte->s->prefix, stte->s);
stte->indent_len += mutt_strlen (stte->s->prefix);
}
else
{
state_puts ("> ", stte->s);
stte->indent_len += mutt_strlen ("> ");
}
x--;
}
}
else
stte->indent_len = 0;
if (stte->tag_level[RICH_INDENT])
{
x = stte->tag_level[RICH_INDENT] * IndentSize;
stte->indent_len += x;
while (x)
{
state_putc (' ', stte->s);
x--;
}
}
}
static void enriched_flush (struct enriched_state *stte, int wrap)
{
if (!stte->tag_level[RICH_NOFILL] && (stte->line_len + stte->word_len >
(stte->WrapMargin - (stte->tag_level[RICH_INDENT_RIGHT] * IndentSize) -
stte->indent_len)))
enriched_wrap (stte);
if (stte->buff_used)
{
stte->buffer[stte->buff_used] = (wchar_t) '\0';
stte->line_used += stte->buff_used;
if (stte->line_used > stte->line_max)
{
stte->line_max = stte->line_used;
safe_realloc (&stte->line, (stte->line_max + 1) * sizeof (wchar_t));
}
wcscat (stte->line, stte->buffer);
stte->line_len += stte->word_len;
stte->word_len = 0;
stte->buff_used = 0;
}
if (wrap)
enriched_wrap(stte);
fflush (stte->s->fpout);
}
static void enriched_putwc (wchar_t c, struct enriched_state *stte)
{
if (stte->tag_level[RICH_PARAM])
{
if (stte->tag_level[RICH_COLOR])
{
if (stte->param_used + 1 >= stte->param_len)
safe_realloc (&stte->param, (stte->param_len += STRING) * sizeof (wchar_t));
stte->param[stte->param_used++] = c;
}
return; /* nothing to do */
}
/* see if more space is needed (plus extra for possible rich characters) */
if (stte->buff_len < stte->buff_used + 3)
{
stte->buff_len += LONG_STRING;
safe_realloc (&stte->buffer, (stte->buff_len + 1) * sizeof (wchar_t));
}
if ((!stte->tag_level[RICH_NOFILL] && iswspace (c)) || c == (wchar_t) '\0')
{
if (c == (wchar_t) '\t')
stte->word_len += 8 - (stte->line_len + stte->word_len) % 8;
else
stte->word_len++;
stte->buffer[stte->buff_used++] = c;
enriched_flush (stte, 0);
}
else
{
if (stte->s->flags & MUTT_DISPLAY)
{
if (stte->tag_level[RICH_BOLD])
{
stte->buffer[stte->buff_used++] = c;
stte->buffer[stte->buff_used++] = (wchar_t) '\010';
stte->buffer[stte->buff_used++] = c;
}
else if (stte->tag_level[RICH_UNDERLINE])
{
stte->buffer[stte->buff_used++] = '_';
stte->buffer[stte->buff_used++] = (wchar_t) '\010';
stte->buffer[stte->buff_used++] = c;
}
else if (stte->tag_level[RICH_ITALIC])
{
stte->buffer[stte->buff_used++] = c;
stte->buffer[stte->buff_used++] = (wchar_t) '\010';
stte->buffer[stte->buff_used++] = '_';
}
else
{
stte->buffer[stte->buff_used++] = c;
}
}
else
{
stte->buffer[stte->buff_used++] = c;
}
stte->word_len++;
}
}
static void enriched_puts (const char *s, struct enriched_state *stte)
{
const char *c;
if (stte->buff_len < stte->buff_used + mutt_strlen (s))
{
stte->buff_len += LONG_STRING;
safe_realloc (&stte->buffer, (stte->buff_len + 1) * sizeof (wchar_t));
}
c = s;
while (*c)
{
stte->buffer[stte->buff_used++] = (wchar_t) *c;
c++;
}
}
static void enriched_set_flags (const wchar_t *tag, struct enriched_state *stte)
{
const wchar_t *tagptr = tag;
int i, j;
if (*tagptr == (wchar_t) '/')
tagptr++;
for (i = 0, j = -1; EnrichedTags[i].tag_name; i++)
if (wcscasecmp (EnrichedTags[i].tag_name, tagptr) == 0)
{
j = EnrichedTags[i].index;
break;
}
if (j != -1)
{
if (j == RICH_CENTER || j == RICH_FLUSHLEFT || j == RICH_FLUSHRIGHT)
enriched_flush (stte, 1);
if (*tag == (wchar_t) '/')
{
if (stte->tag_level[j]) /* make sure not to go negative */
stte->tag_level[j]--;
if ((stte->s->flags & MUTT_DISPLAY) && j == RICH_PARAM && stte->tag_level[RICH_COLOR])
{
stte->param[stte->param_used] = (wchar_t) '\0';
if (!wcscasecmp(L"black", stte->param))
{
enriched_puts("\033[30m", stte);
}
else if (!wcscasecmp(L"red", stte->param))
{
enriched_puts("\033[31m", stte);
}
else if (!wcscasecmp(L"green", stte->param))
{
enriched_puts("\033[32m", stte);
}
else if (!wcscasecmp(L"yellow", stte->param))
{
enriched_puts("\033[33m", stte);
}
else if (!wcscasecmp(L"blue", stte->param))
{
enriched_puts("\033[34m", stte);
}
else if (!wcscasecmp(L"magenta", stte->param))
{
enriched_puts("\033[35m", stte);
}
else if (!wcscasecmp(L"cyan", stte->param))
{
enriched_puts("\033[36m", stte);
}
else if (!wcscasecmp(L"white", stte->param))
{
enriched_puts("\033[37m", stte);
}
}
if ((stte->s->flags & MUTT_DISPLAY) && j == RICH_COLOR)
{
enriched_puts("\033[0m", stte);
}
/* flush parameter buffer when closing the tag */
if (j == RICH_PARAM)
{
stte->param_used = 0;
stte->param[0] = (wchar_t) '\0';
}
}
else
stte->tag_level[j]++;
if (j == RICH_EXCERPT)
enriched_flush(stte, 1);
}
}
static int text_enriched_handler (BODY *a, STATE *s)
{
enum {
TEXT, LANGLE, TAG, BOGUS_TAG, NEWLINE, ST_EOF, DONE
} state = TEXT;
long bytes = a->length;
struct enriched_state stte;
wchar_t wc = 0;
int tag_len = 0;
wchar_t tag[LONG_STRING + 1];
memset (&stte, 0, sizeof (stte));
stte.s = s;
stte.WrapMargin = ((s->flags & MUTT_DISPLAY) ? (MuttIndexWindow->cols-4) :
((MuttIndexWindow->cols-4)<72)?(MuttIndexWindow->cols-4):72);
stte.line_max = stte.WrapMargin * 4;
stte.line = (wchar_t *) safe_calloc (1, (stte.line_max + 1) * sizeof (wchar_t));
stte.param = (wchar_t *) safe_calloc (1, (STRING) * sizeof (wchar_t));
stte.param_len = STRING;
stte.param_used = 0;
if (s->prefix)
{
state_puts (s->prefix, s);
stte.indent_len += mutt_strlen (s->prefix);
}
while (state != DONE)
{
if (state != ST_EOF)
{
if (!bytes || (wc = fgetwc (s->fpin)) == WEOF)
state = ST_EOF;
else
bytes--;
}
switch (state)
{
case TEXT :
switch (wc)
{
case '<' :
state = LANGLE;
break;
case '\n' :
if (stte.tag_level[RICH_NOFILL])
{
enriched_flush (&stte, 1);
}
else
{
enriched_putwc ((wchar_t) ' ', &stte);
state = NEWLINE;
}
break;
default:
enriched_putwc (wc, &stte);
}
break;
case LANGLE :
if (wc == (wchar_t) '<')
{
enriched_putwc (wc, &stte);
state = TEXT;
break;
}
else
{
tag_len = 0;
state = TAG;
}
/* fall through */
/* it wasn't a <<, so this char is first in TAG */
case TAG :
if (wc == (wchar_t) '>')
{
tag[tag_len] = (wchar_t) '\0';
enriched_set_flags (tag, &stte);
state = TEXT;
}
else if (tag_len < LONG_STRING) /* ignore overly long tags */
tag[tag_len++] = wc;
else
state = BOGUS_TAG;
break;
case BOGUS_TAG :
if (wc == (wchar_t) '>')
state = TEXT;
break;
case NEWLINE :
if (wc == (wchar_t) '\n')
enriched_flush (&stte, 1);
else
{
ungetwc (wc, s->fpin);
bytes++;
state = TEXT;
}
break;
case ST_EOF :
enriched_putwc ((wchar_t) '\0', &stte);
enriched_flush (&stte, 1);
state = DONE;
break;
case DONE: /* not reached, but gcc complains if this is absent */
break;
}
}
state_putc ('\n', s); /* add a final newline */
FREE (&(stte.buffer));
FREE (&(stte.line));
FREE (&(stte.param));
return 0;
}
/* for compatibility with metamail */
static int is_mmnoask (const char *buf)
{
char tmp[LONG_STRING], *p, *q;
int lng;
if ((p = getenv ("MM_NOASK")) != NULL && *p)
{
if (mutt_strcmp (p, "1") == 0)
return (1);
strfcpy (tmp, p, sizeof (tmp));
p = tmp;
while ((p = strtok (p, ",")) != NULL)
{
if ((q = strrchr (p, '/')) != NULL)
{
if (*(q+1) == '*')
{
if (ascii_strncasecmp (buf, p, q-p) == 0)
return (1);
}
else
{
if (ascii_strcasecmp (buf, p) == 0)
return (1);
}
}
else
{
lng = mutt_strlen (p);
if (buf[lng] == '/' && mutt_strncasecmp (buf, p, lng) == 0)
return (1);
}
p = NULL;
}
}
return (0);
}
/*
* Returns:
* 1 if the body part should be filtered by a mailcap entry prior to viewing inline.
*
* 0 otherwise
*/
static int mutt_is_autoview (BODY *b)
{
char type[STRING];
int is_autoview = 0;
snprintf (type, sizeof (type), "%s/%s", TYPE (b), b->subtype);
if (option(OPTIMPLICITAUTOVIEW))
{
/* $implicit_autoview is essentially the same as "auto_view *" */
is_autoview = 1;
}
else
{
/* determine if this type is on the user's auto_view list */
LIST *t = AutoViewList;
mutt_check_lookup_list (b, type, sizeof (type));
for (; t; t = t->next)
{
int i = mutt_strlen (t->data) - 1;
if ((i > 0 && t->data[i-1] == '/' && t->data[i] == '*' &&
ascii_strncasecmp (type, t->data, i) == 0) ||
ascii_strcasecmp (type, t->data) == 0)
is_autoview = 1;
}
if (is_mmnoask (type))
is_autoview = 1;
}
/* determine if there is a mailcap entry suitable for auto_view
*
* WARNING: type is altered by this call as a result of `mime_lookup' support */
if (is_autoview)
return rfc1524_mailcap_lookup(b, type, sizeof(type), NULL, MUTT_AUTOVIEW);
return 0;
}
#define TXTHTML 1
#define TXTPLAIN 2
#define TXTENRICHED 3
static int alternative_handler (BODY *a, STATE *s)
{
BODY *choice = NULL;
BODY *b;
LIST *t;
int type = 0;
int mustfree = 0;
int rc = 0;
if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
a->encoding == ENCUUENCODED)
{
struct stat st;
mustfree = 1;
fstat (fileno (s->fpin), &st);
b = mutt_new_body ();
b->length = (long) st.st_size;
b->parts = mutt_parse_multipart (s->fpin,
mutt_get_parameter ("boundary", a->parameter),
(long) st.st_size,
ascii_strcasecmp ("digest", a->subtype) == 0);
}
else
b = a;
a = b;
/* First, search list of preferred types */
t = AlternativeOrderList;
while (t && !choice)
{
char *c;
int btlen; /* length of basetype */
int wild; /* do we have a wildcard to match all subtypes? */
c = strchr (t->data, '/');
if (c)
{
wild = (c[1] == '*' && c[2] == 0);
btlen = c - t->data;
}
else
{
wild = 1;
btlen = mutt_strlen (t->data);
}
if (a && a->parts)
b = a->parts;
else
b = a;
while (b)
{
const char *bt = TYPE(b);
if (!ascii_strncasecmp (bt, t->data, btlen) && bt[btlen] == 0)
{
/* the basetype matches */
if (wild || !ascii_strcasecmp (t->data + btlen + 1, b->subtype))
{
choice = b;
}
}
b = b->next;
}
t = t->next;
}
/* Next, look for an autoviewable type */
if (!choice)
{
if (a && a->parts)
b = a->parts;
else
b = a;
while (b)
{
if (mutt_is_autoview (b))
choice = b;
b = b->next;
}
}
/* Then, look for a text entry */
if (!choice)
{
if (a && a->parts)
b = a->parts;
else
b = a;
while (b)
{
if (b->type == TYPETEXT)
{
if (! ascii_strcasecmp ("plain", b->subtype) && type <= TXTPLAIN)
{
choice = b;
type = TXTPLAIN;
}
else if (! ascii_strcasecmp ("enriched", b->subtype) && type <= TXTENRICHED)
{
choice = b;
type = TXTENRICHED;
}
else if (! ascii_strcasecmp ("html", b->subtype) && type <= TXTHTML)
{
choice = b;
type = TXTHTML;
}
}
b = b->next;
}
}
/* Finally, look for other possibilities */
if (!choice)
{
if (a && a->parts)
b = a->parts;
else
b = a;
while (b)
{
if (mutt_can_decode (b))
choice = b;
b = b->next;
}
}
if (choice)
{
if (s->flags & MUTT_DISPLAY && !option (OPTWEED))
{
fseeko (s->fpin, choice->hdr_offset, 0);
mutt_copy_bytes(s->fpin, s->fpout, choice->offset-choice->hdr_offset);
}
mutt_body_handler (choice, s);
}
else if (s->flags & MUTT_DISPLAY)
{
/* didn't find anything that we could display! */
state_mark_attach (s);
state_puts(_("[-- Error: Could not display any parts of Multipart/Alternative! --]\n"), s);
rc = 1;
}
if (mustfree)
mutt_free_body(&a);
return rc;
}
/* handles message/rfc822 body parts */
static int message_handler (BODY *a, STATE *s)
{
struct stat st;
BODY *b;
LOFF_T off_start;
int rc = 0;
off_start = ftello (s->fpin);
if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
a->encoding == ENCUUENCODED)
{
fstat (fileno (s->fpin), &st);
b = mutt_new_body ();
b->length = (LOFF_T) st.st_size;
b->parts = mutt_parse_messageRFC822 (s->fpin, b);
}
else
b = a;
if (b->parts)
{
mutt_copy_hdr (s->fpin, s->fpout, off_start, b->parts->offset,
(((s->flags & MUTT_WEED) || ((s->flags & (MUTT_DISPLAY|MUTT_PRINTING)) && option (OPTWEED))) ? (CH_WEED | CH_REORDER) : 0) |
(s->prefix ? CH_PREFIX : 0) | CH_DECODE | CH_FROM |
((s->flags & MUTT_DISPLAY) ? CH_DISPLAY : 0), s->prefix);
if (s->prefix)
state_puts (s->prefix, s);
state_putc ('\n', s);
rc = mutt_body_handler (b->parts, s);
}
if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
a->encoding == ENCUUENCODED)
mutt_free_body (&b);
return rc;
}
/* returns 1 if decoding the attachment will produce output */
int mutt_can_decode (BODY *a)
{
if (mutt_is_autoview (a))
return 1;
else if (a->type == TYPETEXT)
return (1);
else if (a->type == TYPEMESSAGE)
return (1);
else if (a->type == TYPEMULTIPART)
{
BODY *p;
if (WithCrypto)
{
if (ascii_strcasecmp (a->subtype, "signed") == 0 ||
ascii_strcasecmp (a->subtype, "encrypted") == 0)
return (1);
}
for (p = a->parts; p; p = p->next)
{
if (mutt_can_decode (p))
return (1);
}
}
else if (WithCrypto && a->type == TYPEAPPLICATION)
{
if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp(a))
return (1);
if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime(a))
return (1);
}
return (0);
}
static int multipart_handler (BODY *a, STATE *s)
{
BODY *b, *p;
char length[5];
struct stat st;
int count;
int rc = 0;
if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
a->encoding == ENCUUENCODED)
{
fstat (fileno (s->fpin), &st);
b = mutt_new_body ();
b->length = (long) st.st_size;
b->parts = mutt_parse_multipart (s->fpin,
mutt_get_parameter ("boundary", a->parameter),
(long) st.st_size,
ascii_strcasecmp ("digest", a->subtype) == 0);
}
else
b = a;
for (p = b->parts, count = 1; p; p = p->next, count++)
{
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s, _("[-- Attachment #%d"), count);
if (p->description || p->filename || p->form_name)
{
state_puts (": ", s);
state_puts (p->description ? p->description :
p->filename ? p->filename : p->form_name, s);
}
state_puts (" --]\n", s);
mutt_pretty_size (length, sizeof (length), p->length);
state_mark_attach (s);
state_printf (s, _("[-- Type: %s/%s, Encoding: %s, Size: %s --]\n"),
TYPE (p), p->subtype, ENCODING (p->encoding), length);
if (!option (OPTWEED))
{
fseeko (s->fpin, p->hdr_offset, 0);
mutt_copy_bytes(s->fpin, s->fpout, p->offset-p->hdr_offset);
}
else
state_putc ('\n', s);
}
rc = mutt_body_handler (p, s);
state_putc ('\n', s);
if (rc)
{
mutt_error (_("One or more parts of this message could not be displayed"));
dprint (1, (debugfile, "Failed on attachment #%d, type %s/%s.\n", count, TYPE(p), NONULL (p->subtype)));
}
if ((s->flags & MUTT_REPLYING)
&& (option (OPTINCLUDEONLYFIRST)) && (s->flags & MUTT_FIRSTDONE))
break;
}
if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
a->encoding == ENCUUENCODED)
mutt_free_body (&b);
/* make failure of a single part non-fatal */
if (rc < 0)
rc = 1;
return rc;
}
static int autoview_handler (BODY *a, STATE *s)
{
rfc1524_entry *entry = rfc1524_new_entry ();
char buffer[LONG_STRING];
char type[STRING];
BUFFER *command = NULL;
BUFFER *tempfile = NULL;
char *fname;
FILE *fpin = NULL;
FILE *fpout = NULL;
FILE *fperr = NULL;
int piped = FALSE;
pid_t thepid;
int rc = 0;
command = mutt_buffer_pool_get ();
tempfile = mutt_buffer_pool_get ();
snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
rfc1524_mailcap_lookup (a, type, sizeof(type), entry, MUTT_AUTOVIEW);
fname = safe_strdup (a->filename);
mutt_sanitize_filename (fname, 1);
mutt_rfc1524_expand_filename (entry->nametemplate, fname, tempfile);
FREE (&fname);
if (entry->command)
{
mutt_buffer_strcpy (command, entry->command);
/* rfc1524_expand_command returns 0 if the file is required */
piped = mutt_rfc1524_expand_command (a, mutt_b2s (tempfile), type, command);
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s, _("[-- Autoview using %s --]\n"), mutt_b2s (command));
mutt_message(_("Invoking autoview command: %s"), mutt_b2s (command));
}
if ((fpin = safe_fopen (mutt_b2s (tempfile), "w+")) == NULL)
{
mutt_perror ("fopen");
rc = -1;
goto cleanup;
}
mutt_copy_bytes (s->fpin, fpin, a->length);
if (!piped)
{
safe_fclose (&fpin);
thepid = mutt_create_filter (mutt_b2s (command), NULL, &fpout, &fperr);
}
else
{
unlink (mutt_b2s (tempfile));
fflush (fpin);
rewind (fpin);
thepid = mutt_create_filter_fd (mutt_b2s (command), NULL, &fpout, &fperr,
fileno(fpin), -1, -1);
}
if (thepid < 0)
{
mutt_perror _("Can't create filter");
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s, _("[-- Can't run %s. --]\n"), mutt_b2s (command));
}
rc = 1;
goto bail;
}
if (s->prefix)
{
/* Remove ansi and formatting from autoview output in replies only.
* The user may want to see the formatting in the pager, but it
* shouldn't be in their quoted reply text too.
*/
BUFFER *stripped = mutt_buffer_pool_get ();
while (fgets (buffer, sizeof(buffer), fpout) != NULL)
{
mutt_buffer_strip_formatting (stripped, buffer, 0);
state_puts (s->prefix, s);
state_puts (mutt_b2s (stripped), s);
}
mutt_buffer_pool_release (&stripped);
/* check for data on stderr */
if (fgets (buffer, sizeof(buffer), fperr))
{
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s, _("[-- Autoview stderr of %s --]\n"), mutt_b2s (command));
}
state_puts (s->prefix, s);
state_puts (buffer, s);
while (fgets (buffer, sizeof(buffer), fperr) != NULL)
{
state_puts (s->prefix, s);
state_puts (buffer, s);
}
}
}
else
{
mutt_copy_stream (fpout, s->fpout);
/* Check for stderr messages */
if (fgets (buffer, sizeof(buffer), fperr))
{
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s, _("[-- Autoview stderr of %s --]\n"),
mutt_b2s (command));
}
state_puts (buffer, s);
mutt_copy_stream (fperr, s->fpout);
}
}
bail:
safe_fclose (&fpout);
safe_fclose (&fperr);
mutt_wait_filter (thepid);
if (piped)
safe_fclose (&fpin);
else
mutt_unlink (mutt_b2s (tempfile));
if (s->flags & MUTT_DISPLAY)
mutt_clear_error ();
}
cleanup:
rfc1524_free_entry (&entry);
mutt_buffer_pool_release (&command);
mutt_buffer_pool_release (&tempfile);
return rc;
}
static int external_body_handler (BODY *b, STATE *s)
{
const char *access_type;
const char *expiration;
time_t expire;
access_type = mutt_get_parameter ("access-type", b->parameter);
if (!access_type)
{
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_puts (_("[-- Error: message/external-body has no access-type parameter --]\n"), s);
return 0;
}
else
return -1;
}
expiration = mutt_get_parameter ("expiration", b->parameter);
if (expiration)
expire = mutt_parse_date (expiration, NULL);
else
expire = -1;
if (!ascii_strcasecmp (access_type, "x-mutt-deleted"))
{
if (s->flags & (MUTT_DISPLAY|MUTT_PRINTING))
{
char *length;
char pretty_size[10];
state_mark_attach (s);
state_printf (s, _("[-- This %s/%s attachment "),
TYPE(b->parts), b->parts->subtype);
length = mutt_get_parameter ("length", b->parameter);
if (length)
{
mutt_pretty_size (pretty_size, sizeof (pretty_size),
strtol (length, NULL, 10));
state_printf (s, _("(size %s bytes) "), pretty_size);
}
state_puts (_("has been deleted --]\n"), s);
if (expire != -1)
{
state_mark_attach (s);
state_printf (s, _("[-- on %s --]\n"), expiration);
}
if (b->parts->filename)
{
state_mark_attach (s);
state_printf (s, _("[-- name: %s --]\n"), b->parts->filename);
}
mutt_copy_hdr (s->fpin, s->fpout, ftello (s->fpin), b->parts->offset,
(option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
CH_DECODE , NULL);
}
}
else if (expiration && expire < time(NULL))
{
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s, _("[-- This %s/%s attachment is not included, --]\n"),
TYPE(b->parts), b->parts->subtype);
state_attach_puts (_("[-- and the indicated external source has --]\n"
"[-- expired. --]\n"), s);
mutt_copy_hdr(s->fpin, s->fpout, ftello (s->fpin), b->parts->offset,
(option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
CH_DECODE | CH_DISPLAY, NULL);
}
}
else
{
if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
state_printf (s,
_("[-- This %s/%s attachment is not included, --]\n"),
TYPE (b->parts), b->parts->subtype);
state_mark_attach (s);
state_printf (s,
_("[-- and the indicated access-type %s is unsupported --]\n"),
access_type);
mutt_copy_hdr (s->fpin, s->fpout, ftello (s->fpin), b->parts->offset,
(option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
CH_DECODE | CH_DISPLAY, NULL);
}
}
return 0;
}
void mutt_decode_attachment (BODY *b, STATE *s)
{
int istext = mutt_is_text_part (b);
iconv_t cd = (iconv_t)(-1);
if (istext && s->flags & MUTT_CHARCONV)
{
char *charset = mutt_get_parameter ("charset", b->parameter);
if (!charset && AssumedCharset)
charset = mutt_get_default_charset ();
if (charset && Charset)
cd = mutt_iconv_open (Charset, charset, MUTT_ICONV_HOOK_FROM);
}
else if (istext && b->charset)
cd = mutt_iconv_open (Charset, b->charset, MUTT_ICONV_HOOK_FROM);
fseeko (s->fpin, b->offset, 0);
switch (b->encoding)
{
case ENCQUOTEDPRINTABLE:
mutt_decode_quoted (s, b->length, istext || ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b)), cd);
break;
case ENCBASE64:
mutt_decode_base64 (s, b->length, istext || ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b)), cd);
break;
case ENCUUENCODED:
mutt_decode_uuencoded (s, b->length, istext || ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b)), cd);
break;
default:
mutt_decode_xbit (s, b->length, istext || ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b)), cd);
break;
}
if (cd != (iconv_t)(-1))
iconv_close (cd);
}
/* when generating format=flowed ($text_flowed is set) from format=fixed,
* strip all trailing spaces to improve interoperability;
* if $text_flowed is unset, simply verbatim copy input
*/
static int text_plain_handler (BODY *b, STATE *s)
{
char *buf = NULL;
size_t l = 0, sz = 0;
while ((buf = mutt_read_line (buf, &sz, s->fpin, NULL, 0)))
{
if (mutt_strcmp (buf, "-- ") != 0 && option (OPTTEXTFLOWED))
{
l = mutt_strlen (buf);
while (l > 0 && buf[l-1] == ' ')
buf[--l] = 0;
}
if (s->prefix)
state_puts (s->prefix, s);
state_puts (buf, s);
state_putc ('\n', s);
}
FREE (&buf);
return 0;
}
static int run_decode_and_handler (BODY *b, STATE *s, handler_t handler, int plaintext)
{
int origType;
char *savePrefix = NULL;
FILE *fp = NULL;
BUFFER *tempfile = NULL;
size_t tmplength = 0;
LOFF_T tmpoffset = 0;
int decode = 0;
int rc = 0;
fseeko (s->fpin, b->offset, 0);
/* see if we need to decode this part before processing it */
if (b->encoding == ENCBASE64 || b->encoding == ENCQUOTEDPRINTABLE ||
b->encoding == ENCUUENCODED || plaintext ||
mutt_is_text_part (b)) /* text subtypes may
* require character
* set conversion even
* with 8bit encoding.
*/
{
origType = b->type;
if (!plaintext)
{
/* decode to a tempfile, saving the original destination */
fp = s->fpout;
tempfile = mutt_buffer_pool_get ();
mutt_buffer_mktemp (tempfile);
if ((s->fpout = safe_fopen (mutt_b2s (tempfile), "w")) == NULL)
{
mutt_error _("Unable to open temporary file!");
dprint (1, (debugfile, "Can't open %s.\n", mutt_b2s (tempfile)));
mutt_buffer_pool_release (&tempfile);
return -1;
}
/* decoding the attachment changes the size and offset, so save a copy
* of the "real" values now, and restore them after processing
*/
tmplength = b->length;
tmpoffset = b->offset;
/* if we are decoding binary bodies, we don't want to prefix each
* line with the prefix or else the data will get corrupted.
*/
savePrefix = s->prefix;
s->prefix = NULL;
decode = 1;
}
else
b->type = TYPETEXT;
mutt_decode_attachment (b, s);
if (decode)
{
b->length = ftello (s->fpout);
b->offset = 0;
safe_fclose (&s->fpout);
/* restore final destination and substitute the tempfile for input */
s->fpout = fp;
fp = s->fpin;
s->fpin = fopen (mutt_b2s (tempfile), "r");
unlink (mutt_b2s (tempfile));
mutt_buffer_pool_release (&tempfile);
/* restore the prefix */
s->prefix = savePrefix;
}
b->type = origType;
}
/* process the (decoded) body part */
if (handler)
{
rc = handler (b, s);
if (rc)
{
dprint (1, (debugfile, "Failed on attachment of type %s/%s.\n", TYPE(b), NONULL (b->subtype)));
}
if (decode)
{
b->length = tmplength;
b->offset = tmpoffset;
/* restore the original source stream */
safe_fclose (&s->fpin);
s->fpin = fp;
}
}
s->flags |= MUTT_FIRSTDONE;
return rc;
}
static int valid_pgp_encrypted_handler (BODY *b, STATE *s)
{
int rc;
BODY *octetstream;
octetstream = b->parts->next;
/* clear out any mime headers before the handler, so they can't be
* spoofed. */
mutt_free_envelope (&b->mime_headers);
mutt_free_envelope (&octetstream->mime_headers);
/* Some clients improperly encode the octetstream part. */
if (octetstream->encoding != ENC7BIT)
rc = run_decode_and_handler (octetstream, s, crypt_pgp_encrypted_handler, 0);
else
rc = crypt_pgp_encrypted_handler (octetstream, s);
b->goodsig |= octetstream->goodsig;
#ifdef USE_AUTOCRYPT
b->is_autocrypt |= octetstream->is_autocrypt;
#endif
/* Relocate protected headers onto the multipart/encrypted part */
if (!rc && octetstream->mime_headers)
{
b->mime_headers = octetstream->mime_headers;
octetstream->mime_headers = NULL;
}
return rc;
}
static int malformed_pgp_encrypted_handler (BODY *b, STATE *s)
{
int rc;
BODY *octetstream;
octetstream = b->parts->next->next;
/* clear out any mime headers before the handler, so they can't be
* spoofed. */
mutt_free_envelope (&b->mime_headers);
mutt_free_envelope (&octetstream->mime_headers);
/* exchange encodes the octet-stream, so re-run it through the decoder */
rc = run_decode_and_handler (octetstream, s, crypt_pgp_encrypted_handler, 0);
b->goodsig |= octetstream->goodsig;
#ifdef USE_AUTOCRYPT
b->is_autocrypt |= octetstream->is_autocrypt;
#endif
/* Relocate protected headers onto the multipart/encrypted part */
if (!rc && octetstream->mime_headers)
{
b->mime_headers = octetstream->mime_headers;
octetstream->mime_headers = NULL;
}
return rc;
}
int mutt_body_handler (BODY *b, STATE *s)
{
int plaintext = 0;
handler_t handler = NULL, encrypted_handler = NULL;
int rc = 0;
static unsigned short recurse_level = 0;
int oflags = s->flags;
if (recurse_level >= MUTT_MIME_MAX_DEPTH)
{
dprint (1, (debugfile, "mutt_body_handler: recurse level too deep. giving up!\n"));
return 1;
}
recurse_level++;
/* first determine which handler to use to process this part */
if (mutt_is_autoview (b))
{
handler = autoview_handler;
s->flags &= ~MUTT_CHARCONV;
}
else if (b->type == TYPETEXT)
{
if (ascii_strcasecmp ("plain", b->subtype) == 0)
{
/* avoid copying this part twice since removing the transfer-encoding is
* the only operation needed.
*/
if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b))
encrypted_handler = handler = crypt_pgp_application_pgp_handler;
else if (option(OPTREFLOWTEXT) && ascii_strcasecmp ("flowed", mutt_get_parameter ("format", b->parameter)) == 0)
handler = rfc3676_handler;
else
handler = text_plain_handler;
}
else if (ascii_strcasecmp ("enriched", b->subtype) == 0)
handler = text_enriched_handler;
else /* text body type without a handler */
plaintext = 1;
}
else if (b->type == TYPEMESSAGE)
{
if (mutt_is_message_type(b->type, b->subtype))
handler = message_handler;
else if (!ascii_strcasecmp ("delivery-status", b->subtype))
plaintext = 1;
else if (!ascii_strcasecmp ("external-body", b->subtype))
handler = external_body_handler;
}
else if (b->type == TYPEMULTIPART)
{
char *p;
if (ascii_strcasecmp ("alternative", b->subtype) == 0)
handler = alternative_handler;
else if (WithCrypto && ascii_strcasecmp ("signed", b->subtype) == 0)
{
p = mutt_get_parameter ("protocol", b->parameter);
if (!p)
mutt_error _("Error: multipart/signed has no protocol.");
else if (s->flags & MUTT_VERIFY)
handler = mutt_signed_handler;
}
else if (mutt_is_valid_multipart_pgp_encrypted (b))
encrypted_handler = handler = valid_pgp_encrypted_handler;
else if (mutt_is_malformed_multipart_pgp_encrypted (b))
encrypted_handler = handler = malformed_pgp_encrypted_handler;
if (!handler)
handler = multipart_handler;
if (b->encoding != ENC7BIT && b->encoding != ENC8BIT
&& b->encoding != ENCBINARY)
{
dprint (1, (debugfile, "Bad encoding type %d for multipart entity, "
"assuming 7 bit\n", b->encoding));
b->encoding = ENC7BIT;
}
}
else if (WithCrypto && b->type == TYPEAPPLICATION)
{
if (option (OPTDONTHANDLEPGPKEYS)
&& !ascii_strcasecmp("pgp-keys", b->subtype))
{
/* pass raw part through for key extraction */
plaintext = 1;
}
else if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b))
encrypted_handler = handler = crypt_pgp_application_pgp_handler;
else if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime(b))
encrypted_handler = handler = crypt_smime_application_smime_handler;
}
/* only respect disposition == attachment if we're not
displaying from the attachment menu (i.e. pager) */
if ((!option (OPTHONORDISP) || (b->disposition != DISPATTACH ||
option(OPTVIEWATTACH))) &&
(plaintext || handler))
{
/* Prevent encrypted attachments from being included in replies
* unless $include_encrypted is set. */
if ((s->flags & MUTT_REPLYING) &&
(s->flags & MUTT_FIRSTDONE) &&
encrypted_handler &&
!option (OPTINCLUDEENCRYPTED))
goto cleanup;
rc = run_decode_and_handler (b, s, handler, plaintext);
}
/* print hint to use attachment menu for disposition == attachment
if we're not already being called from there */
else if (s->flags & MUTT_DISPLAY)
{
state_mark_attach (s);
if (option (OPTHONORDISP) && b->disposition == DISPATTACH)
fputs (_("[-- This is an attachment "), s->fpout);
else
state_printf (s, _("[-- %s/%s is unsupported "), TYPE (b), b->subtype);
if (!option (OPTVIEWATTACH))
{
char keystroke[SHORT_STRING];
if (km_expand_key (keystroke, sizeof(keystroke),
km_find_func (MENU_PAGER, OP_VIEW_ATTACHMENTS)))
fprintf (s->fpout, _("(use '%s' to view this part)"), keystroke);
else
fputs (_("(need 'view-attachments' bound to key!)"), s->fpout);
}
fputs (" --]\n", s->fpout);
}
cleanup:
recurse_level--;
s->flags = oflags | (s->flags & MUTT_FIRSTDONE);
if (rc)
{
dprint (1, (debugfile, "Bailing on attachment of type %s/%s.\n", TYPE(b), NONULL (b->subtype)));
}
return rc;
}
|