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
|
/*
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package nsk.share.jpda;
import java.io.*;
import java.net.*;
import java.util.*;
import nsk.share.*;
import nsk.share.jpda.*;
/**
* <code>BindServer</code> is an utility to perform JPDA tests
* in remote mode across network.
* <p>
* This utility should be started on remote host. It listens for connection
* from JPDA tests and launches debuggee VM on this host.
* <p>
* <code>BindServer</code> works together with <code>Binder</code> used in
* the tests to incapsulate actions required for launching debuggee VM.
* See <code>ProcessBinder</code> and <code>DebugeeArgumentHandler</code>
* to know how run tests in local or remote mode across network or
* on an single host.
* <p>
* <code>BindServer</code> is started on the debuggee host.
* It recognizes following command line options:
* <ul>
* <li><code>-bind.file=<i>filename</i></code> - configuration file
* <li><code>-verbose</code> - print verbose messages
* </ul>
* <p>
* Only required option is <code>-bind.file</code>, which points to the file
* where pairs of particular pathes are presented as they are seen from
* both hosts along with some other <code>BindServer</code> options.
* See <i>execution.html</i> to read more about format of bind-file.
*
* @see DebugeeBinder
* @see DebugeeArgumentHandler
*/
public class BindServer implements Finalizable {
/** Version of <code>BindServer</code> implementation. */
public static final long VERSION = 2;
/** Timeout in milliseconds used for waiting for inner threads. */
private static long THREAD_TIMEOUT = DebugeeBinder.THREAD_TIMEOUT; // milliseconds
private static int PASSED = 0;
private static int FAILED = 2;
private static int JCK_BASE = 95;
private static int TRACE_LEVEL_PACKETS = 10;
private static int TRACE_LEVEL_THREADS = 20;
private static int TRACE_LEVEL_ACTIONS = 30;
private static int TRACE_LEVEL_SOCKETS = 40;
private static int TRACE_LEVEL_IO = 50;
private static String pathSeparator = System.getProperty("path.separator");
private static String fileSeparator = System.getProperty("file.separator");
private static char pathSeparatorChar = pathSeparator.charAt(0);
private static char fileSeparatorChar = fileSeparator.charAt(0);
private static Log log = null;
private static Log.Logger logger = null;
private static ArgumentHandler argHandler = null;
private static String pathConvertions[][] = null;
private ListeningThread listeningThread = null;
private int totalRequests = 0;
private int acceptedRequests = 0;
private int unauthorizedRequests = 0;
private int busyRequests = 0;
/**
* Start <code>BindServer</code> utility from command line.
* This method invokes <code>run()</code> and redirects output
* to <code>System.err</code>.
*
* @param argv list of command line arguments
*/
public static void main (String argv[]) {
System.exit(run(argv,System.err) + JCK_BASE);
}
/**
* Start <code>BindServer</code> utility from JCK-compatible
* environment.
*
* @param argv list of command line arguments
* @param out outpur stream for log messages
*
* @return FAILED if error occured
* PASSED oterwise
*/
public static int run(String argv[], PrintStream out) {
return new BindServer().runIt(argv, out);
}
/**
* Perform execution of <code>BindServer</code>.
* This method handles command line arguments, starts seperate
* thread for listening connection from test on remote host,
* and waits for command "exit" from a user.
* Finally it closes all conections and prints connections
* statiscs.
*
* @param argv list of command line arguments
* @param out outpur stream for log messages
*
* @return FAILED if error occured
* PASSED oterwise
*/
private int runIt(String argv[], PrintStream out) {
try {
argHandler = new ArgumentHandler(argv);
} catch (ArgumentHandler.BadOption e) {
out.println("ERROR: " + e.getMessage());
return FAILED;
}
if (argHandler.getArguments().length > 0) {
out.println("ERROR: " + "Too many positional arguments in command line");
return FAILED;
}
log = new Log(out, argHandler);
log.enableErrorsSummary(false);
log.enableVerboseOnError(false);
logger = new Log.Logger(log, "");
Finalizer bindFinalizer = new Finalizer(this);
bindFinalizer.activate();
logger.trace(TRACE_LEVEL_THREADS, "BindServer: starting main thread");
logger.display("Listening to port: " + argHandler.getBindPortNumber());
logger.display("Authorizing host: " + argHandler.getDebuggerHost());
pathConvertions = new String[][] {
{ "TESTED_JAVA_HOME", argHandler.getDebuggerJavaHome(), argHandler.getDebugeeJavaHome() },
{ "TESTBASE", argHandler.getDebuggerTestbase(), argHandler.getDebugeeTestbase() },
{ "WORKDIR", argHandler.getDebuggerWorkDir(), argHandler.getDebugeeWorkDir() }
};
logger.display("Translating pathes:");
for (int i = 0; i < pathConvertions.length; i++) {
logger.display(pathConvertions[i][0] + ":" +"\n"
+ " " + pathConvertions[i][1] + "\n"
+ " =>" + "\n"
+ " " + pathConvertions[i][2]);
}
String windir = argHandler.getDebugeeWinDir();
if (!(windir == null || windir.equals(""))) {
logger.display("Using WINDIR: \n"
+ " " + argHandler.getDebugeeWinDir());
}
BufferedReader stdIn = new BufferedReader(
new InputStreamReader(System.in));
listeningThread = new ListeningThread(this);
listeningThread.bind();
listeningThread.start();
System.out.println("\n"
+ "BindServer started" + "\n"
+ "Type \"exit\" to shut down BindServer"
+ "\n");
for (;;) {
try {
String userInput = stdIn.readLine();
if (userInput == null || userInput.equals("exit")
|| userInput.equals("quit")) {
logger.display("Shutting down BindServer");
stdIn.close();
stdIn = null;
break;
} else if (userInput.trim().equals("")) {
continue;
} else {
System.out.println("ERROR: Unknown command: " + userInput);
}
} catch(IOException e) {
e.printStackTrace(log.getOutStream());
throw new Failure("Caught exception while reading console command:\n\t"
+ e);
}
}
printSummary(System.out);
logger.trace(TRACE_LEVEL_THREADS, "BindServer: exiting main thread");
try {
finalize();
} catch (Throwable e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while finalization of BindServer:\n\t" + e);
}
return PASSED;
}
/**
* Print usefull summary statistics about connections occured.
*
* @param out output stream for printing statistics
*/
private void printSummary(PrintStream out) {
out.println("\n"
+ "Connections summary:" + "\n"
+ " Tolal connections: " + totalRequests + "\n"
+ " Accepted authorized: " + acceptedRequests + "\n"
+ " Rejected unauthorized " + unauthorizedRequests + "\n"
+ " Rejected being busy: " + busyRequests + "\n");
};
/**
* Check if given <code>path</code> starts with the specified prefix taking
* into account difference between <code>slashChar<code> used in <code>path</code>
* and <code>fileSeparatorChar</code> used in <code>prefix</code>.
*
* @param path path to check
* @param prefix prefix to compare with
* @param slashChar file separator used in <code>path</code>
*/
private static boolean checkPathPrefix(String path, String prefix, char slashChar) {
int prefixLength = prefix.length();
if (prefixLength > path.length()) {
return false;
}
for (int i = 0; i < prefixLength; i++) {
char pathChar = path.charAt(i);
char prefixChar = prefix.charAt(i);
if (pathChar != prefixChar) {
if ((pathChar == slashChar || pathChar == fileSeparatorChar
|| pathChar == '\\' || pathChar == '/')
&& (prefixChar == slashChar || prefixChar == fileSeparatorChar
|| prefixChar == '\\' || prefixChar == '/')) {
// do nothing
} else {
return false;
}
}
}
return true;
}
/**
* Convert given path according to list of prefixes from
* <code>pathConvertions</code> table.
*
* @param path path for converting
* @param slash file separator used in <code>path</code>
* @param name path identifier used for error messages
* @param strict force throwing Failure if path is not matched
*
* @return string with the converted path
*
* @throws Failure if path does not matched for translation
*/
private static String convertPath(String path, String slash, String name, boolean strict) {
if (path == null)
return null;
char slashChar = slash.charAt(0);
for (int i = 0; i < pathConvertions.length; i++) {
String from = pathConvertions[i][1];
String to = pathConvertions[i][2];
if (checkPathPrefix(path, from, slashChar)) {
return (to + path.substring(from.length())).replace(slashChar, fileSeparatorChar);
}
}
if (strict) {
throw new Failure("Path not matched for translation " + name + ":\n\t" + path);
}
return path;
}
/**
* Convert given list of pathes according to list of prefixes from
* <code>pathConvertions</code> table by invoking <code>convertPath()</code>
* for each path from the list.
*
* @param list list of pathes for converting
* @param slash file separator used in pathes
* @param name path identifier used for error messages
* @param strict force throwing Failure if some path is not matched
*
* @return list of strings with converted pathes
*
* @throws Failure if some path does not matched for translation
*
* @see #convertPath()
*/
private static String[] convertPathes(String[] list, String slash, String name, boolean strict) {
String[] converted = new String[list.length];
for (int i = 0; i < list.length; i++) {
converted[i] = convertPath(list[i], slash, name, strict);
}
return converted;
}
/**
* Pause current thread for specified amount of time in milliseconds,
* This method uses <code>Object.wait(long)</code> method as a reliable
* method which prevents whole VM from suspending.
*
* @param millisecs - amount of time in milliseconds
*/
private static void sleeping(int millisecs) {
Object obj = new Object();
synchronized(obj) {
try {
obj.wait(millisecs);
} catch (InterruptedException e) {
e.printStackTrace(log.getOutStream());
new Failure("Thread interrupted while sleeping:\n\t" + e);
}
}
}
/**
* Wait for given thread finished for specified timeout or
* interrupt this thread if not finished.
*
* @param thr thread to wait for
* @param millisecs timeout in milliseconds
*/
private static void waitInterruptThread(Thread thr, long millisecs) {
if (thr != null) {
String name = thr.getName();
try {
if (thr.isAlive()) {
logger.trace(TRACE_LEVEL_THREADS, "Waiting for thread: " + name);
thr.join(millisecs);
}
} catch (InterruptedException e) {
e.printStackTrace(log.getOutStream());
throw new Failure ("Thread interrupted while waiting for another thread:\n\t"
+ e);
} finally {
if (thr.isAlive()) {
logger.trace(TRACE_LEVEL_THREADS, "Interrupting not finished thread: " + name);
thr.interrupt();
/*
logger.display("Stopping not finished thread: " + thr);
thr.stop();
*/
}
}
}
}
/**
* Wait for given thread finished for default timeout
* <code>THREAD_TIMEOUT</code> and
* interrupt this thread if not finished.
*
* @param thr thread to wait for
*/
private static void waitInterruptThread(Thread thr) {
waitInterruptThread(thr, THREAD_TIMEOUT);
}
/**
* Close <code>BindServer</code> by finishing all threads and closing
* all conections.
*/
public synchronized void close() {
if (listeningThread != null) {
listeningThread.close();
listeningThread = null;
}
}
/**
* Make finalization of <code>BindServer</code> object by invoking
* method <code>close()</code>.
*
* @see #close()
*/
protected void finalize() throws Throwable {
close();
super.finalize();
}
/**
* Make finalization of <code>BindServer</code> object at program exit
* by invoking method <code>finalize()</code>.
*
* @see #finalize()
*/
public void finalizeAtExit() throws Throwable {
finalize();
logger.trace(TRACE_LEVEL_THREADS, "BindServer: finalization at exit completed");
}
///////// Thread listening a TCP/IP socket //////////
/**
* An inner thread used for listening connection from remote test
* and starting separate serving thread for each accepted connection.
*
* @see ServingThread
*/
private static class ListeningThread extends Thread {
private volatile boolean shouldStop = false;
private volatile boolean closed = false;
private BindServer owner = null;
private volatile ServingThread servingThread = null;
private volatile int taskCount = 0;
private ObjectOutputStream socOut = null;
private ObjectInputStream socIn = null;
private String autorizedHostName = argHandler.getDebuggerHost();
private InetAddress autorizedInetAddresses[] = null;
private int port = argHandler.getBindPortNumber();
private Socket socket = null;
private ServerSocket serverSocket = null;
private InetAddress clientInetAddr = null;
private String clientHostName = null;
private SocketConnection connection = null;
/**
* Make listening thread for given <code>BindServer</code> object
* as an owner and bind it to listening port by invoking method
* <code>bind()</code>.
*
* @see bind()
*/
public ListeningThread(BindServer owner) {
super("ListeningThread");
this.owner = owner;
try {
autorizedInetAddresses = InetAddress.getAllByName(autorizedHostName);
} catch (UnknownHostException e) {
e.printStackTrace(log.getOutStream());
throw new Failure("Cannot resolve DEBUGGER_HOST value: " + autorizedHostName);
}
}
/**
* Bind ServerSocket to the specified port.
*/
public void bind() {
for (int i = 0; !shouldStop && i < DebugeeBinder.CONNECT_TRIES; i++) {
try {
logger.trace(TRACE_LEVEL_SOCKETS, "ListeningThread: binding to server socket ...");
// length of the queue = 2
serverSocket = new ServerSocket(port, 2);
// timeout for the ServerSocket.accept()
serverSocket.setSoTimeout(DebugeeBinder.CONNECT_TRY_DELAY);
logger.trace(TRACE_LEVEL_SOCKETS, "ListeningThread: socket bound: " + serverSocket);
logger.display("Bound to listening port");
return;
} catch (BindException e) {
logger.display("Socket binding try #" + i + " failed:\n\t" + e);
sleeping(DebugeeBinder.CONNECT_TRY_DELAY);
} catch (IOException e) {
e.printStackTrace(log.getOutStream());
throw new Failure("Caught exception while binding to socket:\n\t"
+ e);
}
}
throw new Failure("Unable to bind to socket after "
+ DebugeeBinder.CONNECT_TRIES + " tries");
}
/**
* Accept socket connection from authorized remote host and
* start separate <code>SrvingThread</code> to handle each connection.
* Connection from unauthorized hosts or connections made while
* current connection is alive are rejected.
*
* @see ServingThread
* @see #llowConnection()
* @see allowServing()
*/
public void run() {
String reply = null;
logger.trace(TRACE_LEVEL_THREADS, "ListeningThread: started");
logger.display("Listening for connection from remote host");
while(!(shouldStop || isInterrupted())) {
try {
try {
logger.trace(TRACE_LEVEL_SOCKETS, "ListeningThread: waiting for connection from test");
socket = serverSocket.accept();
logger.trace(TRACE_LEVEL_SOCKETS, "ListeningThread: connection accepted");
} catch(InterruptedIOException e) {
// logger.trace(TRACE_LEVEL_SOCKETS, "ListeningThread: timeout of waiting for connection from test");
continue;
}
owner.totalRequests++;
logger.display("");
clientInetAddr = socket.getInetAddress();
clientHostName = clientInetAddr.getHostName();
logger.display("Connection #" + owner.totalRequests
+ " requested from host: " + clientHostName);
connection = new SocketConnection(logger, "BindServer");
// connection.setPingTimeout(DebugeeBinder.PING_TIMEOUT);
connection.setSocket(socket);
socket = null;
if (allowConnection()) {
if (allowServing()) {
owner.acceptedRequests++;
reply = "host authorized: " + clientHostName;
logger.display("Accepting connection #" + owner.acceptedRequests
+ ": " + reply);
servingThread = new ServingThread(this, connection);
servingThread.start();
cleanHostConnection();
} else {
owner.busyRequests++;
reply = "BindServer is busy";
logger.complain("Rejecting connection #" + owner.busyRequests
+ ": " + reply);
connection.writeObject(new RequestFailed(reply));
closeHostConnection();
}
} else {
owner.unauthorizedRequests++;
reply = "host unauthorized: " + clientHostName;
logger.complain("Rejecting connection #" + owner.unauthorizedRequests
+ ": " + reply);
connection.writeObject(new RequestFailed(reply));
closeHostConnection();
}
} catch (Exception e) {
logger.complain("Caught exception while accepting connection:\n" + e);
e.printStackTrace(log.getOutStream());
}
}
logger.trace(TRACE_LEVEL_THREADS, "ListeningThread: exiting");
closeConnection();
}
/**
* Check if the connection made is from authorized host.
*
* @return true if connection is allowed because host authorized
* false if connection is rejected because host unauthorized
*/
private boolean allowConnection() {
// check if local host from loopback address
if (autorizedHostName.equals("localhost"))
return clientInetAddr.isLoopbackAddress();
// check if equal hostname
if (autorizedHostName.equals(clientHostName))
return true;
// check if equal host address
for (int i = 0; i < autorizedInetAddresses.length; i++) {
if (clientInetAddr.equals(autorizedInetAddresses[i])) {
return true;
}
}
return false;
}
/**
* Check if no current connection exists or it is dead.
* If current connection presents it will be tested by pinging
* remote host and aborted if host sends no reply. If an alive
* connection exists, new connection will be rejected.
*
* @return true if no alive connection exists
* false otherwise
*/
private boolean allowServing() {
if (servingThread == null) {
return true;
}
if (servingThread.done) {
return true;
}
if (!servingThread.isConnectionAlive()) {
logger.display("# WARNING: Previous connection from remote host is dead: aborting connection");
servingThread.close();
servingThread = null;
return true;
}
/*
logger.complain("Previous connection from remote host is alive: starting new connection");
servingThread = null;
return true;
*/
logger.complain("Previous connection from remote host is alive: reject new connection");
return false;
}
/**
* Wait for this thread finished
* for specified timeout or interrupt it.
*
* @param millis timeout in milliseconds
*/
public void waitForThread(long millis) {
shouldStop = true;
waitInterruptThread(this, millis);
}
/**
* Close socket connection from remote host.
*/
private void closeHostConnection() {
if (connection != null) {
connection.close();
}
if (socket != null) {
try {
socket.close();
} catch (IOException e) {
logger.complain("Caught IOException while closing socket:\n\t"
+ e);
}
socket = null;
}
}
/**
* Assign <null> to connection and socket objects
* but do not close them.
*/
private void cleanHostConnection() {
connection = null;
socket = null;
}
/**
* Close all connections and sockets.
*/
private void closeConnection() {
closeHostConnection();
if (serverSocket != null) {
try {
serverSocket.close();
} catch (IOException e) {
logger.complain("Caught IOException while closing ServerSocket:\n\t"
+ e);
}
serverSocket = null;
}
}
/**
* Close thread by closing all connections and waiting
* foor thread finished.
*
* @see #closeConnection()
*/
public synchronized void close() {
if (closed) {
return;
}
closeHostConnection();
if (servingThread != null) {
servingThread.close();
servingThread = null;
}
waitForThread(THREAD_TIMEOUT);
closeConnection();
closed = true;
logger.trace(TRACE_LEVEL_THREADS, "ListeningThread closed");
}
} // ListeningThread
///////// Thread working with a communication channel //////////
/**
* An internal thread for handling each connection from a test
* on remote host. It reads requests from test and starts separate
* <code>LaunchingThread</code> to execute each request.
*
* @see LaunchingThread
*/
private static class ServingThread extends Thread {
private volatile boolean shouldStop = false;
private volatile boolean closed = false;
private volatile boolean done = false;
private ListeningThread owner = null;
private LaunchingThread launchingThread = null;
private SocketConnection connection = null;
/**
* Make serving thread with specified input/output connection streams
* and given <code>Listenerthread</code> as an owner.
*
* @param owner owner of this thread
* @param connection established socket connection with test
*/
public ServingThread(ListeningThread owner, SocketConnection connection) {
super("ServingThread");
this.owner = owner;
this.connection = connection;
}
/**
* Read requests from socket connection and start <code>LaunchingThread</code>
* to perform each requested action.
*/
public void run() {
logger.trace(TRACE_LEVEL_THREADS, "ServingThread: starting handling requests from debugger");
try {
// sending OK(version)
logger.trace(TRACE_LEVEL_ACTIONS, "ServingThread: sending initial OK(VERSION) to debugger");
connection.writeObject(new OK(VERSION));
// receiving TaskID(id)
logger.trace(TRACE_LEVEL_IO, "ServingThread: waiting for TaskID from debugger");
Object taskID = connection.readObject();
logger.trace(TRACE_LEVEL_IO, "ServingThread: received TaskID from debugger: " + taskID);
if (taskID instanceof TaskID) {
String id = ((TaskID)taskID).id;
owner.taskCount++;
logger.println("[" + owner.taskCount + "/" + owner.owner.totalRequests + "]: " + id);
} else {
throw new Failure("Unexpected TaskID received form debugger: " + taskID);
}
// starting launching thread
launchingThread = new LaunchingThread(this, connection);
launchingThread.start();
// receiving and handling requests
while(!(shouldStop || isInterrupted())) {
logger.trace(TRACE_LEVEL_IO, "ServingThread: waiting for request from debugger");
Object request = connection.readObject();
logger.trace(TRACE_LEVEL_IO, "ServingThread: received request from debugger: " + request);
if (request == null) {
logger.display("Connection closed");
break;
} else if (request instanceof Disconnect) {
logger.display("Closing connection by request");
request = null;
break;
} else {
boolean success = false;
long timeToFinish = System.currentTimeMillis() + THREAD_TIMEOUT;
while (System.currentTimeMillis() < timeToFinish) {
if (launchingThread.doneRequest()) {
success = true;
logger.trace(TRACE_LEVEL_ACTIONS, "ServingThread: asking launching thread to handle request: " + request);
launchingThread.handleRequest(request);
break;
}
try {
launchingThread.join(DebugeeBinder.TRY_DELAY);
} catch (InterruptedException e) {
throw new Failure("ServingThread interrupted while waiting for LaunchingThread:\n\t"
+ e);
}
}
if (!success) {
logger.complain("Rejecting request because of being busy:\n" + request);
connection.writeObject(
new RequestFailed("Busy with handling previous request"));
}
}
}
} catch (Exception e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while handling request:\n\t" + e);
} finally {
logger.trace(TRACE_LEVEL_THREADS, "ServingThread: exiting");
closeConnection();
done = true;
}
}
/**
* Check if present socket connection is alive.
*/
private boolean isConnectionAlive() {
return (connection != null && connection.isConnected());
}
/**
* Wait for this thread finished
* for specified timeout or interrupt it.
*
* @param millis timeout in milliseconds
*/
public void waitForThread(long millis) {
shouldStop = true;
waitInterruptThread(this, millis);
}
/**
* Close socket connection from remote host.
*/
private void closeConnection() {
if (connection != null) {
connection.close();
}
if (launchingThread != null) {
launchingThread.handleRequest(null);
}
}
/**
* Close thread closing socket connection and
* waiting for thread finished.
*/
public synchronized void close() {
if (closed) {
return;
}
closeConnection();
if (launchingThread != null) {
launchingThread.close();
launchingThread = null;
}
waitForThread(THREAD_TIMEOUT);
closed = true;
logger.trace(TRACE_LEVEL_THREADS, "ServingThread closed");
}
} // ServingThread
///////// Thread serving a particular Binder's request //////////
/**
* An internal thread to execute each request from a test on remote host.
* Requests are coming from ServingThread by invoking handleRequest(Object)
* method.
*/
private static class LaunchingThread extends Thread {
private volatile boolean shouldStop = false;
private volatile boolean closed = false;
public volatile boolean done = false;
private ServingThread owner = null;
// private ProcessWaitingThread waitingThread = null;
private Process process = null;
private StreamRedirectingThread stdoutRedirectingThread = null;
private StreamRedirectingThread stderrRedirectingThread = null;
/** Notification about request occurence. */
private volatile Object notification = new Object();
/** Request to execute. */
private volatile Object request = null;
/** Socket stream to send replies to. */
private SocketConnection connection = null;
/**
* Make thread for executing requests from a test and
* send reply.
*
* @param owner owner of this thread
* @connection socket connection for sending replies
*/
public LaunchingThread(ServingThread owner, SocketConnection connection) {
super("LaunchingThread");
this.owner = owner;
this.connection = connection;
}
/**
* Notify this thread that new request has come.
*
* @param request request to execute
*/
public void handleRequest(Object request) {
synchronized (notification) {
this.request = request;
notification.notifyAll();
}
}
/**
* Check if request has been executed.
*/
public boolean doneRequest() {
return done;
}
/**
* Wait for request notification from <code>ServingThread</code>
* and execute an action according to the request.
* Request <i>null</code> means thread should finish.
*/
public void run() {
logger.trace(TRACE_LEVEL_THREADS, "LaunchingThread: started to handle request");
done = true;
while (!isInterrupted()) {
// wait for new request notification
logger.trace(TRACE_LEVEL_ACTIONS, "LaunchingThread: waiting for request");
synchronized (notification) {
try {
notification.wait();
} catch (InterruptedException e) {
logger.complain("LaunchingThread interrupted while waiting for request:\n\t"
+ e);
break;
}
}
// execute the request
try {
logger.trace(TRACE_LEVEL_ACTIONS, "LaunchingThread: handling request: " + request);
if (request == null) {
break;
} else if (request instanceof LaunchDebugee) {
launchDebugee((LaunchDebugee)request);
} else if (request instanceof WaitForDebugee) {
waitForDebugee((WaitForDebugee)request);
} else if (request instanceof DebugeeExitCode) {
debugeeExitCode((DebugeeExitCode)request);
} else if (request instanceof KillDebugee) {
killDebugee((KillDebugee)request);
} else {
String reason = "Unknown request: " + request;
logger.complain(reason);
sendReply(new RequestFailed(reason));
}
} catch (Exception e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while handling request:\n\t" + e);
}
done = true;
}
done = true;
logger.trace(TRACE_LEVEL_THREADS, "LaunchingThread: exiting");
closeConnection();
}
/**
* Send given reply to remote test.
*
* @param reply reply object to send
*/
public void sendReply(Object reply) throws IOException {
connection.writeObject(reply);
}
/**
* Send given output line to remote test.
*
* @param reply wrapper object for output line to send
*/
public void sendStreamMessage(RedirectedStream wrapper) throws IOException {
logger.trace(TRACE_LEVEL_ACTIONS, "Sending output line wrapper to debugger: " + wrapper);
if (connection.isConnected()) {
sendReply(wrapper);
} else {
logger.complain("NOT redirected: " + wrapper.line);
}
}
/**
* Launch two <code>StreamRedirectingThread</code> threads to redirect
* stdin/stderr output of debuggee VM process via <code>BindServer</code>
* connection.
*
* @param process debuggee VM process
*/
private void launchStreamRedirectors(Process process) {
stdoutRedirectingThread =
new StdoutRedirectingThread(this, process.getInputStream(),
DebugeeProcess.DEBUGEE_STDOUT_LOG_PREFIX);
stdoutRedirectingThread.start();
stderrRedirectingThread =
new StderrRedirectingThread(this, process.getErrorStream(),
DebugeeProcess.DEBUGEE_STDERR_LOG_PREFIX);
stderrRedirectingThread.start();
}
/**
* Execute request for launching debuggee.
*
* @param request request to execute
*/
private void launchDebugee(LaunchDebugee request) throws IOException {
logger.trace(TRACE_LEVEL_ACTIONS, "LaunchDebugee: handle request: " + request);
if (process != null) {
logger.complain("Unable to launch debuggee: process already launched");
sendReply(new RequestFailed("Debuggee process already launched"));
return;
}
try {
String[] cmd = request.cmd;
cmd[0] = convertPath(cmd[0], request.slash, "TESTED_JAVA_HOME", true);
for (int i = 1; i < cmd.length; i++) {
cmd[i] = convertPath(cmd[i], request.slash, "JAVA_ARGS", false);
}
String workDir = convertPath(request.workDir, request.slash, "WORKDIR", true);
String[] classPathes = convertPathes(request.classPathes, request.slash, "CLASSPATH", true);
String windir = argHandler.getDebugeeWinDir();
boolean win = (!(windir == null || windir.equals("")));
String[] envp = new String[win ? 3 : 1] ;
envp[0] = "CLASSPATH=" + ArgumentParser.joinArguments(classPathes, "", pathSeparator);
if (win) {
envp[1] = "WINDIR=" + windir;
envp[2] = "SystemRoot=" + windir;
}
logger.display("Setting environment:\n"
+ " " + ArgumentHandler.joinArguments(envp, "", "\n "));
logger.display("Setting work dir:\n"
+ " " + workDir);
logger.display("Launching debuggee:\n"
+ " " + ArgumentHandler.joinArguments(cmd, "\""));
process = Runtime.getRuntime().exec(cmd, envp, new File(workDir));
logger.display(" debuggee launched successfully");
launchStreamRedirectors(process);
} catch (Exception e) {
if (!(e instanceof Failure)) {
e.printStackTrace(log.getOutStream());
}
logger.complain("Caught exception while launching debuggee:\n\t" + e);
sendReply(new CaughtException(e));
return;
}
sendReply(new OK());
}
/**
* Execute request for waiting for debuggee exited.
*
* @param request request to execute
*/
private void waitForDebugee(WaitForDebugee request) throws IOException {
logger.trace(TRACE_LEVEL_ACTIONS, "WaitForDebugee: handle request: " + request);
if (process == null) {
String reply = "No debuggee process to wait for";
logger.complain(reply);
sendReply(new RequestFailed(reply));
return;
}
logger.display("Waiting for debuggee to exit");
/*
// because timeout is not supported now
// we do not use separate thread for waiting for process
// and so following lines are commented out
waitingThread = new ProcessWaitingThread();
logger.trace(TRACE_LEVEL_ACTIONS, "LaunchingThread: starting thread for waiting for debugee process");
waitingThread.start();
try {
waitingThread.join(request.timeout);
if (waitingThread.isAlive()) {
String reply = "Timeout exceeded while waiting for debuggee to exit";
logger.complain(reply);
waitingThread.interrupt();
sendReply(socOut, new RequestFailed(reply));
return;
}
} catch (InterruptedException e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while waiting for debuggee:\n\t" + e);
sendReply(new CaughtException(e));
return;
}
int exitStatus = waitingThread.exitStatus;
waitingThread = null;
*/
int exitStatus;
try {
exitStatus = process.waitFor();
waitForRedirectors(THREAD_TIMEOUT);
process.destroy();
} catch (InterruptedException e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while waiting for debuggee process to exit:\n\t"
+ e);
sendReply(new CaughtException(e));
return;
}
logger.display(" debuggee exited with exit status: " + exitStatus);
sendReply(new OK(exitStatus));
}
/**
* Execute request for returning debuggee exit code.
*
* @param request request to execute
*/
private void debugeeExitCode(DebugeeExitCode request) throws IOException {
logger.trace(TRACE_LEVEL_ACTIONS, "DebugeeExitCode: handle request: " + request);
if (process == null) {
String reply = "No debuggee process to get exit code for";
logger.complain(reply);
sendReply(new RequestFailed(reply));
return;
}
int exitStatus = 0;
try {
exitStatus = process.exitValue();
} catch (IllegalThreadStateException e) {
logger.display("# WARNING: Caught exception while getting exit status of debuggee:\n\t"
+ e);
sendReply(new CaughtException(e));
return;
}
logger.trace(TRACE_LEVEL_ACTIONS, "DebugeeExitCode: return debuggee exit status: " + exitStatus);
sendReply(new OK(exitStatus));
}
/**
* Execute request for unconditional terminating debuggee process.
*
* @param request request to execute
*/
private void killDebugee(KillDebugee request) throws IOException {
logger.trace(TRACE_LEVEL_ACTIONS, "killDebugee: handle request: " + request);
if (process == null) {
String reply = "No debuggee process to kill";
logger.complain(reply);
sendReply(new RequestFailed(reply));
return;
}
logger.trace(TRACE_LEVEL_ACTIONS, "killDebugee: killing debuggee process");
process.destroy();
logger.trace(TRACE_LEVEL_ACTIONS, "killDebugee: debuggee process killed");
sendReply(new OK());
}
/**
* Terminate debigee VM process if still alive.
*/
private void terminateDebugeeAtExit() {
if (process != null) {
logger.trace(TRACE_LEVEL_ACTIONS, "Checking that debuggee process has exited correctly");
try {
int value = process.exitValue();
} catch (IllegalThreadStateException e) {
logger.complain("Debuggee process has not exited correctly: trying to kill it");
process.destroy();
try {
int value = process.exitValue();
} catch (IllegalThreadStateException ie) {
logger.complain("Debuggee process is alive after killing it");
}
process = null;
return;
}
logger.trace(TRACE_LEVEL_ACTIONS, "Debuggee process has exited correctly");
}
}
/**
* Wait for stream redirecting threads finished
* for specified timeout.
*
* @param millis timeout in milliseconds
*/
private void waitForRedirectors(long millis) {
try {
if (stdoutRedirectingThread != null) {
stdoutRedirectingThread.join(millis);
}
if (stderrRedirectingThread != null) {
stderrRedirectingThread.join(millis);
}
} catch (InterruptedException e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while waiting for debuggee process exited:\n\t"
+ e);
}
}
/**
* Wait for this thread finished
* for specified timeout or interrupt it.
*
* @param millis timeout in milliseconds
*/
public void waitForThread(long millis) {
shouldStop = true;
handleRequest(null);
waitInterruptThread(this, millis);
}
/**
* Close connection with debuggee.
*/
public void closeConnection() {
// no connections to close
}
/**
* Close thread by closing all connections with debuggee,
* finishing all redirectors and wait for thread finished.
*/
public synchronized void close() {
if (closed) {
return;
}
closeConnection();
terminateDebugeeAtExit();
if (stdoutRedirectingThread != null) {
stdoutRedirectingThread.close();
stdoutRedirectingThread = null;
}
if (stderrRedirectingThread != null) {
stderrRedirectingThread.close();
stderrRedirectingThread = null;
}
waitForThread(THREAD_TIMEOUT);
closed = true;
logger.trace(TRACE_LEVEL_THREADS, "LaunchingThread closed");
}
/**
* An inner thread for waiting for debuggee process exited
* and saving its exit status. (currently not used)
*/
/*
private class ProcessWaitingThread extends Thread {
int exitStatus = 0;
ProcessWaitingThread() {
super("ProcessWaitingThread");
}
public void run() {
logger.trace(TRACE_LEVEL_THREADS, "ProcessWaitingThread: starting waiting for process");
try {
exitStatus = process.waitFor();
} catch (InterruptedException e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while waiting for debuggee process:\n\t"
+ e);
}
logger.trace(TRACE_LEVEL_ACTIONS, "ProcessWaitingThread: process finished with status: " + exitStatus);
logger.trace(TRACE_LEVEL_THREADS, "ProcessWaitingThread: exiting");
}
public synchronized void close() {
logger.trace(TRACE_LEVEL_THREADS, "ProcessWaitingThread closed");
}
} // ProcessWaitingThread
*/
} // LaunchingThread
///////// Redirecting threads /////////
/**
* An abstract base class for internal threads which redirects stderr/stdout
* output from debuggee process via <code>BindServer</code> connection.
* <p>
* Two derived classes will redirect <i>stderr</i> or </i>stdout</i> stream
* by enwrapping stream line by <code>DebugeeStderr</code> or
* <code>DebugeeStderr</code> objects. They should implement only one
* abstract method <code>enwrapLine(String)</code> to make the difference.
*/
public static abstract class StreamRedirectingThread extends Thread {
private volatile boolean shouldStop = false;
private volatile boolean closed = false;
private LaunchingThread owner = null;
private BufferedReader bin = null;
private String prefix = null;
/**
* Make a thread to enwrap and redirect lines from specified
* input stream with given prefix.
*
* @param owner owner of this thread
* @param is input stream to redirect lines from
* @param prefix prefix to add to each line
*/
public StreamRedirectingThread(LaunchingThread owner, InputStream is, String prefix) {
super("StreamRedirectingThread");
this.prefix = prefix;
this.owner = owner;
bin = new BufferedReader(new InputStreamReader(is));
}
/**
* Read lines from an input stream, enwrap them, and send to remote
* test via <code>BindServer</code> connection.
*/
public void run() {
logger.trace(TRACE_LEVEL_THREADS, "StreamRedirectingThread: starting redirect output stream");
try {
String line;
logger.trace(TRACE_LEVEL_IO, "StreamRedirectingThread: waiting for line from debuggee output");
while(!shouldStop) {
line = bin.readLine();
if (line == null)
break;
owner.sendStreamMessage(enwrapLine(prefix + line));
}
} catch (EOFException e) {
logger.display("Debuggee output stream closed by process");
} catch (IOException e) {
e.printStackTrace(log.getOutStream());
logger.display("# WARNING: Connection to debuggee output stream aborted:\n\t" + e);
} catch (Exception e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while redirecting debuggee output stream:\n\t"
+ e);
}
logger.trace(TRACE_LEVEL_THREADS, "StreamRedirectingThread: exiting");
closeConnection();
}
/**
* Envrap output line by the appropriate wrapper.
* @param line line to enwrap
*/
protected abstract RedirectedStream enwrapLine(String line);
/**
* Wait for this thread finished or interrupt it.
*
* @param millis timeout in milliseconds
*/
public void waitForThread(long millis) {
shouldStop = true;
waitInterruptThread(this, millis);
}
/**
* Close redirected process output stream.
*/
public void closeConnection() {
if (closed) {
return;
}
if (bin != null) {
try {
bin.close();
} catch (IOException e) {
e.printStackTrace(log.getOutStream());
logger.complain("Caught exception while closing debuggee output stream:\n\t"
+ e);
}
bin = null;
}
closed = true;
logger.trace(TRACE_LEVEL_THREADS, "StreamRedirectingThread closed");
}
/**
* Close thread by waiting redirected stream closed
* and finish the thread.
*/
public synchronized void close() {
if (closed) {
return;
}
waitForThread(THREAD_TIMEOUT);
closeConnection();
closed = true;
logger.trace(TRACE_LEVEL_THREADS, "StreamRedirectingThread closed");
}
} // StreamRedirectingThread
/**
* Particalar case of <code>StreamRedirectingThread</code> to redirect
* <i>stderr</i> stream by enwrapping lines into <code>DebugeeStderr</code>
* objects.
*/
private static class StderrRedirectingThread extends StreamRedirectingThread {
/**
* Make a thread to redirect <i>stderr</i> output stream.
*/
StderrRedirectingThread(LaunchingThread owner, InputStream is, String prefix) {
super(owner, is, prefix);
setName("StderrRedirectingThread");
}
/**
* Enwrap given line into <code>DebugeeStderr</code> object.
*/
protected RedirectedStream enwrapLine(String line) {
return new DebugeeStderr(line);
}
}
/**
* Particalar case of <code>StreamRedirectingThread</code> to redirect
* <i>stdout</i> stream by enwrapping lines into <code>DebugeeStdout</code>
* objects.
*/
private static class StdoutRedirectingThread extends StreamRedirectingThread {
/**
* Make a thread to redirect <i>stdout</i> output stream.
*/
StdoutRedirectingThread(LaunchingThread owner, InputStream is, String prefix) {
super(owner, is, prefix);
setName("StdoutRedirectingThread");
}
/**
* Enwrap given line into <code>DebugeeStdout</code> object.
*/
protected RedirectedStream enwrapLine(String line) {
return new DebugeeStdout(line);
}
}
///////// BinderServer's packets //////////
/**
* Base serializable object to transmit request or reply
* via <code>BindServer</code> connection.
*/
public static class Packet implements Serializable {}
///////// Binder's requests //////////
/**
* Base class to represent request to <code>BindServer</code>.
*/
public static abstract class Request extends Packet {}
/**
* This class implements task identification command.
*/
public static class TaskID extends Request {
public String id;
public TaskID(String id) {
this.id = id;
}
public String toString() {
return "TaskID: id=" + id;
}
}
/**
* This class implements a request for launching a debugee.
*/
public static class LaunchDebugee extends Request {
public String slash; // slash symbol used on debugger host
public String[] cmd; // command line arguments as seen on debugger host
public String workDir; // path to working directory as seen on debugger host
public String[] classPathes; // list of class pathes as seen on debugger host
public LaunchDebugee(String[] cmd, String slash, String workDir,
String[] pathes, String[] classPathes,
String[] libPathes) {
this.cmd = cmd;
this.slash = slash;
this.workDir = workDir;
this.classPathes = classPathes;
}
public String toString() {
return "LaunchDebugee:"
+ "\n\tcommand=" + ArgumentParser.joinArguments(cmd, "\"")
+ "\n\tWORKDIR=" + workDir
+ "\n\tCLASSPATH=" + ArgumentParser.joinArguments(classPathes, "", ":")
+ "\n\tslash=" + slash;
}
}
/**
* This class implements a request for waiting for debugee
* termination.
*/
public static class WaitForDebugee extends Request {
public long timeout = 0; // timeout in minutes for waiting
public WaitForDebugee(long value) {
timeout = value;
}
public String toString() {
return "WaitForDebugee: timeout=" + timeout;
}
}
/**
* This class implements a request for exit code of
* debugee process.
*/
public static class DebugeeExitCode extends Request {
public String toString() {
return "SebugeeExitCode";
}
}
/**
* This class implements a request for killing debugee process.
*/
public static class KillDebugee extends Request {
public String toString() {
return "KillDebugee";
}
}
/**
* This class implements a request to disconnect connection with test.
*/
public static class Disconnect extends Request {
public String toString() {
return "Disconnect";
}
}
///////// BindServer's responses //////////
/**
* Base class to represent response from <code>BindServer</code>.
*/
public static abstract class Response extends Packet {}
/**
* This class implements a response that a previoulsy received
* request has been successfully performed.
*/
public static class OK extends Response {
public long info = BindServer.VERSION; // optional additional info
public OK() {
}
public OK(long value) {
info = value;
}
public String toString() {
return "OK(" + info + ")";
}
}
/**
* This class implements a response that the BindServer is
* unable to serve a previoulsy received request.
*/
public static class RequestFailed extends Response {
public String reason; // the short explanation of failure
public RequestFailed(String reason) {
this.reason = reason;
}
public String toString() {
return "RequestFailed(" + reason + ")";
}
}
/**
* This class implements a response that the BindServer is
* unable to serve a previoulsy received request because of
* caught exception.
*/
public static class CaughtException extends RequestFailed {
public CaughtException(Exception cause) {
super("Caught exception: " + cause);
}
}
///////// Wrappers for redirected messages //////////
/**
* Base class to represent wrappers for redirected streams.
*/
public static class RedirectedStream extends Packet {
public String line; // line containing line from redirected stream
public RedirectedStream(String str) {
line = str;
}
public String toString() {
return "RedirectedStream(" + line + ")";
}
}
/**
* This class enwraps redirected line of <i>stdout</i> stream.
*/
public static class DebugeeStdout extends RedirectedStream {
public DebugeeStdout(String str) {
super(str);
}
public String toString() {
return "DebugeeStdout(" + line + ")";
}
}
/**
* This class enwraps redirected line of <i>stderr</i> stream.
*/
public static class DebugeeStderr extends RedirectedStream {
public DebugeeStderr(String str) {
super(str);
}
public String toString() {
return "DebugeeStderr(" + line + ")";
}
}
/////// ArgumentHandler for BindServer command line /////////
/**
* This class is used to parse arguments from command line
* and specified <i>bind-file</i>,
*/
private static class ArgumentHandler extends ArgumentParser {
protected Properties fileOptions;
/**
* Make parser object for command line arguments.
*
* @param args list of command line arguments
*/
public ArgumentHandler(String[] args) {
super(args);
}
/**
* Check if given command line option is aloowed.
*
* @param option option name
* @param value option value
*/
protected boolean checkOption(String option, String value) {
if (option.equals("bind.file")) {
// accept any file name
return true;
}
return super.checkOption(option, value);
}
/**
* Check if all recignized options are compatible.
*/
protected void checkOptions() {
if (getBindFileName() == null) {
throw new BadOption("Option -bind.file is requred ");
}
super.checkOptions();
}
/**
* Check if value of this option points to a existing directory.
*
* @param option option name
* @param dir option value
*/
private void checkDir(String option, String dir) {
File file = new File(dir);
if (!file.exists()) {
throw new BadOption(option + " does not exist: " + dir);
}
if (!file.isAbsolute()) {
throw new BadOption(option + " is not absolute pathname: " + dir);
}
if (!file.isDirectory()) {
throw new BadOption(option + " is not directory: " + dir);
}
}
/**
* Check if option from <i>bind-file</i> is allowed.
*
* @param option option name
* @param value option value
*/
protected boolean checkAdditionalOption(String option, String value) {
if (option.equals("DEBUGGER_HOST")) {
// accept any hostname
return true;
}
if (option.equals("BINDSERVER_PORT")) {
// accept only integer value
try {
int port = Integer.parseInt(value);
} catch (NumberFormatException e) {
throw new Failure("Not integer value of bind-file option " + option
+ ": " + value);
}
return true;
}
if (option.equals("DEBUGGER_TESTED_JAVA_HOME")
|| option.equals("DEBUGGER_WORKDIR")
|| option.equals("DEBUGGER_TESTBASE")) {
if (value == null || value.equals("")) {
throw new BadOption("Empty value of bind-file option " + option);
}
return true;
}
if (option.equals("DEBUGGEE_TESTED_JAVA_HOME")
|| option.equals("DEBUGGEE_WORKDIR")
|| option.equals("DEBUGGEE_TESTBASE")) {
if (value == null || value.equals("")) {
throw new BadOption("Empty value of bind-file option " + option);
}
checkDir(option, value);
return true;
}
if (option.equals("DEBUGGEE_WINDIR")) {
if (!(value == null || value.equals(""))) {
checkDir(option, value);
}
return true;
}
return false;
}
/**
* Check if all recignized options form <i>bind-file</i> are compatible.
*/
protected void checkAdditionalOptions() {
if (getDebuggerJavaHome() == null) {
throw new BadOption("Option DEBUGGER_JAVA_HOME missed from bind-file");
}
if (getDebuggerWorkDir() == null) {
throw new BadOption("Option DEBUGGER_WORKDIR missed from bind-file");
}
if (getDebuggerTestbase() == null) {
throw new BadOption("Option DEBUGGER_TESTBASE missed from bind-file");
}
if (getDebugeeJavaHome() == null) {
throw new BadOption("Option DEBUGGEE_JAVA_HOME missed from bind-file");
}
if (getDebugeeWorkDir() == null) {
throw new BadOption("Option DEBUGGEE_WORKDIR missed from bind-file");
}
if (getDebugeeTestbase() == null) {
throw new BadOption("Option DEBUGGEE_TESTBASE missed from bind-file");
}
}
/**
* Parse options form specified <i>bind-file</i>.
*/
protected void parseAdditionalOptions() {
Enumeration keys = fileOptions.keys();
while (keys.hasMoreElements()) {
String option = (String)keys.nextElement();
String value = fileOptions.getProperty(option);
if (! checkAdditionalOption(option, value)) {
throw new BadOption("Unrecognized bind-file option: " + option);
}
}
checkAdditionalOptions();
}
/**
* Parse all options from command line and specified <i>bind-file</i>.
*/
protected void parseArguments() {
super.parseArguments();
String fileName = getBindFileName();
try {
FileInputStream bindFile = new FileInputStream(fileName);
fileOptions = new Properties();
fileOptions.load(bindFile);
bindFile.close();
} catch(FileNotFoundException e) {
throw new BadOption("Unable to open bind-file " + fileName + ": " + e);
} catch(IOException e) {
e.printStackTrace(log.getOutStream());
throw new Failure("Caught exception while reading bind-file:\n" + e);
}
parseAdditionalOptions();
}
/** Return name of specified <i>bind-file<i>. */
public String getBindFileName() {
return options.getProperty("bind.file");
}
/** Return specified debuggee host name . */
public String getDebuggerHost() {
return fileOptions.getProperty("DEBUGGER_HOST", "localhost");
}
/** Return string representation of port number for <code>BindServer<code> connection. */
public String getBindPort() {
return fileOptions.getProperty("BINDSERVER_PORT", "9000");
}
/** Return specified port number for <code>BindServer<code> connection. */
public int getBindPortNumber() {
try {
return Integer.parseInt(getBindPort());
} catch (NumberFormatException e) {
throw new Failure("Not integer value of BindServer port");
}
}
/** Return specified path to tested JDK used for debuggee VM. */
public String getDebugeeJavaHome() {
return fileOptions.getProperty("DEBUGGEE_TESTED_JAVA_HOME");
}
/** Return specified path to tested JDK used for debugger. */
public String getDebuggerJavaHome() {
return fileOptions.getProperty("DEBUGGER_TESTED_JAVA_HOME");
}
/** Return specified path to working dir from debuggee host. */
public String getDebugeeWorkDir() {
return fileOptions.getProperty("DEBUGGEE_WORKDIR");
}
/** Return specified path to working dir from debugger host. */
public String getDebuggerWorkDir() {
return fileOptions.getProperty("DEBUGGER_WORKDIR");
}
/** Return specified path to testbase dir from debuggee host. */
public String getDebugeeTestbase() {
return fileOptions.getProperty("DEBUGGEE_TESTBASE");
}
/** Return specified path to testbase dir from debugger host. */
public String getDebuggerTestbase() {
return fileOptions.getProperty("DEBUGGER_TESTBASE");
}
/** Return specified path to system directory on Wimdows platform. */
public String getDebugeeWinDir() {
return fileOptions.getProperty("DEBUGGEE_WINDIR");
}
} // ArgumentHandler
} // BindServer
|