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 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027
|
/* mhparse.c -- routines to parse the contents of MIME messages
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include "h/mh.h"
#include "sbr/pidwait.h"
#include "sbr/m_gmprot.h"
#include "sbr/m_getfld.h"
#include "sbr/read_yes_or_no_if_tty.h"
#include "sbr/concat.h"
#include "sbr/r1bindex.h"
#include "sbr/ruserpass.h"
#include "sbr/fmt_rfc2047.h"
#include "sbr/uprf.h"
#include "sbr/check_charset.h"
#include "sbr/getcpy.h"
#include "sbr/context_find.h"
#include "sbr/pidstatus.h"
#include "sbr/utils.h"
#include "sbr/arglist.h"
#include "sbr/error.h"
#include <fcntl.h>
#include "sbr/mts.h"
#include "h/tws.h"
#include "h/mime.h"
#include "h/mhparse.h"
#include "mhmisc.h"
#include "sbr/m_mktemp.h"
#include "mhfree.h"
#ifdef HAVE_ICONV
# include <iconv.h>
#endif /* HAVE_ICONV */
#include "sbr/base64.h"
#include "sbr/globals.h"
extern bool debugsw;
/*
* These are for mhfixmsg to:
* 1) Instruct parser not to detect invalid Content-Transfer-Encoding
* in a multipart.
* 2) Suppress the warning about bogus multipart content, and report it.
* 3) Suppress the warning about extraneous trailing ';' in header parameter
* lists.
*/
bool skip_mp_cte_check;
bool suppress_bogus_mp_content_warning;
bool bogus_mp_content;
bool suppress_extraneous_trailing_semicolon_warning;
/*
* By default, suppress warning about multiple MIME-Version header fields.
*/
bool suppress_multiple_mime_version_warning = true;
/* list of preferred type/subtype pairs, for -prefer */
mime_type_subtype mime_preference[NPREFS];
int npreferred;
/*
* Structures for TEXT messages
*/
struct k2v SubText[] = {
{ "plain", TEXT_PLAIN },
{ "richtext", TEXT_RICHTEXT }, /* defined in RFC 1341 */
{ "enriched", TEXT_ENRICHED }, /* defined in RFC 1896 */
{ NULL, TEXT_UNKNOWN } /* this one must be last! */
};
/* Charset[] removed -- yozo. Mon Oct 8 01:03:41 JST 2012 */
/*
* Structures for MULTIPART messages
*/
struct k2v SubMultiPart[] = {
{ "mixed", MULTI_MIXED },
{ "alternative", MULTI_ALTERNATE },
{ "digest", MULTI_DIGEST },
{ "parallel", MULTI_PARALLEL },
{ "related", MULTI_RELATED },
{ NULL, MULTI_UNKNOWN } /* this one must be last! */
};
/*
* Structures for MESSAGE messages
*/
struct k2v SubMessage[] = {
{ "rfc822", MESSAGE_RFC822 },
{ "external-body", MESSAGE_EXTERNAL },
{ NULL, MESSAGE_UNKNOWN } /* this one must be last! */
};
/*
* Structure for APPLICATION messages
*/
struct k2v SubApplication[] = {
{ "octet-stream", APPLICATION_OCTETS },
{ "postscript", APPLICATION_POSTSCRIPT },
{ NULL, APPLICATION_UNKNOWN } /* this one must be last! */
};
/*
* Mapping of names of CTE types in mhbuild directives
*/
static struct k2v EncodingType[] = {
{ "8bit", CE_8BIT },
{ "qp", CE_QUOTED },
{ "q-p", CE_QUOTED },
{ "quoted-printable", CE_QUOTED },
{ "b64", CE_BASE64 },
{ "base64", CE_BASE64 },
{ NULL, 0 },
};
/*
* static prototypes
*/
static CT get_content (FILE *, char *, int);
static int get_comment (const char *, const char *, char **, char **);
static int InitGeneric (CT);
static int InitText (CT);
static int InitMultiPart (CT);
static void reverse_parts (CT);
static void prefer_parts(CT ct);
static int InitMessage (CT);
static int InitApplication (CT);
static int init_encoding (CT, OpenCEFunc);
static unsigned long size_encoding (CT);
static int InitBase64 (CT);
static int openBase64 (CT, char **);
static int InitQuoted (CT);
static int openQuoted (CT, char **);
static int Init7Bit (CT);
static int openExternal (CT, CE, char **, int *);
static int InitFile (CT);
static int openFile (CT, char **);
static int InitFTP (CT);
static int openFTP (CT, char **);
static int InitMail (CT);
static int openMail (CT, char **);
static int get_leftover_mp_content (CT, int);
static int InitURL (CT);
static int openURL (CT, char **);
static int parse_header_attrs (const char *, const char *, char **, PM *,
PM *, char **);
static size_t param_len(PM, int, size_t, int *, int *, size_t *);
static size_t normal_param(PM, char *, size_t, size_t, size_t);
static int get_dispo (char *, CT, int);
struct str2init str2cts[] = {
{ "application", CT_APPLICATION, InitApplication },
{ "audio", CT_AUDIO, InitGeneric },
{ "image", CT_IMAGE, InitGeneric },
{ "message", CT_MESSAGE, InitMessage },
{ "multipart", CT_MULTIPART, InitMultiPart },
{ "text", CT_TEXT, InitText },
{ "video", CT_VIDEO, InitGeneric },
{ NULL, CT_EXTENSION, NULL }, /* these two must be last! */
{ NULL, CT_UNKNOWN, NULL },
};
struct str2init str2ces[] = {
{ "base64", CE_BASE64, InitBase64 },
{ "quoted-printable", CE_QUOTED, InitQuoted },
{ "8bit", CE_8BIT, Init7Bit },
{ "7bit", CE_7BIT, Init7Bit },
{ "binary", CE_BINARY, Init7Bit },
{ NULL, CE_EXTENSION, NULL }, /* these two must be last! */
{ NULL, CE_UNKNOWN, NULL },
};
/*
* NOTE WELL: si_key MUST NOT have value of NOTOK
*
* si_val is 1 if access method is anonymous.
*/
struct str2init str2methods[] = {
{ "afs", 1, InitFile },
{ "anon-ftp", 1, InitFTP },
{ "ftp", 0, InitFTP },
{ "local-file", 0, InitFile },
{ "mail-server", 0, InitMail },
{ "url", 0, InitURL },
{ NULL, 0, NULL }
};
/*
* Main entry point for parsing a MIME message or file.
* It returns the Content structure for the top level
* entity in the file.
*/
CT
parse_mime (char *file)
{
int is_stdin;
char buffer[BUFSIZ];
FILE *fp;
CT ct;
size_t n;
struct stat statbuf;
bogus_mp_content = false;
/*
* Check if file is actually standard input
*/
if ((is_stdin = !(strcmp (file, "-")))) {
char *tfile = m_mktemp2(NULL, invo_name, NULL, &fp);
if (tfile == NULL) {
advise("mhparse", "unable to create temporary file in %s",
get_temp_dir());
return NULL;
}
file = mh_xstrdup(tfile);
while ((n = fread(buffer, 1, sizeof(buffer), stdin)) > 0) {
if (fwrite(buffer, 1, n, fp) != n) {
(void) m_unlink (file);
advise (file, "error copying to temporary file");
return NULL;
}
}
fflush (fp);
if (ferror (stdin)) {
(void) m_unlink (file);
advise ("stdin", "error reading");
return NULL;
}
if (ferror (fp)) {
(void) m_unlink (file);
advise (file, "error writing");
return NULL;
}
fseek (fp, 0L, SEEK_SET);
} else if (stat (file, &statbuf) == -1) {
advise (file, "unable to stat");
return NULL;
} else if (S_ISDIR(statbuf.st_mode)) {
/* Don't try to parse a directory. */
inform("%s is a directory", file);
return NULL;
} else if ((fp = fopen (file, "r")) == NULL) {
advise (file, "unable to read");
return NULL;
}
if (!(ct = get_content (fp, file, 1))) {
if (is_stdin)
(void) m_unlink (file);
inform("unable to decode %s", file);
return NULL;
}
if (is_stdin)
ct->c_unlink = 1; /* temp file to remove */
ct->c_fp = NULL;
if (ct->c_end == 0L) {
fseek (fp, 0L, SEEK_END);
ct->c_end = ftell (fp);
}
if (ct->c_ctinitfnx && (*ct->c_ctinitfnx) (ct) == NOTOK) {
fclose (fp);
free_content (ct);
return NULL;
}
fclose (fp);
return ct;
}
/*
* Main routine for reading/parsing the headers
* of a message content.
*
* toplevel = 1 # we are at the top level of the message
* toplevel = 0 # we are inside message type or multipart type
* # other than multipart/digest
* toplevel = -1 # we are inside multipart/digest
* NB: on failure we will fclose(in)!
*/
static CT
get_content (FILE *in, char *file, int toplevel)
{
int compnum, state;
char buf[NMH_BUFSIZ], name[NAMESZ];
char *np, *vp;
CT ct;
HF hp;
m_getfld_state_t gstate;
/* allocate the content structure */
NEW0(ct);
ct->c_fp = in;
ct->c_file = mh_xstrdup(FENDNULL(file));
ct->c_begin = ftell (ct->c_fp) + 1;
/*
* Parse the header fields for this
* content into a linked list.
*/
gstate = m_getfld_state_init(in);
m_getfld_track_filepos2(&gstate);
for (compnum = 1;;) {
int bufsz = sizeof buf;
switch (state = m_getfld2(&gstate, name, buf, &bufsz)) {
case FLD:
case FLDPLUS:
compnum++;
/* get copies of the buffers */
np = mh_xstrdup(name);
vp = mh_xstrdup(buf);
/* if necessary, get rest of field */
while (state == FLDPLUS) {
bufsz = sizeof buf;
state = m_getfld2(&gstate, name, buf, &bufsz);
vp = add (buf, vp); /* add to previous value */
}
/* Now add the header data to the list */
add_header (ct, np, vp);
/* continue, to see if this isn't the last header field */
ct->c_begin = ftell (in) + 1;
continue;
case BODY:
/* There are two cases. The unusual one is when there is no
* blank line between the headers and the body. This is
* indicated by the name of the header starting with `:'.
*
* For both cases, normal first, `1' is the desired c_begin
* file position for the start of the body, and `2' is the
* file position when buf is returned.
*
* f o o : b a r \n \n b o d y \n bufsz = 6
* 1 2 move -5
* f o o : b a r \n b o d y \n bufsz = 4
* 1 2 move -4
*
* For the normal case, bufsz includes the
* header-terminating `\n', even though it is not in buf,
* but bufsz isn't affected when it's missing in the unusual
* case. */
if (name[0] == ':') {
ct->c_begin = ftell(in) - bufsz;
} else {
ct->c_begin = ftell (in) - (bufsz - 1);
}
break;
case FILEEOF:
ct->c_begin = ftell (in);
break;
case LENERR:
case FMTERR:
die("message format error in component #%d", compnum);
default:
die("getfld() returned %d", state);
}
/* break out of the loop */
break;
}
m_getfld_state_destroy (&gstate);
/*
* Read the content headers. We will parse the
* MIME related header fields into their various
* structures and set internal flags related to
* content type/subtype, etc.
*/
hp = ct->c_first_hf; /* start at first header field */
while (hp) {
/* Get MIME-Version field */
if (!strcasecmp (hp->name, VRSN_FIELD)) {
int ucmp;
char c, *cp, *dp;
char *vrsn;
vrsn = mh_xstrdup(FENDNULL(hp->value));
/* Now, cleanup this field */
cp = vrsn;
while (isspace ((unsigned char) *cp))
cp++;
for (dp = strchr(cp, '\n'); dp; dp = strchr(dp, '\n'))
*dp++ = ' ';
for (dp = cp + strlen (cp) - 1; dp >= cp; dp--)
if (!isspace ((unsigned char) *dp))
break;
*++dp = '\0';
if (debugsw)
fprintf (stderr, "%s: %s\n", VRSN_FIELD, cp);
if (*cp == '(' &&
get_comment (ct->c_file, VRSN_FIELD, &cp, NULL) == NOTOK)
goto out;
for (dp = cp; istoken (*dp); dp++)
continue;
c = *dp;
*dp = '\0';
ucmp = !strcasecmp (cp, VRSN_VALUE);
*dp = c;
if (!ucmp) {
inform("message %s has unknown value for %s: field (%s), continuing...",
ct->c_file, VRSN_FIELD, cp);
}
if (!ct->c_vrsn) {
ct->c_vrsn = vrsn;
} else {
if (! suppress_multiple_mime_version_warning)
inform("message %s has multiple %s: fields",
ct->c_file, VRSN_FIELD);
free(vrsn);
}
} else if (!strcasecmp (hp->name, TYPE_FIELD)) {
/* Get Content-Type field */
struct str2init *s2i;
CI ci = &ct->c_ctinfo;
/* Check if we've already seen a Content-Type header */
if (ct->c_ctline) {
inform("message %s has multiple %s: fields",
ct->c_file, TYPE_FIELD);
goto next_header;
}
/* Parse the Content-Type field */
if (get_ctinfo (hp->value, ct, 0) == NOTOK)
goto out;
/*
* Set the Init function and the internal
* flag for this content type.
*/
for (s2i = str2cts; s2i->si_key; s2i++)
if (!strcasecmp (ci->ci_type, s2i->si_key))
break;
if (!s2i->si_key && !uprf (ci->ci_type, "X-"))
s2i++;
ct->c_type = s2i->si_val;
ct->c_ctinitfnx = s2i->si_init;
} else if (!strcasecmp (hp->name, ENCODING_FIELD)) {
/* Get Content-Transfer-Encoding field */
char c, *cp, *dp;
struct str2init *s2i;
/*
* Check if we've already seen the
* Content-Transfer-Encoding field
*/
if (ct->c_celine) {
inform("message %s has multiple %s: fields",
ct->c_file, ENCODING_FIELD);
goto next_header;
}
/* get copy of this field */
ct->c_celine = cp = mh_xstrdup(FENDNULL(hp->value));
while (isspace ((unsigned char) *cp))
cp++;
for (dp = cp; istoken (*dp); dp++)
continue;
c = *dp;
*dp = '\0';
/*
* Find the internal flag and Init function
* for this transfer encoding.
*/
for (s2i = str2ces; s2i->si_key; s2i++)
if (!strcasecmp (cp, s2i->si_key))
break;
if (!s2i->si_key && !uprf (cp, "X-"))
s2i++;
*dp = c;
ct->c_encoding = s2i->si_val;
/* Call the Init function for this encoding */
if (s2i->si_init && (*s2i->si_init) (ct) == NOTOK)
goto out;
} else if (!strcasecmp (hp->name, ID_FIELD)) {
/* Get Content-ID field */
ct->c_id = add (hp->value, ct->c_id);
} else if (!strcasecmp (hp->name, DESCR_FIELD)) {
/* Get Content-Description field */
ct->c_descr = add (hp->value, ct->c_descr);
} else if (!strcasecmp (hp->name, DISPO_FIELD)) {
/* Get Content-Disposition field */
if (get_dispo(hp->value, ct, 0) == NOTOK)
goto out;
}
next_header:
hp = hp->next; /* next header field */
}
/*
* Check if we saw a Content-Type field.
* If not, then assign a default value for
* it, and the Init function.
*/
if (!ct->c_ctline) {
/*
* If we are inside a multipart/digest message,
* so default type is message/rfc822
*/
if (toplevel < 0) {
if (get_ctinfo ("message/rfc822", ct, 0) == NOTOK)
goto out;
ct->c_type = CT_MESSAGE;
ct->c_ctinitfnx = InitMessage;
} else {
/*
* Else default type is text/plain
*/
if (get_ctinfo ("text/plain", ct, 0) == NOTOK)
goto out;
ct->c_type = CT_TEXT;
ct->c_ctinitfnx = InitText;
}
}
/* Use default Transfer-Encoding, if necessary */
if (!ct->c_celine) {
ct->c_encoding = CE_7BIT;
Init7Bit (ct);
}
return ct;
out:
free_content (ct);
return NULL;
}
/*
* small routine to add header field to list
*/
int
add_header (CT ct, char *name, char *value)
{
HF hp;
/* allocate header field structure */
NEW(hp);
/* link data into header structure */
hp->name = name;
hp->value = value;
hp->next = NULL;
/* link header structure into the list */
if (ct->c_first_hf == NULL) {
ct->c_first_hf = hp; /* this is the first */
ct->c_last_hf = hp;
} else {
ct->c_last_hf->next = hp; /* add it to the end */
ct->c_last_hf = hp;
}
return 0;
}
/*
* small routine to remove first occurence, if any, from list of header fields
*/
bool
remove_header (CT ct, const char *name)
{
HF *hf;
bool found_name = false;
for (hf = &ct->c_first_hf; *hf; hf = &(*hf)->next) {
if (strcasecmp (name, (*hf)->name) == 0) {
found_name = true;
break;
}
}
if (found_name) {
HF remove = *hf;
free (remove->name);
free (remove->value);
*hf = remove->next;
free (remove);
return true;
} else {
return false;
}
}
/*
* Parse Content-Type line and (if `magic' is non-zero) mhbuild composition
* directives. Fills in the information of the CTinfo structure.
*/
int
get_ctinfo (char *cp, CT ct, int magic)
{
char *dp;
char c;
CI ci;
int status;
ci = &ct->c_ctinfo;
/* store copy of Content-Type line */
cp = ct->c_ctline = mh_xstrdup(FENDNULL(cp));
while (isspace ((unsigned char) *cp)) /* trim leading spaces */
cp++;
/* change newlines to spaces */
for (dp = strchr(cp, '\n'); dp; dp = strchr(dp, '\n'))
*dp++ = ' ';
/* trim trailing spaces */
for (dp = cp + strlen (cp) - 1; dp >= cp; dp--)
if (!isspace ((unsigned char) *dp))
break;
*++dp = '\0';
if (debugsw)
fprintf (stderr, "%s: %s\n", TYPE_FIELD, cp);
if (*cp == '(' && get_comment (ct->c_file, TYPE_FIELD, &cp,
&ci->ci_comment) == NOTOK)
return NOTOK;
for (dp = cp; istoken (*dp); dp++)
continue;
c = *dp;
*dp = '\0';
ci->ci_type = mh_xstrdup(cp); /* store content type */
*dp = c;
cp = dp;
if (!*ci->ci_type) {
inform("invalid %s: field in message %s (empty type)",
TYPE_FIELD, ct->c_file);
return NOTOK;
}
to_lower(ci->ci_type);
while (isspace ((unsigned char) *cp))
cp++;
if (*cp == '(' && get_comment (ct->c_file, TYPE_FIELD, &cp,
&ci->ci_comment) == NOTOK)
return NOTOK;
if (*cp != '/') {
if (magic) {
/* Only a few magic directives don't need a subtype. */
if (strcmp(ci->ci_type, "forw") &&
strcmp(ci->ci_type, "begin") &&
strcmp(ci->ci_type, "end")) {
inform("invalid content-type in message %s "
"(missing slash after \"%s\")", ct->c_file, ci->ci_type);
return NOTOK;
}
} else
ci->ci_subtype = mh_xstrdup("");
goto magic_skip;
}
cp++;
while (isspace ((unsigned char) *cp))
cp++;
if (*cp == '(' && get_comment (ct->c_file, TYPE_FIELD, &cp,
&ci->ci_comment) == NOTOK)
return NOTOK;
for (dp = cp; istoken (*dp); dp++)
continue;
c = *dp;
*dp = '\0';
ci->ci_subtype = mh_xstrdup(cp); /* store the content subtype */
*dp = c;
cp = dp;
if (!*ci->ci_subtype) {
inform("invalid %s: field in message %s (empty subtype for \"%s\")",
TYPE_FIELD, ct->c_file, ci->ci_type);
return NOTOK;
}
to_lower(ci->ci_subtype);
magic_skip:
while (isspace ((unsigned char) *cp))
cp++;
if (*cp == '(' && get_comment (ct->c_file, TYPE_FIELD, &cp,
&ci->ci_comment) == NOTOK)
return NOTOK;
if ((status = parse_header_attrs (ct->c_file, TYPE_FIELD, &cp,
&ci->ci_first_pm, &ci->ci_last_pm,
&ci->ci_comment)) != OK) {
return status == NOTOK ? NOTOK : OK;
}
/*
* Get any <Content-Id> given in buffer
*/
if (magic && *cp == '<') {
free(ct->c_id);
ct->c_id = NULL;
if (!(dp = strchr(ct->c_id = ++cp, '>'))) {
inform("invalid ID in message %s", ct->c_file);
return NOTOK;
}
c = *dp;
*dp = '\0';
if (*ct->c_id)
ct->c_id = concat ("<", ct->c_id, ">\n", NULL);
else
ct->c_id = NULL;
*dp++ = c;
cp = dp;
while (isspace ((unsigned char) *cp))
cp++;
}
/*
* Get any [Content-Description] given in buffer.
*/
if (magic && *cp == '[') {
ct->c_descr = ++cp;
for (dp = cp + strlen (cp) - 1; dp >= cp; dp--)
if (*dp == ']')
break;
if (dp < cp) {
inform("invalid description in message %s", ct->c_file);
ct->c_descr = NULL;
return NOTOK;
}
c = *dp;
*dp = '\0';
if (*ct->c_descr)
ct->c_descr = concat (ct->c_descr, "\n", NULL);
else
ct->c_descr = NULL;
*dp++ = c;
cp = dp;
while (isspace ((unsigned char) *cp))
cp++;
}
/*
* Get any {Content-Disposition} given in buffer.
*/
if (magic && *cp == '{') {
++cp;
for (dp = cp + strlen (cp) - 1; dp >= cp; dp--)
if (*dp == '}')
break;
if (dp < cp) {
inform("invalid disposition in message %s", ct->c_file);
ct->c_dispo = NULL;
return NOTOK;
}
c = *dp;
*dp = '\0';
if (get_dispo(cp, ct, 1) != OK)
return NOTOK;
*dp++ = c;
cp = dp;
while (isspace ((unsigned char) *cp))
cp++;
}
/*
* Get any extension directives (right now just the content transfer
* encoding, but maybe others) that we care about.
*/
if (magic && *cp == '*') {
/*
* See if it's a CTE we match on
*/
struct k2v *kv;
dp = ++cp;
while (*cp != '\0' && ! isspace((unsigned char) *cp))
cp++;
if (dp == cp) {
inform("invalid null transfer encoding specification");
return NOTOK;
}
if (*cp != '\0')
*cp++ = '\0';
ct->c_reqencoding = CE_UNKNOWN;
for (kv = EncodingType; kv->kv_key; kv++) {
if (strcasecmp(kv->kv_key, dp) == 0) {
ct->c_reqencoding = kv->kv_value;
break;
}
}
if (ct->c_reqencoding == CE_UNKNOWN) {
inform("invalid CTE specification: \"%s\"", dp);
return NOTOK;
}
while (isspace ((unsigned char) *cp))
cp++;
}
/*
* Check if anything is left over
*/
if (*cp) {
if (magic) {
ci->ci_magic = mh_xstrdup(cp);
/* If there is a Content-Disposition header and it doesn't
have a *filename=, extract it from the magic contents.
The r1bindex call skips any leading directory
components. */
if (ct->c_dispo_type &&
!get_param(ct->c_dispo_first, "filename", '_', 1)) {
add_param(&ct->c_dispo_first, &ct->c_dispo_last, "filename",
r1bindex(ci->ci_magic, '/'), 0);
}
} else
inform("extraneous information in message %s's %s: field\n"
" (%s)", ct->c_file, TYPE_FIELD, cp);
}
return OK;
}
/*
* Parse out a Content-Disposition header. A lot of this is cribbed from
* get_ctinfo().
*/
static int
get_dispo (char *cp, CT ct, int buildflag)
{
char *dp, *dispoheader;
char c;
int status;
/*
* Save the whole copy of the Content-Disposition header, unless we're
* processing a mhbuild directive. A NULL c_dispo will be a flag to
* mhbuild that the disposition header needs to be generated at that
* time.
*/
dispoheader = cp = mh_xstrdup(FENDNULL(cp));
while (isspace ((unsigned char) *cp)) /* trim leading spaces */
cp++;
/* change newlines to spaces */
for (dp = strchr(cp, '\n'); dp; dp = strchr(dp, '\n'))
*dp++ = ' ';
/* trim trailing spaces */
for (dp = cp + strlen (cp) - 1; dp >= cp; dp--)
if (!isspace ((unsigned char) *dp))
break;
*++dp = '\0';
if (debugsw)
fprintf (stderr, "%s: %s\n", DISPO_FIELD, cp);
if (*cp == '(' && get_comment (ct->c_file, DISPO_FIELD, &cp, NULL) ==
NOTOK) {
free(dispoheader);
return NOTOK;
}
for (dp = cp; istoken (*dp); dp++)
continue;
c = *dp;
*dp = '\0';
ct->c_dispo_type = mh_xstrdup(cp); /* store disposition type */
*dp = c;
cp = dp;
if (*cp == '(' && get_comment (ct->c_file, DISPO_FIELD, &cp, NULL) == NOTOK)
return NOTOK;
if ((status = parse_header_attrs (ct->c_file, DISPO_FIELD, &cp,
&ct->c_dispo_first, &ct->c_dispo_last,
NULL)) != OK) {
if (status == NOTOK) {
free(dispoheader);
return NOTOK;
}
} else if (*cp) {
inform("extraneous information in message %s's %s: field\n (%s)",
ct->c_file, DISPO_FIELD, cp);
}
if (buildflag)
free(dispoheader);
else
ct->c_dispo = dispoheader;
return OK;
}
static int
get_comment (const char *filename, const char *fieldname, char **ap,
char **commentp)
{
int i;
char *bp, *cp;
char c, buffer[BUFSIZ], *dp;
cp = *ap;
bp = buffer;
cp++;
for (i = 0;;) {
switch (c = *cp++) {
case '\0':
invalid:
inform("invalid comment in message %s's %s: field",
filename, fieldname);
return NOTOK;
case '\\':
*bp++ = c;
if ((c = *cp++) == '\0')
goto invalid;
*bp++ = c;
continue;
case '(':
i++;
/* FALLTHRU */
default:
*bp++ = c;
continue;
case ')':
if (--i < 0)
break;
*bp++ = c;
continue;
}
break;
}
*bp = '\0';
if (commentp) {
if ((dp = *commentp)) {
*commentp = concat (dp, " ", buffer, NULL);
free (dp);
} else {
*commentp = mh_xstrdup(buffer);
}
}
while (isspace ((unsigned char) *cp))
cp++;
*ap = cp;
return OK;
}
/*
* CONTENTS
*
* Handles content types audio, image, and video.
* There's not much to do right here.
*/
static int
InitGeneric (CT ct)
{
NMH_UNUSED (ct);
return OK; /* not much to do here */
}
/*
* TEXT
*/
static int
InitText (CT ct)
{
char buffer[BUFSIZ];
char *chset = NULL;
char *cp;
PM pm;
struct text *t;
CI ci = &ct->c_ctinfo;
/* check for missing subtype */
if (!*ci->ci_subtype)
ci->ci_subtype = add ("plain", ci->ci_subtype);
/* match subtype */
ct->c_subtype = ct_str_subtype (CT_TEXT, ci->ci_subtype);
/* allocate text character set structure */
NEW0(t);
ct->c_ctparams = (void *) t;
/* scan for charset parameter */
for (pm = ci->ci_first_pm; pm; pm = pm->pm_next)
if (!strcasecmp (pm->pm_name, "charset"))
break;
/* check if content specified a character set */
if (pm) {
chset = pm->pm_value;
t->tx_charset = CHARSET_SPECIFIED;
} else {
t->tx_charset = CHARSET_UNSPECIFIED;
}
/*
* If we can not handle character set natively,
* then check profile for string to modify the
* terminal or display method.
*
* termproc is for mhshow, though mhlist -debug prints it, too.
*/
if (chset != NULL && !check_charset (chset, strlen (chset))) {
snprintf (buffer, sizeof(buffer), "%s-charset-%s", invo_name, chset);
if ((cp = context_find (buffer)))
ct->c_termproc = mh_xstrdup(cp);
}
return OK;
}
/*
* MULTIPART
*/
static int
InitMultiPart (CT ct)
{
bool inout;
long last, pos;
char *cp, *dp;
PM pm;
char *bp;
char *bufp = NULL;
size_t buflen;
ssize_t gotlen;
struct multipart *m;
struct part *part, **next;
CI ci = &ct->c_ctinfo;
CT p;
FILE *fp;
/*
* The encoding for multipart messages must be either
* 7bit, 8bit, or binary (per RFC 2045).
*/
if (! skip_mp_cte_check && ct->c_encoding != CE_7BIT &&
ct->c_encoding != CE_8BIT && ct->c_encoding != CE_BINARY) {
/* Copy the Content-Transfer-Encoding header field body so we can
remove any trailing whitespace and leading blanks from it. */
char *cte = mh_xstrdup(ct->c_celine ? ct->c_celine : "(null)");
bp = cte + strlen (cte) - 1;
while (bp >= cte && isspace ((unsigned char) *bp)) *bp-- = '\0';
for (bp = cte; isblank((unsigned char)*bp); ++bp) continue;
inform("\"%s/%s\" type in message %s must be encoded in\n"
"7bit, 8bit, or binary, per RFC 2045 (6.4). "
"mhfixmsg -fixcte can fix it, or\n"
"manually edit the file and change the \"%s\"\n"
"Content-Transfer-Encoding to one of those. For now, continuing...",
ci->ci_type, ci->ci_subtype, ct->c_file, bp);
free (cte);
return NOTOK;
}
/* match subtype */
ct->c_subtype = ct_str_subtype (CT_MULTIPART, ci->ci_subtype);
/*
* Check for "boundary" parameter, which is
* required for multipart messages.
*/
bp = 0;
for (pm = ci->ci_first_pm; pm; pm = pm->pm_next) {
if (!strcasecmp (pm->pm_name, "boundary")) {
bp = pm->pm_value;
break;
}
}
/* complain if boundary parameter is missing */
if (!pm) {
inform("a \"boundary\" parameter is mandatory for \"%s/%s\" type in message %s's %s: field",
ci->ci_type, ci->ci_subtype, ct->c_file, TYPE_FIELD);
return NOTOK;
}
/* allocate primary structure for multipart info */
NEW0(m);
ct->c_ctparams = (void *) m;
/* check if boundary parameter contains only whitespace characters */
for (cp = bp; isspace ((unsigned char) *cp); cp++)
continue;
if (!*cp) {
inform("invalid \"boundary\" parameter for \"%s/%s\" type in message %s's %s: field",
ci->ci_type, ci->ci_subtype, ct->c_file, TYPE_FIELD);
return NOTOK;
}
/* remove trailing whitespace from boundary parameter */
for (cp = bp, dp = cp + strlen (cp) - 1; dp > cp; dp--)
if (!isspace ((unsigned char) *dp))
break;
*++dp = '\0';
/* record boundary separators */
m->mp_start = concat (bp, "\n", NULL);
m->mp_stop = concat (bp, "--\n", NULL);
if (!ct->c_fp && (ct->c_fp = fopen (ct->c_file, "r")) == NULL) {
advise (ct->c_file, "unable to open for reading");
return NOTOK;
}
fseek (fp = ct->c_fp, pos = ct->c_begin, SEEK_SET);
last = ct->c_end;
next = &m->mp_parts;
part = NULL;
inout = true;
while ((gotlen = getline(&bufp, &buflen, fp)) != -1) {
if (pos > last)
break;
pos += gotlen;
if (bufp[0] != '-' || bufp[1] != '-')
continue;
/*
* A bit of a lame hack; if this line ends in \r\n then replace
* the \r\n with just a \n so that the boundary markers will match
* up properly in case this uses "MS-DOS" line endings.
*/
if (gotlen > 2 && bufp[gotlen - 1] == '\n' &&
bufp[gotlen - 2] == '\r') {
/*
* Note we don't change getpos here, because it is used to
* calculate multipart offsets.
*/
bufp[gotlen - 2] = '\n';
bufp[gotlen - 1] = '\0';
}
/*
* Another lame hack: if this line is at the end of the part and doesn't
* end with a newline, at one to the buffer. This allows the parser to
* handle files that don't end with a newline.
*/
if (pos == last && bufp[strlen(bufp)-1] != 0x0a) {
bufp = add("\n", bufp);
}
if (inout) {
if (strcmp (bufp + 2, m->mp_start))
continue;
next_part:
NEW0(part);
*next = part;
next = &part->mp_next;
if (!(p = get_content (fp, ct->c_file,
ct->c_subtype == MULTI_DIGEST ? -1 : 0))) {
free(bufp);
ct->c_fp = NULL;
return NOTOK;
}
p->c_fp = NULL;
part->mp_part = p;
pos = p->c_begin;
fseek (fp, pos, SEEK_SET);
inout = false;
} else {
if (strcmp (bufp + 2, m->mp_start) == 0) {
inout = true;
end_part:
p = part->mp_part;
p->c_end = ftell(fp) - (gotlen + 1);
if (p->c_end < p->c_begin)
p->c_begin = p->c_end;
if (inout)
goto next_part;
goto last_part;
}
if (strcmp (bufp + 2, m->mp_stop) == 0)
goto end_part;
}
}
if (! suppress_bogus_mp_content_warning) {
inform("bogus multipart content in message %s", ct->c_file);
}
bogus_mp_content = true;
if (!inout && part) {
p = part->mp_part;
p->c_end = ct->c_end;
if (p->c_begin >= p->c_end) {
for (next = &m->mp_parts; *next != part;
next = &((*next)->mp_next))
continue;
*next = NULL;
free_content (p);
free(part);
}
}
last_part:
/* reverse the order of the parts for multipart/alternative */
if (ct->c_subtype == MULTI_ALTERNATE) {
reverse_parts (ct);
prefer_parts (ct);
}
/*
* label all subparts with part number, and
* then initialize the content of the subpart.
*/
{
int partnum;
char *pp;
char partnam[BUFSIZ];
if (ct->c_partno) {
snprintf (partnam, sizeof(partnam), "%s.", ct->c_partno);
pp = partnam + strlen (partnam);
} else {
pp = partnam;
}
for (part = m->mp_parts, partnum = 1; part;
part = part->mp_next, partnum++) {
p = part->mp_part;
sprintf (pp, "%d", partnum);
p->c_partno = mh_xstrdup(partnam);
/* initialize the content of the subparts */
if (p->c_ctinitfnx && (*p->c_ctinitfnx) (p) == NOTOK) {
free(bufp);
fclose (ct->c_fp);
ct->c_fp = NULL;
return NOTOK;
}
}
}
get_leftover_mp_content (ct, 1);
get_leftover_mp_content (ct, 0);
free(bufp);
fclose (ct->c_fp);
ct->c_fp = NULL;
return OK;
}
/*
* reverse the order of the parts of a multipart/alternative,
* presumably to put the "most favored" alternative first, for
* ease of choosing/displaying it later on. from a mail message on
* nmh-workers, from kenh:
* "Stock" MH 6.8.5 did not have a reverse_parts() function, but I
* see code in mhn that did the same thing... According to the RCS
* logs, that code was around from the initial checkin of mhn.c by
* John Romine in 1992, which is as far back as we have."
*/
static void
reverse_parts (CT ct)
{
struct multipart *m = (struct multipart *) ct->c_ctparams;
struct part *part;
struct part *next;
/* Reverse the order of its parts by walking the mp_parts list
and pushing each node to the front. */
for (part = m->mp_parts, m->mp_parts = NULL; part; part = next) {
next = part->mp_next;
part->mp_next = m->mp_parts;
m->mp_parts = part;
}
}
static void
move_preferred_part(CT ct, mime_type_subtype *pref)
{
struct multipart *m = (struct multipart *) ct->c_ctparams;
struct part *part, *prev, *head, *nhead, *ntail;
struct part h, n;
CI ci;
/* move the matching part(s) to the head of the list: walk the
* list of parts, move matching parts to a new list (maintaining
* their order), and finally, concatenate the old list onto the
* new.
*/
head = &h;
nhead = &n;
head->mp_next = m->mp_parts;
nhead->mp_next = NULL;
ntail = nhead;
prev = head;
part = head->mp_next;
while (part != NULL) {
ci = &part->mp_part->c_ctinfo;
if (!strcasecmp(ci->ci_type, pref->type) &&
(!pref->subtype ||
!strcasecmp(ci->ci_subtype, pref->subtype))) {
prev->mp_next = part->mp_next;
part->mp_next = NULL;
ntail->mp_next = part;
ntail = part;
part = prev->mp_next;
} else {
prev = part;
part = prev->mp_next;
}
}
ntail->mp_next = head->mp_next;
m->mp_parts = nhead->mp_next;
}
/*
* move parts that match the user's preferences (-prefer) to the head
* of the line. process preferences in reverse so first one given
* ends up first in line
*/
static void
prefer_parts(CT ct)
{
int i;
for (i = 0; i < npreferred; i++)
move_preferred_part(ct, mime_preference + i);
}
/* parse_mime() arranges alternates in reverse (priority) order. This
function can be used to reverse them back. This will put, for
example, a text/plain part before a text/html part in a
multipart/alternative part, for example, where it belongs. */
void
reverse_alternative_parts (CT ct)
{
if (ct->c_type == CT_MULTIPART) {
struct multipart *m = (struct multipart *) ct->c_ctparams;
struct part *part;
if (ct->c_subtype == MULTI_ALTERNATE) {
reverse_parts (ct);
}
/* And call recursively on each part of a multipart. */
for (part = m->mp_parts; part; part = part->mp_next) {
reverse_alternative_parts (part->mp_part);
}
}
}
/*
* MESSAGE
*/
static int
InitMessage (CT ct)
{
CI ci = &ct->c_ctinfo;
/* check for missing subtype */
if (!*ci->ci_subtype)
ci->ci_subtype = add ("rfc822", ci->ci_subtype);
/* match subtype */
ct->c_subtype = ct_str_subtype (CT_MESSAGE, ci->ci_subtype);
switch (ct->c_subtype) {
case MESSAGE_RFC822:
/* RFC 2046 § 5.2.1 allows only 7bit, 8bit, or binary encoding */
if (ct->c_encoding != CE_7BIT && ct->c_encoding != CE_8BIT &&
ct->c_encoding != CE_BINARY) {
inform("\"%s/%s\" type in message %s should be encoded in "
"7bit, 8bit, or binary continuing...",
ci->ci_type, ci->ci_subtype, ct->c_file);
return NOTOK;
}
break;
case MESSAGE_EXTERNAL:
{
int exresult;
struct exbody *e;
CT p;
FILE *fp;
/* RFC 2046 § 5.2.3 allows only 7bit encoding */
if (ct->c_encoding != CE_7BIT) {
inform("\"%s/%s\" type in message %s should be encoded in "
"7bit continuing...",
ci->ci_type, ci->ci_subtype, ct->c_file);
return NOTOK;
}
NEW0(e);
ct->c_ctparams = (void *) e;
if (!ct->c_fp
&& (ct->c_fp = fopen (ct->c_file, "r")) == NULL) {
advise (ct->c_file, "unable to open for reading");
return NOTOK;
}
fseek (fp = ct->c_fp, ct->c_begin, SEEK_SET);
if (!(p = get_content (fp, ct->c_file, 0))) {
ct->c_fp = NULL;
return NOTOK;
}
e->eb_parent = ct;
e->eb_content = p;
p->c_ctexbody = e;
p->c_ceopenfnx = NULL;
if ((exresult = params_external (ct, 0)) != NOTOK
&& p->c_ceopenfnx == openMail) {
int cc, size;
char *bp;
if ((size = ct->c_end - p->c_begin) <= 0) {
if (!e->eb_subject)
content_error (NULL, ct,
"empty body for access-type=mail-server");
goto no_body;
}
e->eb_body = bp = mh_xmalloc ((unsigned) size);
fseek (p->c_fp, p->c_begin, SEEK_SET);
while (size > 0)
switch (cc = fread (bp, sizeof(*bp), size, p->c_fp)) {
case NOTOK:
adios ("failed", "fread");
case OK:
die("unexpected EOF from fread");
default:
bp += cc, size -= cc;
break;
}
*bp = 0;
}
no_body:
p->c_fp = NULL;
p->c_end = p->c_begin;
fclose (ct->c_fp);
ct->c_fp = NULL;
if (exresult == NOTOK)
return NOTOK;
if (e->eb_flags == NOTOK)
return OK;
switch (p->c_type) {
case CT_MULTIPART:
break;
case CT_MESSAGE:
if (p->c_subtype != MESSAGE_RFC822)
break;
/* FALLTHRU */
default:
e->eb_partno = ct->c_partno;
if (p->c_ctinitfnx)
(*p->c_ctinitfnx) (p);
break;
}
}
break;
default:
/* Ignore message/partial because nmh doesn't support it.
RFC 2046 § 5.2.4 says that the encoding "should" be 7bit.
That's not "must", so allow any encoding. */
break;
}
return OK;
}
int
params_external (CT ct, int composing)
{
PM pm;
struct exbody *e = (struct exbody *) ct->c_ctparams;
CI ci = &ct->c_ctinfo;
ct->c_ceopenfnx = NULL;
for (pm = ci->ci_first_pm; pm; pm = pm->pm_next) {
if (!strcasecmp (pm->pm_name, "access-type")) {
struct str2init *s2i;
CT p = e->eb_content;
for (s2i = str2methods; s2i->si_key; s2i++)
if (!strcasecmp (pm->pm_value, s2i->si_key))
break;
if (!s2i->si_key) {
e->eb_access = pm->pm_value;
e->eb_flags = NOTOK;
p->c_encoding = CE_EXTERNAL;
continue;
}
e->eb_access = s2i->si_key;
e->eb_flags = s2i->si_val;
p->c_encoding = CE_EXTERNAL;
/* Call the Init function for this external type */
if ((*s2i->si_init)(p) == NOTOK)
return NOTOK;
continue;
}
if (!strcasecmp (pm->pm_name, "name")) {
e->eb_name = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "permission")) {
e->eb_permission = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "site")) {
e->eb_site = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "directory")) {
e->eb_dir = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "mode")) {
e->eb_mode = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "size")) {
sscanf (pm->pm_value, "%lu", &e->eb_size);
continue;
}
if (!strcasecmp (pm->pm_name, "server")) {
e->eb_server = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "subject")) {
e->eb_subject = pm->pm_value;
continue;
}
if (!strcasecmp (pm->pm_name, "url")) {
/*
* According to RFC 2017, we have to remove all whitespace from
* the URL
*/
char *u, *p = pm->pm_value;
e->eb_url = u = mh_xmalloc(strlen(pm->pm_value) + 1);
for (; *p != '\0'; p++) {
if (! isspace((unsigned char) *p))
*u++ = *p;
}
*u = '\0';
continue;
}
if (composing && !strcasecmp (pm->pm_name, "body")) {
e->eb_body = getcpy (pm->pm_value);
continue;
}
}
if (!e->eb_access) {
inform("invalid parameters for \"%s/%s\" type in message %s's %s field",
ci->ci_type, ci->ci_subtype, ct->c_file, TYPE_FIELD);
return NOTOK;
}
return OK;
}
/*
* APPLICATION
*/
static int
InitApplication (CT ct)
{
CI ci = &ct->c_ctinfo;
/* match subtype */
ct->c_subtype = ct_str_subtype (CT_APPLICATION, ci->ci_subtype);
return OK;
}
/*
* TRANSFER ENCODINGS
*/
static int
init_encoding (CT ct, OpenCEFunc openfnx)
{
ct->c_ceopenfnx = openfnx;
ct->c_ceclosefnx = close_encoding;
ct->c_cesizefnx = size_encoding;
return OK;
}
void
close_encoding (CT ct)
{
CE ce = &ct->c_cefile;
if (ce->ce_fp) {
fclose (ce->ce_fp);
ce->ce_fp = NULL;
}
}
static unsigned long
size_encoding (CT ct)
{
int fd;
unsigned long size;
char *file;
CE ce = &ct->c_cefile;
struct stat st;
if (ce->ce_fp && fstat (fileno (ce->ce_fp), &st) != -1)
return (long) st.st_size;
if (ce->ce_file) {
if (stat (ce->ce_file, &st) != -1)
return (long) st.st_size;
return 0L;
}
if (ct->c_encoding == CE_EXTERNAL)
return ct->c_end - ct->c_begin;
file = NULL;
if ((fd = (*ct->c_ceopenfnx) (ct, &file)) == NOTOK)
return ct->c_end - ct->c_begin;
if (fstat (fd, &st) != -1)
size = (long) st.st_size;
else
size = 0L;
(*ct->c_ceclosefnx) (ct);
return size;
}
/*
* BASE64
*/
static int
InitBase64 (CT ct)
{
return init_encoding (ct, openBase64);
}
static int
openBase64 (CT ct, char **file)
{
ssize_t cc, len;
int fd;
bool own_ct_fp = false;
char *cp, *buffer = NULL;
/* sbeck -- handle suffixes */
CI ci;
CE ce = &ct->c_cefile;
unsigned char *decoded;
size_t decoded_len;
if (ce->ce_fp) {
fseek (ce->ce_fp, 0L, SEEK_SET);
goto ready_to_go;
}
if (ce->ce_file) {
if ((ce->ce_fp = fopen (ce->ce_file, "r")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading");
return NOTOK;
}
goto ready_to_go;
}
if (*file == NULL) {
ce->ce_unlink = 1;
} else {
ce->ce_file = mh_xstrdup(*file);
ce->ce_unlink = 0;
}
/* sbeck@cise.ufl.edu -- handle suffixes */
ci = &ct->c_ctinfo;
if ((cp = context_find_by_type ("suffix", ci->ci_type, ci->ci_subtype))) {
if (ce->ce_unlink) {
/* Create temporary file with filename extension. */
if ((ce->ce_file = m_mktemps(invo_name, cp, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
} else {
ce->ce_file = add (cp, ce->ce_file);
}
} else if (*file == NULL) {
char *tempfile;
if ((tempfile = m_mktemp2(NULL, invo_name, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
ce->ce_file = mh_xstrdup(tempfile);
}
if ((ce->ce_fp = fopen (ce->ce_file, "w+")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading/writing");
return NOTOK;
}
if ((len = ct->c_end - ct->c_begin) < 0)
die("internal error(1)");
buffer = mh_xmalloc (len + 1);
if (! ct->c_fp) {
if ((ct->c_fp = fopen (ct->c_file, "r")) == NULL) {
content_error (ct->c_file, ct, "unable to open for reading");
return NOTOK;
}
own_ct_fp = true;
}
lseek (fd = fileno (ct->c_fp), (off_t) ct->c_begin, SEEK_SET);
cp = buffer;
while (len > 0) {
switch (cc = read (fd, cp, len)) {
case NOTOK:
content_error (ct->c_file, ct, "error reading from");
goto clean_up;
case OK:
content_error (NULL, ct, "premature eof");
goto clean_up;
default:
if (cc > len)
cc = len;
len -= cc;
cp += cc;
}
}
/* decodeBase64() requires null-terminated input. */
*cp = '\0';
if (decodeBase64 (buffer, &decoded, &decoded_len,
ct->c_type == CT_TEXT) != OK)
goto clean_up;
{
size_t i;
unsigned char *decoded_p = decoded;
for (i = 0; i < decoded_len; ++i) {
putc (*decoded_p++, ce->ce_fp);
}
free(decoded);
if (ferror (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
}
fseek (ct->c_fp, 0L, SEEK_SET);
if (fflush (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
fseek (ce->ce_fp, 0L, SEEK_SET);
ready_to_go:
*file = ce->ce_file;
if (own_ct_fp) {
fclose (ct->c_fp);
ct->c_fp = NULL;
}
free (buffer);
return fileno (ce->ce_fp);
clean_up:
if (own_ct_fp) {
fclose (ct->c_fp);
ct->c_fp = NULL;
}
free_encoding (ct, 0);
free (buffer);
return NOTOK;
}
/*
* QUOTED PRINTABLE
*/
static char hex2nib[0x80] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
static int
InitQuoted (CT ct)
{
return init_encoding (ct, openQuoted);
}
static int
openQuoted (CT ct, char **file)
{
int cc, len, quoted;
bool own_ct_fp = false;
char *cp, *ep;
char *bufp = NULL;
size_t buflen;
ssize_t gotlen;
unsigned char mask;
CE ce = &ct->c_cefile;
/* sbeck -- handle suffixes */
CI ci;
if (ce->ce_fp) {
fseek (ce->ce_fp, 0L, SEEK_SET);
goto ready_to_go;
}
if (ce->ce_file) {
if ((ce->ce_fp = fopen (ce->ce_file, "r")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading");
return NOTOK;
}
goto ready_to_go;
}
if (*file == NULL) {
ce->ce_unlink = 1;
} else {
ce->ce_file = mh_xstrdup(*file);
ce->ce_unlink = 0;
}
/* sbeck@cise.ufl.edu -- handle suffixes */
ci = &ct->c_ctinfo;
if ((cp = context_find_by_type ("suffix", ci->ci_type, ci->ci_subtype))) {
if (ce->ce_unlink) {
/* Create temporary file with filename extension. */
if ((ce->ce_file = m_mktemps(invo_name, cp, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
} else {
ce->ce_file = add (cp, ce->ce_file);
}
} else if (*file == NULL) {
char *tempfile;
if ((tempfile = m_mktemp2(NULL, invo_name, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
ce->ce_file = mh_xstrdup(tempfile);
}
if ((ce->ce_fp = fopen (ce->ce_file, "w+")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading/writing");
return NOTOK;
}
if ((len = ct->c_end - ct->c_begin) < 0)
die("internal error(2)");
if (! ct->c_fp) {
if ((ct->c_fp = fopen (ct->c_file, "r")) == NULL) {
content_error (ct->c_file, ct, "unable to open for reading");
return NOTOK;
}
own_ct_fp = true;
}
quoted = 0;
fseek (ct->c_fp, ct->c_begin, SEEK_SET);
while (len > 0) {
if ((gotlen = getline(&bufp, &buflen, ct->c_fp)) == -1) {
content_error (NULL, ct, "premature eof");
goto clean_up;
}
if ((cc = gotlen) > len)
cc = len;
len -= cc;
for (ep = (cp = bufp) + cc - 1; cp <= ep; ep--)
if (!isspace ((unsigned char) *ep))
break;
*++ep = '\n';
ep++;
for (; cp < ep; cp++) {
if (quoted > 0) {
/* in an escape sequence */
if (quoted == 1) {
/* at byte 1 of an escape sequence */
mask = hex2nib[((unsigned char) *cp) & 0x7f];
/* next is byte 2 */
quoted = 2;
} else {
/* at byte 2 of an escape sequence */
mask <<= 4;
mask |= hex2nib[((unsigned char) *cp) & 0x7f];
putc (mask, ce->ce_fp);
if (ferror (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
/* finished escape sequence; next may be literal or a new
* escape sequence */
quoted = 0;
}
/* on to next byte */
continue;
}
/* not in an escape sequence */
if (*cp == '=') {
/* starting an escape sequence, or invalid '='? */
if (cp + 1 < ep && cp[1] == '\n') {
/* "=\n" soft line break, eat the \n */
cp++;
continue;
}
if (cp + 1 >= ep || cp + 2 >= ep) {
/* We don't have 2 bytes left, so this is an invalid
* escape sequence; just show the raw bytes (below). */
} else if (isxdigit ((unsigned char) cp[1]) &&
isxdigit ((unsigned char) cp[2])) {
/* Next 2 bytes are hex digits, making this a valid escape
* sequence; let's decode it (above). */
quoted = 1;
continue;
}
/* One or both of the next 2 is out of range, making this
* an invalid escape sequence; just show the raw bytes
* (below). */
}
/* Just show the raw byte. */
putc (*cp, ce->ce_fp);
if (ferror (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
}
}
if (quoted) {
content_error (NULL, ct,
"invalid QUOTED-PRINTABLE encoding -- end-of-content while still quoting");
goto clean_up;
}
fseek (ct->c_fp, 0L, SEEK_SET);
if (fflush (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
fseek (ce->ce_fp, 0L, SEEK_SET);
ready_to_go:
*file = ce->ce_file;
if (own_ct_fp) {
fclose (ct->c_fp);
ct->c_fp = NULL;
}
free (bufp);
return fileno (ce->ce_fp);
clean_up:
free_encoding (ct, 0);
if (own_ct_fp) {
fclose (ct->c_fp);
ct->c_fp = NULL;
}
free (bufp);
return NOTOK;
}
/*
* 7BIT
*/
static int
Init7Bit (CT ct)
{
if (init_encoding (ct, open7Bit) == NOTOK)
return NOTOK;
ct->c_cesizefnx = NULL; /* no need to decode for real size */
return OK;
}
int
open7Bit (CT ct, char **file)
{
int cc, fd, len;
bool own_ct_fp = false;
char buffer[BUFSIZ];
/* sbeck -- handle suffixes */
char *cp;
CI ci;
CE ce = &ct->c_cefile;
if (ce->ce_fp) {
fseek (ce->ce_fp, 0L, SEEK_SET);
goto ready_to_go;
}
if (ce->ce_file) {
if ((ce->ce_fp = fopen (ce->ce_file, "r")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading");
return NOTOK;
}
goto ready_to_go;
}
if (*file == NULL) {
ce->ce_unlink = 1;
} else {
ce->ce_file = mh_xstrdup(*file);
ce->ce_unlink = 0;
}
/* sbeck@cise.ufl.edu -- handle suffixes */
ci = &ct->c_ctinfo;
if ((cp = context_find_by_type ("suffix", ci->ci_type, ci->ci_subtype))) {
if (ce->ce_unlink) {
/* Create temporary file with filename extension. */
if ((ce->ce_file = m_mktemps(invo_name, cp, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
} else {
ce->ce_file = add (cp, ce->ce_file);
}
} else if (*file == NULL) {
char *tempfile;
if ((tempfile = m_mktemp2(NULL, invo_name, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
ce->ce_file = mh_xstrdup(tempfile);
}
if ((ce->ce_fp = fopen (ce->ce_file, "w+")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading/writing");
return NOTOK;
}
if (ct->c_type == CT_MULTIPART) {
CI ci = &ct->c_ctinfo;
char *buffer;
len = 0;
fprintf (ce->ce_fp, "%s: %s/%s", TYPE_FIELD, ci->ci_type, ci->ci_subtype);
len += LEN(TYPE_FIELD) + 2 + strlen (ci->ci_type)
+ 1 + strlen (ci->ci_subtype);
buffer = output_params(len, ci->ci_first_pm, &len, 0);
if (buffer) {
fputs (buffer, ce->ce_fp);
free(buffer);
}
if (ci->ci_comment) {
if (len + 1 + (cc = 2 + strlen (ci->ci_comment)) >= CPERLIN) {
fputs ("\n\t", ce->ce_fp);
len = 8;
} else {
putc (' ', ce->ce_fp);
len++;
}
fprintf (ce->ce_fp, "(%s)", ci->ci_comment);
len += cc;
}
fprintf (ce->ce_fp, "\n");
if (ct->c_id)
fprintf (ce->ce_fp, "%s:%s", ID_FIELD, ct->c_id);
if (ct->c_descr)
fprintf (ce->ce_fp, "%s:%s", DESCR_FIELD, ct->c_descr);
if (ct->c_dispo)
fprintf (ce->ce_fp, "%s:%s", DISPO_FIELD, ct->c_dispo);
fprintf (ce->ce_fp, "\n");
}
if ((len = ct->c_end - ct->c_begin) < 0)
die("internal error(3)");
if (! ct->c_fp) {
if ((ct->c_fp = fopen (ct->c_file, "r")) == NULL) {
content_error (ct->c_file, ct, "unable to open for reading");
return NOTOK;
}
own_ct_fp = true;
}
lseek (fd = fileno (ct->c_fp), (off_t) ct->c_begin, SEEK_SET);
while (len > 0)
switch (cc = read (fd, buffer, sizeof(buffer) - 1)) {
case NOTOK:
content_error (ct->c_file, ct, "error reading from");
goto clean_up;
case OK:
content_error (NULL, ct, "premature eof");
goto clean_up;
default:
if (cc > len)
cc = len;
len -= cc;
if ((int) fwrite (buffer, sizeof(*buffer), cc, ce->ce_fp) < cc) {
advise ("open7Bit", "fwrite");
}
if (ferror (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
}
fseek (ct->c_fp, 0L, SEEK_SET);
if (fflush (ce->ce_fp)) {
content_error (ce->ce_file, ct, "error writing to");
goto clean_up;
}
fseek (ce->ce_fp, 0L, SEEK_SET);
ready_to_go:
*file = ce->ce_file;
if (own_ct_fp) {
fclose (ct->c_fp);
ct->c_fp = NULL;
}
return fileno (ce->ce_fp);
clean_up:
free_encoding (ct, 0);
if (own_ct_fp) {
fclose (ct->c_fp);
ct->c_fp = NULL;
}
return NOTOK;
}
/*
* External
*/
static int
openExternal (CT ct, CE ce, char **file, int *fd)
{
if (ce->ce_fp) {
fseek (ce->ce_fp, 0L, SEEK_SET);
goto ready_already;
}
if (ce->ce_file) {
if ((ce->ce_fp = fopen (ce->ce_file, "r")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading");
return NOTOK;
}
goto ready_already;
}
*fd = ce->ce_fp ? fileno (ce->ce_fp) : -1;
return OK;
ready_already:
*file = ce->ce_file;
*fd = fileno (ce->ce_fp);
return DONE;
}
/*
* File
*/
static int
InitFile (CT ct)
{
return init_encoding (ct, openFile);
}
static int
openFile (CT ct, char **file)
{
int fd;
struct exbody *e = ct->c_ctexbody;
CE ce = &ct->c_cefile;
switch (openExternal (e->eb_parent, ce, file, &fd)) {
case NOTOK:
return NOTOK;
case OK:
break;
case DONE:
return fd;
}
if (!e->eb_name) {
content_error (NULL, ct, "missing name parameter");
return NOTOK;
}
ce->ce_file = mh_xstrdup(e->eb_name);
ce->ce_unlink = 0;
if ((ce->ce_fp = fopen (ce->ce_file, "r")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading");
return NOTOK;
}
fseek (ce->ce_fp, 0L, SEEK_SET);
*file = ce->ce_file;
return fileno (ce->ce_fp);
}
/*
* FTP
*/
static int
InitFTP (CT ct)
{
return init_encoding (ct, openFTP);
}
static int
openFTP (CT ct, char **file)
{
int fd;
int len, buflen;
char *bp, *ftp, *user, *pass;
char buffer[BUFSIZ];
struct exbody *e;
CE ce = &ct->c_cefile;
static char *username = NULL;
static char *password = NULL;
e = ct->c_ctexbody;
if ((ftp = context_find (nmhaccessftp)) && !*ftp)
ftp = NULL;
if (!ftp)
return NOTOK;
switch (openExternal (e->eb_parent, ce, file, &fd)) {
case NOTOK:
return NOTOK;
case OK:
break;
case DONE:
return fd;
}
if (!e->eb_name || !e->eb_site) {
content_error (NULL, ct, "missing %s parameter",
e->eb_name ? "site": "name");
return NOTOK;
}
/* Get the buffer ready to go */
bp = buffer;
buflen = sizeof(buffer);
/*
* Construct the query message for user
*/
snprintf (bp, buflen, "Retrieve %s", e->eb_name);
len = strlen (bp);
bp += len;
buflen -= len;
if (e->eb_partno) {
snprintf (bp, buflen, " (content %s)", e->eb_partno);
len = strlen (bp);
bp += len;
buflen -= len;
}
snprintf (bp, buflen, "\n using %sFTP from site %s",
e->eb_flags ? "anonymous " : "", e->eb_site);
len = strlen (bp);
bp += len;
buflen -= len;
if (e->eb_size > 0) {
snprintf (bp, buflen, " (%lu octets)", e->eb_size);
len = strlen (bp);
bp += len;
buflen -= len;
}
snprintf (bp, buflen, "? ");
/*
* Now, check the answer
*/
if (!read_yes_or_no_if_tty (buffer))
return NOTOK;
if (e->eb_flags) {
user = "anonymous";
snprintf (buffer, sizeof(buffer), "%s@%s", getusername (1),
LocalName (1));
pass = buffer;
} else {
ruserpass (e->eb_site, &username, &password, 0);
user = username;
pass = password;
}
ce->ce_unlink = (*file == NULL);
if (*file)
ce->ce_file = mh_xstrdup(*file);
else {
char *tempfile;
if ((tempfile = m_mktemp2(NULL, invo_name, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
ce->ce_file = mh_xstrdup(tempfile);
}
if ((ce->ce_fp = fopen (ce->ce_file, "w+")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading/writing");
return NOTOK;
}
{
int child_id, vecp;
char *vec[9];
vecp = 0;
vec[vecp++] = r1bindex (ftp, '/');
vec[vecp++] = e->eb_site;
vec[vecp++] = user;
vec[vecp++] = pass;
vec[vecp++] = e->eb_dir;
vec[vecp++] = e->eb_name;
vec[vecp++] = ce->ce_file,
vec[vecp++] = e->eb_mode && !strcasecmp (e->eb_mode, "ascii")
? "ascii" : "binary";
vec[vecp] = NULL;
fflush (stdout);
child_id = fork();
switch (child_id) {
case NOTOK:
adios ("fork", "unable to");
/* NOTREACHED */
case OK:
close (fileno (ce->ce_fp));
execvp (ftp, vec);
fprintf (stderr, "unable to exec ");
perror (ftp);
_exit(1);
/* NOTREACHED */
default:
if (pidXwait (child_id, NULL)) {
username = password = NULL;
ce->ce_unlink = 1;
return NOTOK;
}
break;
}
}
fseek (ce->ce_fp, 0L, SEEK_SET);
*file = ce->ce_file;
return fileno (ce->ce_fp);
}
/*
* Mail
*/
static int
InitMail (CT ct)
{
return init_encoding (ct, openMail);
}
static int
openMail (CT ct, char **file)
{
int child_id, fd, vecp;
int len, buflen;
char *bp, buffer[BUFSIZ], *vec[7];
struct exbody *e = ct->c_ctexbody;
CE ce = &ct->c_cefile;
switch (openExternal (e->eb_parent, ce, file, &fd)) {
case NOTOK:
return NOTOK;
case OK:
break;
case DONE:
return fd;
}
if (!e->eb_server) {
content_error (NULL, ct, "missing server parameter");
return NOTOK;
}
/* Get buffer ready to go */
bp = buffer;
buflen = sizeof(buffer);
/* Now, construct query message */
snprintf (bp, buflen, "Retrieve content");
len = strlen (bp);
bp += len;
buflen -= len;
if (e->eb_partno) {
snprintf (bp, buflen, " %s", e->eb_partno);
len = strlen (bp);
bp += len;
buflen -= len;
}
snprintf (bp, buflen, " by asking %s\n\n%s\n? ",
e->eb_server,
e->eb_subject ? e->eb_subject : e->eb_body);
/* Now, check answer */
if (!read_yes_or_no_if_tty (buffer))
return NOTOK;
vecp = 0;
vec[vecp++] = r1bindex (mailproc, '/');
vec[vecp++] = e->eb_server;
vec[vecp++] = "-subject";
vec[vecp++] = e->eb_subject ? e->eb_subject : "mail-server request";
vec[vecp++] = "-body";
vec[vecp++] = e->eb_body;
vec[vecp] = NULL;
child_id = fork();
switch (child_id) {
case NOTOK:
advise ("fork", "unable to");
return NOTOK;
case OK:
execvp (mailproc, vec);
fprintf (stderr, "unable to exec ");
perror (mailproc);
_exit(1);
/* NOTREACHED */
default:
if (pidXwait (child_id, NULL) == OK)
inform("request sent");
break;
}
if (*file == NULL) {
char *tempfile;
if ((tempfile = m_mktemp2(NULL, invo_name, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
ce->ce_file = mh_xstrdup(tempfile);
ce->ce_unlink = 1;
} else {
ce->ce_file = mh_xstrdup(*file);
ce->ce_unlink = 0;
}
if ((ce->ce_fp = fopen (ce->ce_file, "w+")) == NULL) {
content_error (ce->ce_file, ct, "unable to fopen for reading/writing");
return NOTOK;
}
/* showproc is for mhshow and mhstore, though mhlist -debug
* prints it, too. */
free(ct->c_showproc);
ct->c_showproc = mh_xstrdup("true");
fseek (ce->ce_fp, 0L, SEEK_SET);
*file = ce->ce_file;
return fileno (ce->ce_fp);
}
/*
* URL
*/
static int
InitURL (CT ct)
{
return init_encoding (ct, openURL);
}
static int
openURL (CT ct, char **file)
{
struct exbody *e = ct->c_ctexbody;
CE ce = &ct->c_cefile;
char *urlprog, *program;
int fd;
struct msgs_array args = { 0, 0, NULL};
pid_t child_id;
if ((urlprog = context_find(nmhaccessurl)) && *urlprog == '\0')
urlprog = NULL;
if (! urlprog) {
content_error(NULL, ct, "No entry for nmh-access-url in profile");
return NOTOK;
}
switch (openExternal(e->eb_parent, ce, file, &fd)) {
case NOTOK:
return NOTOK;
case OK:
break;
case DONE:
return fd;
}
if (!e->eb_url) {
content_error(NULL, ct, "missing url parameter");
return NOTOK;
}
ce->ce_unlink = (*file == NULL);
if (*file)
ce->ce_file = mh_xstrdup(*file);
else {
char *tempfile;
if ((tempfile = m_mktemp2(NULL, invo_name, NULL, NULL)) == NULL) {
die("unable to create temporary file in %s",
get_temp_dir());
}
ce->ce_file = mh_xstrdup(tempfile);
}
if ((ce->ce_fp = fopen(ce->ce_file, "w+")) == NULL) {
content_error(ce->ce_file, ct, "unable to fopen for read/writing");
return NOTOK;
}
switch (child_id = fork()) {
case NOTOK:
adios ("fork", "unable to");
/* NOTREACHED */
case OK:
argsplit_msgarg(&args, urlprog, &program);
app_msgarg(&args, e->eb_url);
app_msgarg(&args, NULL);
dup2(fileno(ce->ce_fp), 1);
close(fileno(ce->ce_fp));
execvp(program, args.msgs);
fprintf(stderr, "Unable to exec ");
perror(program);
_exit(1);
/* NOTREACHED */
default:
if (pidXwait(child_id, NULL)) {
ce->ce_unlink = 1;
return NOTOK;
}
}
fseeko(ce->ce_fp, 0, SEEK_SET);
*file = ce->ce_file;
return fileno(ce->ce_fp);
}
/* Multipart parts might have content before the first subpart and/or
after the last subpart that hasn't been stored anywhere else, so do
that. */
int
get_leftover_mp_content (CT ct, int before /* or after */)
{
struct multipart *m = (struct multipart *) ct->c_ctparams;
char *boundary;
bool found_boundary = false;
int max = BUFSIZ;
char *bufp = NULL;
size_t buflen;
ssize_t gotlen;
int read = 0;
char *content = NULL;
if (! m) return NOTOK;
if (before) {
if (! m->mp_parts || ! m->mp_parts->mp_part) return NOTOK;
/* Isolate the beginning of this part to the beginning of the
first subpart and save any content between them. */
fseeko (ct->c_fp, ct->c_begin, SEEK_SET);
max = m->mp_parts->mp_part->c_begin - ct->c_begin;
boundary = concat ("--", m->mp_start, NULL);
} else {
struct part *last_subpart = NULL;
struct part *subpart;
/* Go to the last subpart to get its end position. */
for (subpart = m->mp_parts; subpart; subpart = subpart->mp_next) {
last_subpart = subpart;
}
if (last_subpart == NULL) return NOTOK;
/* Isolate the end of the last subpart to the end of this part
and save any content between them. */
fseeko (ct->c_fp, last_subpart->mp_part->c_end, SEEK_SET);
max = ct->c_end - last_subpart->mp_part->c_end;
boundary = concat ("--", m->mp_stop, NULL);
}
/* Back up by 1 to pick up the newline. */
while ((gotlen = getline(&bufp, &buflen, ct->c_fp)) != -1) {
read += gotlen;
/* Don't look beyond beginning of first subpart (before) or
next part (after). */
if (read > max) bufp[read-max] = '\0';
if (before) {
if (! strcmp (bufp, boundary)) {
found_boundary = true;
}
} else {
if (! found_boundary && ! strcmp (bufp, boundary)) {
found_boundary = true;
continue;
}
}
if ((before && ! found_boundary) || (! before && found_boundary)) {
if (content) {
char *old_content = content;
content = concat (content, bufp, NULL);
free (old_content);
} else {
content = before
? concat ("\n", bufp, NULL)
: concat (bufp, NULL);
}
}
if (before) {
if (found_boundary || read > max) break;
} else {
if (read > max) break;
}
}
/* Skip the newline if that's all there is. */
if (content) {
char *cp;
/* Remove trailing newline, except at EOF. */
if ((before || ! feof (ct->c_fp)) &&
(cp = content + strlen (content)) > content &&
*--cp == '\n') {
*cp = '\0';
}
if (strlen (content) > 1) {
if (before) {
m->mp_content_before = content;
} else {
m->mp_content_after = content;
}
} else {
free (content);
}
}
free (boundary);
free (bufp);
return OK;
}
char *
ct_type_str (int type)
{
switch (type) {
case CT_APPLICATION:
return "application";
case CT_AUDIO:
return "audio";
case CT_IMAGE:
return "image";
case CT_MESSAGE:
return "message";
case CT_MULTIPART:
return "multipart";
case CT_TEXT:
return "text";
case CT_VIDEO:
return "video";
case CT_EXTENSION:
return "extension";
default:
return "unknown_type";
}
}
char *
ct_subtype_str (int type, int subtype)
{
switch (type) {
case CT_APPLICATION:
switch (subtype) {
case APPLICATION_OCTETS:
return "octets";
case APPLICATION_POSTSCRIPT:
return "postscript";
default:
return "unknown_app_subtype";
}
case CT_MESSAGE:
switch (subtype) {
case MESSAGE_RFC822:
return "rfc822";
case MESSAGE_EXTERNAL:
return "external";
default:
return "unknown_msg_subtype";
}
case CT_MULTIPART:
switch (subtype) {
case MULTI_MIXED:
return "mixed";
case MULTI_ALTERNATE:
return "alternative";
case MULTI_DIGEST:
return "digest";
case MULTI_PARALLEL:
return "parallel";
case MULTI_RELATED:
return "related";
default:
return "unknown_multipart_subtype";
}
case CT_TEXT:
switch (subtype) {
case TEXT_PLAIN:
return "plain";
case TEXT_RICHTEXT:
return "richtext";
case TEXT_ENRICHED:
return "enriched";
default:
return "unknown_text_subtype";
}
default:
return "unknown_type";
}
}
int
ct_str_type (const char *type)
{
struct str2init *s2i;
for (s2i = str2cts; s2i->si_key; ++s2i) {
if (! strcasecmp (type, s2i->si_key)) {
break;
}
}
if (! s2i->si_key && ! uprf (type, "X-")) {
++s2i;
}
return s2i->si_val;
}
int
ct_str_subtype (int type, const char *subtype)
{
struct k2v *kv;
switch (type) {
case CT_APPLICATION:
for (kv = SubApplication; kv->kv_key; ++kv) {
if (! strcasecmp (subtype, kv->kv_key)) {
break;
}
}
return kv->kv_value;
case CT_MESSAGE:
for (kv = SubMessage; kv->kv_key; ++kv) {
if (! strcasecmp (subtype, kv->kv_key)) {
break;
}
}
return kv->kv_value;
case CT_MULTIPART:
for (kv = SubMultiPart; kv->kv_key; ++kv) {
if (! strcasecmp (subtype, kv->kv_key)) {
break;
}
}
return kv->kv_value;
case CT_TEXT:
for (kv = SubText; kv->kv_key; ++kv) {
if (! strcasecmp (subtype, kv->kv_key)) {
break;
}
}
return kv->kv_value;
default:
return 0;
}
}
/* Find the content type and InitFunc for the CT. */
const struct str2init *
get_ct_init (int type)
{
const struct str2init *sp;
for (sp = str2cts; sp->si_key; ++sp) {
if (type == sp->si_val) {
return sp;
}
}
return NULL;
}
const char *
ce_str (int encoding)
{
switch (encoding) {
case CE_BASE64:
return "base64";
case CE_QUOTED:
return "quoted-printable";
case CE_8BIT:
return "8bit";
case CE_7BIT:
return "7bit";
case CE_BINARY:
return "binary";
case CE_EXTENSION:
return "extension";
case CE_EXTERNAL:
return "external";
default:
return "unknown";
}
}
/* Find the content type and InitFunc for the content encoding method. */
const struct str2init *
get_ce_method (const char *method)
{
struct str2init *sp;
for (sp = str2ces; sp->si_key; ++sp) {
if (! strcasecmp (method, sp->si_key)) {
return sp;
}
}
return NULL;
}
/*
* Parse a series of MIME attributes (or parameters) given a header as
* input.
*
* Arguments include:
*
* filename - Name of input file (for error messages)
* fieldname - Name of field being processed
* headerp - Pointer to pointer of the beginning of the MIME attributes.
* Updated to point to end of attributes when finished.
* param_head - Pointer to head of parameter list
* param_tail - Pointer to tail of parameter list
* commentp - Pointer to header comment pointer (may be NULL)
*
* Returns OK if parsing was successful, NOTOK if parsing failed, and
* DONE to indicate a benign error (minor parsing error, but the program
* should continue).
*/
static int
parse_header_attrs (const char *filename, const char *fieldname,
char **header_attrp, PM *param_head, PM *param_tail,
char **commentp)
{
char *cp = *header_attrp;
PM pm;
struct sectlist {
char *value;
int index;
int len;
struct sectlist *next;
} *sp, *sp2;
struct parmlist {
char *name;
char *charset;
char *lang;
struct sectlist *sechead;
struct parmlist *next;
} *pp, *pp2, *phead = NULL;
while (*cp == ';') {
char *dp, *vp, *up, *nameptr, *valptr, *charset = NULL, *lang = NULL;
bool encoded = false;
bool partial = false;
int len = 0, index = 0;
cp++;
while (isspace ((unsigned char) *cp))
cp++;
if (*cp == '(' &&
get_comment (filename, fieldname, &cp, commentp) == NOTOK) {
return NOTOK;
}
if (*cp == 0) {
if (! suppress_extraneous_trailing_semicolon_warning) {
inform("extraneous trailing ';' in message %s's %s: "
"parameter list", filename, fieldname);
}
return DONE;
}
/* down case the attribute name */
for (dp = cp; istoken ((unsigned char) *dp); dp++)
*dp = tolower ((unsigned char) *dp);
for (up = dp; isspace ((unsigned char) *dp);)
dp++;
if (dp == cp || *dp != '=') {
inform("invalid parameter in message %s's %s: field\n"
" parameter %s (error detected at offset %ld)",
filename, fieldname, cp, (long)(dp - cp));
return NOTOK;
}
/*
* To handle RFC 2231, we have to deal with the following extensions:
*
* name*=encoded-value
* name*<N>=part-N-of-a-parameter-value
* name*<N>*=encoded-part-N-of-a-parameter-value
*
* So the rule is:
* If there's a * right before the equal sign, it's encoded.
* If there's a * and one or more digits, then it's section N.
*
* Remember we can have one or the other, or both. cp points to
* beginning of name, up points past the last character in the
* parameter name.
*/
for (vp = cp; vp < up; vp++) {
if (*vp == '*' && vp < up - 1) {
partial = true;
continue;
}
if (*vp == '*' && vp == up - 1) {
encoded = true;
} else if (partial) {
if (isdigit((unsigned char) *vp))
index = *vp - '0' + index * 10;
else {
inform("invalid parameter index in message %s's %s: field"
"\n (parameter %s)", filename, fieldname, cp);
return NOTOK;
}
} else {
len++;
}
}
/*
* Break out the parameter name and value sections and allocate
* memory for each.
*/
nameptr = mh_xmalloc(len + 1);
strncpy(nameptr, cp, len);
nameptr[len] = '\0';
for (dp++; isspace ((unsigned char) *dp);)
dp++;
if (encoded) {
/*
* Single quotes delimit the character set and language tag.
* They are required on the first section (or a complete
* parameter).
*/
if (index == 0) {
vp = dp;
while (*vp != '\'' && !isspace((unsigned char) *vp) &&
*vp != '\0')
vp++;
if (*vp == '\'') {
if (vp != dp) {
len = vp - dp;
charset = mh_xmalloc(len + 1);
strncpy(charset, dp, len);
charset[len] = '\0';
} else {
charset = NULL;
}
vp++;
} else {
inform("missing charset in message %s's %s: field\n"
" (parameter %s)", filename, fieldname, nameptr);
free(nameptr);
return NOTOK;
}
dp = vp;
while (*vp != '\'' && !isspace((unsigned char) *vp) &&
*vp != '\0')
vp++;
if (*vp == '\'') {
if (vp != dp) {
len = vp - dp;
lang = mh_xmalloc(len + 1);
strncpy(lang, dp, len);
lang[len] = '\0';
} else {
lang = NULL;
}
vp++;
} else {
inform("missing language tag in message %s's %s: field\n"
" (parameter %s)", filename, fieldname, nameptr);
free(nameptr);
free(charset);
return NOTOK;
}
dp = vp;
}
/*
* At this point vp should be pointing at the beginning
* of the encoded value/section. Continue until we reach
* the end or get whitespace. But first, calculate the
* length so we can allocate the correct buffer size.
*/
for (vp = dp, len = 0; istoken(*vp); vp++) {
if (*vp == '%') {
if (*(vp + 1) == '\0' ||
!isxdigit((unsigned char) *(vp + 1)) ||
*(vp + 2) == '\0' ||
!isxdigit((unsigned char) *(vp + 2))) {
inform("invalid encoded sequence in message %s's %s: field\n"
" (parameter %s)", filename, fieldname, nameptr);
free(nameptr);
free(charset);
free(lang);
return NOTOK;
}
vp += 2;
}
len++;
}
up = valptr = mh_xmalloc(len + 1);
for (vp = dp; istoken(*vp); vp++) {
if (*vp == '%') {
*up++ = decode_qp(*(vp + 1), *(vp + 2));
vp += 2;
} else {
*up++ = *vp;
}
}
*up = '\0';
cp = vp;
} else {
/*
* A "normal" string. If it's got a leading quote, then we
* strip the quotes out. Otherwise go until we reach the end
* or get whitespace. Note we scan it twice; once to get the
* length, then the second time copies it into the destination
* buffer.
*/
len = 0;
if (*dp == '"') {
for (cp = dp + 1;;) {
switch (*cp++) {
case '\0':
bad_quote:
inform("invalid quoted-string in message %s's %s: field\n"
" (parameter %s)", filename, fieldname, nameptr);
free(nameptr);
free(charset);
free(lang);
return NOTOK;
case '"':
break;
case '\\':
if (*++cp == '\0')
goto bad_quote;
/* FALLTHRU */
default:
len++;
continue;
}
break;
}
} else {
for (cp = dp; istoken (*cp); cp++) {
len++;
}
}
valptr = mh_xmalloc(len + 1);
if (*dp == '"') {
int i;
for (cp = dp + 1, vp = valptr, i = 0; i < len; i++) {
if (*cp == '\\') {
cp++;
}
*vp++ = *cp++;
}
cp++;
} else {
strncpy(valptr, cp = dp, len);
cp += len;
}
valptr[len] = '\0';
}
/*
* If 'partial' is set, we don't allocate a parameter now. We
* put it on the parameter linked list to be reassembled later.
*
* "phead" points to a list of all parameters we need to reassemble.
* Each parameter has a list of sections. We insert the sections in
* order.
*/
if (partial) {
for (pp = phead; pp != NULL; pp = pp->next) {
if (strcasecmp(nameptr, pp->name) == 0) {
free (nameptr);
nameptr = pp->name;
break;
}
}
if (pp == NULL) {
NEW0(pp);
pp->name = nameptr;
pp->next = phead;
phead = pp;
}
/*
* Insert this into the section linked list
*/
NEW0(sp);
sp->value = valptr;
sp->index = index;
sp->len = len;
if (pp->sechead == NULL || pp->sechead->index > index) {
sp->next = pp->sechead;
pp->sechead = sp;
} else {
for (sp2 = pp->sechead; sp2 != NULL; sp2 = sp2->next) {
if (sp2->index == sp->index) {
inform("duplicate index (%d) in message %s's %s: field"
"\n (parameter %s)", sp->index, filename,
fieldname, nameptr);
return NOTOK;
}
if (sp2->index < sp->index &&
(sp2->next == NULL || sp2->next->index > sp->index)) {
sp->next = sp2->next;
sp2->next = sp;
break;
}
}
if (sp2 == NULL) {
inform("Internal error: cannot insert partial param "
"in message %s's %s: field\n (parameter %s)",
filename, fieldname, nameptr);
return NOTOK;
}
}
/*
* Save our charset and lang tags.
*/
if (index == 0 && encoded) {
free(pp->charset);
pp->charset = charset;
free(pp->lang);
pp->lang = lang;
}
} else {
pm = add_param(param_head, param_tail, nameptr, valptr, 1);
pm->pm_charset = charset;
pm->pm_lang = lang;
}
while (isspace ((unsigned char) *cp))
cp++;
if (*cp == '(' &&
get_comment (filename, fieldname, &cp, commentp) == NOTOK) {
return NOTOK;
}
}
/*
* Now that we're done, reassemble all of the partial parameters.
*/
for (pp = phead; pp != NULL; ) {
char *p, *q;
size_t tlen = 0;
int pindex = 0;
for (sp = pp->sechead; sp != NULL; sp = sp->next) {
if (sp->index != pindex++) {
inform("missing section %d for parameter in message "
"%s's %s: field\n (parameter %s)", pindex - 1,
filename, fieldname, pp->name);
return NOTOK;
}
tlen += sp->len;
}
p = q = mh_xmalloc(tlen + 1);
for (sp = pp->sechead; sp != NULL; ) {
memcpy(q, sp->value, sp->len);
q += sp->len;
free(sp->value);
sp2 = sp->next;
free(sp);
sp = sp2;
}
p[tlen] = '\0';
pm = add_param(param_head, param_tail, pp->name, p, 1);
pm->pm_charset = pp->charset;
pm->pm_lang = pp->lang;
pp2 = pp->next;
free(pp);
pp = pp2;
}
*header_attrp = cp;
return OK;
}
/*
* Return the charset for a particular content type.
*/
char *
content_charset (CT ct)
{
char *ret_charset = NULL;
ret_charset = get_param(ct->c_ctinfo.ci_first_pm, "charset", '?', 0);
return ret_charset ? ret_charset : mh_xstrdup("US-ASCII");
}
/*
* Create a string based on a list of output parameters. Assume that this
* parameter string will be appended to an existing header, so start out
* with the separator (;). Perform RFC 2231 encoding when necessary.
*/
char *
output_params(size_t initialwidth, PM params, int *offsetout, int external)
{
char *paramout = NULL;
char line[CPERLIN * 2], *q;
int curlen, index, cont, encode, i;
size_t valoff, numchars;
while (params != NULL) {
encode = 0;
index = 0;
valoff = 0;
q = line;
if (external && strcasecmp(params->pm_name, "body") == 0)
continue;
if (strlen(params->pm_name) > CPERLIN) {
inform("Parameter name \"%s\" is too long", params->pm_name);
free(paramout);
return NULL;
}
curlen = param_len(params, index, valoff, &encode, &cont, &numchars);
/*
* Loop until we get a parameter that fits within a line. We
* assume new lines start with a tab, so check our overflow based
* on that.
*/
while (cont) {
*q++ = ';';
*q++ = '\n';
*q++ = '\t';
/*
* At this point we're definitely continuing the line, so
* be sure to include the parameter name and section index.
*/
q += snprintf(q, sizeof(line) - (q - line), "%s*%d",
params->pm_name, index);
/*
* Both of these functions do a NUL termination
*/
if (encode)
i = encode_param(params, q, sizeof(line) - (q - line),
numchars, valoff, index);
else
i = normal_param(params, q, sizeof(line) - (q - line),
numchars, valoff);
if (i == 0) {
free(paramout);
return NULL;
}
valoff += numchars;
index++;
curlen = param_len(params, index, valoff, &encode, &cont,
&numchars);
q = line;
/*
* "line" starts with a ;\n\t, so that doesn't count against
* the length. But add 8 since it starts with a tab; that's
* how we end up with 5.
*/
initialwidth = strlen(line) + 5;
/*
* At this point the line should be built, so add it to our
* current output buffer.
*/
paramout = add(line, paramout);
}
/*
* If this won't fit on the line, start a new one. Save room in
* case we need a semicolon on the end
*/
if (initialwidth + curlen > CPERLIN - 1) {
*q++ = ';';
*q++ = '\n';
*q++ = '\t';
initialwidth = 8;
} else {
*q++ = ';';
*q++ = ' ';
initialwidth += 2;
}
/*
* At this point, we're either finishing a continued parameter, or
* we're working on a new one.
*/
if (index > 0) {
q += snprintf(q, sizeof(line) - (q - line), "%s*%d",
params->pm_name, index);
} else {
strncpy(q, params->pm_name, sizeof(line) - (q - line));
q += strlen(q);
}
if (encode)
i = encode_param(params, q, sizeof(line) - (q - line),
strlen(params->pm_value + valoff), valoff, index);
else
i = normal_param(params, q, sizeof(line) - (q - line),
strlen(params->pm_value + valoff), valoff);
if (i == 0) {
free(paramout);
return NULL;
}
paramout = add(line, paramout);
initialwidth += strlen(line);
params = params->pm_next;
}
if (offsetout)
*offsetout = initialwidth;
return paramout;
}
/*
* Calculate the size of a parameter.
*
* Arguments include
*
* pm - The parameter being output
* index - If continuing the parameter, the index of the section
* we're on.
* valueoff - The current offset into the parameter value that we're
* working on (previous sections have consumed valueoff bytes).
* encode - Set if we should perform encoding on this parameter section
* (given that we're consuming bytesfit bytes).
* cont - Set if the remaining data in value will not fit on a single
* line and will need to be continued.
* bytesfit - The number of bytes that we can consume from the parameter
* value and still fit on a completely new line. The
* calculation assumes the new line starts with a tab,
* includes the parameter name and any encoding, and fits
* within CPERLIN bytes. Will always be at least 1.
*/
static size_t
param_len(PM pm, int index, size_t valueoff, int *encode, int *cont,
size_t *bytesfit)
{
char *start = pm->pm_value + valueoff, *p, indexchar[32];
size_t len = 0, fit = 0;
int fitlimit = 0, eightbit, maxfit;
*encode = 0;
/*
* Add up the length. First, start with the parameter name.
*/
len = strlen(pm->pm_name);
/*
* Scan the parameter value and see if we need to do encoding for this
* section.
*/
eightbit = contains8bit(start, NULL);
/*
* Determine if we need to encode this section. Encoding is necessary if:
*
* - There are any 8-bit characters at all and we're on the first
* section.
* - There are 8-bit characters within N bytes of our section start.
* N is calculated based on the number of bytes it would take to
* reach CPERLIN. Specifically:
* 8 (starting tab) +
* strlen(param name) +
* 4 ('* for section marker, '=', opening/closing '"')
* strlen (index)
* is the number of bytes used by everything that isn't part of the
* value. So that gets subtracted from CPERLIN.
*/
snprintf(indexchar, sizeof(indexchar), "%d", index);
maxfit = CPERLIN - (12 + len + strlen(indexchar));
if ((eightbit && index == 0) || contains8bit(start, start + maxfit)) {
*encode = 1;
}
len++; /* Add in equal sign */
if (*encode) {
/*
* We're using maxfit as a marker for how many characters we can
* fit into the line. Bump it by two because we're not using quotes
* when encoding.
*/
maxfit += 2;
/*
* If we don't have a charset or language tag in this parameter,
* add them now.
*/
if (! pm->pm_charset) {
pm->pm_charset = mh_xstrdup(write_charset_8bit());
if (strcasecmp(pm->pm_charset, "US-ASCII") == 0)
die("8-bit characters in parameter \"%s\", but "
"local character set is US-ASCII", pm->pm_name);
}
if (! pm->pm_lang)
pm->pm_lang = mh_xstrdup(""); /* Default to a blank lang tag */
len++; /* For the encoding marker */
maxfit--;
if (index == 0) {
int enclen = strlen(pm->pm_charset) + strlen(pm->pm_lang) + 2;
len += enclen;
maxfit-= enclen;
} else {
/*
* We know we definitely need to include an index. maxfit already
* includes the section marker.
*/
len += strlen(indexchar);
}
for (p = start; *p != '\0'; p++) {
if (isparamencode(*p)) {
len += 3;
maxfit -= 3;
} else {
len++;
maxfit--;
}
/*
* Just so there's no confusion: maxfit is counting OUTPUT
* characters (post-encoding). fit is counting INPUT characters.
*/
if (! fitlimit && maxfit >= 0)
fit++;
else if (! fitlimit)
fitlimit++;
}
} else {
/*
* Calculate the string length, but add room for quoting \
* and " if necessary. Also account for quotes at beginning
* and end.
*/
for (p = start; *p != '\0'; p++) {
switch (*p) {
case '"':
case '\\':
len++;
maxfit--;
/* FALLTHRU */
default:
len++;
maxfit--;
}
if (! fitlimit && maxfit >= 0)
fit++;
else if (! fitlimit)
fitlimit++;
}
len += 2;
}
if (fit < 1)
fit = 1;
*cont = fitlimit;
*bytesfit = fit;
return len;
}
/*
* Output an encoded parameter string.
*/
size_t
encode_param(PM pm, char *output, size_t len, size_t valuelen,
size_t valueoff, int index)
{
size_t outlen = 0, n;
char *endptr = output + len, *p;
/*
* First, output the marker for an encoded string.
*/
*output++ = '*';
*output++ = '=';
outlen += 2;
/*
* If the index is 0, output the character set and language tag.
* If theses were NULL, they should have already been filled in
* by param_len().
*/
if (index == 0) {
n = snprintf(output, len - outlen, "%s'%s'", pm->pm_charset,
pm->pm_lang);
output += n;
outlen += n;
if (output > endptr) {
inform("Internal error: parameter buffer overflow");
return 0;
}
}
/*
* Copy over the value, encoding if necessary
*/
p = pm->pm_value + valueoff;
while (valuelen-- > 0) {
if (isparamencode(*p)) {
n = snprintf(output, len - outlen, "%%%02X", (unsigned char) *p++);
output += n;
outlen += n;
} else {
*output++ = *p++;
outlen++;
}
if (output > endptr) {
inform("Internal error: parameter buffer overflow");
return 0;
}
}
*output = '\0';
return outlen;
}
/*
* Output a "normal" parameter, without encoding. Be sure to escape
* quotes and backslashes if necessary.
*/
static size_t
normal_param(PM pm, char *output, size_t len, size_t valuelen,
size_t valueoff)
{
size_t outlen = 0;
char *endptr = output + len, *p;
*output++ = '=';
*output++ = '"';
outlen += 2;
p = pm->pm_value + valueoff;
while (valuelen-- > 0) {
switch (*p) {
case '\\':
case '"':
*output++ = '\\';
outlen++;
/* FALLTHRU */
default:
*output++ = *p++;
outlen++;
}
if (output > endptr) {
inform("Internal error: parameter buffer overflow");
return 0;
}
}
if (output - 2 > endptr) {
inform("Internal error: parameter buffer overflow");
return 0;
}
*output++ = '"';
*output++ = '\0';
return outlen + 1;
}
/*
* Add a parameter to the parameter linked list
*/
PM
add_param(PM *first, PM *last, char *name, char *value, int nocopy)
{
PM pm;
NEW0(pm);
pm->pm_name = nocopy ? name : getcpy(name);
pm->pm_value = nocopy ? value : getcpy(value);
if (*first) {
(*last)->pm_next = pm;
*last = pm;
} else {
*first = pm;
*last = pm;
}
return pm;
}
/*
* Either replace a current parameter with a new value, or add the parameter
* to the parameter linked list.
*/
PM
replace_param(PM *first, PM *last, char *name, char *value, int nocopy)
{
PM pm;
for (pm = *first; pm != NULL; pm = pm->pm_next) {
if (strcasecmp(name, pm->pm_name) == 0) {
/*
* If nocopy is set, it's assumed that we own both name
* and value. We don't need name, so we discard it now.
*/
if (nocopy)
free(name);
free(pm->pm_value);
pm->pm_value = nocopy ? value : getcpy(value);
return pm;
}
}
return add_param(first, last, name, value, nocopy);
}
/*
* Retrieve a parameter value from a parameter linked list. If the parameter
* value needs converted to the local character set, do that now.
*/
char *
get_param(PM first, const char *name, char replace, int fetchonly)
{
while (first != NULL) {
if (strcasecmp(name, first->pm_name) == 0) {
if (fetchonly)
return first->pm_value;
return getcpy(get_param_value(first, replace));
}
first = first->pm_next;
}
return NULL;
}
/*
* Return a parameter value, converting to the local character set if
* necessary
*/
char *
get_param_value(PM pm, char replace)
{
static char buffer[4096]; /* I hope no parameters are larger */
size_t bufsize = sizeof(buffer);
#ifdef HAVE_ICONV
size_t inbytes;
int utf8;
iconv_t cd;
ICONV_CONST char *p;
#else /* HAVE_ICONV */
char *p;
#endif /* HAVE_ICONV */
char *q;
/*
* If we don't have a character set indicated, it's assumed to be
* US-ASCII. If it matches our character set, we don't need to convert
* anything.
*/
if (!pm->pm_charset || check_charset(pm->pm_charset,
strlen(pm->pm_charset))) {
return pm->pm_value;
}
/*
* In this case, we need to convert. If we have iconv support, use
* that. Otherwise, go through and simply replace every non-ASCII
* character with the substitution character.
*/
#ifdef HAVE_ICONV
q = buffer;
bufsize = sizeof(buffer);
utf8 = strcasecmp(pm->pm_charset, "UTF-8") == 0;
cd = iconv_open(get_charset(), pm->pm_charset);
if (cd == (iconv_t) -1) {
goto noiconv;
}
inbytes = strlen(pm->pm_value);
p = pm->pm_value;
while (inbytes) {
if (iconv(cd, &p, &inbytes, &q, &bufsize) == (size_t)-1) {
if (errno != EILSEQ) {
iconv_close(cd);
goto noiconv;
}
/*
* Reset shift state, substitute our character,
* try to restart conversion.
*/
iconv(cd, NULL, NULL, &q, &bufsize);
if (bufsize == 0) {
iconv_close(cd);
goto noiconv;
}
*q++ = replace;
bufsize--;
if (bufsize == 0) {
iconv_close(cd);
goto noiconv;
}
if (utf8) {
for (++p, --inbytes;
inbytes > 0 && (((unsigned char) *p) & 0xc0) == 0x80;
++p, --inbytes)
continue;
} else {
p++;
inbytes--;
}
}
}
iconv_close(cd);
if (bufsize == 0)
q--;
*q = '\0';
return buffer;
noiconv:
#endif /* HAVE_ICONV */
/*
* Take everything non-ASCII and substitute the replacement character
*/
q = buffer;
bufsize = sizeof(buffer);
for (p = pm->pm_value; *p != '\0' && bufsize > 1; p++, q++, bufsize--) {
if (isascii((unsigned char) *p) && isprint((unsigned char) *p))
*q = *p;
else
*q = replace;
}
*q = '\0';
return buffer;
}
|