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
|
#include <errno.h>
#include <fcntl.h>
#include <glib.h>
#include <linux/watchdog.h>
#if HAVE_OPING
#include <oping.h>
#endif
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <sys/poll.h>
#include <sys/signalfd.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/utsname.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#include "igt_aux.h"
#include "igt_core.h"
#include "executor.h"
#include "output_strings.h"
static struct {
int *fds;
size_t num_dogs;
} watchdogs;
__attribute__((format(printf, 2, 3)))
static void __logf__(FILE *stream, const char *fmt, ...)
{
int saved_errno = errno;
struct timespec tv;
va_list ap;
if (clock_gettime(CLOCK_BOOTTIME, &tv))
clock_gettime(CLOCK_REALTIME, &tv);
fprintf(stream, "[%ld.%06ld] ", tv.tv_sec, tv.tv_nsec / 1000);
va_start(ap, fmt);
errno = saved_errno;
vfprintf(stream, fmt, ap);
va_end(ap);
}
#define outf(fmt...) __logf__(stdout, fmt)
#define errf(fmt...) __logf__(stderr, fmt)
static void __close_watchdog(int fd)
{
ssize_t ret = write(fd, "V", 1);
if (ret == -1)
errf("Failed to stop a watchdog: %m\n");
close(fd);
}
static void close_watchdogs(struct settings *settings)
{
size_t i;
if (settings && settings->log_level >= LOG_LEVEL_VERBOSE)
outf("Closing watchdogs\n");
if (settings == NULL && watchdogs.num_dogs != 0)
errf("Closing watchdogs from exit handler!\n");
for (i = 0; i < watchdogs.num_dogs; i++) {
__close_watchdog(watchdogs.fds[i]);
}
free(watchdogs.fds);
watchdogs.num_dogs = 0;
watchdogs.fds = NULL;
}
static void close_watchdogs_atexit(void)
{
close_watchdogs(NULL);
}
static void init_watchdogs(struct settings *settings)
{
int i;
char name[32];
int fd;
memset(&watchdogs, 0, sizeof(watchdogs));
if (!settings->use_watchdog)
return;
if (settings->log_level >= LOG_LEVEL_VERBOSE) {
outf("Initializing watchdogs\n");
}
atexit(close_watchdogs_atexit);
for (i = 0; ; i++) {
snprintf(name, sizeof(name), "/dev/watchdog%d", i);
if ((fd = open(name, O_RDWR | O_CLOEXEC)) < 0)
break;
watchdogs.num_dogs++;
watchdogs.fds = realloc(watchdogs.fds, watchdogs.num_dogs * sizeof(int));
watchdogs.fds[i] = fd;
if (settings->log_level >= LOG_LEVEL_VERBOSE)
outf(" %s\n", name);
}
}
static int watchdogs_set_timeout(int timeout)
{
size_t i;
int orig_timeout = timeout;
for (i = 0; i < watchdogs.num_dogs; i++) {
if (ioctl(watchdogs.fds[i], WDIOC_SETTIMEOUT, &timeout)) {
__close_watchdog(watchdogs.fds[i]);
watchdogs.fds[i] = -1;
continue;
}
if (timeout < orig_timeout) {
/*
* Timeout of this caliber refused. We want to
* use the same timeout for all devices.
*/
return watchdogs_set_timeout(timeout);
}
}
return timeout;
}
static void ping_watchdogs(void)
{
size_t i;
int ret;
for (i = 0; i < watchdogs.num_dogs; i++) {
ret = ioctl(watchdogs.fds[i], WDIOC_KEEPALIVE, NULL);
if (ret == -1)
errf("Failed to ping a watchdog: %m\n");
}
}
#if HAVE_OPING
static pingobj_t *pingobj = NULL;
static bool load_ping_config_from_file(void)
{
GError *error = NULL;
GKeyFile *key_file = NULL;
const char *ping_hostname;
/* Load igt config file */
key_file = igt_load_igtrc();
if (!key_file)
return false;
ping_hostname =
g_key_file_get_string(key_file, "DUT",
"PingHostName", &error);
g_clear_error(&error);
g_key_file_free(key_file);
if (!ping_hostname)
return false;
if (ping_host_add(pingobj, ping_hostname)) {
fprintf(stderr,
"abort on ping: Cannot use hostname from config file\n");
return false;
}
return true;
}
static bool load_ping_config_from_env(void)
{
const char *ping_hostname;
ping_hostname = getenv("IGT_PING_HOSTNAME");
if (!ping_hostname)
return false;
if (ping_host_add(pingobj, ping_hostname)) {
fprintf(stderr,
"abort on ping: Cannot use hostname from environment\n");
return false;
}
return true;
}
/*
* On some hosts, getting network back up after suspend takes
* upwards of 10 seconds. 20 seconds should be enough to see
* if network comes back at all, and hopefully not too long to
* make external monitoring freak out.
*/
#define PING_ABORT_DEADLINE 20
static bool can_ping(void)
{
igt_until_timeout(PING_ABORT_DEADLINE) {
pingobj_iter_t *iter;
ping_send(pingobj);
for (iter = ping_iterator_get(pingobj);
iter != NULL;
iter = ping_iterator_next(iter)) {
double latency;
size_t len = sizeof(latency);
ping_iterator_get_info(iter,
PING_INFO_LATENCY,
&latency,
&len);
if (latency >= 0.0)
return true;
}
}
return false;
}
#endif
static void ping_config(void)
{
#if HAVE_OPING
double single_attempt_timeout = 1.0;
if (pingobj)
return;
pingobj = ping_construct();
/* Try env first, then config file */
if (!load_ping_config_from_env() && !load_ping_config_from_file()) {
fprintf(stderr,
"abort on ping: No host to ping configured\n");
ping_destroy(pingobj);
pingobj = NULL;
return;
}
ping_setopt(pingobj, PING_OPT_TIMEOUT, &single_attempt_timeout);
#endif
}
static char *handle_ping(void)
{
#if HAVE_OPING
if (pingobj && !can_ping()) {
char *reason;
asprintf(&reason,
"Ping host did not respond to ping, network down");
return reason;
}
#endif
return NULL;
}
static char *handle_lockdep(void)
{
const char *header = "Lockdep not active\n\n/proc/lockdep_stats contents:\n";
int fd = open("/proc/lockdep_stats", O_RDONLY);
const char *debug_locks_line = " debug_locks:";
char buf[4096], *p;
ssize_t bufsize = 0;
int val;
if (fd < 0)
return NULL;
strcpy(buf, header);
if ((bufsize = read(fd, buf + strlen(header), sizeof(buf) - strlen(header) - 1)) < 0)
return NULL;
bufsize += strlen(header);
buf[bufsize] = '\0';
close(fd);
if ((p = strstr(buf, debug_locks_line)) != NULL &&
sscanf(p + strlen(debug_locks_line), "%d", &val) == 1 &&
val != 1) {
return strdup(buf);
}
return NULL;
}
/* see Linux's include/linux/kernel.h */
static const struct {
unsigned long bit;
const char *explanation;
} abort_taints[] = {
{(1 << 5), "TAINT_BAD_PAGE: Bad page reference or an unexpected page flags."},
{(1 << 7), "TAINT_DIE: Kernel has died - BUG/OOPS."},
{(1 << 9), "TAINT_WARN: WARN_ON has happened."},
{0, 0}};
static unsigned long bad_taints(void)
{
static unsigned long __bad_taints;
if (!__bad_taints) {
for (typeof(*abort_taints) *taint = abort_taints;
taint->bit;
taint++)
__bad_taints |= taint->bit;
}
return __bad_taints;
}
static unsigned long is_tainted(unsigned long taints)
{
return taints & bad_taints();
}
static unsigned long tainted(unsigned long *taints)
{
FILE *f;
*taints = 0;
f = fopen("/proc/sys/kernel/tainted", "r");
if (f) {
fscanf(f, "%lu", taints);
fclose(f);
}
return is_tainted(*taints);
}
static char *handle_taint(void)
{
unsigned long taints;
char *reason;
if (!tainted(&taints))
return NULL;
asprintf(&reason, "Kernel badly tainted (%#lx) (check dmesg for details):\n",
taints);
for (typeof(*abort_taints) *taint = abort_taints; taint->bit; taint++) {
if (taint->bit & taints) {
char *old_reason = reason;
asprintf(&reason, "%s\t(%#lx) %s\n",
old_reason,
taint->bit,
taint->explanation);
free(old_reason);
}
}
return reason;
}
static const struct {
int condition;
char *(*handler)(void);
} abort_handlers[] = {
{ ABORT_LOCKDEP, handle_lockdep },
{ ABORT_TAINT, handle_taint },
{ ABORT_PING, handle_ping },
{ 0, 0 },
};
static char *need_to_abort(const struct settings* settings)
{
typeof(*abort_handlers) *it;
for (it = abort_handlers; it->condition; it++) {
char *abort;
if (!(settings->abort_mask & it->condition))
continue;
abort = it->handler();
if (!abort)
continue;
if (settings->log_level >= LOG_LEVEL_NORMAL)
errf("Aborting: %s\n", abort);
return abort;
}
return NULL;
}
static void prune_subtest(struct job_list_entry *entry, char *subtest)
{
char *excl;
/*
* Subtest pruning is done by adding exclusion strings to the
* subtest list. The last matching item on the subtest
* selection command line flag decides whether to run a
* subtest, see igt_core.c for details. If the list is empty,
* the expected subtest set is unknown, so we need to add '*'
* first so we can start excluding.
*/
if (entry->subtest_count == 0) {
entry->subtest_count++;
entry->subtests = realloc(entry->subtests, entry->subtest_count * sizeof(*entry->subtests));
entry->subtests[0] = strdup("*");
}
excl = malloc(strlen(subtest) + 2);
excl[0] = '!';
strcpy(excl + 1, subtest);
entry->subtest_count++;
entry->subtests = realloc(entry->subtests, entry->subtest_count * sizeof(*entry->subtests));
entry->subtests[entry->subtest_count - 1] = excl;
}
static bool prune_from_journal(struct job_list_entry *entry, int fd)
{
char *subtest;
FILE *f;
size_t pruned = 0;
size_t old_count = entry->subtest_count;
/*
* Each journal line is a subtest that has been started, or
* the line 'exit:$exitcode (time)', or 'timeout:$exitcode (time)'.
*/
f = fdopen(fd, "r");
if (!f)
return false;
while (fscanf(f, "%ms", &subtest) == 1) {
if (!strncmp(subtest, EXECUTOR_EXIT, strlen(EXECUTOR_EXIT))) {
/* Fully done. Mark that by making the binary name invalid. */
fscanf(f, " (%*fs)");
entry->binary[0] = '\0';
free(subtest);
continue;
}
if (!strncmp(subtest, EXECUTOR_TIMEOUT, strlen(EXECUTOR_TIMEOUT))) {
fscanf(f, " (%*fs)");
free(subtest);
continue;
}
prune_subtest(entry, subtest);
free(subtest);
pruned++;
}
fclose(f);
/*
* If we know the subtests we originally wanted to run, check
* if we got an equal amount already.
*/
if (old_count > 0 && pruned >= old_count)
entry->binary[0] = '\0';
return pruned > 0;
}
static const char *filenames[_F_LAST] = {
[_F_JOURNAL] = "journal.txt",
[_F_OUT] = "out.txt",
[_F_ERR] = "err.txt",
[_F_DMESG] = "dmesg.txt",
};
static int open_at_end(int dirfd, const char *name)
{
int fd = openat(dirfd, name, O_RDWR | O_CREAT | O_CLOEXEC, 0666);
char last;
if (fd >= 0) {
if (lseek(fd, -1, SEEK_END) >= 0 &&
read(fd, &last, 1) == 1 &&
last != '\n') {
write(fd, "\n", 1);
}
lseek(fd, 0, SEEK_END);
}
return fd;
}
static int open_for_reading(int dirfd, const char *name)
{
return openat(dirfd, name, O_RDONLY);
}
bool open_output_files(int dirfd, int *fds, bool write)
{
int i;
int (*openfunc)(int, const char*) = write ? open_at_end : open_for_reading;
for (i = 0; i < _F_LAST; i++) {
if ((fds[i] = openfunc(dirfd, filenames[i])) < 0) {
while (--i >= 0)
close(fds[i]);
return false;
}
}
return true;
}
void close_outputs(int *fds)
{
int i;
for (i = 0; i < _F_LAST; i++) {
close(fds[i]);
}
}
static int dump_dmesg(int kmsgfd, int outfd)
{
/*
* Write kernel messages to the log file until we reach
* 'now'. Unfortunately, /dev/kmsg doesn't support seeking to
* -1 from SEEK_END so we need to use a second fd to read a
* message to match against, or stop when we reach EAGAIN.
*/
int comparefd;
unsigned flags;
unsigned long long seq, cmpseq, usec;
char cont;
char buf[2048];
ssize_t r;
if (kmsgfd < 0)
return 0;
comparefd = open("/dev/kmsg", O_RDONLY | O_NONBLOCK);
if (comparefd < 0) {
errf("Error opening another fd for /dev/kmsg\n");
return -1;
}
lseek(comparefd, 0, SEEK_END);
while (1) {
if (comparefd >= 0) {
r = read(comparefd, buf, sizeof(buf) - 1);
if (r < 0) {
if (errno != EAGAIN && errno != EPIPE) {
errf("Warning: Error reading kmsg comparison record: %m\n");
close(comparefd);
return 0;
}
} else {
buf[r] = '\0';
if (sscanf(buf, "%u,%llu,%llu,%c;",
&flags, &cmpseq, &usec, &cont) == 4) {
/* Reading comparison record done. */
close(comparefd);
comparefd = -1;
}
}
}
r = read(kmsgfd, buf, sizeof(buf));
if (r < 0) {
if (errno == EPIPE) {
errf("Warning: kernel log ringbuffer underflow, some records lost.\n");
continue;
} else if (errno == EINVAL) {
errf("Warning: Buffer too small for kernel log record, record lost.\n");
continue;
} else if (errno != EAGAIN) {
errf("Error reading from kmsg: %m\n");
return errno;
}
/* EAGAIN, so we're done dumping */
close(comparefd);
return 0;
}
write(outfd, buf, r);
if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;",
&flags, &seq, &usec, &cont) == 4) {
/*
* Comparison record has been read, compare
* the sequence number to see if we have read
* enough.
*/
if (seq >= cmpseq)
return 0;
}
}
}
static bool kill_child(int sig, pid_t child)
{
/*
* Send the signal to the child directly, and to the child's
* process group.
*/
kill(-child, sig);
if (kill(child, sig) && errno == ESRCH) {
errf("Child process does not exist. This shouldn't happen.\n");
return false;
}
return true;
}
static const char *get_cmdline(pid_t pid, char *buf, ssize_t len)
{
int fd;
if (snprintf(buf, len, "/proc/%d/cmdline", pid) > len)
return "unknown";
fd = open(buf, O_RDONLY);
if (fd < 0)
return "unknown";
len = read(fd, buf, len - 1);
close(fd);
if (len < 0)
return "unknown";
/* cmdline is the whole argv[], completed with NUL-terminators */
for (size_t i = 0; i < len; i++)
if (buf[i] == '\0')
buf[i] = ' ';
/* chomp away the trailing spaces */
while (len && buf[len - 1] == ' ')
--len;
buf[len] = '\0'; /* but make sure that we return a valid string! */
return buf;
}
static bool sysrq(char cmd)
{
bool success = false;
int fd;
fd = open("/proc/sysrq-trigger", O_WRONLY);
if (fd >= 0) {
success = write(fd, &cmd, 1) == 1;
close(fd);
}
return success;
}
static void show_kernel_task_state(void)
{
sysrq('t');
}
static const char *need_to_timeout(struct settings *settings,
int killed,
unsigned long taints,
double time_since_activity,
double time_since_subtest,
double time_since_kill)
{
if (killed) {
/*
* Timeout after being killed is a hardcoded amount
* depending on which signal we already used. The
* exception is SIGKILL which just immediately bails
* out if the kernel is tainted, because there's
* little to no hope of the process dying gracefully
* or at all.
*
* Note that if killed == SIGKILL, the caller needs
* special handling anyway and should ignore the
* actual string returned.
*/
const double kill_timeout = killed == SIGKILL ? 20.0 : 120.0;
if ((killed == SIGKILL && is_tainted(taints)) ||
time_since_kill > kill_timeout)
return "Timeout. Killing the current test with SIGKILL.\n";
/*
* We don't care for the other reasons to timeout if
* we're already killing the test.
*/
return NULL;
}
/*
* If we're configured to care about taints, kill the
* test if there's a taint.
*/
if (settings->abort_mask & ABORT_TAINT &&
is_tainted(taints))
return "Killing the test because the kernel is tainted.\n";
if (settings->per_test_timeout != 0 &&
time_since_subtest > settings->per_test_timeout) {
show_kernel_task_state();
return "Per-test timeout exceeded. Killing the current test with SIGQUIT.\n";
}
if (settings->inactivity_timeout != 0 &&
time_since_activity > settings->inactivity_timeout) {
show_kernel_task_state();
return "Inactivity timeout exceeded. Killing the current test with SIGQUIT.\n";
}
return NULL;
}
static int next_kill_signal(int killed)
{
switch (killed) {
case 0:
return SIGQUIT;
case SIGQUIT:
return SIGKILL;
case SIGKILL:
default:
assert(!"Unreachable");
return SIGKILL;
}
}
/*
* Returns:
* =0 - Success
* <0 - Failure executing
* >0 - Timeout happened, need to recreate from journal
*/
static int monitor_output(pid_t child,
int outfd, int errfd, int kmsgfd, int sigfd,
int *outputs,
double *time_spent,
struct settings *settings)
{
fd_set set;
char buf[2048];
char *outbuf = NULL;
size_t outbufsize = 0;
char current_subtest[256] = {};
struct signalfd_siginfo siginfo;
ssize_t s;
int n, status;
int nfds = outfd;
const int interval_length = 1;
int wd_timeout;
int killed = 0; /* 0 if not killed, signal number otherwise */
struct timespec time_beg, time_now, time_last_activity, time_last_subtest, time_killed;
unsigned long taints = 0;
bool aborting = false;
igt_gettime(&time_beg);
time_last_activity = time_last_subtest = time_killed = time_beg;
if (errfd > nfds)
nfds = errfd;
if (kmsgfd > nfds)
nfds = kmsgfd;
if (sigfd > nfds)
nfds = sigfd;
nfds++;
/*
* If we're still alive, we want to kill the test process
* instead of cutting power. Use a healthy 2 minute watchdog
* timeout that gets automatically reduced if the device
* doesn't support it.
*
* watchdogs_set_timeout() is a no-op and returns the given
* timeout if we don't have use_watchdog set in settings.
*/
wd_timeout = watchdogs_set_timeout(120);
if (wd_timeout < 120) {
/*
* Watchdog timeout smaller, warn the user. With the
* short select() timeout we're using we're able to
* ping the watchdog regardless.
*/
if (settings->log_level >= LOG_LEVEL_VERBOSE) {
outf("Watchdog doesn't support the timeout we requested (shortened to %d seconds).\n",
wd_timeout);
}
}
while (outfd >= 0 || errfd >= 0 || sigfd >= 0) {
const char *timeout_reason;
struct timeval tv = { .tv_sec = interval_length };
FD_ZERO(&set);
if (outfd >= 0)
FD_SET(outfd, &set);
if (errfd >= 0)
FD_SET(errfd, &set);
if (kmsgfd >= 0)
FD_SET(kmsgfd, &set);
if (sigfd >= 0)
FD_SET(sigfd, &set);
n = select(nfds, &set, NULL, NULL, &tv);
ping_watchdogs();
if (n < 0) {
/* TODO */
return -1;
}
igt_gettime(&time_now);
/* TODO: Refactor these handlers to their own functions */
if (outfd >= 0 && FD_ISSET(outfd, &set)) {
char *newline;
time_last_activity = time_now;
s = read(outfd, buf, sizeof(buf));
if (s <= 0) {
if (s < 0) {
errf("Error reading test's stdout: %m\n");
}
close(outfd);
outfd = -1;
goto out_end;
}
write(outputs[_F_OUT], buf, s);
if (settings->sync) {
fdatasync(outputs[_F_OUT]);
}
outbuf = realloc(outbuf, outbufsize + s);
memcpy(outbuf + outbufsize, buf, s);
outbufsize += s;
while ((newline = memchr(outbuf, '\n', outbufsize)) != NULL) {
size_t linelen = newline - outbuf + 1;
if (linelen > strlen(STARTING_SUBTEST) &&
!memcmp(outbuf, STARTING_SUBTEST, strlen(STARTING_SUBTEST))) {
write(outputs[_F_JOURNAL], outbuf + strlen(STARTING_SUBTEST),
linelen - strlen(STARTING_SUBTEST));
memcpy(current_subtest, outbuf + strlen(STARTING_SUBTEST),
linelen - strlen(STARTING_SUBTEST));
current_subtest[linelen - strlen(STARTING_SUBTEST)] = '\0';
time_last_subtest = time_now;
if (settings->log_level >= LOG_LEVEL_VERBOSE) {
fwrite(outbuf, 1, linelen, stdout);
}
}
if (linelen > strlen(SUBTEST_RESULT) &&
!memcmp(outbuf, SUBTEST_RESULT, strlen(SUBTEST_RESULT))) {
char *delim = memchr(outbuf, ':', linelen);
if (delim != NULL) {
size_t subtestlen = delim - outbuf - strlen(SUBTEST_RESULT);
if (memcmp(current_subtest, outbuf + strlen(SUBTEST_RESULT),
subtestlen)) {
/* Result for a test that didn't ever start */
write(outputs[_F_JOURNAL],
outbuf + strlen(SUBTEST_RESULT),
subtestlen);
write(outputs[_F_JOURNAL], "\n", 1);
if (settings->sync) {
fdatasync(outputs[_F_JOURNAL]);
}
current_subtest[0] = '\0';
}
if (settings->log_level >= LOG_LEVEL_VERBOSE) {
fwrite(outbuf, 1, linelen, stdout);
}
}
}
if (linelen > strlen(STARTING_DYNAMIC_SUBTEST) &&
!memcmp(outbuf, STARTING_DYNAMIC_SUBTEST, strlen(STARTING_DYNAMIC_SUBTEST))) {
time_last_subtest = time_now;
if (settings->log_level >= LOG_LEVEL_VERBOSE) {
fwrite(outbuf, 1, linelen, stdout);
}
}
if (linelen > strlen(DYNAMIC_SUBTEST_RESULT) &&
!memcmp(outbuf, DYNAMIC_SUBTEST_RESULT, strlen(DYNAMIC_SUBTEST_RESULT))) {
char *delim = memchr(outbuf, ':', linelen);
if (delim != NULL) {
if (settings->log_level >= LOG_LEVEL_VERBOSE) {
fwrite(outbuf, 1, linelen, stdout);
}
}
}
memmove(outbuf, newline + 1, outbufsize - linelen);
outbufsize -= linelen;
}
}
out_end:
if (errfd >= 0 && FD_ISSET(errfd, &set)) {
time_last_activity = time_now;
s = read(errfd, buf, sizeof(buf));
if (s <= 0) {
if (s < 0) {
errf("Error reading test's stderr: %m\n");
}
close(errfd);
errfd = -1;
} else {
write(outputs[_F_ERR], buf, s);
if (settings->sync) {
fdatasync(outputs[_F_ERR]);
}
}
}
if (kmsgfd >= 0 && FD_ISSET(kmsgfd, &set)) {
int dmesgstatus;
time_last_activity = time_now;
dmesgstatus = dump_dmesg(kmsgfd, outputs[_F_DMESG]);
if (settings->sync)
fdatasync(outputs[_F_DMESG]);
if (dmesgstatus) {
close(kmsgfd);
kmsgfd = -1;
}
}
if (sigfd >= 0 && FD_ISSET(sigfd, &set)) {
double time;
s = read(sigfd, &siginfo, sizeof(siginfo));
if (s < 0) {
errf("Error reading from signalfd: %m\n");
continue;
} else if (siginfo.ssi_signo == SIGCHLD) {
if (child != waitpid(child, &status, WNOHANG)) {
errf("Failed to reap child\n");
status = 9999;
} else if (WIFEXITED(status)) {
status = WEXITSTATUS(status);
if (status >= 128) {
status = 128 - status;
}
} else if (WIFSIGNALED(status)) {
status = -WTERMSIG(status);
} else {
status = 9999;
}
} else {
/* We're dying, so we're taking them with us */
if (settings->log_level >= LOG_LEVEL_NORMAL) {
char comm[120];
outf("Abort requested by %s [%d] via %s, terminating children\n",
get_cmdline(siginfo.ssi_pid, comm, sizeof(comm)),
siginfo.ssi_pid,
strsignal(siginfo.ssi_signo));
}
aborting = true;
killed = SIGQUIT;
if (!kill_child(killed, child))
return -1;
time_killed = time_now;
continue;
}
time = igt_time_elapsed(&time_beg, &time_now);
if (time < 0.0)
time = 0.0;
if (!aborting) {
const char *exitline;
exitline = killed ? EXECUTOR_TIMEOUT : EXECUTOR_EXIT;
/* If we're stopping because we killed
* the test for tainting, let's not
* call it a timeout. Since the test
* execution was still going on, we
* probably didn't yet get the subtest
* result line printed. Such a case is
* parsed as an incomplete unless the
* journal says timeout, ergo to make
* the result an incomplete we avoid
* journaling a timeout here.
*/
if (is_tainted(taints))
exitline = EXECUTOR_EXIT;
dprintf(outputs[_F_JOURNAL], "%s%d (%.3fs)\n",
exitline,
status, time);
if (settings->sync) {
fdatasync(outputs[_F_JOURNAL]);
}
if (time_spent)
*time_spent = time;
}
child = 0;
sigfd = -1; /* we are dying, no signal handling for now */
}
timeout_reason = need_to_timeout(settings, killed, tainted(&taints),
igt_time_elapsed(&time_last_activity, &time_now),
igt_time_elapsed(&time_last_subtest, &time_now),
igt_time_elapsed(&time_killed, &time_now));
if (timeout_reason) {
if (killed == SIGKILL) {
/* Nothing that can be done, really. Let's tell the caller we want to abort. */
if (settings->log_level >= LOG_LEVEL_NORMAL) {
errf("Child refuses to die, tainted 0x%lx. Aborting.\n",
taints);
if (kill(child, 0) && errno == ESRCH)
errf("The test process no longer exists, "
"but we didn't get informed of its demise...\n");
}
dump_dmesg(kmsgfd, outputs[_F_DMESG]);
if (settings->sync)
fdatasync(outputs[_F_DMESG]);
close_watchdogs(settings);
free(outbuf);
close(outfd);
close(errfd);
close(kmsgfd);
return -1;
}
if (settings->log_level >= LOG_LEVEL_NORMAL) {
outf("%s", timeout_reason);
fflush(stdout);
}
killed = next_kill_signal(killed);
if (!kill_child(killed, child))
return -1;
time_killed = time_now;
}
}
dump_dmesg(kmsgfd, outputs[_F_DMESG]);
if (settings->sync)
fdatasync(outputs[_F_DMESG]);
free(outbuf);
close(outfd);
close(errfd);
close(kmsgfd);
if (aborting)
return -1;
return killed;
}
static void __attribute__((noreturn))
execute_test_process(int outfd, int errfd,
struct settings *settings,
struct job_list_entry *entry)
{
char *argv[6] = {};
size_t rootlen;
dup2(outfd, STDOUT_FILENO);
dup2(errfd, STDERR_FILENO);
setpgid(0, 0);
rootlen = strlen(settings->test_root);
argv[0] = malloc(rootlen + strlen(entry->binary) + 2);
strcpy(argv[0], settings->test_root);
argv[0][rootlen] = '/';
strcpy(argv[0] + rootlen + 1, entry->binary);
if (entry->subtest_count) {
size_t argsize;
const char *dynbegin;
size_t i;
argv[1] = strdup("--run-subtest");
if ((dynbegin = strchr(entry->subtests[0], '@')) != NULL)
argsize = dynbegin - entry->subtests[0];
else
argsize = strlen(entry->subtests[0]);
argv[2] = malloc(argsize + 1);
memcpy(argv[2], entry->subtests[0], argsize);
argv[2][argsize] = '\0';
if (dynbegin) {
argv[3] = strdup("--dynamic-subtest");
argv[4] = strdup(dynbegin + 1);
}
for (i = 1; i < entry->subtest_count; i++) {
char *sub = entry->subtests[i];
size_t sublen = strlen(sub);
assert(dynbegin == NULL);
argv[2] = realloc(argv[2], argsize + sublen + 2);
argv[2][argsize] = ',';
strcpy(argv[2] + argsize + 1, sub);
argsize += sublen + 1;
}
}
execv(argv[0], argv);
fprintf(stderr, "Cannot execute %s\n", argv[0]);
exit(IGT_EXIT_INVALID);
}
static int digits(size_t num)
{
int ret = 0;
while (num) {
num /= 10;
ret++;
}
if (ret == 0) ret++;
return ret;
}
static int print_time_left(struct execute_state *state,
struct settings *settings,
char *buf, int rem)
{
int width;
if (settings->overall_timeout <= 0)
return 0;
width = digits(settings->overall_timeout);
return snprintf(buf, rem, "(%*.0fs left) ", width, state->time_left);
}
static char *entry_display_name(struct job_list_entry *entry)
{
size_t size = strlen(entry->binary) + 1;
char *ret = malloc(size);
sprintf(ret, "%s", entry->binary);
if (entry->subtest_count > 0) {
size_t i;
const char *delim = "";
size += 3; /* strlen(" (") + strlen(")") */
ret = realloc(ret, size);
strcat(ret, " (");
for (i = 0; i < entry->subtest_count; i++) {
size += strlen(delim) + strlen(entry->subtests[i]);
ret = realloc(ret, size);
strcat(ret, delim);
strcat(ret, entry->subtests[i]);
delim = ", ";
}
/* There's already room for this */
strcat(ret, ")");
}
return ret;
}
/*
* Returns:
* =0 - Success
* <0 - Failure executing
* >0 - Timeout happened, need to recreate from journal
*/
static int execute_next_entry(struct execute_state *state,
size_t total,
double *time_spent,
struct settings *settings,
struct job_list_entry *entry,
int testdirfd, int resdirfd,
int sigfd, sigset_t *sigmask)
{
int dirfd;
int outputs[_F_LAST];
int kmsgfd;
int outpipe[2] = { -1, -1 };
int errpipe[2] = { -1, -1 };
int outfd, errfd;
char name[32];
pid_t child;
int result;
size_t idx = state->next;
snprintf(name, sizeof(name), "%zd", idx);
mkdirat(resdirfd, name, 0777);
if ((dirfd = openat(resdirfd, name, O_DIRECTORY | O_RDONLY | O_CLOEXEC)) < 0) {
errf("Error accessing individual test result directory\n");
return -1;
}
if (!open_output_files(dirfd, outputs, true)) {
errf("Error opening output files\n");
result = -1;
goto out_dirfd;
}
if (settings->sync) {
fsync(dirfd);
fsync(resdirfd);
}
if (pipe(outpipe) || pipe(errpipe)) {
errf("Error creating pipes: %m\n");
result = -1;
goto out_pipe;
}
if ((kmsgfd = open("/dev/kmsg", O_RDONLY | O_CLOEXEC | O_NONBLOCK)) < 0) {
errf("Warning: Cannot open /dev/kmsg\n");
} else {
/* TODO: Checking of abort conditions in pre-execute dmesg */
lseek(kmsgfd, 0, SEEK_END);
}
if (settings->log_level >= LOG_LEVEL_NORMAL) {
char buf[100];
char *displayname;
int width = digits(total);
int len;
len = snprintf(buf, sizeof(buf),
"[%0*zd/%0*zd] ", width, idx + 1, width, total);
len += print_time_left(state, settings,
buf + len, sizeof(buf) - len);
displayname = entry_display_name(entry);
len += snprintf(buf + len, sizeof(buf) - len, "%s", displayname);
free(displayname);
outf("%s\n", buf);
}
/*
* Flush outputs before forking so our (buffered) output won't
* end up in the test outputs.
*/
fflush(stdout);
fflush(stderr);
child = fork();
if (child < 0) {
errf("Failed to fork: %m\n");
result = -1;
goto out_kmsgfd;
} else if (child == 0) {
outfd = outpipe[1];
errfd = errpipe[1];
close(outpipe[0]);
close(errpipe[0]);
sigprocmask(SIG_UNBLOCK, sigmask, NULL);
setenv("IGT_SENTINEL_ON_STDERR", "1", 1);
execute_test_process(outfd, errfd, settings, entry);
/* unreachable */
}
outfd = outpipe[0];
errfd = errpipe[0];
close(outpipe[1]);
close(errpipe[1]);
outpipe[1] = errpipe[1] = -1;
result = monitor_output(child, outfd, errfd, kmsgfd, sigfd,
outputs, time_spent, settings);
out_kmsgfd:
close(kmsgfd);
out_pipe:
close_outputs(outputs);
close(outpipe[0]);
close(outpipe[1]);
close(errpipe[0]);
close(errpipe[1]);
close_outputs(outputs);
out_dirfd:
close(dirfd);
return result;
}
static int remove_file(int dirfd, const char *name)
{
return unlinkat(dirfd, name, 0) && errno != ENOENT;
}
static bool clear_test_result_directory(int dirfd)
{
int i;
for (i = 0; i < _F_LAST; i++) {
if (remove_file(dirfd, filenames[i])) {
errf("Error deleting %s from test result directory: %m\n",
filenames[i]);
return false;
}
}
return true;
}
static bool clear_old_results(char *path)
{
int dirfd;
size_t i;
if ((dirfd = open(path, O_DIRECTORY | O_RDONLY)) < 0) {
if (errno == ENOENT) {
/* Successfully cleared if it doesn't even exist */
return true;
}
errf("Error clearing old results: %m\n");
return false;
}
if (remove_file(dirfd, "uname.txt") ||
remove_file(dirfd, "starttime.txt") ||
remove_file(dirfd, "endtime.txt") ||
remove_file(dirfd, "aborted.txt")) {
close(dirfd);
errf("Error clearing old results: %m\n");
return false;
}
for (i = 0; true; i++) {
char name[32];
int resdirfd;
snprintf(name, sizeof(name), "%zd", i);
if ((resdirfd = openat(dirfd, name, O_DIRECTORY | O_RDONLY)) < 0)
break;
if (!clear_test_result_directory(resdirfd)) {
close(resdirfd);
close(dirfd);
return false;
}
close(resdirfd);
if (unlinkat(dirfd, name, AT_REMOVEDIR)) {
errf("Warning: Result directory %s contains extra files\n",
name);
}
}
close(dirfd);
return true;
}
static double timeofday_double(void)
{
struct timeval tv;
if (!gettimeofday(&tv, NULL))
return tv.tv_sec + tv.tv_usec / 1000000.0;
return 0.0;
}
static void init_time_left(struct execute_state *state,
struct settings *settings)
{
if (settings->overall_timeout <= 0)
state->time_left = -1;
else
state->time_left = settings->overall_timeout;
}
bool initialize_execute_state_from_resume(int dirfd,
struct execute_state *state,
struct settings *settings,
struct job_list *list)
{
struct job_list_entry *entry;
int resdirfd, fd, i;
free_settings(settings);
free_job_list(list);
memset(state, 0, sizeof(*state));
state->resuming = true;
if (!read_settings_from_dir(settings, dirfd) ||
!read_job_list(list, dirfd)) {
close(dirfd);
return false;
}
init_time_left(state, settings);
for (i = list->size; i >= 0; i--) {
char name[32];
snprintf(name, sizeof(name), "%d", i);
if ((resdirfd = openat(dirfd, name, O_DIRECTORY | O_RDONLY)) >= 0)
break;
}
if (i < 0)
/* Nothing has been executed yet, state is fine as is */
goto success;
entry = &list->entries[i];
state->next = i;
if ((fd = openat(resdirfd, filenames[_F_JOURNAL], O_RDONLY)) >= 0) {
if (!prune_from_journal(entry, fd)) {
/*
* The test does not have subtests, or
* incompleted before the first subtest
* began. Either way, not suitable to
* re-run.
*/
state->next = i + 1;
} else if (entry->binary[0] == '\0') {
/* This test is fully completed */
state->next = i + 1;
}
close(fd);
}
success:
close(resdirfd);
close(dirfd);
return true;
}
bool initialize_execute_state(struct execute_state *state,
struct settings *settings,
struct job_list *job_list)
{
memset(state, 0, sizeof(*state));
if (!validate_settings(settings))
return false;
if (!serialize_settings(settings) ||
!serialize_job_list(job_list, settings))
return false;
if (settings->overwrite &&
!clear_old_results(settings->results_path))
return false;
init_time_left(state, settings);
state->dry = settings->dry_run;
return true;
}
static void reduce_time_left(struct settings *settings,
struct execute_state *state,
double time_spent)
{
if (state->time_left < 0)
return;
if (time_spent > state->time_left)
state->time_left = 0.0;
else
state->time_left -= time_spent;
}
static bool overall_timeout_exceeded(struct execute_state *state)
{
return state->time_left == 0.0;
}
static void write_abort_file(int resdirfd,
const char *reason,
const char *testbefore,
const char *testafter)
{
int abortfd;
if ((abortfd = openat(resdirfd, "aborted.txt", O_CREAT | O_WRONLY | O_EXCL, 0666)) >= 0) {
/*
* Ignore failure to open, there's
* already an abort probably (if this
* is a resume)
*/
dprintf(abortfd, "Aborting.\n");
dprintf(abortfd, "Previous test: %s\n", testbefore);
dprintf(abortfd, "Next test: %s\n\n", testafter);
write(abortfd, reason, strlen(reason));
close(abortfd);
}
}
static void oom_immortal(void)
{
int fd;
const char never_kill[] = "-1000";
fd = open("/proc/self/oom_score_adj", O_WRONLY);
if (fd < 0) {
errf("Warning: Cannot adjust oom score.\n");
return;
}
if (write(fd, never_kill, sizeof(never_kill)) != sizeof(never_kill))
errf("Warning: Adjusting oom score failed.\n");
close(fd);
}
static bool should_die_because_signal(int sigfd)
{
struct signalfd_siginfo siginfo;
int ret;
struct pollfd sigpoll = { .fd = sigfd, .events = POLLIN | POLLRDBAND };
ret = poll(&sigpoll, 1, 0);
if (ret != 0) {
if (ret == -1) {
errf("Poll on signalfd failed with %m\n");
return true; /* something is wrong, let's die */
}
ret = read(sigfd, &siginfo, sizeof(siginfo));
if (ret == -1) {
errf("Error reading from signalfd: %m\n");
return false; /* we may want to retry later */
}
if (siginfo.ssi_signo == SIGCHLD) {
errf("Runner got stray SIGCHLD while not executing any tests.\n");
} else {
errf("Runner is being killed by %s\n",
strsignal(siginfo.ssi_signo));
return true;
}
}
return false;
}
bool execute(struct execute_state *state,
struct settings *settings,
struct job_list *job_list)
{
struct utsname unamebuf;
int resdirfd, testdirfd, unamefd, timefd;
sigset_t sigmask;
int sigfd;
double time_spent = 0.0;
bool status = true;
if (state->dry) {
outf("Dry run, not executing. Invoke igt_resume if you want to execute.\n");
return true;
}
if ((resdirfd = open(settings->results_path, O_DIRECTORY | O_RDONLY)) < 0) {
/* Initialize state should have done this */
errf("Error: Failure opening results path %s\n",
settings->results_path);
return false;
}
if ((testdirfd = open(settings->test_root, O_DIRECTORY | O_RDONLY)) < 0) {
errf("Error: Failure opening test root %s\n",
settings->test_root);
close(resdirfd);
return false;
}
/* TODO: On resume, don't rewrite, verify that content matches current instead */
if ((unamefd = openat(resdirfd, "uname.txt", O_CREAT | O_WRONLY | O_TRUNC, 0666)) < 0) {
errf("Error: Failure opening uname.txt: %m\n");
close(testdirfd);
close(resdirfd);
return false;
}
if ((timefd = openat(resdirfd, "starttime.txt", O_CREAT | O_WRONLY | O_EXCL, 0666)) >= 0) {
/*
* Ignore failure to open. If this is a resume, we
* don't want to overwrite. For other errors, we
* ignore the start time.
*/
dprintf(timefd, "%f\n", timeofday_double());
close(timefd);
}
oom_immortal();
sigemptyset(&sigmask);
sigaddset(&sigmask, SIGCHLD);
sigaddset(&sigmask, SIGINT);
sigaddset(&sigmask, SIGTERM);
sigaddset(&sigmask, SIGQUIT);
sigaddset(&sigmask, SIGHUP);
sigfd = signalfd(-1, &sigmask, O_CLOEXEC);
sigprocmask(SIG_BLOCK, &sigmask, NULL);
if (sigfd < 0) {
/* TODO: Handle better */
errf("Cannot mask signals\n");
status = false;
goto end;
}
init_watchdogs(settings);
if (settings->abort_mask & ABORT_PING)
ping_config();
if (!uname(&unamebuf)) {
dprintf(unamefd, "%s %s %s %s %s\n",
unamebuf.sysname,
unamebuf.nodename,
unamebuf.release,
unamebuf.version,
unamebuf.machine);
} else {
dprintf(unamefd, "uname() failed\n");
}
close(unamefd);
/* Check if we're already in abort-state at bootup */
if (!state->resuming) {
char *reason;
if ((reason = need_to_abort(settings)) != NULL) {
char *nexttest = entry_display_name(&job_list->entries[state->next]);
write_abort_file(resdirfd, reason, "nothing", nexttest);
free(reason);
free(nexttest);
status = false;
goto end;
}
}
for (; state->next < job_list->size;
state->next++) {
char *reason;
int result;
if (should_die_because_signal(sigfd)) {
status = false;
goto end;
}
result = execute_next_entry(state,
job_list->size,
&time_spent,
settings,
&job_list->entries[state->next],
testdirfd, resdirfd,
sigfd, &sigmask);
if (result < 0) {
status = false;
break;
}
reduce_time_left(settings, state, time_spent);
if (overall_timeout_exceeded(state)) {
if (settings->log_level >= LOG_LEVEL_NORMAL) {
outf("Overall timeout time exceeded, stopping.\n");
}
break;
}
if ((reason = need_to_abort(settings)) != NULL) {
char *prev = entry_display_name(&job_list->entries[state->next]);
char *next = (state->next + 1 < job_list->size ?
entry_display_name(&job_list->entries[state->next + 1]) :
strdup("nothing"));
write_abort_file(resdirfd, reason, prev, next);
free(prev);
free(next);
free(reason);
status = false;
break;
}
if (result > 0) {
double time_left = state->time_left;
close_watchdogs(settings);
sigprocmask(SIG_UNBLOCK, &sigmask, NULL);
/* make sure that we do not leave any signals unhandled */
if (should_die_because_signal(sigfd)) {
status = false;
goto end_post_signal_restore;
}
close(sigfd);
close(testdirfd);
initialize_execute_state_from_resume(resdirfd, state, settings, job_list);
state->time_left = time_left;
return execute(state, settings, job_list);
}
}
if ((timefd = openat(resdirfd, "endtime.txt", O_CREAT | O_WRONLY | O_EXCL, 0666)) >= 0) {
dprintf(timefd, "%f\n", timeofday_double());
close(timefd);
}
end:
close_watchdogs(settings);
sigprocmask(SIG_UNBLOCK, &sigmask, NULL);
/* make sure that we do not leave any signals unhandled */
if (should_die_because_signal(sigfd))
status = false;
end_post_signal_restore:
close(sigfd);
close(testdirfd);
close(resdirfd);
return status;
}
|