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
|
/* IcedTeaNPPlugin.cc -- web browser plugin to execute Java applets
Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
Copyright (C) 2009, 2010 Red Hat
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
// System includes.
#include <dlfcn.h>
#include <unistd.h>
#include <fcntl.h>
#include <dirent.h>
#include <errno.h>
#include <libgen.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <new>
//IcedTea-plugin includes
#include "IcedTeaPluginUtils.h"
#include "IcedTeaParseProperties.h"
// Liveconnect extension
#include "IcedTeaScriptablePluginObject.h"
#include "IcedTeaNPPlugin.h"
// Plugin information passed to about:plugins.
#define PLUGIN_FULL_NAME PLUGIN_NAME " (using " PLUGIN_VERSION ")"
#define PLUGIN_DESC "The <a href=\"" PACKAGE_URL "\">" PLUGIN_NAME "</a> executes Java applets."
#ifdef HAVE_JAVA9
#define JPI_VERSION "1.9.0_" JDK_UPDATE_VERSION
#define PLUGIN_APPLET_MIME_DESC \
"application/x-java-applet;version=1.8:class,jar:IcedTea;"\
"application/x-java-applet;version=1.9:class,jar:IcedTea;"
#define PLUGIN_BEAN_MIME_DESC \
"application/x-java-bean;version=1.8:class,jar:IcedTea;" \
"application/x-java-bean;version=1.9:class,jar:IcedTea;"
#elif HAVE_JAVA8
#define JPI_VERSION "1.8.0_" JDK_UPDATE_VERSION
#define PLUGIN_APPLET_MIME_DESC \
"application/x-java-applet;version=1.8:class,jar:IcedTea;"
#define PLUGIN_BEAN_MIME_DESC \
"application/x-java-bean;version=1.8:class,jar:IcedTea;"
#else
#define JPI_VERSION "1.7.0_" JDK_UPDATE_VERSION
#define PLUGIN_APPLET_MIME_DESC
#define PLUGIN_BEAN_MIME_DESC
#endif
#define PLUGIN_MIME_DESC \
"application/x-java-vm:class,jar:IcedTea;" \
"application/x-java-applet:class,jar:IcedTea;" \
"application/x-java-applet;version=1.1:class,jar:IcedTea;" \
"application/x-java-applet;version=1.1.1:class,jar:IcedTea;" \
"application/x-java-applet;version=1.1.2:class,jar:IcedTea;" \
"application/x-java-applet;version=1.1.3:class,jar:IcedTea;" \
"application/x-java-applet;version=1.2:class,jar:IcedTea;" \
"application/x-java-applet;version=1.2.1:class,jar:IcedTea;" \
"application/x-java-applet;version=1.2.2:class,jar:IcedTea;" \
"application/x-java-applet;version=1.3:class,jar:IcedTea;" \
"application/x-java-applet;version=1.3.1:class,jar:IcedTea;" \
"application/x-java-applet;version=1.4:class,jar:IcedTea;" \
"application/x-java-applet;version=1.4.1:class,jar:IcedTea;" \
"application/x-java-applet;version=1.4.2:class,jar:IcedTea;" \
"application/x-java-applet;version=1.5:class,jar:IcedTea;" \
"application/x-java-applet;version=1.6:class,jar:IcedTea;" \
"application/x-java-applet;version=1.7:class,jar:IcedTea;" \
"application/x-java-applet;version=1.8:class,jar:IcedTea;" \
PLUGIN_APPLET_MIME_DESC \
"application/x-java-applet;jpi-version=" JPI_VERSION ":class,jar:IcedTea;" \
"application/x-java-bean:class,jar:IcedTea;" \
"application/x-java-bean;version=1.1:class,jar:IcedTea;" \
"application/x-java-bean;version=1.1.1:class,jar:IcedTea;" \
"application/x-java-bean;version=1.1.2:class,jar:IcedTea;" \
"application/x-java-bean;version=1.1.3:class,jar:IcedTea;" \
"application/x-java-bean;version=1.2:class,jar:IcedTea;" \
"application/x-java-bean;version=1.2.1:class,jar:IcedTea;" \
"application/x-java-bean;version=1.2.2:class,jar:IcedTea;" \
"application/x-java-bean;version=1.3:class,jar:IcedTea;" \
"application/x-java-bean;version=1.3.1:class,jar:IcedTea;" \
"application/x-java-bean;version=1.4:class,jar:IcedTea;" \
"application/x-java-bean;version=1.4.1:class,jar:IcedTea;" \
"application/x-java-bean;version=1.4.2:class,jar:IcedTea;" \
"application/x-java-bean;version=1.5:class,jar:IcedTea;" \
"application/x-java-bean;version=1.6:class,jar:IcedTea;" \
"application/x-java-bean;version=1.7:class,jar:IcedTea;" \
"application/x-java-bean;version=1.8:class,jar:IcedTea;" \
PLUGIN_BEAN_MIME_DESC \
"application/x-java-bean;jpi-version=" JPI_VERSION ":class,jar:IcedTea;" \
"application/x-java-vm-npruntime::IcedTea;"
#define PLUGIN_URL NS_INLINE_PLUGIN_CONTRACTID_PREFIX NS_JVM_MIME_TYPE
#define PLUGIN_MIME_TYPE "application/x-java-vm"
#define PLUGIN_FILE_EXTS "class,jar,zip"
#define PLUGIN_MIME_COUNT 1
#define FAILURE_MESSAGE "icedteanp plugin error: Failed to run %s." \
" For more detail rerun \"firefox -g\" in a terminal window."
// Data directory for plugin.
static std::string data_directory;
static DIR *data_directory_descriptor;
// Fully-qualified appletviewer default executable and rt.jar
static const char* appletviewer_default_executable = ICEDTEA_WEB_JRE "/bin/java";
static const char* appletviewer_default_rtjar = ICEDTEA_WEB_JRE "/lib/rt.jar";
static const char* appletviewer_default_jfxrtjar = ICEDTEA_WEB_JRE "/lib/jfxrt.jar";
static const char* appletviewer_default_nashonrjar = ICEDTEA_WEB_JRE "/lib/ext/nashorn.jar";
//javaws name and binary
static const char* javaws_bin_property = "-Dicedtea-web.bin.location=" JAVAWS_BIN;
static const char* javaws_name_property = "-Dicedtea-web.bin.name=" JAVAWS_NAME;
// Applet viewer input channel (needs to be static because it is used in plugin_in_pipe_callback)
static GIOChannel* in_from_appletviewer = NULL;
// Applet viewer input pipe name.
gchar* in_pipe_name;
// Applet viewer input watch source.
gint in_watch_source;
// Applet viewer output pipe name.
gchar* out_pipe_name;
// Applet viewer debug pipe name.
gchar* debug_pipe_name = NULL;
// Applet viewer output watch source.
gint out_watch_source;
// Thread ID of plug-in thread
pthread_t itnp_plugin_thread_id;
// Mutex to lock async call queue
pthread_mutex_t pluginAsyncCallMutex;
/*to sync pipe to apletviewer console*/
pthread_mutex_t debug_pipe_lock = PTHREAD_MUTEX_INITIALIZER;
// Applet viewer output channel.
GIOChannel* out_to_appletviewer;
// Applet viewer debug channel.
GIOChannel* debug_to_appletviewer = NULL;
// Tracks jvm status
gboolean jvm_up = FALSE;
// Keeps track of initialization. NP_Initialize should only be
// called once.
gboolean initialized = false;
int javaVersion = 0;
// browser functions into mozilla
NPNetscapeFuncs browser_functions;
// Various message buses carrying information to/from Java, and internally
MessageBus* plugin_to_java_bus;
MessageBus* java_to_plugin_bus;
//MessageBus* internal_bus = new MessageBus();
// Processor for plugin requests
PluginRequestProcessor* plugin_req_proc;
// Sends messages to Java over the bus
JavaMessageSender* java_req_proc;
// Queue processing threads
static pthread_t plugin_request_processor_thread1;
static pthread_t plugin_request_processor_thread2;
static pthread_t plugin_request_processor_thread3;
// Static instance helper functions.
// Retrieve the current document's documentbase.
static std::string plugin_get_documentbase (NPP instance);
// Callback used to monitor input pipe status.
static gboolean plugin_in_pipe_callback (GIOChannel* source,
GIOCondition condition,
gpointer plugin_data);
// Callback used to monitor output pipe status.
static gboolean plugin_out_pipe_callback (GIOChannel* source,
GIOCondition condition,
gpointer plugin_data);
std::string plugin_parameters_string (int argc, char* argn[], char* argv[]);
static void plugin_stop_appletviewer ();
NPError get_cookie_info(const char* siteAddr, char** cookieString, uint32_t* len);
NPError get_proxy_info(const char* siteAddr, char** proxy, uint32_t* len);
void consume_message(gchar* message);
static void appletviewer_monitor(GPid pid, gint status, gpointer data);
void plugin_send_initialization_message(char* instance, gulong handle,
int width, int height,
char* url);
/* Returns JVM options set in itw-settings */
std::vector<std::string*>* get_jvm_args();
// Global instance counter.
// Mutex to protect plugin_instance_counter.
static GMutex* plugin_instance_mutex = NULL;
// A global variable for reporting GLib errors. This must be free'd
// and set to NULL after each use.
static GError* channel_error = NULL;
static GHashTable* instance_to_id_map = g_hash_table_new(NULL, NULL);
static GHashTable* id_to_instance_map = g_hash_table_new(NULL, NULL);
static gint instance_counter = 1;
static GPid appletviewer_pid = -1;
static guint appletviewer_watch_id = -1;
bool debug_initiated = false;
bool file_logs_initiated = false;
int plugin_debug = getenv ("ICEDTEAPLUGIN_DEBUG") != NULL;
bool plugin_debug_headers = false;
bool plugin_debug_to_file = false ;
bool plugin_debug_to_streams = true ;
bool plugin_debug_to_system = false;
bool plugin_debug_to_console = true;
FILE * plugin_file_log = NULL;
std::string plugin_file_log_name;
int plugin_debug_suspend = (getenv("ICEDTEAPLUGIN_DEBUG") != NULL) &&
(strcmp(getenv("ICEDTEAPLUGIN_DEBUG"), "suspend") == 0);
#ifdef LEGACY_GLIB
// Returns key from first item stored in hashtable
gboolean
find_first_item_in_hash_table(gpointer key, gpointer value, gpointer user_data)
{
user_data = key;
return (gboolean)TRUE;
}
int
g_strcmp0(char *str1, char *str2)
{
if (str1 != NULL)
return str2 != NULL ? strcmp(str1, str2) : 1;
else // str1 == NULL
return str2 != NULL ? 1 : 0;
}
#endif
static std::string get_plugin_executable(){
std::string custom_jre;
bool custom_jre_defined = find_custom_jre(custom_jre);
if (custom_jre_defined) {
if (IcedTeaPluginUtilities::file_exists(custom_jre+"/bin/java")){
return custom_jre+"/bin/java";
} else {
PLUGIN_ERROR("Your custom jre (/bin/java check) %s is not valid. Please fix %s in your %s. In attempt to run using default one. \n", custom_jre.c_str(), custom_jre_key.c_str(), default_file_ITW_deploy_props_name.c_str());
}
}
return appletviewer_default_executable;
}
static std::string get_plugin_rt_jar(){
std::string custom_jre;
bool custom_jre_defined = find_custom_jre(custom_jre);
if (custom_jre_defined) {
if (IcedTeaPluginUtilities::file_exists(custom_jre+"/lib/rt.jar")){
return custom_jre+"/lib/rt.jar";
} else {
PLUGIN_ERROR("Your custom jre (/lib/rt.jar check) %s is not valid. Please fix %s in your %s. In attempt to run using default one. \n", custom_jre.c_str(), custom_jre_key.c_str(), default_file_ITW_deploy_props_name.c_str());
}
}
return appletviewer_default_rtjar;
}
static std::string get_plugin_jfx_jar(){
std::string custom_jre;
bool custom_jre_defined = find_custom_jre(custom_jre);
if (custom_jre_defined) {
if (IcedTeaPluginUtilities::file_exists(custom_jre+"/lib/jfxrt.jar")){
return custom_jre+"/lib/jfxrt.jar";
} else {
PLUGIN_ERROR("Your custom jre (/lib/jfxrt.jar check) %s is not valid. Please fix %s in your %s. In attempt to run using default one. \n", custom_jre.c_str(), custom_jre_key.c_str(), default_file_ITW_deploy_props_name.c_str());
}
}
return appletviewer_default_jfxrtjar;
}
static std::string get_plugin_nashorn_jar(){
std::string custom_jre;
bool custom_jre_defined = find_custom_jre(custom_jre);
if (custom_jre_defined) {
if (IcedTeaPluginUtilities::file_exists(custom_jre+"/lib/ext/nashorn.jar")){
return custom_jre+"/lib/ext/nashorn.jar";
} else {
PLUGIN_ERROR("Your custom jre (/lib/ext/nashorn.jar check) %s is not valid. Please fix %s in your %s. In attempt to run using default one. \n", custom_jre.c_str(), custom_jre_key.c_str(), default_file_ITW_deploy_props_name.c_str());
}
}
return appletviewer_default_nashonrjar;
}
static void cleanUpDir(){
//free data_directory descriptor
if (data_directory_descriptor != NULL) {
closedir(data_directory_descriptor);
}
//clean up pipes directory
PLUGIN_DEBUG ("Removing runtime directory %s \n", data_directory.c_str());
int removed = rmdir(data_directory.c_str());
if (removed != 0) {
PLUGIN_ERROR ("Failed to remove runtime directory %s, because of %s \n", data_directory.c_str(), strerror(errno));
} else {
PLUGIN_DEBUG ("Removed runtime directory %s \n", data_directory.c_str());
}
data_directory_descriptor = NULL;
}
/*
* Find first member in GHashTable* depending on version of glib
*/
gpointer getFirstInTableInstance(GHashTable* table)
{
gpointer id, instance;
#ifndef LEGACY_GLIB
GHashTableIter iter;
g_hash_table_iter_init (&iter, table);
g_hash_table_iter_next (&iter, &instance, &id);
#else
g_hash_table_find(table, (GHRFunc)find_first_item_in_hash_table, &instance);
#endif
return instance;
}
// Functions prefixed by ITNP_ are instance functions. They are called
// by the browser and operate on instances of ITNPPluginData.
// Functions prefixed by plugin_ are static helper functions.
// Functions prefixed by NP_ are factory functions. They are called
// by the browser and provide functionality needed to create plugin
// instances.
// INSTANCE FUNCTIONS
// Creates a new icedtea np plugin instance. This function creates a
// ITNPPluginData* and stores it in instance->pdata. The following
// ITNPPluginData fields are initialized: instance_id, in_pipe_name,
// in_from_appletviewer, in_watch_source, out_pipe_name,
// out_to_appletviewer, out_watch_source, appletviewer_mutex, owner,
// appletviewer_alive. In addition two pipe files are created. All
// of those fields must be properly destroyed, and the pipes deleted,
// by ITNP_Destroy. If an error occurs during initialization then this
// function will free anything that's been allocated so far, set
// instance->pdata to NULL and return an error code.
NPError
ITNP_New (NPMIMEType pluginType, NPP instance, uint16_t mode,
int16_t argc, char* argn[], char* argv[],
NPSavedData* saved)
{
PLUGIN_DEBUG("ITNP_New\n");
static NPObject *window_ptr;
NPIdentifier identifier;
NPVariant member_ptr;
browser_functions.getvalue(instance, NPNVWindowNPObject, &window_ptr);
identifier = browser_functions.getstringidentifier("document");
if (!browser_functions.hasproperty(instance, window_ptr, identifier))
{
PLUGIN_ERROR("%s not found!\n", "document");
}
browser_functions.getproperty(instance, window_ptr, identifier, &member_ptr);
PLUGIN_DEBUG("Got variant %p\n", &member_ptr);
if (!instance)
{
PLUGIN_ERROR ("Browser-provided instance pointer is NULL.\n");
return NPERR_INVALID_INSTANCE_ERROR;
}
// data
ITNPPluginData* data = plugin_data_new ();
if (data == NULL)
{
PLUGIN_ERROR ("Failed to allocate plugin data.\n");
return NPERR_OUT_OF_MEMORY_ERROR;
}
// start the jvm if needed
NPError startup_error = start_jvm_if_needed();
if (startup_error != NPERR_NO_ERROR) {
PLUGIN_ERROR ("Failed to start JVM\n");
return startup_error;
}
// Initialize data->instance_id.
//
// instance_id should be unique for this process so we use a
// combination of getpid and plugin_instance_counter.
//
// Critical region. Reference and increment plugin_instance_counter
// global.
g_mutex_lock (plugin_instance_mutex);
// data->instance_id
data->instance_id = g_strdup_printf ("%d",
instance_counter);
g_mutex_unlock (plugin_instance_mutex);
// data->appletviewer_mutex
data->appletviewer_mutex = g_mutex_new ();
g_mutex_lock (data->appletviewer_mutex);
std::string documentbase = plugin_get_documentbase (instance);
// Documentbase retrieval.
if (argc != 0)
{
// Send parameters to appletviewer.
std::string params_string = plugin_parameters_string(argc, argn, argv);
data->parameters_string = g_strdup_printf("tag %s %s", documentbase.c_str(), params_string.c_str());
data->is_applet_instance = true;
}
else
{
data->is_applet_instance = false;
}
g_mutex_unlock (data->appletviewer_mutex);
// If initialization succeeded entirely then we store the plugin
// data in the instance structure and return. Otherwise we free the
// data we've allocated so far and set instance->pdata to NULL.
// Set back-pointer to owner instance.
data->owner = instance;
// source of this instance
// don't use documentbase, it is cleared later
data->source = plugin_get_documentbase(instance);
instance->pdata = data;
// store an identifier for this plugin
PLUGIN_DEBUG("Mapping id %d and instance %p\n", instance_counter, instance);
g_hash_table_insert(instance_to_id_map, instance, GINT_TO_POINTER(instance_counter));
g_hash_table_insert(id_to_instance_map, GINT_TO_POINTER(instance_counter), instance);
instance_counter++;
PLUGIN_DEBUG ("ITNP_New return\n");
return NPERR_NO_ERROR;
}
// Starts the JVM if it is not already running
NPError start_jvm_if_needed()
{
// This is asynchronized function. It must
// have exclusivity when running.
GMutex *vm_start_mutex = g_mutex_new();
g_mutex_lock(vm_start_mutex);
PLUGIN_DEBUG("Checking JVM status...\n");
// If the jvm is already up, do nothing
if (jvm_up)
{
PLUGIN_DEBUG("JVM is up. Returning.\n");
return NPERR_NO_ERROR;
}
PLUGIN_DEBUG("No JVM is running. Attempting to start one...\n");
NPError np_error = NPERR_NO_ERROR;
ITNPPluginData* data = NULL;
// Create appletviewer-to-plugin pipe which we refer to as the input
// pipe.
// in_pipe_name
in_pipe_name = g_strdup_printf ("%s/%d-icedteanp-appletviewer-to-plugin",
data_directory.c_str(), getpid());
if (!in_pipe_name)
{
PLUGIN_ERROR ("Failed to create input pipe name.\n");
np_error = NPERR_OUT_OF_MEMORY_ERROR;
// If in_pipe_name is NULL then the g_free at
// cleanup_in_pipe_name will simply return.
goto cleanup_in_pipe_name;
}
// clean up any older pip
unlink (in_pipe_name);
PLUGIN_DEBUG ("ITNP_New: creating input fifo: %s\n", in_pipe_name);
if (mkfifo (in_pipe_name, 0600) == -1 && errno != EEXIST)
{
PLUGIN_ERROR ("Failed to create input pipe\n", strerror (errno));
np_error = NPERR_GENERIC_ERROR;
goto cleanup_in_pipe_name;
}
PLUGIN_DEBUG ("ITNP_New: created input fifo: %s\n", in_pipe_name);
// Create plugin-to-appletviewer pipe which we refer to as the
// output pipe.
// out_pipe_name
out_pipe_name = g_strdup_printf ("%s/%d-icedteanp-plugin-to-appletviewer",
data_directory.c_str(), getpid());
if (!out_pipe_name)
{
PLUGIN_ERROR ("Failed to create output pipe name.\n");
np_error = NPERR_OUT_OF_MEMORY_ERROR;
goto cleanup_out_pipe_name;
}
// clean up any older pip
unlink (out_pipe_name);
PLUGIN_DEBUG ("ITNP_New: creating output fifo: %s\n", out_pipe_name);
if (mkfifo (out_pipe_name, 0600) == -1 && errno != EEXIST)
{
PLUGIN_ERROR ("Failed to create output pipe\n", strerror (errno));
np_error = NPERR_GENERIC_ERROR;
goto cleanup_out_pipe_name;
}
PLUGIN_DEBUG ("ITNP_New: created output fifo: %s\n", out_pipe_name);
// Create plugin-debug-to-appletviewer pipe which we refer to as the
// debug pipe.
initialize_debug();//should be already initialized, but...
if (plugin_debug_to_console){
// debug_pipe_name
debug_pipe_name = g_strdup_printf ("%s/%d-icedteanp-plugin-debug-to-appletviewer",
data_directory.c_str(), getpid());
if (!debug_pipe_name)
{
PLUGIN_ERROR ("Failed to create debug pipe name.\n");
np_error = NPERR_OUT_OF_MEMORY_ERROR;
goto cleanup_debug_pipe_name;
}
// clean up any older pip
unlink (debug_pipe_name);
PLUGIN_DEBUG ("ITNP_New: creating debug fifo: %s\n", debug_pipe_name);
if (mkfifo (debug_pipe_name, 0600) == -1 && errno != EEXIST)
{
PLUGIN_ERROR ("Failed to create debug pipe\n", strerror (errno));
np_error = NPERR_GENERIC_ERROR;
goto cleanup_debug_pipe_name;
}
PLUGIN_DEBUG ("ITNP_New: created debug fifo: %s\n", debug_pipe_name);
}
// Start a separate appletviewer process for each applet, even if
// there are multiple applets in the same page. We may need to
// change this behaviour if we find pages with multiple applets that
// rely on being run in the same VM.
np_error = plugin_start_appletviewer (data);
// Create plugin-to-appletviewer channel. The default encoding for
// the file is UTF-8.
// out_to_appletviewer
out_to_appletviewer = g_io_channel_new_file (out_pipe_name,
"w", &channel_error);
if (!out_to_appletviewer)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to create output channel, '%s'\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to create output channel\n");
np_error = NPERR_GENERIC_ERROR;
goto cleanup_out_to_appletviewer;
}
// Watch for hangup and error signals on the output pipe.
out_watch_source =
g_io_add_watch (out_to_appletviewer,
(GIOCondition) (G_IO_ERR | G_IO_HUP),
plugin_out_pipe_callback, (gpointer) out_to_appletviewer);
// Create appletviewer-to-plugin channel. The default encoding for
// the file is UTF-8.
// in_from_appletviewer
in_from_appletviewer = g_io_channel_new_file (in_pipe_name,
"r", &channel_error);
if (!in_from_appletviewer)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to create input channel, '%s'\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to create input channel\n");
np_error = NPERR_GENERIC_ERROR;
goto cleanup_in_from_appletviewer;
}
// Watch for hangup and error signals on the input pipe.
in_watch_source =
g_io_add_watch (in_from_appletviewer,
(GIOCondition) (G_IO_IN | G_IO_ERR | G_IO_HUP),
plugin_in_pipe_callback, (gpointer) in_from_appletviewer);
// Create plugin-to-appletviewer console debug channel. The default encoding for
// the file is UTF-8.
// debug_to_appletviewer
if (plugin_debug_to_console){
debug_to_appletviewer = g_io_channel_new_file (debug_pipe_name,
"w", &channel_error);
if (!debug_to_appletviewer)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to debug output channel, '%s'\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to create debug channel\n");
np_error = NPERR_GENERIC_ERROR;
goto cleanup_debug_to_appletviewer;
}
}
jvm_up = TRUE;
if (plugin_debug_to_console){
//jvm is up, we can start console producer thread
pthread_t debug_to_console_consumer;
pthread_create(&debug_to_console_consumer,NULL,&flush_pre_init_messages,NULL);
}
goto done;
// Free allocated data in case of error
cleanup_debug_to_appletviewer:
if (plugin_debug_to_console){
if (debug_to_appletviewer)
g_io_channel_unref (debug_to_appletviewer);
debug_to_appletviewer = NULL;
}
cleanup_in_watch_source:
// Removing a source is harmless if it fails since it just means the
// source has already been removed.
g_source_remove (in_watch_source);
in_watch_source = 0;
cleanup_in_from_appletviewer:
if (in_from_appletviewer)
g_io_channel_unref (in_from_appletviewer);
in_from_appletviewer = NULL;
// cleanup_out_watch_source:
g_source_remove (out_watch_source);
out_watch_source = 0;
cleanup_out_to_appletviewer:
if (out_to_appletviewer)
g_io_channel_unref (out_to_appletviewer);
out_to_appletviewer = NULL;
if (plugin_debug_to_console){
// cleanup_debug_pipe:
// Delete output pipe.
PLUGIN_DEBUG ("ITNP_New: deleting debug fifo: %s\n", debug_pipe_name);
unlink (debug_pipe_name);
PLUGIN_DEBUG ("ITNP_New: deleted debug fifo: %s\n", debug_pipe_name);
}
cleanup_debug_pipe_name:
if (plugin_debug_to_console){
g_free (debug_pipe_name);
debug_pipe_name = NULL;
}
// cleanup_out_pipe:
// Delete output pipe.
PLUGIN_DEBUG ("ITNP_New: deleting input fifo: %s\n", in_pipe_name);
unlink (out_pipe_name);
PLUGIN_DEBUG ("ITNP_New: deleted input fifo: %s\n", in_pipe_name);
cleanup_out_pipe_name:
g_free (out_pipe_name);
out_pipe_name = NULL;
// cleanup_in_pipe:
// Delete input pipe.
PLUGIN_DEBUG ("ITNP_New: deleting output fifo: %s\n", out_pipe_name);
unlink (in_pipe_name);
PLUGIN_DEBUG ("ITNP_New: deleted output fifo: %s\n", out_pipe_name);
cleanup_in_pipe_name:
g_free (in_pipe_name);
in_pipe_name = NULL;
cleanUpDir();
done:
IcedTeaPluginUtilities::printDebugStatus();
// Now other threads may re-enter.. unlock the mutex
g_mutex_unlock(vm_start_mutex);
return np_error;
}
NPError
ITNP_GetValue (NPP instance, NPPVariable variable, void* value)
{
PLUGIN_DEBUG ("ITNP_GetValue\n");
NPError np_error = NPERR_NO_ERROR;
switch (variable)
{
// This plugin needs XEmbed support.
case NPPVpluginNeedsXEmbed:
{
PLUGIN_DEBUG ("ITNP_GetValue: returning TRUE for NeedsXEmbed.\n");
bool* bool_value = (bool*) value;
*bool_value = true;
}
break;
case NPPVpluginScriptableNPObject:
{
*(NPObject **)value = get_scriptable_object(instance);
}
break;
default:
PLUGIN_ERROR ("Unknown plugin value requested.\n");
np_error = NPERR_GENERIC_ERROR;
break;
}
PLUGIN_DEBUG ("ITNP_GetValue return\n");
return np_error;
}
NPError
ITNP_Destroy (NPP instance, NPSavedData** save)
{
PLUGIN_DEBUG ("ITNP_Destroy %p\n", instance);
ITNPPluginData* data = (ITNPPluginData*) instance->pdata;
int id = get_id_from_instance(instance);
// Let Java know that this applet needs to be destroyed
gchar* msg = (gchar*) g_malloc(512*sizeof(gchar)); // 512 is more than enough. We need < 100
g_sprintf(msg, "instance %d destroy", id);
plugin_send_message_to_appletviewer(msg);
g_free(msg);
msg = NULL;
if (data)
{
// Free plugin data.
plugin_data_destroy (instance);
}
g_hash_table_remove(instance_to_id_map, instance);
g_hash_table_remove(id_to_instance_map, GINT_TO_POINTER(id));
IcedTeaPluginUtilities::invalidateInstance(instance);
PLUGIN_DEBUG ("ITNP_Destroy return\n");
return NPERR_NO_ERROR;
}
NPError
ITNP_SetWindow (NPP instance, NPWindow* window)
{
PLUGIN_DEBUG ("ITNP_SetWindow\n");
if (instance == NULL)
{
PLUGIN_ERROR ("Invalid instance.\n");
return NPERR_INVALID_INSTANCE_ERROR;
}
gpointer id_ptr = g_hash_table_lookup(instance_to_id_map, instance);
gint id = 0;
if (id_ptr)
{
id = GPOINTER_TO_INT(id_ptr);
}
ITNPPluginData* data = (ITNPPluginData*) instance->pdata;
// Simply return if we receive a NULL window.
if ((window == NULL) || (window->window == NULL))
{
PLUGIN_DEBUG ("ITNP_SetWindow: got NULL window.\n");
return NPERR_NO_ERROR;
}
if (data->window_handle)
{
// The window already exists.
if (data->window_handle == window->window)
{
// The parent window is the same as in previous calls.
PLUGIN_DEBUG ("ITNP_SetWindow: window already exists.\n");
// Critical region. Read data->appletviewer_mutex and send
// a message to the appletviewer.
g_mutex_lock (data->appletviewer_mutex);
if (jvm_up)
{
gboolean dim_changed = FALSE;
// The window is the same as it was for the last
// SetWindow call.
if (window->width != data->window_width)
{
PLUGIN_DEBUG ("ITNP_SetWindow: window width changed.\n");
// The width of the plugin window has changed.
// Store the new width.
data->window_width = window->width;
dim_changed = TRUE;
}
if (window->height != data->window_height)
{
PLUGIN_DEBUG ("ITNP_SetWindow: window height changed.\n");
// The height of the plugin window has changed.
// Store the new height.
data->window_height = window->height;
dim_changed = TRUE;
}
if (dim_changed) {
gchar* message = g_strdup_printf ("instance %d width %d height %d",
id, window->width, window->height);
plugin_send_message_to_appletviewer (message);
g_free (message);
message = NULL;
}
}
else
{
// The appletviewer is not running.
PLUGIN_DEBUG ("ITNP_SetWindow: appletviewer is not running.\n");
}
g_mutex_unlock (data->appletviewer_mutex);
}
else
{
// The parent window has changed. This branch does run but
// doing nothing in response seems to be sufficient.
PLUGIN_DEBUG ("ITNP_SetWindow: parent window changed.\n");
}
}
else
{
// Else this is initialization
PLUGIN_DEBUG ("ITNP_SetWindow: setting window.\n");
// Critical region. Send messages to appletviewer.
g_mutex_lock (data->appletviewer_mutex);
// Store the window handle and dimensions
data->window_handle = window->window;
data->window_width = window->width;
data->window_height = window->height;
// Now we have everything. Send this data to the Java side
plugin_send_initialization_message(
data->instance_id, (gulong) data->window_handle,
data->window_width, data->window_height, data->parameters_string);
g_mutex_unlock (data->appletviewer_mutex);
}
PLUGIN_DEBUG ("ITNP_SetWindow return\n");
return NPERR_NO_ERROR;
}
NPError
ITNP_NewStream (NPP instance, NPMIMEType type, NPStream* stream,
NPBool seekable, uint16_t* stype)
{
PLUGIN_DEBUG ("ITNP_NewStream\n");
PLUGIN_DEBUG ("ITNP_NewStream return\n");
return NPERR_GENERIC_ERROR;
}
void
ITNP_StreamAsFile (NPP instance, NPStream* stream, const char* filename)
{
PLUGIN_DEBUG ("ITNP_StreamAsFile\n");
PLUGIN_DEBUG ("ITNP_StreamAsFile return\n");
}
NPError
ITNP_DestroyStream (NPP instance, NPStream* stream, NPReason reason)
{
PLUGIN_DEBUG ("ITNP_DestroyStream\n");
PLUGIN_DEBUG ("ITNP_DestroyStream return\n");
return NPERR_NO_ERROR;
}
int32_t
ITNP_WriteReady (NPP instance, NPStream* stream)
{
PLUGIN_DEBUG ("ITNP_WriteReady\n");
PLUGIN_DEBUG ("ITNP_WriteReady return\n");
return 0;
}
int32_t
ITNP_Write (NPP instance, NPStream* stream, int32_t offset, int32_t len,
void* buffer)
{
PLUGIN_DEBUG ("ITNP_Write\n");
PLUGIN_DEBUG ("ITNP_Write return\n");
return 0;
}
void
ITNP_Print (NPP instance, NPPrint* platformPrint)
{
PLUGIN_DEBUG ("ITNP_Print\n");
PLUGIN_DEBUG ("ITNP_Print return\n");
}
int16_t
ITNP_HandleEvent (NPP instance, void* event)
{
PLUGIN_DEBUG ("ITNP_HandleEvent\n");
PLUGIN_DEBUG ("ITNP_HandleEvent return\n");
return 0;
}
void
ITNP_URLNotify (NPP instance, const char* url, NPReason reason,
void* notifyData)
{
PLUGIN_DEBUG ("ITNP_URLNotify\n");
PLUGIN_DEBUG ("ITNP_URLNotify return\n");
}
NPError
get_cookie_info(const char* siteAddr, char** cookieString, uint32_t* len)
{
// Only attempt to perform this operation if there is a valid plugin instance
if (g_hash_table_size(instance_to_id_map) <= 0)
{
return NPERR_GENERIC_ERROR;
}
// getvalueforurl needs an NPP instance. Quite frankly, there is no easy way
// to know which instance needs the information, as applets on Java side can
// be multi-threaded and the thread making a proxy.cookie request cannot be
// easily tracked.
// Fortunately, XULRunner does not care about the instance as long as it is
// valid. So we just pick the first valid one and use it. Proxy/Cookie
// information is not instance specific anyway, it is URL specific.
if (browser_functions.getvalueforurl)
{
gpointer instance=getFirstInTableInstance(instance_to_id_map);
return browser_functions.getvalueforurl((NPP) instance, NPNURLVCookie, siteAddr, cookieString, len);
} else
{
return NPERR_GENERIC_ERROR;
}
return NPERR_NO_ERROR;
}
static NPError
set_cookie_info(const char* siteAddr, const char* cookieString, uint32_t len)
{
// Only attempt to perform this operation if there is a valid plugin instance
if (g_hash_table_size(instance_to_id_map) > 0 && browser_functions.getvalueforurl)
{
// We arbitrarily use the first valid instance we can grab
// For an explanation of the logic behind this, see get_cookie_info
gpointer instance = getFirstInTableInstance(instance_to_id_map);
return browser_functions.setvalueforurl((NPP) instance, NPNURLVCookie, siteAddr, cookieString, len);
}
return NPERR_GENERIC_ERROR;;
}
// HELPER FUNCTIONS
ITNPPluginData*
plugin_data_new ()
{
PLUGIN_DEBUG ("plugin_data_new\n");
ITNPPluginData* data = (ITNPPluginData*)browser_functions.memalloc(sizeof (struct ITNPPluginData));
if (data)
{
// Call constructor on allocated data
new (data) ITNPPluginData();
}
PLUGIN_DEBUG ("plugin_data_new return\n");
return data;
}
// Documentbase retrieval. This function gets the current document's
// documentbase. This function relies on browser-private data so it
// will only work when the plugin is loaded in a Mozilla-based
// browser.
static std::string
plugin_get_documentbase (NPP instance)
{
PLUGIN_DEBUG ("plugin_get_documentbase\n");
// FIXME: This method is not ideal, but there are no known NPAPI call
// for this. See thread for more information:
// http://www.mail-archive.com/chromium-dev@googlegroups.com/msg04844.html
// Additionally, since it is insecure, we cannot use it for making
// security decisions.
NPObject* window;
browser_functions.getvalue(instance, NPNVWindowNPObject, &window);
NPVariant location;
NPIdentifier location_id = browser_functions.getstringidentifier("location");
browser_functions.getproperty(instance, window, location_id, &location);
NPVariant href;
NPIdentifier href_id = browser_functions.getstringidentifier("href");
browser_functions.getproperty(instance, NPVARIANT_TO_OBJECT(location),
href_id, &href);
std::string href_str = IcedTeaPluginUtilities::NPVariantAsString(href);
// Release references.
browser_functions.releasevariantvalue(&href);
browser_functions.releasevariantvalue(&location);
PLUGIN_DEBUG ("plugin_get_documentbase return\n");
PLUGIN_DEBUG("plugin_get_documentbase returning: %s\n", href_str.c_str());
return href_str;
}
// plugin_in_pipe_callback is called when data is available on the
// input pipe, or when the appletviewer crashes or is killed. It may
// be called after data has been destroyed in which case it simply
// returns FALSE to remove itself from the glib main loop.
static gboolean
plugin_in_pipe_callback (GIOChannel* source,
GIOCondition condition,
gpointer plugin_data)
{
PLUGIN_DEBUG ("plugin_in_pipe_callback\n");
gboolean keep_installed = TRUE;
if (condition & G_IO_IN)
{
gchar* message = NULL;
if (g_io_channel_read_line (in_from_appletviewer,
&message, NULL, NULL,
&channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to read line from input channel, %s\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to read line from input channel\n");
} else
{
consume_message(message);
}
g_free (message);
message = NULL;
keep_installed = TRUE;
}
if (condition & (G_IO_ERR | G_IO_HUP))
{
PLUGIN_DEBUG ("appletviewer has stopped.\n");
keep_installed = FALSE;
}
PLUGIN_DEBUG ("plugin_in_pipe_callback return\n");
return keep_installed;
}
static
void consume_plugin_message(gchar* message) {
// internal plugin related message
gchar** parts = g_strsplit (message, " ", 5);
if (g_str_has_prefix(parts[1], "PluginProxyInfo"))
{
gchar* proxy = NULL;
uint32_t len = 0;
gchar* decoded_url = (gchar*) calloc(strlen(parts[4]) + 1, sizeof(gchar));
IcedTeaPluginUtilities::decodeURL(parts[4], &decoded_url);
PLUGIN_DEBUG("parts[0]=%s, parts[1]=%s, reference, parts[3]=%s, parts[4]=%s -- decoded_url=%s\n", parts[0], parts[1], parts[3], parts[4], decoded_url);
gchar* proxy_info = NULL;
proxy_info = g_strconcat ("plugin PluginProxyInfo reference ", parts[3], " ", NULL);
if (get_proxy_info(decoded_url, &proxy, &len) == NPERR_NO_ERROR)
{
proxy_info = g_strconcat (proxy_info, proxy, NULL);
}
PLUGIN_DEBUG("Proxy info: %s\n", proxy_info);
plugin_send_message_to_appletviewer(proxy_info);
free(decoded_url);
decoded_url = NULL;
g_free(proxy_info);
proxy_info = NULL;
g_free(proxy);
proxy = NULL;
} else if (g_str_has_prefix(parts[1], "PluginCookieInfo"))
{
gchar* decoded_url = (gchar*) calloc(strlen(parts[4])+1, sizeof(gchar));
IcedTeaPluginUtilities::decodeURL(parts[4], &decoded_url);
gchar* cookie_info = g_strconcat ("plugin PluginCookieInfo reference ", parts[3], " ", NULL);
gchar* cookie_string = NULL;
uint32_t len;
if (get_cookie_info(decoded_url, &cookie_string, &len) == NPERR_NO_ERROR)
{
cookie_info = g_strconcat (cookie_info, cookie_string, NULL);
}
PLUGIN_DEBUG("Cookie info: %s\n", cookie_info);
plugin_send_message_to_appletviewer(cookie_info);
free(decoded_url);
decoded_url = NULL;
g_free(cookie_info);
cookie_info = NULL;
g_free(cookie_string);
cookie_string = NULL;
} else if (g_str_has_prefix(parts[1], "PluginSetCookie"))
{
// Message structure: plugin PluginSetCookie reference -1 <url> <cookie>
gchar** cookie_parts = g_strsplit (message, " ", 6);
if (g_strv_length(cookie_parts) < 6)
{
g_strfreev (parts);
g_strfreev (cookie_parts);
return; // Defensive, message _should_ be properly formatted
}
gchar* decoded_url = (gchar*) calloc(strlen(cookie_parts[4])+1, sizeof(gchar));
IcedTeaPluginUtilities::decodeURL(cookie_parts[4], &decoded_url);
gchar* cookie_string = cookie_parts[5];
uint32_t len = strlen(cookie_string);
if (set_cookie_info(decoded_url, cookie_string, len) == NPERR_NO_ERROR)
{
PLUGIN_DEBUG("Setting cookie for URL %s to %s\n", decoded_url, cookie_string);
} else
{
PLUGIN_DEBUG("Not able to set cookie for URL %s to %s\n", decoded_url, cookie_string);
}
free(decoded_url);
decoded_url = NULL;
g_strfreev (cookie_parts);
cookie_parts = NULL;
}
g_strfreev (parts);
parts = NULL;
}
void consume_message(gchar* message) {
PLUGIN_DEBUG (" PIPE: plugin read: %s\n", message);
if (g_str_has_prefix (message, "instance"))
{
ITNPPluginData* data;
gchar** parts = g_strsplit (message, " ", -1);
guint parts_sz = g_strv_length (parts);
int instance_id = atoi(parts[1]);
NPP instance = (NPP) g_hash_table_lookup(id_to_instance_map,
GINT_TO_POINTER(instance_id));
if (instance_id > 0 && !instance)
{
PLUGIN_DEBUG("Instance %d is not active. Refusing to consume message \"%s\"\n", instance_id, message);
return;
}
else if (instance)
{
data = (ITNPPluginData*) instance->pdata;
}
if (g_str_has_prefix (parts[2], "status"))
{
// clear the "instance X status" parts
strcpy(parts[0], "");
strcpy(parts[1], "");
strcpy(parts[2], "");
// join the rest
gchar* status_message = g_strjoinv(" ", parts);
PLUGIN_DEBUG ("plugin_in_pipe_callback: setting status %s\n", status_message);
(*browser_functions.status) (data->owner, status_message);
g_free(status_message);
status_message = NULL;
}
else if (g_str_has_prefix (parts[1], "internal"))
{
//s->post(message);
}
else
{
// All other messages are posted to the bus, and subscribers are
// expected to take care of them. They better!
java_to_plugin_bus->post(message);
}
g_strfreev (parts);
parts = NULL;
}
else if (g_str_has_prefix (message, "context"))
{
java_to_plugin_bus->post(message);
}
else if (g_str_has_prefix (message, "plugin "))
{
consume_plugin_message(message);
}
else
{
g_print (" Unable to handle message: %s\n", message);
}
}
void get_instance_from_id(int id, NPP& instance)
{
instance = (NPP) g_hash_table_lookup(id_to_instance_map,
GINT_TO_POINTER(id));
}
int get_id_from_instance(NPP instance)
{
int id = GPOINTER_TO_INT(g_hash_table_lookup(instance_to_id_map,
instance));
PLUGIN_DEBUG("Returning id %d for instance %p\n", id, instance);
return id;
}
NPError
get_proxy_info(const char* siteAddr, char** proxy, uint32_t* len)
{
// Only attempt to perform this operation if there is a valid plugin instance
if (g_hash_table_size(instance_to_id_map) <= 0)
{
return NPERR_GENERIC_ERROR;
}
if (browser_functions.getvalueforurl)
{
NPError err;
// As in get_cookie_info, we use the first active instance
gpointer instance=getFirstInTableInstance(instance_to_id_map);
err = browser_functions.getvalueforurl((NPP) instance, NPNURLVProxy, siteAddr, proxy, len);
if (err != NPERR_NO_ERROR)
{
*proxy = (char *) malloc(sizeof **proxy * 7);
*len = g_strlcpy(*proxy, "DIRECT", 7);
}
} else
{
return NPERR_GENERIC_ERROR;
}
return NPERR_NO_ERROR;
}
// plugin_out_pipe_callback is called when the appletviewer crashes or
// is killed. It may be called after data has been destroyed in which
// case it simply returns FALSE to remove itself from the glib main
// loop.
static gboolean
plugin_out_pipe_callback (GIOChannel* source,
GIOCondition condition,
gpointer plugin_data)
{
PLUGIN_DEBUG ("plugin_out_pipe_callback\n");
ITNPPluginData* data = (ITNPPluginData*) plugin_data;
PLUGIN_DEBUG ("plugin_out_pipe_callback: appletviewer has stopped.\n");
PLUGIN_DEBUG ("plugin_out_pipe_callback return\n");
return FALSE;
}
// remove all components from LD_LIBRARY_PATH, which start with
// MOZILLA_FIVE_HOME; firefox has its own NSS based security provider,
// which conflicts with the one configured in nss.cfg.
static gchar*
plugin_filter_ld_library_path(gchar *path_old)
{
gchar *moz_home = g_strdup (g_getenv ("MOZILLA_FIVE_HOME"));
gchar *moz_prefix;
gchar *path_new;
gchar** components;
int i1, i2;
if (moz_home == NULL || path_old == NULL || strlen (path_old) == 0)
return path_old;
if (g_str_has_suffix (moz_home, "/"))
moz_home[strlen (moz_home - 1)] = '\0';
moz_prefix = g_strconcat (moz_home, "/", NULL);
components = g_strsplit (path_old, ":", -1);
for (i1 = 0, i2 = 0; components[i1] != NULL; i1++)
{
if (g_strcmp0 (components[i1], moz_home) == 0
|| g_str_has_prefix (components[i1], moz_home))
components[i2] = components[i1];
else
components[i2++] = components[i1];
}
components[i2] = NULL;
if (i1 > i2)
path_new = g_strjoinv (":", components);
g_strfreev (components);
g_free (moz_home);
g_free (moz_prefix);
g_free (path_old);
if (path_new == NULL || strlen (path_new) == 0)
{
PLUGIN_DEBUG("Unset LD_LIBRARY_PATH\n");
return NULL;
}
else
{
PLUGIN_DEBUG ("Set LD_LIBRARY_PATH: %s\n", path_new);
return path_new;
}
}
// build the environment to pass to the external plugin process
static gchar**
plugin_filter_environment(void)
{
gchar **var_names = g_listenv();
gchar **new_env = (gchar**) malloc(sizeof(gchar*) * (g_strv_length (var_names) + 1));
int i_var, i_env;
for (i_var = 0, i_env = 0; var_names[i_var] != NULL; i_var++)
{
gchar *env_value = g_strdup (g_getenv (var_names[i_var]));
if (g_str_has_prefix (var_names[i_var], "LD_LIBRARY_PATH"))
env_value = plugin_filter_ld_library_path (env_value);
if (env_value != NULL)
{
new_env[i_env++] = g_strdup_printf ("%s=%s", var_names[i_var], env_value);
g_free (env_value);
}
}
new_env[i_env] = NULL;
return new_env;
}
static NPError
plugin_test_appletviewer ()
{
PLUGIN_DEBUG ("plugin_test_appletviewer: %s\n", get_plugin_executable().c_str());
NPError error = NPERR_NO_ERROR;
gchar* command_line[3] = { NULL, NULL, NULL };
gchar** environment;
command_line[0] = g_strdup (get_plugin_executable().c_str());
command_line[1] = g_strdup("-version");
command_line[2] = NULL;
environment = plugin_filter_environment();
if (!g_spawn_async (NULL, command_line, environment,
(GSpawnFlags) 0,
NULL, NULL, NULL, &channel_error))
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to spawn applet viewer %s\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to spawn applet viewer\n");
error = NPERR_GENERIC_ERROR;
}
g_strfreev (environment);
g_free (command_line[0]);
command_line[0] = NULL;
g_free (command_line[1]);
command_line[1] = NULL;
g_free (command_line[2]);
command_line[2] = NULL;
PLUGIN_DEBUG ("plugin_test_appletviewer return\n");
return error;
}
static int
plugin_get_java_version ()
{
PLUGIN_DEBUG ("plugin_get_java_version: %s\n", get_plugin_executable().c_str());
gchar* command_line[3] = { NULL, NULL, NULL };
gchar** environment;
gchar* standard_output;
gchar* standard_error;
gint exit_status;
command_line[0] = g_strdup (get_plugin_executable().c_str());
command_line[1] = g_strdup("-version");
command_line[2] = NULL;
environment = plugin_filter_environment();
gboolean result = g_spawn_sync (NULL, command_line, environment,
(GSpawnFlags) 0,
NULL/*GSpawnChildSetupFunc*/,
NULL/*user_data*/,
&standard_output,
&standard_error,
&exit_status,
&channel_error);
if (channel_error)
{
g_error_free (channel_error);
channel_error = NULL;
}
PLUGIN_DEBUG ("got_out: %s\n", standard_output);
PLUGIN_DEBUG ("got_err: %s\n", standard_error);
g_strfreev (environment);
g_free (command_line[0]);
command_line[0] = NULL;
g_free (command_line[1]);
command_line[1] = NULL;
g_free (command_line[2]);
command_line[2] = NULL;
if ( standard_error != NULL ){
int major = 0;
int minor = 0;
sscanf(standard_error, "%*s %*s \"%d.%d", &major, &minor);
if (major == 1)
major = minor;
PLUGIN_DEBUG ("detected version %d\n", major);
PLUGIN_DEBUG ("plugin_get_java_version return\n");
return major;
}
PLUGIN_DEBUG ("detected 8 (or generally non nine)\n");
PLUGIN_DEBUG ("plugin_get_java_version return\n");
return 8;
}
const char *knownExports[]{
"java.desktop/sun.awt=ALL-UNNAMED,java.desktop",
"java.base/sun.security.provider=ALL-UNNAMED,java.desktop",
"java.base/sun.security.util=ALL-UNNAMED,java.desktop",
"java.base/sun.security.x509=ALL-UNNAMED,java.desktop",
"java.base/jdk.internal.util.jar=ALL-UNNAMED,java.desktop",
"java.base/sun.security.validator=ALL-UNNAMED,java.desktop",
"java.base/com.sun.net.ssl.internal.ssl=ALL-UNNAMED,java.desktop",
"java.base/sun.net.www.protocol.jar=ALL-UNNAMED,java.desktop",
"java.desktop/sun.awt.X11=ALL-UNNAMED,java.desktop",
"java.naming/com.sun.jndi.toolkit.url=ALL-UNNAMED,java.desktop",
"java.desktop/sun.applet=ALL-UNNAMED,java.desktop",
"java.base/sun.security.action=ALL-UNNAMED,java.desktop",
"java.base/sun.net.www.protocol.http=ALL-UNNAMED,java.desktop",
"java.desktop/sun.applet=ALL-UNNAMED,jdk.jsobject"
};
NPError
plugin_start_appletviewer (ITNPPluginData* data)
{
PLUGIN_DEBUG ("plugin_start_appletviewer\n");
NPError error = NPERR_NO_ERROR;
std::vector<std::string> command_line;
gchar** environment = NULL;
std::vector<std::string*>* jvm_args = get_jvm_args();
// Construct command line parameters
command_line.push_back(get_plugin_executable());
//for javaws shortcuts
command_line.push_back(javaws_bin_property);
command_line.push_back(javaws_name_property);
//Add JVM args to command_line
for (int i = 0; i < jvm_args->size(); i++)
{
command_line.push_back(*jvm_args->at(i));
}
command_line.push_back(PLUGIN_BOOTCLASSPATH":"+get_plugin_nashorn_jar());
if (javaVersion < 9 ) {
// for jdk8 set the classpath to avoid using the default (cwd).
command_line.push_back("-classpath");
command_line.push_back(get_plugin_rt_jar()+":"+get_plugin_jfx_jar());
} else {
command_line.push_back("-classpath");
command_line.push_back(get_plugin_jfx_jar());
command_line.push_back("--patch-module");
command_line.push_back("java.desktop="PLUGIN_JAR":"NETX_JAR);
command_line.push_back("--patch-module");
command_line.push_back("jdk.jsobject="JSOBJECT_JAR);
command_line.push_back("--add-reads");
command_line.push_back("java.base=ALL-UNNAMED,java.desktop");
command_line.push_back("--add-reads");
command_line.push_back("java.desktop=ALL-UNNAMED,java.naming");
command_line.push_back("--add-reads");
command_line.push_back("java.naming=ALL-UNNAMED,java.desktop");
for(int i = 0; i < sizeof(knownExports)/sizeof(knownExports[0]); i++) {
command_line.push_back("--add-exports");
command_line.push_back(knownExports[i]);
}
}
// Enable coverage agent if we are running instrumented plugin
#ifdef COVERAGE_AGENT
command_line.push_back(COVERAGE_AGENT);
#endif
if (plugin_debug)
{
command_line.push_back("-Xdebug");
command_line.push_back("-Xnoagent");
//Debug flags
std::string debug_flags = "-Xrunjdwp:transport=dt_socket,address=8787,server=y,";
debug_flags += plugin_debug_suspend ? "suspend=y" : "suspend=n";
command_line.push_back(debug_flags);
}
command_line.push_back("sun.applet.PluginMain");
command_line.push_back(out_pipe_name);
command_line.push_back(in_pipe_name);
if (plugin_debug_to_console){
command_line.push_back(debug_pipe_name);
}
// Finished command line parameters
environment = plugin_filter_environment();
std::vector<gchar*> vector_gchar = IcedTeaPluginUtilities::vectorStringToVectorGchar(&command_line);
gchar **command_line_args = &vector_gchar[0];
if (!g_spawn_async (NULL, command_line_args, environment,
(GSpawnFlags) G_SPAWN_DO_NOT_REAP_CHILD,
NULL, NULL, &appletviewer_pid, &channel_error))
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to spawn applet viewer %s\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to spawn applet viewer\n");
error = NPERR_GENERIC_ERROR;
}
//Free memory
g_strfreev(environment);
IcedTeaPluginUtilities::freeStringPtrVector(jvm_args);
jvm_args = NULL;
command_line_args = NULL;
if (appletviewer_pid)
{
PLUGIN_DEBUG("Initialized VM with pid=%d\n", appletviewer_pid);
appletviewer_watch_id = g_child_watch_add(appletviewer_pid, (GChildWatchFunc) appletviewer_monitor, (gpointer) appletviewer_pid);
}
PLUGIN_DEBUG ("plugin_start_appletviewer return\n");
return error;
}
/*
* Returns JVM options set in itw-settings
*/
std::vector<std::string*>*
get_jvm_args()
{
std::string output;
std::vector<std::string*>* tokenOutput = NULL;
bool args_defined = read_deploy_property_value("deployment.plugin.jvm.arguments", output);
if (!args_defined){
return new std::vector<std::string*>();
}
tokenOutput = IcedTeaPluginUtilities::strSplit(output.c_str(), " \n");
return tokenOutput;
}
/*
* Escape characters for passing to Java.
* "\n" for new line, "\\" for "\", "\:" for ";"
*/
std::string
escape_parameter_string(const char* to_encode) {
std::string encoded;
if (to_encode == NULL)
{
return encoded;
}
size_t length = strlen(to_encode);
for (int i = 0; i < length; i++)
{
if (to_encode[i] == '\n')
encoded += "\\n";
else if (to_encode[i] == '\\')
encoded += "\\\\";
else if (to_encode[i] == ';')
encoded += "\\:";
else
encoded += to_encode[i];
}
return encoded;
}
/*
* Build a string containing an encoded list of parameters to send to the applet viewer.
* The parameters are separated as 'key1;value1;key2;value2;'. As well, they are
* separated and escaped as:
* "\n" for new line, "\\" for "\", "\:" for ";"
*/
std::string
plugin_parameters_string (int argc, char* argn[], char* argv[])
{
PLUGIN_DEBUG ("plugin_parameters_string\n");
std::string parameters;
for (int i = 0; i < argc; i++)
{
if (argv[i] != NULL)
{
std::string name_escaped = escape_parameter_string(argn[i]);
std::string value_escaped = escape_parameter_string(argv[i]);
//Encode parameters and send as 'key1;value1;key2;value2;' etc
parameters += name_escaped;
parameters += ';';
parameters += value_escaped;
parameters += ';';
}
}
PLUGIN_DEBUG ("plugin_parameters_string return\n");
return parameters;
}
// plugin_send_message_to_appletviewer must be called while holding
// data->appletviewer_mutex.
void
plugin_send_message_to_appletviewer (gchar const* message)
{
PLUGIN_DEBUG ("plugin_send_message_to_appletviewer\n");
if (jvm_up)
{
gchar* newline_message = NULL;
gsize bytes_written = 0;
// Send message to appletviewer.
newline_message = g_strdup_printf ("%s\n", message);
// g_io_channel_write_chars will return something other than
// G_IO_STATUS_NORMAL if not all the data is written. In that
// case we fail rather than retrying.
if (g_io_channel_write_chars (out_to_appletviewer,
newline_message, -1, &bytes_written,
&channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to write bytes to output channel '%s' \n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to write bytes to output channel for %s", newline_message);
}
if (g_io_channel_flush (out_to_appletviewer, &channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to flush bytes to output channel '%s'\n",
channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to flush bytes to output channel for %s", newline_message);
}
g_free (newline_message);
newline_message = NULL;
PLUGIN_DEBUG (" PIPE: plugin wrote(?): %s\n", message);
}
PLUGIN_DEBUG ("plugin_send_message_to_appletviewer return\n");
}
// unlike like plugin_send_message_to_appletviewer
// do not debug
// do not error
// do not have its own line end
// is accesed by only one thread
// have own pipe
// jvm must be up
void
plugin_send_message_to_appletviewer_console (gchar const* newline_message)
{
gsize bytes_written = 0;
if (g_io_channel_write_chars (debug_to_appletviewer,
newline_message, -1, &bytes_written,
&channel_error) != G_IO_STATUS_NORMAL) {
if (channel_error) {
//error must be freed
g_error_free (channel_error);
channel_error = NULL;
}
}
}
//flush only when its full
void flush_plugin_send_message_to_appletviewer_console (){
if (g_io_channel_flush (debug_to_appletviewer, &channel_error)
!= G_IO_STATUS_NORMAL) {
if (channel_error) {
g_error_free (channel_error);
channel_error = NULL;
}
}
}
/*
* Sends the initialization message (handle/size/url) to the plugin
*/
void
plugin_send_initialization_message(char* instance, gulong handle,
int width, int height, char* url)
{
PLUGIN_DEBUG ("plugin_send_initialization_message\n");
gchar *window_message = g_strdup_printf ("instance %s handle %ld width %d height %d %s",
instance, handle, width, height, url);
plugin_send_message_to_appletviewer (window_message);
g_free (window_message);
window_message = NULL;
PLUGIN_DEBUG ("plugin_send_initialization_message return\n");
}
// Stop the appletviewer process. When this is called the
// appletviewer can be in any of three states: running, crashed or
// hung. If the appletviewer is running then sending it "shutdown"
// will cause it to exit. This will cause
// plugin_out_pipe_callback/plugin_in_pipe_callback to be called and
// the input and output channels to be shut down. If the appletviewer
// has crashed then plugin_out_pipe_callback/plugin_in_pipe_callback
// would already have been called and data->appletviewer_alive cleared
// in which case this function simply returns. If the appletviewer is
// hung then this function will be successful and the input and output
// watches will be removed by plugin_data_destroy.
// plugin_stop_appletviewer must be called with
// data->appletviewer_mutex held.
static void
plugin_stop_appletviewer ()
{
PLUGIN_DEBUG ("plugin_stop_appletviewer\n");
if (jvm_up)
{
// Shut down the appletviewer.
gsize bytes_written = 0;
if (out_to_appletviewer)
{
if (g_io_channel_write_chars (out_to_appletviewer, "shutdown",
-1, &bytes_written, &channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to write shutdown message to "
" appletviewer, %s \n", channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to write shutdown message to\n");
}
if (g_io_channel_flush (out_to_appletviewer, &channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to write shutdown message to"
" appletviewer %s \n", channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to write shutdown message to\n");
}
if (g_io_channel_shutdown (out_to_appletviewer,
TRUE, &channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to shut down appletviewer"
" output channel %s \n", channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to shut down appletviewer\n");
}
}
if (in_from_appletviewer)
{
if (g_io_channel_shutdown (in_from_appletviewer,
TRUE, &channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to shut down appletviewer"
" input channel %s \n", channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to shut down appletviewer\n");
}
}
}
jvm_up = FALSE;
sleep(2); /* Needed to prevent crashes during debug (when JDWP port is not freed by the kernel right away) */
PLUGIN_DEBUG ("plugin_stop_appletviewer return\n");
}
static void appletviewer_monitor(GPid pid, gint status, gpointer data)
{
PLUGIN_DEBUG ("appletviewer_monitor\n");
jvm_up = FALSE;
pid = -1;
PLUGIN_DEBUG ("appletviewer_monitor return\n");
}
void
plugin_data_destroy (NPP instance)
{
PLUGIN_DEBUG ("plugin_data_destroy\n");
ITNPPluginData* tofree = (ITNPPluginData*) instance->pdata;
// Remove instance from map
gpointer id_ptr = g_hash_table_lookup(instance_to_id_map, instance);
if (id_ptr)
{
gint id = GPOINTER_TO_INT(id_ptr);
g_hash_table_remove(instance_to_id_map, instance);
g_hash_table_remove(id_to_instance_map, id_ptr);
}
/* Explicitly call destructor */
tofree->~ITNPPluginData();
(*browser_functions.memfree) (tofree);
PLUGIN_DEBUG ("plugin_data_destroy return\n");
}
static bool
initialize_browser_functions(const NPNetscapeFuncs* browserTable)
{
#define NPNETSCAPEFUNCS_LAST_FIELD_USED (browserTable->setvalueforurl)
//Determine the size in bytes, as a difference of the address past the last used field
//And the browser table address
size_t usedSize = (char*)(1 + &NPNETSCAPEFUNCS_LAST_FIELD_USED) - (char*)browserTable;
// compare the reported size versus the size we required
if (browserTable->size < usedSize)
{
return false;
}
//Ensure any unused fields are NULL
memset(&browser_functions, 0, sizeof(NPNetscapeFuncs));
//browserTable->size can be larger than sizeof(NPNetscapeFuncs) (PR1106)
size_t copySize = browserTable->size < sizeof(NPNetscapeFuncs) ?
browserTable->size : sizeof(NPNetscapeFuncs);
//Copy fields according to given size
memcpy(&browser_functions, browserTable, copySize);
return true;
}
/* Set the plugin table to the correct contents, taking care not to write past
* the provided object space */
static bool
initialize_plugin_table(NPPluginFuncs* pluginTable)
{
#define NPPLUGINFUNCS_LAST_FIELD_USED (pluginTable->getvalue)
//Determine the size in bytes, as a difference of the address past the last used field
//And the browser table address
size_t usedSize = (char*)(1 + &NPPLUGINFUNCS_LAST_FIELD_USED) - (char*)pluginTable;
// compare the reported size versus the size we required
if (pluginTable->size < usedSize)
return false;
pluginTable->version = (NP_VERSION_MAJOR << 8) + NP_VERSION_MINOR;
pluginTable->size = sizeof (NPPluginFuncs);
pluginTable->newp = NPP_NewProcPtr (ITNP_New);
pluginTable->destroy = NPP_DestroyProcPtr (ITNP_Destroy);
pluginTable->setwindow = NPP_SetWindowProcPtr (ITNP_SetWindow);
pluginTable->newstream = NPP_NewStreamProcPtr (ITNP_NewStream);
pluginTable->destroystream = NPP_DestroyStreamProcPtr (ITNP_DestroyStream);
pluginTable->asfile = NPP_StreamAsFileProcPtr (ITNP_StreamAsFile);
pluginTable->writeready = NPP_WriteReadyProcPtr (ITNP_WriteReady);
pluginTable->write = NPP_WriteProcPtr (ITNP_Write);
pluginTable->print = NPP_PrintProcPtr (ITNP_Print);
pluginTable->urlnotify = NPP_URLNotifyProcPtr (ITNP_URLNotify);
pluginTable->getvalue = NPP_GetValueProcPtr (ITNP_GetValue);
return true;
}
// Make sure the plugin data directory exists, creating it if necessary.
NPError
initialize_data_directory()
{
data_directory = IcedTeaPluginUtilities::getRuntimePath() + "/icedteaplugin-";
if (getenv("USER") != NULL) {
data_directory = data_directory + getenv("USER") + "-";
}
data_directory += "XXXXXX";
// Now create a icedteaplugin subdir
char fileNameX[data_directory.length()+1];
std::strcpy (fileNameX, data_directory.c_str());
char * fileName = mkdtemp(fileNameX);
if (fileName == NULL) {
PLUGIN_ERROR ("Failed to create data directory %s, %s\n",
data_directory.c_str(),
strerror (errno));
return NPERR_GENERIC_ERROR;
}
data_directory = std::string(fileName);
//open uniques icedteaplugin subdir for one single run
data_directory_descriptor = opendir(data_directory.c_str());
if (data_directory_descriptor == NULL) {
PLUGIN_ERROR ("Failed to open data directory %s %s\n",
data_directory.c_str(), strerror (errno));
return NPERR_GENERIC_ERROR;
}
return NPERR_NO_ERROR;
}
// FACTORY FUNCTIONS
// Provides the browser with pointers to the plugin functions that we
// implement and initializes a local table with browser functions that
// we may wish to call. Called once, after browser startup and before
// the first plugin instance is created.
// The field 'initialized' is set to true once this function has
// finished. If 'initialized' is already true at the beginning of
// this function, then it is evident that NP_Initialize has already
// been called. There is no need to call this function more than once and
// this workaround avoids any duplicate calls.
__attribute__ ((visibility ("default")))
NPError
NP_Initialize (NPNetscapeFuncs* browserTable, NPPluginFuncs* pluginTable)
{
PLUGIN_DEBUG ("NP_Initialize\n");
if ((browserTable == NULL) || (pluginTable == NULL))
{
PLUGIN_ERROR ("Browser or plugin function table is NULL.\n");
return NPERR_INVALID_FUNCTABLE_ERROR;
}
// Ensure that the major version of the plugin API that the browser
// expects is not more recent than the major version of the API that
// we've implemented.
if ((browserTable->version >> 8) > NP_VERSION_MAJOR)
{
PLUGIN_ERROR ("Incompatible version.\n");
return NPERR_INCOMPATIBLE_VERSION_ERROR;
}
// Copy into a global table (browser_functions) the browser functions that we may use.
// If the browser functions needed change, update NPNETSCAPEFUNCS_LAST_FIELD_USED
// within this function
bool browser_functions_supported = initialize_browser_functions(browserTable);
// Check if everything we rely on is supported
if ( !browser_functions_supported )
{
PLUGIN_ERROR ("Invalid browser function table.\n");
return NPERR_INVALID_FUNCTABLE_ERROR;
}
// Return to the browser the plugin functions that we implement.
// If the plugin functions needed change, update NPPLUGINFUNCS_LAST_FIELD_USED
// within this function
bool plugin_functions_supported = initialize_plugin_table(pluginTable);
// Check if everything we rely on is supported
if ( !plugin_functions_supported )
{
PLUGIN_ERROR ("Invalid plugin function table.\n");
return NPERR_INVALID_FUNCTABLE_ERROR;
}
// Re-setting the above tables multiple times is OK (as the
// browser may change its function locations). However
// anything beyond this point should only run once.
if (initialized)
return NPERR_NO_ERROR;
// create directory for pipes
NPError np_error = initialize_data_directory();
if (np_error != NPERR_NO_ERROR)
{
PLUGIN_ERROR("Unable to create data directory %s\n", data_directory.c_str());
return np_error;
}
// Set appletviewer_executable.
PLUGIN_DEBUG("Executing java at %s\n", get_plugin_executable().c_str());
np_error = plugin_test_appletviewer ();
if (np_error != NPERR_NO_ERROR)
{
PLUGIN_ERROR("Unable to find java executable %s\n", get_plugin_executable().c_str());
return np_error;
}
javaVersion = plugin_get_java_version();
initialized = true;
// Initialize threads (needed for mutexes).
if (!g_thread_supported ())
g_thread_init (NULL);
plugin_instance_mutex = g_mutex_new ();
PLUGIN_DEBUG ("NP_Initialize: using %s\n", get_plugin_executable().c_str());
plugin_req_proc = new PluginRequestProcessor();
java_req_proc = new JavaMessageSender();
java_to_plugin_bus = new MessageBus();
plugin_to_java_bus = new MessageBus();
java_to_plugin_bus->subscribe(plugin_req_proc);
plugin_to_java_bus->subscribe(java_req_proc);
pthread_create (&plugin_request_processor_thread1, NULL, &queue_processor, (void*) plugin_req_proc);
pthread_create (&plugin_request_processor_thread2, NULL, &queue_processor, (void*) plugin_req_proc);
pthread_create (&plugin_request_processor_thread3, NULL, &queue_processor, (void*) plugin_req_proc);
itnp_plugin_thread_id = pthread_self();
pthread_mutexattr_t attribute;
pthread_mutexattr_init(&attribute);
pthread_mutexattr_settype(&attribute, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(&pluginAsyncCallMutex, &attribute);
pthread_mutexattr_destroy(&attribute);
PLUGIN_DEBUG ("NP_Initialize return\n");
return NPERR_NO_ERROR;
}
// Returns a string describing the MIME type that this plugin
// handles.
__attribute__ ((visibility ("default")))
#ifdef LEGACY_XULRUNNERAPI
char*
#else
const char*
#endif
NP_GetMIMEDescription ()
{
//this function is called severaltimes between lunches
PLUGIN_DEBUG ("NP_GetMIMEDescription\n");
PLUGIN_DEBUG ("NP_GetMIMEDescription return\n");
return (char*) PLUGIN_MIME_DESC;
}
// Returns a value relevant to the plugin as a whole. The browser
// calls this function to obtain information about the plugin.
__attribute__ ((visibility ("default")))
NPError
NP_GetValue (void* future, NPPVariable variable, void* value)
{
PLUGIN_DEBUG ("NP_GetValue\n");
NPError result = NPERR_NO_ERROR;
gchar** char_value = (gchar**) value;
switch (variable)
{
case NPPVpluginNameString:
PLUGIN_DEBUG ("NP_GetValue: returning plugin name.\n");
*char_value = g_strdup (PLUGIN_FULL_NAME);
break;
case NPPVpluginDescriptionString:
PLUGIN_DEBUG ("NP_GetValue: returning plugin description.\n");
*char_value = g_strdup (PLUGIN_DESC);
break;
default:
PLUGIN_ERROR ("Unknown plugin value requested.\n");
result = NPERR_GENERIC_ERROR;
break;
}
PLUGIN_DEBUG ("NP_GetValue return\n");
return result;
}
// Shuts down the plugin. Called after the last plugin instance is
// destroyed.
__attribute__ ((visibility ("default")))
NPError
NP_Shutdown (void)
{
PLUGIN_DEBUG ("NP_Shutdown\n");
// Free mutex.
if (plugin_instance_mutex)
{
g_mutex_free (plugin_instance_mutex);
plugin_instance_mutex = NULL;
}
// stop the appletviewer
plugin_stop_appletviewer();
// remove monitor
if (appletviewer_watch_id != -1)
g_source_remove(appletviewer_watch_id);
// Removing a source is harmless if it fails since it just means the
// source has already been removed.
g_source_remove (in_watch_source);
in_watch_source = 0;
// cleanup_in_from_appletviewer:
if (in_from_appletviewer)
g_io_channel_unref (in_from_appletviewer);
in_from_appletviewer = NULL;
// cleanup_out_watch_source:
g_source_remove (out_watch_source);
out_watch_source = 0;
// cleanup_out_to_appletviewer:
if (out_to_appletviewer)
g_io_channel_unref (out_to_appletviewer);
out_to_appletviewer = NULL;
// cleanup_out_pipe:
// Delete output pipe.
PLUGIN_DEBUG ("NP_Shutdown: deleting output fifo: %s\n", out_pipe_name);
unlink (out_pipe_name);
PLUGIN_DEBUG ("NP_Shutdown: deleted output fifo: %s\n", out_pipe_name);
// cleanup_out_pipe_name:
g_free (out_pipe_name);
out_pipe_name = NULL;
// cleanup_in_pipe:
// Delete input pipe.
PLUGIN_DEBUG ("NP_Shutdown: deleting input fifo: %s\n", in_pipe_name);
unlink (in_pipe_name);
PLUGIN_DEBUG ("NP_Shutdown: deleted input fifo: %s\n", in_pipe_name);
// cleanup_in_pipe_name:
g_free (in_pipe_name);
in_pipe_name = NULL;
if (plugin_debug_to_console){
//jvm_up is now false
if (g_io_channel_shutdown (debug_to_appletviewer,
TRUE, &channel_error)
!= G_IO_STATUS_NORMAL)
{
if (channel_error)
{
PLUGIN_ERROR ("Failed to shut down appletviewer"
" debug channel\n", channel_error->message);
g_error_free (channel_error);
channel_error = NULL;
}
else
PLUGIN_ERROR ("Failed to shut down debug to appletviewer\n");
}
// cleanup_out_to_appletviewer:
if (debug_to_appletviewer)
g_io_channel_unref (debug_to_appletviewer);
out_to_appletviewer = NULL;
// cleanup_debug_pipe:
// Delete debug pipe.
PLUGIN_DEBUG ("NP_Shutdown: deleting debug fifo: %s\n", debug_pipe_name);
unlink (debug_pipe_name);
PLUGIN_DEBUG ("NP_Shutdown: deleted debug fifo: %s\n", debug_pipe_name);
// cleanup_out_pipe_name:
g_free (debug_pipe_name);
debug_pipe_name = NULL;
}
// Destroy the call queue mutex
pthread_mutex_destroy(&pluginAsyncCallMutex);
initialized = false;
pthread_cancel(plugin_request_processor_thread1);
pthread_cancel(plugin_request_processor_thread2);
pthread_cancel(plugin_request_processor_thread3);
pthread_join(plugin_request_processor_thread1, NULL);
pthread_join(plugin_request_processor_thread2, NULL);
pthread_join(plugin_request_processor_thread3, NULL);
java_to_plugin_bus->unSubscribe(plugin_req_proc);
plugin_to_java_bus->unSubscribe(java_req_proc);
//internal_bus->unSubscribe(java_req_proc);
//internal_bus->unSubscribe(plugin_req_proc);
delete plugin_req_proc;
delete java_req_proc;
delete java_to_plugin_bus;
delete plugin_to_java_bus;
//delete internal_bus;
cleanUpDir();
PLUGIN_DEBUG ("NP_Shutdown return\n");
if (plugin_debug_to_file){
fflush (plugin_file_log);
//fclose (plugin_file_log);
//keep writing untill possible!
}
return NPERR_NO_ERROR;
}
NPObject*
get_scriptable_object(NPP instance)
{
NPObject* obj;
ITNPPluginData* data = (ITNPPluginData*) instance->pdata;
if (data->is_applet_instance) // dummy instance/package?
{
JavaRequestProcessor java_request = JavaRequestProcessor();
JavaResultData* java_result;
std::string instance_id = std::string();
std::string applet_class_id = std::string();
int id = get_id_from_instance(instance);
gchar* id_str = g_strdup_printf ("%d", id);
// Some browsers.. (e.g. chromium) don't call NPP_SetWindow
// for 0x0 plugins and therefore require initialization with
// a 0 handle
if (!data->window_handle)
{
plugin_send_initialization_message(data->instance_id, 0, 0, 0, data->parameters_string);
}
java_result = java_request.getAppletObjectInstance(id_str);
g_free(id_str);
if (java_result->error_occurred)
{
PLUGIN_ERROR("Error: Unable to fetch applet instance id from Java side.\n");
return NULL;
}
instance_id.append(*(java_result->return_string));
java_result = java_request.getClassID(instance_id);
if (java_result->error_occurred)
{
PLUGIN_ERROR("Error: Unable to fetch applet instance id from Java side.\n");
return NULL;
}
applet_class_id.append(*(java_result->return_string));
obj = IcedTeaScriptableJavaObject::get_scriptable_java_object(instance, applet_class_id, instance_id, false);
} else
{
obj = IcedTeaScriptableJavaPackageObject::get_scriptable_java_package_object(instance, "");
}
return obj;
}
NPObject*
allocate_scriptable_object(NPP npp, NPClass *aClass)
{
PLUGIN_DEBUG("Allocating new scriptable object\n");
return new IcedTeaScriptablePluginObject(npp);
}
|