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
|
# KVM make targets, for Libreswan
#
# Copyright (C) 2015-2023 Andrew Cagney
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
include ../../mk/dirs.mk
include ../../mk/config.mk
include ../../mk/testing.mk
KVM_RUTDIR ?= $(TESTING_RUTDIR)
KVM_BENCHDIR ?= $(TESTING_BENCHDIR)
KVM_SOURCEDIR ?= $(TESTING_SOURCEDIR)
KVM_TESTINGDIR ?= $(TESTING_RUTDIR)/testing
# An educated guess ...
KVM_POOLDIR ?= $(abspath $(abs_top_srcdir)/../pool)
KVM_LOCALDIR ?= $(KVM_POOLDIR)
# Note: GNU Make doesn't let you combine pattern targets (e.x.,
# kvm-install-%: kvm-reboot-%) with .PHONY. Consequently, so that
# patterns can be used, any targets with dependencies are not marked
# as .PHONY. Sigh!
# Note: for pattern targets, the value of % can be found in the make
# variable '$*' (why not $%!?!?!, because that was used for archives).
# It is used to extract the DOMAIN from targets like
# kvm-install-DOMAIN.
empty =
comma = ,
sp = $(empty) $(empty)
# the first blank line is ignored
define crlf
endef
#
# Build KVM_TEST_PREFIXES from $(KVM_PREFIX) and $(KVM_WORKERS). Goal
# is to make KVM_TEST_PREFIXES non-empty.
#
# KVM_PREFIX= KVM_WORKERS= KVM_TEST_PREFIXES=
# $(KVM_LOCALDIR)/
# 1 $(KVM_LOCALDIR)/
# 2 $(KVM_LOCALDIR)/ $(KVM_LOCALDIR)/2
# a $(KVM_LOCALDIR)/a
# a 1 $(KVM_LOCALDIR)/a
# a 2 $(KVM_LOCALDIR)/a $(KVM_LOCALDIR)/a2
# a. $(KVM_LOCALDIR)/a.
# a. 1 $(KVM_LOCALDIR)/a.
# a. 2 $(KVM_LOCALDIR)/a. $(KVM_LOCALDIR)/a2
#
# Note:
# $(join $(KVM_LOCALDIR), $(KVM_PREFIX))
# and not not:
# $(addprefix $(KVM_LOCALDIR), $(KVM_PREFIX))
# is used as, when $(KVM_PREFIX) is empty, the latter expands to
# nothing.
#
# Note: test with:
# make -C testing/kvm kvm-config KVM_PREFIX=... KVM_WORKERS=... | grep PREFIXES
KVM_PREFIX ?=
KVM_WORKERS ?= 1
KVM_NUMBERS = $(wordlist 2, $(KVM_WORKERS), 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17)
KVM_TEST_PREFIXES ?= $(sort \
$(join $(KVM_LOCALDIR)/, $(KVM_PREFIX)) \
$(foreach n, $(KVM_NUMBERS), $(join $(KVM_LOCALDIR)/, $(join $(patsubst %., %, $(KVM_PREFIX)), $(n)))))
#KVM_PYTHON ?= PYTHONPATH=/home/python/pexpect:/home/python/ptyprocess /home/python/v3.8/bin/python3
KVM_PIDFILE ?= $(KVM_BENCHDIR)/kvmrunner.pid
# Current user's UID; and GID used by QEMU
KVM_UID ?= $(shell id -u)
KVM_GID ?= $(shell stat --format=%g $(KVM_HOST_QEMUDIR))
# Don't include @@SOURCEDIR@@ @@TESTINGDIR@@ and @@DOMAIN@@ as they
# change depending on what is being transformed. Instead they are
# added as needed.
KVM_TRANSMOGRIFY = \
sed \
-e 's;@@GATEWAY@@;$(KVM_GATEWAY_ADDRESS);' \
-e 's;@@BENCHDIR@@;$(KVM_BENCHDIR);' \
-e 's;@@LOCALDIR@@;$(KVM_LOCALDIR);' \
-e 's;@@POOLDIR@@;$(KVM_POOLDIR);' \
-e 's;@@USER@@;$(KVM_UID);' \
-e 's;@@GROUP@@;$(KVM_GID);' \
-e 's;@@PREFIX@@;$(KVM_PREFIX);'
# The alternative is qemu:///session and it doesn't require root.
# However, it has never been used, and the python tools all assume
# qemu://system. Finally, it comes with a warning: QEMU usermode
# session is not the virt-manager default. It is likely that any
# pre-existing QEMU/KVM guests will not be available. Networking
# options are very limited.
KVM_CONNECTION ?= qemu:///system
VIRSH = sudo virsh --connect=$(KVM_CONNECTION)
#
# Makeflags passed to the KVM build
#
# For each setting two flags are checked:
#
# KVM_<OS>_<FLAG>
# KVM_<FLAG>
#
# for instance:
#
# KVM_LINUX_ALL_ALGS
# KVM_ALL_ALGS
#
# In KVM-MAKEFLAG, the macro $(KVM_$($*)_$(strip $(1))) expands to
# $(KVM_<OS>_<FLAG>) and $(KVM_$(strip $(1))) expands to
# $(KVM_<FLAG>).
# On Linux, override linux defaults
KVM_LINUX_NSSDIR ?= $(SYSCONFDIR)/ipsec.d
KVM_LINUX_SD_RESTART_TYPE ?= no
KVM_LINUX_USE_EFENCE ?= true
KVM_LINUX_USE_LABELED_IPSEC ?= true
KVM_LINUX_USE_SECCOMP ?= true
# from <FLAG> return KVM_<OS>_<FLAG> or KVM_<FLAG>
kvm-flag = \
$(firstword \
$(if $(KVM_$($*)_$(strip $(1))), KVM_$($*)_$(strip $(1))) \
$(if $(KVM_$(strip $(1))), KVM_$(strip $(1))))
kvm-flag-name = $(call kvm-flag, $(patsubst KVM_%, %, $(1)))
kvm-flag-value = $($(call kvm-flag, $(patsubst KVM_%, %, $(1))))
# either KVM_${PLATFORM}_FLAG or KVM_FLAG
KVM-MAKEFLAG = \
$(if $(call kvm-flag-name, $(1)), \
$(patsubst KVM_%, %, $(1))=$(call kvm-flag-value, $(1)))
KVM_MAKEFLAGS ?= $(strip \
-j$(call kvm-flag-value, KVM_BUILD_CPUS) \
$(call KVM-MAKEFLAG, KVM_ALL_ARGS) \
$(call KVM-MAKEFLAG, KVM_NSSDIR) \
$(call KVM-MAKEFLAG, KVM_NSS_CFLAGS) \
$(call KVM-MAKEFLAG, KVM_NSS_LDFLAGS) \
$(call KVM-MAKEFLAG, KVM_SD_RESTART_TYPE) \
$(call KVM-MAKEFLAG, KVM_USE_EFENCE) \
$(call KVM-MAKEFLAG, KVM_USE_LABELED_IPSEC) \
$(call KVM-MAKEFLAG, KVM_USE_LTO) \
$(call KVM-MAKEFLAG, KVM_USE_NSS_KDF) \
$(call KVM-MAKEFLAG, KVM_USE_SECCOMP) \
$(call KVM-MAKEFLAG, KVM_USE_CISCO_SPLIT) \
$(call KVM-MAKEFLAG, KVM_CC) \
)
# Fine-tune the BASE and BUILD machines.
#
# BASE is kept small.
#
# BUILD is more complex:
#
# CPUs: so as to not over allocate host cores, stick with
# $(KVM_WORKERS) (default 1). The heuristic is to set $(KVM_WORKERS)
# to #cores/2 - as it seems that a [booting] machine ties up two
# cores.
#
# Memory: a test typically requires two 512mb VMs. With $(KVM_WORKERS)
# that makes at least $(KVM_WORKERS)*2*512mb of ram being used by
# tests VMs. Boost build's memory by that amount.
VIRT_INSTALL ?= sudo virt-install
VIRT_CPU ?= --cpu=host-passthrough
VIRT_DISK_SIZE_GB ?= 10
VIRT_RND ?= --rng=type=random,device=/dev/random
VIRT_SECURITY ?= --security=type=static,model=dac,label='$(KVM_UID):$(KVM_GID)',relabel=yes
VIRT_GATEWAY ?= --network=network:$(KVM_GATEWAY_NAME),model=virtio
VIRT_BENCHDIR ?= --filesystem=target=bench,type=mount,accessmode=squash,source=$(KVM_BENCHDIR)
VIRT_POOLDIR ?= --filesystem=target=pool,type=mount,accessmode=squash,source=$(KVM_POOLDIR)
# note: these rely on %==$(OS)
VIRT_SOURCEDIR ?= --filesystem=target=source,type=mount,accessmode=squash,source=$(KVM_SOURCEDIR)
VIRT_TESTINGDIR ?= --filesystem=target=testing,type=mount,accessmode=squash,source=$(KVM_TESTINGDIR)
VIRT_INSTALL_FLAGS = \
--connect=$(KVM_CONNECTION) \$(crlf)\
--check=path_in_use=off \$(crlf)\
--graphics=none \$(crlf)\
--virt-type=kvm \$(crlf)\
--noreboot \$(crlf)\
--console=pty,target_type=serial \$(crlf)\
$(VIRT_CPU) \$(crlf)\
$(VIRT_GATEWAY) \$(crlf)\
$(VIRT_RND) \$(crlf)\
$(VIRT_SECURITY)
#
# Platforms / OSs
#
# To disable an OS use something like:
# KVM_OPENBSD=
# NOT ...=false
KVM_ALPINE ?=
KVM_DEBIAN ?=
KVM_FEDORA ?=
KVM_LINUX ?= true
KVM_FREEBSD ?=
KVM_NETBSD ?=
KVM_OPENBSD ?=
# so that $($*) converts % to upper case
alpine = ALPINE
debian = DEBIAN
fedora = FEDORA
freebsd = FREEBSD
linux = LINUX
netbsd = NETBSD
openbsd = OPENBSD
# this is what works
KVM_PLATFORMS += alpine
KVM_PLATFORMS += debian
KVM_PLATFORMS += fedora
KVM_PLATFORMS += freebsd
KVM_PLATFORMS += linux
KVM_PLATFORMS += netbsd
KVM_PLATFORMS += openbsd
# this is what is enabled; OS needs a better name; KVM_OSS is weird
KVM_OS += $(if $(filter true, $(KVM_ALPINE)), alpine)
KVM_OS += $(if $(filter true, $(KVM_DEBIAN)), debian)
KVM_OS += $(if $(filter true, $(KVM_FEDORA)), fedora)
KVM_OS += $(if $(filter true, $(KVM_FREEBSD)), freebsd)
KVM_OS += $(if $(filter true, $(KVM_LINUX)), linux)
KVM_OS += $(if $(filter true, $(KVM_NETBSD)), netbsd)
KVM_OS += $(if $(filter true, $(KVM_OPENBSD)), openbsd)
# fed into virt-install --os-variant; linux is fedora!
KVM_ALPINE_OS_VARIANT ?= $(shell osinfo-query os | awk '/alpinelinux[1-9]/ {print $$1}' | sort -V | tail -1)
KVM_DEBIAN_OS_VARIANT ?= $(shell osinfo-query os | awk '/debian[1-9]/ {print $$1}' | sort -V | tail -1)
KVM_FEDORA_OS_VARIANT ?= $(shell osinfo-query os | awk '/fedora[1-9]/ {print $$1}' | sort -V | tail -1)
KVM_FREEBSD_OS_VARIANT ?= $(shell osinfo-query os | awk '/freebsd[1-9]/ {print $$1}' | sort -V | tail -1)
KVM_LINUX_OS_VARIANT ?= $(shell osinfo-query os | awk '/fedora[1-9]/ {print $$1}' | sort -V | tail -1)
KVM_NETBSD_OS_VARIANT ?= $(shell osinfo-query os | awk '/netbsd[1-9]/ {print $$1}' | sort -V | tail -1)
KVM_OPENBSD_OS_VARIANT ?= $(shell osinfo-query os | awk '/openbsd[1-9]/ {print $$1}' | sort -V | tail -1)
#
# Hosts and Domains
#
# These make variables roughly follow the naming convention:
#
# KVM_*_HOST_NAME KVM_*_HOST_NAMES
#
# the root names without any additions
#
# KVM_*_DOMAIN_NAME KVM_*_DOMAIN_NAME
#
# the host names with domain specific prefixes added; this is
# what is fed to KVM but note ...
#
# KVM_*_DOMAIN KVM_*_DOMAINS
#
# the path/domain-name that is used as the make target
#
# Note: make rules use $(notdir KVM_*_DOMAIN), $(notdir $@), and
# $* (matching % in pattern rules) to get the domain name from
# the target
# expand anything using $1 (such as make variable names and values)
# immediately, but delay everything else by using $$.
# override below
KVM_LINUX_TEST_HOST_NAMES = east west north road nic
KVM_OS_TEST_HOST_NAMES = e w rise set
define domains
KVM_$($(strip $1))_BASE_HOST_NAME = $(strip $1)-base
KVM_$($(strip $1))_UPGRADE_HOST_NAME = $(strip $1)-upgrade
KVM_$($(strip $1))_BUILD_HOST_NAME = $(strip $1)
KVM_$($(strip $1))_HOST_NAME = $(strip $1)
KVM_$($(strip $1))_BASE_DOMAIN_NAME = $$(addprefix $$(KVM_PREFIX), $$(KVM_$($(strip $1))_BASE_HOST_NAME))
KVM_$($(strip $1))_UPGRADE_DOMAIN_NAME = $$(addprefix $$(KVM_PREFIX), $$(KVM_$($(strip $1))_UPGRADE_HOST_NAME))
KVM_$($(strip $1))_BUILD_DOMAIN_NAME = $$(addprefix $$(KVM_PREFIX), $$(KVM_$($(strip $1))_BUILD_HOST_NAME))
KVM_$($(strip $1))_DOMAIN_NAME = $$(addprefix $$(KVM_PREFIX), $$(KVM_$($(strip $1))_HOST_NAME))
KVM_$($(strip $1))_BASE_DOMAIN = $$(addprefix $$(KVM_POOLDIR)/, $$(KVM_$($(strip $1))_BASE_DOMAIN_NAME))
KVM_$($(strip $1))_UPGRADE_DOMAIN = $$(addprefix $$(KVM_POOLDIR)/, $$(KVM_$($(strip $1))_UPGRADE_DOMAIN_NAME))
KVM_$($(strip $1))_BUILD_DOMAIN = $$(addprefix $$(KVM_POOLDIR)/, $$(KVM_$($(strip $1))_BUILD_DOMAIN_NAME))
KVM_$($(strip $1))_DOMAIN = $$(addprefix $$(KVM_POOLDIR)/, $$(KVM_$($(strip $1))_DOMAIN_NAME))
KVM_$($(strip $1))_TEST_HOST_NAMES ?= $$(addprefix $1, $$(KVM_OS_TEST_HOST_NAMES))
KVM_$($(strip $1))_TEST_DOMAINS = $$(foreach prefix, $$(KVM_TEST_PREFIXES), $$(addprefix $$(prefix), $$(KVM_$($(strip $1))_TEST_HOST_NAMES)))
KVM_$($(strip $1))_DOMAINS += $$(KVM_$($(strip $1))_BASE_DOMAIN)
KVM_$($(strip $1))_DOMAINS += $$(KVM_$($(strip $1))_BUILD_DOMAIN)
KVM_$($(strip $1))_DOMAINS += $$(KVM_$($(strip $1))_UPGRADE_DOMAIN)
KVM_$($(strip $1))_DOMAINS += $$(KVM_$($(strip $1))_DOMAIN)
KVM_$($(strip $1))_DOMAINS += $$(KVM_$($(strip $1))_TEST_DOMAINS)
endef
$(foreach platform, $(KVM_PLATFORMS), \
$(eval $(call domains, $(platform))))
KVM_BASE_HOST_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_BASE_HOST_NAME))
KVM_BASE_DOMAIN_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_BASE_DOMAIN_NAME))
KVM_BASE_DOMAINS = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_BASE_DOMAIN))
KVM_UPGRADE_HOST_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_UPGRADE_HOST_NAME))
KVM_UPGRADE_DOMAIN_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_UPGRADE_DOMAIN_NAME))
KVM_UPGRADE_DOMAINS = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_UPGRADE_DOMAIN))
KVM_BUILD_HOST_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_BUILD_HOST_NAME))
KVM_BUILD_DOMAIN_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_BUILD_DOMAIN_NAME))
KVM_BUILD_DOMAINS = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_BUILD_DOMAIN))
KVM_TEST_HOST_NAMES = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_TEST_HOST_NAMES))
KVM_TEST_DOMAINS = $(foreach platform, $(KVM_PLATFORMS), $(KVM_$($(platform))_TEST_DOMAINS))
KVM_HOST_NAMES += $(KVM_BASE_HOST_NAMES)
KVM_HOST_NAMES += $(KVM_UPGRADE_HOST_NAMES)
KVM_HOST_NAMES += $(KVM_BUILD_HOST_NAMES)
KVM_HOST_NAMES += $(KVM_TEST_HOST_NAMES)
KVM_DOMAIN_NAMES += $(KVM_BASE_DOMAIN_NAMES)
KVM_DOMAIN_NAMES += $(KVM_UPGRADE_DOMAIN_NAMES)
KVM_DOMAIN_NAMES += $(KVM_BUILD_DOMAIN_NAMES)
KVM_DOMAIN_NAMES += $(notdir $(KVM_TEST_DOMAINS))
KVM_DOMAINS += $(KVM_BASE_DOMAINS)
KVM_DOMAINS += $(KVM_UPGRADE_DOMAINS)
KVM_DOMAINS += $(KVM_BUILD_DOMAINS)
KVM_DOMAINS += $(KVM_TEST_DOMAINS)
#
# Domains
#
# Generate local names using prefixes
#
# targets for dumping the above; $(info) value to stdout when
# evaluating the command @: gives make real work.
.PHONY: print-kvm-variable
print-kvm-variable:
@echo "$(strip $($(VARIABLE)))"
KVM_POOLDIR_PREFIX = $(KVM_POOLDIR)/$(KVM_PREFIX)
#
# Other utilities and directories
#
QEMU_IMG ?= sudo qemu-img
KVMSH ?= cd $(abs_top_srcdir) && $(KVM_PYTHON) testing/utils/kvmsh.py
KVMRUNNER ?= cd $(abs_top_srcdir) && $(KVM_PYTHON) testing/utils/kvmrunner.py
KVMRESULTS ?= cd $(abs_top_srcdir) && $(KVM_PYTHON) testing/utils/kvmresults.py
RPM_VERSION = $(shell $(MAKE) --no-print-directory showrpmversion)
RPM_PREFIX = libreswan-$(RPM_VERSION)
RPM_BUILD_CLEAN ?= --rmsource --rmspec --clean
#
# Detect a fresh boot of the host machine. Use this as a dependency
# for actions that should only be run once after each boot.
#
# The first time $(MAKE) is run after a boot, this file is touched,
# any further rules leave the file alone.
#
KVM_FRESH_BOOT_FILE = $(KVM_POOLDIR_PREFIX)boot.ok
$(KVM_FRESH_BOOT_FILE): $(firstword $(wildcard /var/run/rc.log /var/log/boot.log))
$(KVM_FRESH_BOOT_FILE): | $(KVM_POOLDIR)
touch $@
#
# Check that there is enough entoropy for running the domains.
#
# Only do this once per boot.
#
KVM_HOST_ENTROPY_FILE ?= /proc/sys/kernel/random/entropy_avail
KVM_HOST_ENTROPY_OK = $(KVM_POOLDIR_PREFIX)entropy.ok
$(KVM_HOST_ENTROPY_OK): $(KVM_FRESH_BOOT_FILE)
$(KVM_HOST_ENTROPY_OK): | $(KVM_POOLDIR)
@if test ! -r $(KVM_HOST_ENTROPY_FILE); then \
echo no entropy to check ; \
elif test $$(cat $(KVM_HOST_ENTROPY_FILE)) -gt 100 ; then \
echo lots of entropy ; \
else \
echo ; \
echo According to: \
echo ; \
echo $(KVM_HOST_ENTROPY_FILE) ; \
echo ; \
echo your computer does not have much entropy ; \
echo ; \
echo Check the wiki for hints on how to fix this. ; \
echo ; \
false ; \
fi
touch $@
KVM_HOST_OK += $(KVM_HOST_ENTROPY_OK)
#
# Check that the QEMUDIR is writeable by us.
#
# (assumes that the machine is rebooted after a qemu update)
#
KVM_HOST_QEMUDIR ?= /var/lib/libvirt/qemu
KVM_HOST_QEMUDIR_OK = $(KVM_POOLDIR_PREFIX)qemudir.ok
$(KVM_HOST_QEMUDIR_OK): $(KVM_FRESH_BOOT_FILE)
$(KVM_HOST_QEMUDIR_OK): | $(KVM_POOLDIR)
@if ! test -w $(KVM_HOST_QEMUDIR) ; then \
echo ; \
echo " The directory:" ; \
echo ; \
echo " $(KVM_HOST_QEMUDIR) (KVM_HOST_QEMUDIR)" ; \
echo ; \
echo " is not writeable vis:" ; \
echo ; \
echo " $$(ls -ld $(KVM_HOST_QEMUDIR))" ; \
echo ; \
echo " This will break virsh which is" ; \
echo " used to manipulate the domains." ; \
echo " Typically this is fixed with:" ; \
echo ; \
echo " sudo chgrp qemu $(KVM_HOST_QEMUDIR)" ; \
echo " sudo chmod g+w $(KVM_HOST_QEMUDIR)" ; \
echo ; \
false ; \
fi
touch $@
KVM_HOST_OK += $(KVM_HOST_QEMUDIR_OK)
#
# ensure that NFS is running and everything is exported
#
KVM_HOST_NFS_OK = $(KVM_POOLDIR_PREFIX)nfs.ok
$(KVM_HOST_NFS_OK): kvm-exportfs.sh
$(KVM_HOST_NFS_OK): $(KVM_FRESH_BOOT_FILE)
$(KVM_HOST_NFS_OK): | $(KVM_POOLDIR)
sh kvm-exportfs.sh \
$(KVM_GATEWAY_ADDRESS)/$(KVM_GATEWAY_PREFIX) \
$(KVM_BENCHDIR) \
$(KVM_POOLDIR) \
$(KVM_SOURCEDIR) \
$(KVM_RUTDIR)
touch $@
.PHONY: kvm-install-nfs kvm-uninstall-nfs
kvm-install-nfs: $(KVM_HOST_NFS_OK)
kvm-uninstall-nfs:
sudo exportfs -ua
rm -f $(KVM_HOST_NFS_OK)
KVM_HOST_OK += $(KVM_HOST_NFS_OK)
#
# Don't create $(KVM_POOLDIR) - let the user do that as it lives
# outside of the current directory tree.
#
# However, do create $(KVM_LOCALDIR) (but not using -p) if it is
# unique and doesn't exist - convention seems to be to point it at
# /tmp/pool which needs to be re-created every time the host is
# rebooted.
#
# Defining a macro and the printing it using $(info) is easier than
# a bunch of echo's or :s.
#
define kvm-pooldir-info
The directory:
"$(KVM_POOLDIR)"
specified by KVM_POOLDIR and used to store the base domain disk
and other files, does not exist.
Either create the directory or adjust its location by setting
KVM_POOLDIR in the file:
Makefile.inc.local
endef
$(KVM_POOLDIR):
$(info $(kvm-pooldir-info))
false
ifneq ($(KVM_POOLDIR),$(KVM_LOCALDIR))
$(KVM_LOCALDIR):
: not -p
mkdir $(KVM_LOCALDIR)
endif
#
# Build or update the web pages ready for a new test run
#
# For the results directory, just install the HTML / javascript files
# (kvmrunner.py will fill in all the json files). For the summary
# directory, do a full update so that all the previous runs are
# included.
.PHONY: kvm-web
kvm-web: kvm-ready
ifdef WEB_ENABLED
$(MAKE) -C $(top_srcdir)/testing/web --no-print-directory web-test-prep
else
@echo
@echo Web-pages disabled.
@echo
@echo To enable web pages create the directory:
@echo
@echo " $(TESTING_WEBDIR)"
@echo
@echo To convert this result into a web page run:
@echo
@echo " make web"
@echo
endif
#
# [re]run the testsuite.
#
# If the testsuite is being run a second time (for instance,
# re-started or re-run) what should happen: run all tests regardless;
# just run tests that have never been started; run tests that haven't
# yet passed? Since each alternative has merit, let the user decide
# by providing both kvm-test and kvm-retest.
KVM_TESTS ?= $(KVM_TESTINGDIR)/pluto
# Given a make command like:
#
# make kvm-test "KVM_TESTS=$(./testing/utils/kvmresults.py --quick testing/pluto | awk '/output-different/ { print $1 }' )"
#
# then KVM_TESTS ends up containing new lines, strip them out.
STRIPPED_KVM_TESTS = $(strip $(KVM_TESTS))
# Run the testsuite.
#
# - depends on kvm-keys-ok and not kvm-keys or $(KVM_KEYS) so that the
# check that the keys are up-to-date is run.
#
# - need build domains shutdown as, otherwise, test domains can refuse
# to boot because the domain they were cloned from is still running.
# Allow any of 'KVM_TEST_STATUS=good|wip', 'KVM_TEST_STATUS=good wip',
# or KVM_TEST_STATUS+=wip.
KVM_TEST_PLATFORM += $(KVM_OS)
KVM_TEST_STATUS += good
KVM_RUN_POST_MORTEM ?=
STRIPPED_KVM_TEST_PLATFORM = $(subst $(sp),|,$(sort $(KVM_TEST_PLATFORM)))
STRIPPED_KVM_TEST_STATUS = $(subst $(sp),|,$(sort $(KVM_TEST_STATUS)))
STRIPPED_KVM_TEST_NAME = $(subst $(sp),|,$(sort $(KVM_TEST_NAME)))
KVM_TEST_NAME ?=
.PHONY: kvm-ready
kvm-ready: kvm-keys-ok
kvm-ready: $(KVM_HOST_OK)
kvm-ready:
: shutdown all the build domains, kvmrunner shuts down the test domains
true $(foreach domain, $(KVM_BUILD_DOMAIN_NAMES), && $(KVMSH) --shutdown $(domain))
kvm-test kvm-check kvm-retest kvm-recheck: \
kvm-%: kvm-ready kvm-web
: $@
: KVM_TESTS="$(STRIPPED_KVM_TESTS)"
$(KVMRUNNER) \
$(if $(KVM_PIDFILE), --pid-file "$(KVM_PIDFILE)") \
$(foreach prefix,$(KVM_TEST_PREFIXES), --prefix '$(notdir $(prefix))') \
--testing-directory $(KVM_TESTINGDIR) \
$(if $(WEB_ENABLED), --publish-hash $(TESTING_HASH)) \
$(if $(WEB_ENABLED), --publish-resultsdir $(TESTING_RESULTSDIR)) \
$(if $(WEB_ENABLED), --publish-status $(TESTING_WEBDIR)/status.json) \
$(if $(WEB_ENABLED), --publish-result-html $(top_srcdir)/testing/web/result.html) \
$(if $(PUBLISH_SOURCE_URL), --publish-source-url $(PUBLISH_SOURCE_URL)) \
$(if $(STRIPPED_KVM_TEST_STATUS), --test-status '$(STRIPPED_KVM_TEST_STATUS)') \
$(if $(STRIPPED_KVM_TEST_NAME), --test-name '$(STRIPPED_KVM_TEST_NAME)') \
$(if $(STRIPPED_KVM_TEST_PLATFORM), --test-platform '$(STRIPPED_KVM_TEST_PLATFORM)') \
$(if $(filter kvm-re%, $@), --skip passed) \
$(if $(filter true, $(KVM_RUN_POST_MORTEM)), --run-post-mortem, \
$(if $(filter false, $(KVM_RUN_POST_MORTEM)), --no-run-post-mortem)) \
$(KVMRUNNER_FLAGS) \
$(KVM_TEST_FLAGS) \
$(STRIPPED_KVM_TESTS)
# clean up; accept pretty much everything
KVM_TEST_CLEAN_TARGETS = kvm-clean-check kvm-check-clean kvm-clean-test kvm-test-clean
.PHONY: $(KVM_TEST_CLEAN_TARGETS)
$(KVM_TEST_CLEAN_TARGETS):
find $(STRIPPED_KVM_TESTS) -name OUTPUT -type d -prune -print0 | xargs -0 -r rm -r
.PHONY: kvm-results
kvm-results:
$(KVMRESULTS) $(KVMRESULTS_FLAGS) $(KVM_TEST_FLAGS) $(STRIPPED_KVM_TESTS) $(if $(KVM_BASELINE),--baseline $(KVM_BASELINE))
.PHONY: kvm-diffs
kvm-diffs:
$(KVMRESULTS) $(KVMRESULTS_FLAGS) $(KVM_TEST_FLAGS) $(STRIPPED_KVM_TESTS) $(if $(KVM_BASELINE),--baseline $(KVM_BASELINE)) --print diffs
#
# Build the KVM keys using the KVM.
#
# XXX:
#
# Can't yet force the domain's creation. This target may have been
# invoked by testing/pluto/Makefile which relies on old domain
# configurations.
#
# Make certain everything is shutdown. Can't directly depend on the
# phony target kvm-shutdown as that triggers an unconditional rebuild.
# Instead invoke that rule inline.
#
# "dist_certs.py" can't create a directory called "certs/" on a 9p
# mounted file system (OSError: [Errno 13] Permission denied:
# 'certs/'). In fact, "mkdir xxx/ certs/" half fails (only xxx/ is
# created) so it might even be a problem with the mkdir call! Get
# around this by first creating the certs in /tmp on the guest, and
# then copying back using a tar file.
#
# "dist_certs.py" always writes its certificates to $(dirname $0).
# Get around this by running a copy of dist_certs.py placed in /tmp.
# file to mark keys are up-to-date
KVM_KEYS = $(KVM_TESTINGDIR)/x509/keys/up-to-date
KVM_KEYS_EXPIRATION_DAY = 7
KVM_KEYS_EXPIRED = find $(KVM_TESTINGDIR)/x509/*/ -type f -mtime +$(KVM_KEYS_EXPIRATION_DAY) -ls
KVM_KEYS_DOMAIN = $(addprefix $(KVM_PREFIX), linux)
.PHONY: kvm-keys
kvm-keys:
: invoke phony target to shut things down and delete old keys
$(MAKE) kvm-shutdown-linux
$(MAKE) kvm-clean-keys
$(MAKE) $(KVM_KEYS)
$(KVM_KEYS): $(KVM_TESTINGDIR)/x509/dist_certs.py
$(KVM_KEYS): $(KVM_TESTINGDIR)/x509/generate.sh
$(KVM_KEYS): $(KVM_TESTINGDIR)/baseconfigs/all/etc/bind/generate-dnssec.sh
$(KVM_KEYS): | $(KVM_POOLDIR)/$(KVM_KEYS_DOMAIN)
$(KVM_KEYS): | $(KVM_HOST_OK)
:
: generate the keys using $(KVM_KEYS_DOMAIN)
:
$(KVMSH) $(KVM_KEYS_DOMAIN) /testing/guestbin/keys.sh
:
: extract the tarball containing the keys
:
cd $(KVM_TESTINGDIR)/x509 && tar xf kvm-keys.tar && rm kvm-keys.tar
:
: Also regenerate the DNSSEC keys
:
$(KVMSH) --chdir /testing $(KVM_KEYS_DOMAIN) ./baseconfigs/all/etc/bind/generate-dnssec.sh
:
: All done.
:
$(KVMSH) --shutdown $(KVM_KEYS_DOMAIN)
touch $@
.PHONY: kvm-clean-keys kvm-keys-clean
kvm-clean-keys kvm-keys-clean:
: careful output mixed with repo files
rm -rf $(KVM_TESTINGDIR)/x509/*/
rm -f $(KVM_TESTINGDIR)/baseconfigs/all/etc/bind/signed/*.signed
rm -f $(KVM_TESTINGDIR)/baseconfigs/all/etc/bind/keys/*.key
rm -f $(KVM_TESTINGDIR)/baseconfigs/all/etc/bind/keys/*.private
rm -f $(KVM_TESTINGDIR)/baseconfigs/all/etc/bind/dsset/dsset-*
rm -f $(KVM_POOLDIR_PREFIX)kvm-keys.tar
# For moment don't force keys to be re-built.
.PHONY: kvm-keys-ok
kvm-keys-ok:
@if test ! -r $(KVM_KEYS); then \
$(MAKE) $(KVM_KEYS) ; \
elif test $$($(KVM_KEYS_EXPIRED) | wc -l) -gt 0 ; then \
echo "" ; \
echo " The KVM keys are too old. Run:" ; \
echo "" ; \
echo " ./kvm keys"; \
echo "" ; \
echo " to force an update" ; \
echo "" ; \
exit 1 ; \
fi
#
# The Gateway and Test networks
#
# Like domains/hosts, these make variables follow the rough naming
# convention:
#
# KVM_GATEWAY_NAME / KVM_TEST_NETWORK_NAMES
#
# the name that virsh likes to use
#
# KVM_GATEWAY / KVM_TEST_NETWORKS
#
# the path/name that is used as the make target
#
# Note: make rules use constructs such as $(notdir $(KVM_GATEWAY)),
# $(notdir $@), and $* (matching % in pattern rules) to get the
# name from the target.
#
# Because the gateway is created directly from net/swandefault and
# that file contains hardwired IP addresses, only one is possible.
#
# XXX: Why? Perhaps it is so that SSHing into the VMs is possible,
# but with lots of VMs what address gets assigned stops being
# predictable.
#
# To avoid the problem where the host has no "default" KVM network
# (there's a strong rumour that libreswan's main testing machine has
# this problem) define a dedicated swandefault gateway.
KVM_GATEWAY_NAME ?= swandefault
KVM_GATEWAY_ADDRESS ?= 198.19.0.1
KVM_GATEWAY_PREFIX ?= 16
KVM_GATEWAY_DHCP_START ?= 198.19.0.2
KVM_GATEWAY_DHCP_END ?= 198.19.4.254
KVM_GATEWAY = $(KVM_POOLDIR)/$(KVM_GATEWAY_NAME)
define KVM_GATEWAY_XML
<network ipv6='yes'>
<name>$(KVM_GATEWAY_NAME)</name>
<forward mode='nat'/>
<bridge name='$(KVM_GATEWAY_NAME)' stp='on' delay='0'/>
<domain name='$(KVM_GATEWAY_NAME)'/>
<ip address='$(KVM_GATEWAY_ADDRESS)' prefix='$(KVM_GATEWAY_PREFIX)'>
<dhcp>
<range start='$(KVM_GATEWAY_DHCP_START)' end='$(KVM_GATEWAY_DHCP_END)'/>
</dhcp>
</ip>
</network>
endef
$(KVM_GATEWAY): | $(KVM_POOLDIR)
./kvm-uninstall-network.sh $(KVM_GATEWAY)
echo "$(strip $(KVM_GATEWAY_XML))" > $(KVM_GATEWAY).xml
$(VIRSH) net-define $(KVM_GATEWAY).xml
$(VIRSH) net-autostart $(KVM_GATEWAY_NAME)
$(VIRSH) net-start $(KVM_GATEWAY_NAME)
touch $(KVM_GATEWAY)
#
# Test networks.
#
KVM_TEST_NETWORK_NAMES = 192_0_1 192_0_2 192_0_3 192_1_2 192_1_3 198_18_1
KVM_TEST_NETWORKS = \
$(foreach test_prefix, $(KVM_TEST_PREFIXES), \
$(foreach test_network, $(KVM_TEST_NETWORK_NAMES), \
$(test_prefix)$(test_network)))
$(KVM_TEST_NETWORKS): \
$(KVM_LOCALDIR)/%: $(KVM_FRESH_BOOT_FILE) | $(KVM_LOCALDIR)
: @=$@
: *=$*
-sudo ip link set $* down
-sudo ip link del name $*
sudo ip link add $* type bridge
sudo ip link set $* up
touch $@
.PHONY: kvm-gateway
kvm-gateway:
$(MAKE) kvm-uninstall-gateway
$(MAKE) kvm-install-gateway
.PHONY: kvm-install-test-networks kvm-install-gateway
kvm-install-gateway: $(KVM_GATEWAY)
kvm-install-test-networks: $(KVM_TEST_NETWORKS)
.PHONY: kvm-uninstall-test-networks
kvm-uninstall-test-networks:
$(foreach network, $(KVM_TEST_NETWORKS), sudo ip link set $(notdir $(network)) down ; sudo ip link del name $(notdir $(network)) ; rm -f $(network) ; )
.PHONY: kvm-uninstall-gateway
kvm-uninstall-gateway:
./kvm-uninstall-network.sh $(KVM_GATEWAY)
##
##
## Build the base domains
##
##
KVM_BASE_CPUS = 1
KVM_BASE_MEMORY ?= 2048
.PHONY: kvm-base
kvm-base: $(patsubst %, kvm-base-%, $(KVM_OS))
$(patsubst %, kvm-base-%, $(KVM_PLATFORMS)): \
kvm-base-%:
: $@
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
./kvm-uninstall-domain.sh $(KVM_$($*)_BUILD_DOMAIN)
./kvm-uninstall-domain.sh $(KVM_$($*)_UPGRADE_DOMAIN)
rm -f $(KVM_POOLDIR_PREFIX)$(*)-base
: generated dependencies
rm -f $(KVM_POOLDIR_PREFIX)$(*)-base.*
$(MAKE) $(KVM_POOLDIR_PREFIX)$(*)-base
$(patsubst %, $(KVM_POOLDIR_PREFIX)%-base, $(KVM_PLATFORMS)): \
$(KVM_POOLDIR_PREFIX)%-base: \
| \
./kvm-install-base.py \
$(KVM_POOLDIR) \
$(KVM_HOST_OK) \
$(KVM_GATEWAY)
: @=$@ *=$*
: clean up old domains
./kvm-uninstall-domain.sh $@
: use script to drive build of new domain
$(KVM_PYTHON) ./kvm-install-base.py \
os "$*" \
domain "$(notdir $@)" \
gateway $(KVM_GATEWAY_ADDRESS) \
benchdir $(KVM_BENCHDIR) \
pooldir $(KVM_POOLDIR) \
-- \
$(VIRT_INSTALL) \
$(VIRT_INSTALL_FLAGS) \
--vcpus=$(call kvm-flag-value, KVM_BASE_CPUS) \
--memory=$(call kvm-flag-value, KVM_BASE_MEMORY) \
--name=$(notdir $@) \
--os-variant=$(KVM_$($*)_OS_VARIANT) \
--disk=path=$@.qcow2,size=$(VIRT_DISK_SIZE_GB),bus=virtio,format=qcow2 \
$(VIRT_POOLDIR) \
$(KVM_$($*)_VIRT_INSTALL_FLAGS)
:
: Check that the shell prompt includes the exit code.
:
: KVMSH uses the prompt exit code to determine the status of
: the last command run vis:
:
: [user@host pwd]# false
: [user@host pwd 1]# true
: [user@host pwd]#
: OR
: [user@host pwd 0]#
:
$(KVMSH) $(notdir $@) -- true
! ( $(KVMSH) $(notdir $@) -- false )
:
: Check that /pool - KVM_POOLDIR - is mounted.
:
: The package install, upgrade, and transmogrify scripts
: are copied to and then run from that directory.
:
$(KVMSH) $(notdir $@) -- test -r /pool/$(notdir $@).qcow2
:
: Check that /source and /testing directories are not present.
:
: The /source and /testing directories are set up by transmogrify.
: They can change and may not point into this directory tree.
: Delaying their creation hopefully makes it harder to accidentally
: access the wrong files.
:
$(KVMSH) $(notdir $@) -- test ! -d /source -a ! -d /testing
:
: Everything seems to be working, shut down.
:
$(KVMSH) --shutdown $(notdir $@)
touch $@
KVM_GET ?= \
get() \
{ \
set -ex ; \
curl --no-styled-output --location --continue-at - --output $@.tmp "$$1" ; \
echo "$$2 ($@.tmp) = $$3" | $(CKSUM) -c ; \
mv $@.tmp $@ ; \
} ; \
get
#
# Alpine
#
KVM_ALPINE_VERSION ?= v3.21
KVM_ALPINE_RELEASE ?= 3.21.0
KVM_ALPINE_MACHINE ?= x86
KVM_ALPINE_URL ?= https://dl-cdn.alpinelinux.org/alpine/$(KVM_ALPINE_VERSION)/releases/$(KVM_ALPINE_MACHINE)
KVM_ALPINE_ISO ?= $(KVM_POOLDIR)/alpine-standard-$(KVM_ALPINE_RELEASE)-$(KVM_ALPINE_MACHINE).iso
KVM_ALPINE_ISO_HASH = SHA512
KVM_ALPINE_ISO_CKSUM ?= 50fe8711c2417640b08e4056d22fe746af1b0da3933ba34c74c2e6c6f019bda530597723401e46467750eec480ded3b59273d012c08fd9b54cf14b68e9bc6e5f
KVM_ALPINE_ISO_URL ?= $(KVM_ALPINE_URL)/$(notdir $(KVM_ALPINE_ISO))
$(KVM_ALPINE_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_ALPINE_ISO_URL) $(KVM_ALPINE_ISO_HASH) $(KVM_ALPINE_ISO_CKSUM)
KVM_ALPINE_VIRT_INSTALL_FLAGS = \
--cdrom=$(KVM_ALPINE_ISO)
$(KVM_ALPINE_DOMAIN)-base: $(KVM_ALPINE_ISO)
#
# Debian
#
KVM_DEBIAN_RELEASE ?= 12.2.0
KVM_DEBIAN_BUILD ?= 1
# https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd
KVM_DEBIAN_URL ?= https://cdimage.debian.org/mirror/cdimage/archive/$(KVM_DEBIAN_RELEASE)/amd64/iso-dvd
KVM_DEBIAN_ISO = $(KVM_POOLDIR)/debian-$(KVM_DEBIAN_RELEASE)-amd64-DVD-$(KVM_DEBIAN_BUILD).iso
KVM_DEBIAN_ISO_HASH = SHA256
KVM_DEBIAN_ISO_CKSUM = d969b315de093bc065b4f12ab0dd3f5601b52d67a0c622627c899f1d35834b82
KVM_DEBIAN_ISO_URL ?= $(KVM_DEBIAN_URL)/$(notdir $(KVM_DEBIAN_ISO))
$(KVM_DEBIAN_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_DEBIAN_ISO_URL) $(KVM_DEBIAN_ISO_HASH) $(KVM_DEBIAN_ISO_CKSUM)
$(KVM_DEBIAN_DOMAIN)-base.iso: $(KVM_DEBIAN_ISO)
$(KVM_DEBIAN_DOMAIN)-base.iso: | debian/base.sh
cp $(KVM_DEBIAN_ISO) $@.tmp
$(KVM_TRANSMOGRIFY) \
debian/base.sh \
> $(KVM_DEBIAN_DOMAIN)-base.sh
growisofs -M $@.tmp -l -R \
-input-charset utf-8 \
-graft-points \
/base.sh=$(KVM_DEBIAN_DOMAIN)-base.sh
mv $@.tmp $@
$(KVM_DEBIAN_DOMAIN)-base: $(KVM_DEBIAN_DOMAIN)-base.iso
KVM_DEBIAN_VIRT_INSTALL_FLAGS = \
--location=$(KVM_DEBIAN_DOMAIN)-base.iso \
--initrd-inject=debian/preseed.cfg \
--extra-args="console=ttyS0,115200 net.ifnames=0 biosdevname=0"
#
# Fedora
#
# - since kickstart is used this is pretty straight forward
#
# For instance: Fedora-Server-dvd-x86_64-36-1.5.iso
KVM_FEDORA_RELEASE ?= 41
KVM_FEDORA_BUILD ?= 1.4
KVM_FEDORA_URL ?= https://download.fedoraproject.org/pub/fedora/linux/releases/$(KVM_FEDORA_RELEASE)/Server/x86_64/iso
KVM_FEDORA_ISO ?= $(KVM_POOLDIR)/Fedora-Server-dvd-x86_64-$(KVM_FEDORA_RELEASE)-$(KVM_FEDORA_BUILD).iso
KVM_FEDORA_ISO_HASH = SHA256
KVM_FEDORA_ISO_CKSUM ?= 6037e489103401a6ad4e54a4bcb2df7525693bdc3f2ce4aa895838b65647e551
KVM_FEDORA_ISO_URL ?= $(KVM_FEDORA_URL)/$(notdir $(KVM_FEDORA_ISO))
KVM_FEDORA_KICKSTART_FILE ?= fedora/base.ks
$(KVM_FEDORA_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_FEDORA_ISO_URL) $(KVM_FEDORA_ISO_HASH) $(KVM_FEDORA_ISO_CKSUM)
KVM_FEDORA_VIRT_INSTALL_FLAGS = \
--location=$(KVM_FEDORA_ISO) \
--initrd-inject=$(KVM_FEDORA_DOMAIN)-base.ks \
--extra-args="inst.ks=file:/$(notdir $(KVM_FEDORA_DOMAIN)-base.ks) console=ttyS0,115200 net.ifnames=0 biosdevname=0 inst.notmux"
$(KVM_FEDORA_DOMAIN)-base: $(KVM_FEDORA_ISO)
$(KVM_FEDORA_DOMAIN)-base: | $(KVM_FEDORA_KICKSTART_FILE)
$(KVM_FEDORA_DOMAIN)-base: | $(KVM_FEDORA_DOMAIN)-base.ks
$(KVM_FEDORA_DOMAIN)-base.ks: | $(KVM_FEDORA_KICKSTART_FILE)
$(KVM_TRANSMOGRIFY) \
$(KVM_FEDORA_KICKSTART_FILE) \
> $@.tmp
mv $@.tmp $@
#
# FreeBSD
#
# - modifies the install CD
#
# - uses DISK 1, and not DVD 1, as the former does not contain
# packages; they will be downloaded later
#
KVM_FREEBSD_RELEASE ?= 14.2
KVM_FREEBSD_URL ?= https://download.freebsd.org/ftp/releases/ISO-IMAGES/$(KVM_FREEBSD_RELEASE)
KVM_FREEBSD_ISO ?= $(KVM_POOLDIR)/FreeBSD-$(KVM_FREEBSD_RELEASE)-RELEASE-amd64-disc1.iso
KVM_FREEBSD_ISO_HASH ?= SHA256
KVM_FREEBSD_ISO_CKSUM ?= a3c771e2fa958e922a5771047d524d7df3ce501e58bed5c65f0226e4d31ebd30
KVM_FREEBSD_ISO_URL ?= $(KVM_FREEBSD_URL)/$(notdir $(KVM_FREEBSD_ISO))
$(KVM_FREEBSD_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_FREEBSD_ISO_URL) $(KVM_FREEBSD_ISO_HASH) $(KVM_FREEBSD_ISO_CKSUM)
KVM_FREEBSD_VIRT_INSTALL_FLAGS = \
--cdrom=$(KVM_FREEBSD_DOMAIN)-base.iso
$(KVM_FREEBSD_DOMAIN)-base: $(KVM_FREEBSD_DOMAIN)-base.iso
$(KVM_FREEBSD_DOMAIN)-base.iso: $(KVM_FREEBSD_ISO)
$(KVM_FREEBSD_DOMAIN)-base.iso: | freebsd/loader.conf
$(KVM_FREEBSD_DOMAIN)-base.iso: | freebsd/base.conf
cp $(KVM_FREEBSD_ISO) $@.tmp
$(KVM_TRANSMOGRIFY) \
freebsd/base.conf \
> $(KVM_FREEBSD_DOMAIN)-base.conf
growisofs -M $@.tmp -l -R \
-input-charset utf-8 \
-graft-points \
/boot/loader.conf=freebsd/loader.conf \
/etc/installerconfig=$(KVM_FREEBSD_DOMAIN)-base.conf
mv $@.tmp $@
#
# Linux
#
# - since kickstart is used this is pretty straight forward
#
# For instance: Fedora-Server-dvd-x86_64-36-1.5.iso
KVM_LINUX_RELEASE ?= 40
KVM_LINUX_BUILD ?= 1.14
KVM_LINUX_URL ?= https://download.fedoraproject.org/pub/fedora/linux/releases/$(KVM_LINUX_RELEASE)/Server/x86_64/iso
KVM_LINUX_ISO ?= $(KVM_POOLDIR)/Fedora-Server-dvd-x86_64-$(KVM_LINUX_RELEASE)-$(KVM_LINUX_BUILD).iso
KVM_LINUX_ISO_HASH ?= SHA256
KVM_LINUX_ISO_CKSUM ?= 32d9ab1798fc8106a0b06e873bdcd83a3efea8412c9401dfe4097347ed0cfc65
KVM_LINUX_ISO_URL ?= $(KVM_LINUX_URL)/$(notdir $(KVM_LINUX_ISO))
KVM_LINUX_KICKSTART_FILE ?= linux/base.ks
ifneq ($(KVM_LINUX_ISO),$(KVM_FEDORA_ISO))
$(KVM_LINUX_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_LINUX_ISO_URL) $(KVM_LINUX_ISO_HASH) $(KVM_LINUX_ISO_CKSUM)
endif
KVM_LINUX_VIRT_INSTALL_FLAGS = \
--location=$(KVM_LINUX_ISO) \
--initrd-inject=$(KVM_LINUX_DOMAIN)-base.ks \
--extra-args="inst.ks=file:/$(notdir $(KVM_LINUX_DOMAIN)-base.ks) console=ttyS0,115200 net.ifnames=0 biosdevname=0 inst.notmux"
$(KVM_LINUX_DOMAIN)-base: $(KVM_LINUX_ISO)
$(KVM_LINUX_DOMAIN)-base: | $(KVM_LINUX_KICKSTART_FILE)
$(KVM_LINUX_DOMAIN)-base: | $(KVM_LINUX_DOMAIN)-base.ks
$(KVM_LINUX_DOMAIN)-base.ks: | $(KVM_LINUX_KICKSTART_FILE)
$(KVM_TRANSMOGRIFY) \
$(KVM_LINUX_KICKSTART_FILE) \
> $@.tmp
mv $@.tmp $@
#
# NetBSD
#
# - needs a second serial console boot iso
#
KVM_NETBSD_MACHINE = amd64
KVM_NETBSD_RELEASE ?= NetBSD-10.1
KVM_NETBSD_URL ?= https://cdn.netbsd.org/pub/NetBSD/$(KVM_NETBSD_RELEASE)
KVM_NETBSD_INSTALL_ISO ?= $(KVM_POOLDIR)/$(KVM_NETBSD_RELEASE)-$(KVM_NETBSD_MACHINE).iso
KVM_NETBSD_INSTALL_ISO_HASH = SHA512
KVM_NETBSD_INSTALL_ISO_CKSUM ?= 7a5e5071307e1795885ffc6e1b8aac465082c21c8b79f4c9b4103ef44e4f2da45477299d213ae0093f6534dc99dc2bbf78f41e9dd556c72a02516068bf43fe49
KVM_NETBSD_INSTALL_ISO_URL ?= $(KVM_NETBSD_URL)/images/$(notdir $(KVM_NETBSD_INSTALL_ISO))
# give downloaded ISO a unique name
KVM_NETBSD_BOOT_ISO ?= $(KVM_POOLDIR)/$(KVM_NETBSD_RELEASE)-$(KVM_NETBSD_MACHINE)-boot-com.iso
KVM_NETBSD_BOOT_ISO_HASH = SHA512
KVM_NETBSD_BOOT_ISO_CKSUM ?= 63341588599eb1e30c744cebdb30699fac159d777672c8948fb841aba99ca83d9eb40592ed21118884af13481e8dbed26583e0d87f548ee400efbb1d7c17c71f
KVM_NETBSD_BOOT_ISO_URL ?= $(KVM_NETBSD_URL)/$(KVM_NETBSD_MACHINE)/installation/cdrom/boot-com.iso
$(KVM_NETBSD_INSTALL_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_NETBSD_INSTALL_ISO_URL) $(KVM_NETBSD_INSTALL_ISO_HASH) $(KVM_NETBSD_INSTALL_ISO_CKSUM)
$(KVM_NETBSD_BOOT_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_NETBSD_BOOT_ISO_URL) $(KVM_NETBSD_BOOT_ISO_HASH) $(KVM_NETBSD_BOOT_ISO_CKSUM)
KVM_NETBSD_VIRT_INSTALL_FLAGS = \
--cdrom=$(KVM_NETBSD_BOOT_ISO) \
--disk=path=$(KVM_NETBSD_DOMAIN)-base.iso,readonly=on,device=cdrom
$(KVM_NETBSD_DOMAIN)-base: $(KVM_NETBSD_BOOT_ISO)
$(KVM_NETBSD_DOMAIN)-base: $(KVM_NETBSD_DOMAIN)-base.iso
$(KVM_NETBSD_DOMAIN)-base.iso: $(KVM_NETBSD_INSTALL_ISO)
$(KVM_NETBSD_DOMAIN)-base.iso: | netbsd/base.sh
cp $(KVM_NETBSD_INSTALL_ISO) $@.tmp
$(KVM_TRANSMOGRIFY) \
netbsd/base.sh \
> $(KVM_NETBSD_DOMAIN)-base.sh
: this mangles file/directory names
growisofs -M $@.tmp -l \
-input-charset utf-8 \
-graft-points \
/base.sh=$(KVM_NETBSD_DOMAIN)-base.sh
mv $@.tmp $@
#
# OpenBSD
#
# - the downloaded ISO needs mangling
# - sources are in separate tarballs
#
# Give the OpenBSD ISO a meaningful name.
KVM_OPENBSD_ISO_RELEASE ?= 7.6
KVM_OPENBSD_URL ?= https://cdn.openbsd.org/pub/OpenBSD/$(KVM_OPENBSD_ISO_RELEASE)/amd64/
# not openbsd... as gets deleted by rm openbsd.*
KVM_OPENBSD_ISO = $(KVM_POOLDIR)/OpenBSD-$(KVM_OPENBSD_ISO_RELEASE)-install.iso
KVM_OPENBSD_ISO_HASH ?= SHA256
KVM_OPENBSD_ISO_CKSUM ?= 60cba8cb391b50bba8fa10fc768bd0529636f5345d82133c93e22c798d8e5269
# note: strip "."; upstream ISO name omits it
KVM_OPENBSD_ISO_URL ?= $(KVM_OPENBSD_URL)/install$(subst .,,$(KVM_OPENBSD_ISO_RELEASE)).iso
$(KVM_OPENBSD_ISO): | $(KVM_POOLDIR)
$(KVM_GET) $(KVM_OPENBSD_ISO_URL) $(KVM_OPENBSD_ISO_HASH) $(KVM_OPENBSD_ISO_CKSUM)
KVM_OPENBSD_VIRT_INSTALL_FLAGS = \
--disk path=$(KVM_OPENBSD_DOMAIN)-base.iso,readonly=on,device=cdrom,target.bus=sata \
--install bootdev=cdrom
$(KVM_OPENBSD_DOMAIN)-base: $(KVM_OPENBSD_DOMAIN)-base.iso
$(KVM_OPENBSD_DOMAIN)-base.iso: $(KVM_OPENBSD_ISO)
$(KVM_OPENBSD_DOMAIN)-base.iso: | openbsd/base.conf
$(KVM_OPENBSD_DOMAIN)-base.iso: | openbsd/boot.conf
$(KVM_OPENBSD_DOMAIN)-base.iso: | openbsd/base.sh
$(KVM_OPENBSD_DOMAIN)-base.iso: | openbsd/base.disk
cp $(KVM_OPENBSD_ISO) $@.tmp
$(KVM_TRANSMOGRIFY) \
openbsd/base.sh \
> $(KVM_OPENBSD_DOMAIN)-base.sh
: boot.conf sets up a serial console
: base.conf configures the installer
: base.sh gets run by base.py after boot
growisofs -M $@.tmp -l -R \
-input-charset utf-8 \
-graft-points \
/base.conf=openbsd/base.conf \
/etc/boot.conf=openbsd/boot.conf \
/base.sh=$(KVM_OPENBSD_DOMAIN)-base.sh \
/base.disk=openbsd/base.disk
mv $@.tmp $@
##
## Upgrade the base domain: create a clone, install any missing
## packages and upgrade any packages that are out-of-date.
##
## While the script is running only /pool and /bench (pointing into
## this repo) are accessible (/source and /testing which may point
## elsewhere are not accessible, see above and below).
##
KVM_UPGRADE_CPUS = 1
KVM_UPGRADE_MEMORY ?= 2048
.PHONY: kvm-upgrade
kvm-upgrade: $(patsubst %, kvm-upgrade-%, $(KVM_OS))
$(patsubst %, kvm-upgrade-%, $(KVM_PLATFORMS)): \
kvm-upgrade-%:
: $@
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
./kvm-uninstall-domain.sh $(KVM_$($*)_BUILD_DOMAIN)
rm -f $(KVM_POOLDIR_PREFIX)$(*)-upgrade
: generated dependencies
rm -f $(KVM_POOLDIR_PREFIX)$(*)-upgrade.*
$(MAKE) $(KVM_POOLDIR_PREFIX)$(*)-upgrade
$(patsubst %, $(KVM_POOLDIR_PREFIX)%-upgrade, $(KVM_PLATFORMS)): \
$(KVM_POOLDIR_PREFIX)%-upgrade: \
$(KVM_POOLDIR_PREFIX)%-base \
| \
%/upgrade.sh \
$(KVM_HOST_OK)
: @=$@ *=$*
./kvm-uninstall-domain.sh $@
$(QEMU_IMG) create -f qcow2 -F qcow2 -b $<.qcow2 $@.qcow2
$(VIRT_INSTALL) \
$(VIRT_INSTALL_FLAGS) \
--vcpus=$(call kvm-flag-value, KVM_UPGRADE_CPUS) \
--memory=$(call kvm-flag-value, KVM_UPGRADE_MEMORY) \
--name=$(notdir $@) \
--os-variant=$(KVM_$($*)_OS_VARIANT) \
--disk=cache=writeback,path=$@.qcow2 \
$(VIRT_POOLDIR) \
$(VIRT_BENCHDIR) \
--import \
--noautoconsole
: Copy/transmogrify upgrade.sh in this directory, KVM_BENCHDIR,
: to KVM_POOLDIR where it can be run from within the VM.
: Do not use transmogrify.sh from KVM_TESTINGDIR where tests live,
: or KVM_SOURCEDIR where pluto sources live.
$(KVM_TRANSMOGRIFY) \
-e 's;@@DOMAIN@@;$(notdir $@);' \
$*/upgrade.sh \
> $@.sh
$(KVMSH) $(notdir $@) -- \
/bin/sh -x /pool/$(notdir $@).sh $(KVM_$($*)_UPGRADE_FLAGS)
: only shutdown after upgrade succeeds
$(KVMSH) --shutdown $(notdir $@)
touch $@
KVM_LINUX_UPGRADE_FLAGS ?= $(KVM_LINUX_INSTALL_PACKAGES) -- $(KVM_LINUX_UPGRADE_PACKAGES)
##
## Create the os domain by transmogrifying the updated domain.
##
## This also makes /source $(KVM_SOURCEDIR) and /testing
## $(KVM_TESTINGDIR) available to the VM. Setting these during
## transmogrify means changing them only requires a re-transmogrify
## and not a full domain rebuild.
.PHONY: kvm-transmogrify
kvm-transmogrify: $(patsubst %, kvm-transmogrify-%, $(KVM_OS))
$(patsubst %, kvm-transmogrify-%, $(KVM_PLATFORMS)): \
kvm-transmogrify-%:
: $@
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
./kvm-uninstall-domain.sh $(KVM_$($*)_BUILD_DOMAIN)
rm -f $(KVM_POOLDIR_PREFIX)$(*)
: generated dependencies
rm -f $(KVM_POOLDIR_PREFIX)$(*).*
$(MAKE) $(KVM_POOLDIR_PREFIX)$(*)
# start at 2gb and go up
KVM_BUILD_CPUS = $(KVM_WORKERS)
KVM_BUILD_MEMORY ?= $(shell expr 1792 + $(KVM_BUILD_CPUS) \* 256 )
$(patsubst %, $(KVM_POOLDIR_PREFIX)%, $(KVM_PLATFORMS)): \
$(KVM_POOLDIR_PREFIX)%: \
$(KVM_POOLDIR_PREFIX)%-upgrade \
| \
%/transmogrify.sh \
$(KVM_HOST_OK)
: @=$@ *=$*
./kvm-uninstall-domain.sh $@
$(QEMU_IMG) create -f qcow2 -F qcow2 -b $<.qcow2 $@.qcow2
: Include TESTINGDIR
: - fedora runs chcon TESTINGDIR
: - BSDs need to setup TESTINGDIR NFS mount point
$(VIRT_INSTALL) \
$(VIRT_INSTALL_FLAGS) \
--vcpus=$(call kvm-flag-value, KVM_BUILD_CPUS) \
--memory=$(call kvm-flag-value, KVM_BUILD_MEMORY) \
--name=$(notdir $@) \
--os-variant=$(KVM_$($*)_OS_VARIANT) \
--disk=cache=writeback,path=$@.qcow2 \
$(VIRT_BENCHDIR) \
$(VIRT_POOLDIR) \
$(VIRT_SOURCEDIR) \
$(VIRT_TESTINGDIR) \
--import \
--noautoconsole
: Copy/transmogrify transmogrify.sh in this directory, KVM_BENCHDIR,
: to KVM_POOLDIR where it can be run from within the VM.
: Do not use transmogrify.sh from KVM_TESTINGDIR where tests live,
: or KVM_SOURCEDIR where pluto sources live.
$(KVM_TRANSMOGRIFY) \
-e 's;@@DOMAIN@@;$(notdir $@);' \
-e 's;@@SOURCEDIR@@;$(KVM_SOURCEDIR);' \
-e 's;@@TESTINGDIR@@;$(KVM_TESTINGDIR);' \
-e 's;@@PLATFORM@@;$*;' \
$*/transmogrify.sh \
> $@.transmogrify.sh
$(KVMSH) $(notdir $@) -- \
/bin/sh -x /pool/$(notdir $@).transmogrify.sh $(KVM_$($*)_TRANSMOGRIFY_FLAGS)
: only shutdown after transmogrify succeeds
$(KVMSH) --shutdown $(notdir $@)
touch $@
KVM_FEDORA_TRANSMOGRIFY_FILES += $(wildcard fedora/network/*.network)
KVM_LINUX_TRANSMOGRIFY_FILES += $(wildcard linux/network/*.network)
KVM_FREEBSD_TRANSMOGRIFY_FILES += freebsd/rc.conf
KVM_NETBSD_TRANSMOGRIFY_FILES += netbsd/rc.local
KVM_OPENBSD_TRANSMOGRIFY_FILES += openbsd/rc.local
##
## Build/Install libreswan into the build domain.
##
# Notice how the <<gmake base>> and <<gmake install-base>> rules do
# not shut down the domain. That is left to the rule creating all the
# test instances.
# First delete all of the build domain's clones. The build domain
# won't boot when its clones are running.
#
# So that all the INSTALL domains are deleted before the build domain
# is booted, this is done using a series of sub-makes (without this,
# things barf because the build domain things its disk is in use).
# some rules are overwritten below
KVM_INSTALL_PLATFORM += $(filter-out fedora, $(KVM_PLATFORMS))
ifneq ($(KVM_INSTALL_RPM),true)
KVM_INSTALL_PLATFORM += fedora
endif
.PHONY: kvm-build
kvm-build: $(foreach os, $(KVM_OS), kvm-make-install-base-$(os))
$(patsubst %, kvm-make-install-base-%, $(KVM_INSTALL_PLATFORM)): \
kvm-make-install-base-%: $(KVM_POOLDIR_PREFIX)%
: $@ $<
$(KVMSH) $(KVMSH_FLAGS) \
--chdir /source \
$(notdir $<) \
-- \
ls \> /dev/null \&\& \
time gmake install-base $(KVM_MAKEFLAGS) $(KVM_$($*)_MAKEFLAGS) \&\& \
sync \&\& sync \&\& sync
$(patsubst %, kvm-make-install-all-%, $(KVM_INSTALL_PLATFORM)): \
kvm-make-install-all-%: $(KVM_POOLDIR_PREFIX)%
: $@ $<
$(KVMSH) $(KVMSH_FLAGS) \
--chdir /source \
$(notdir $<) \
-- \
ls \> /dev/null \&\& \
time gmake install $(KVM_MAKEFLAGS) $(KVM_$($*)_MAKEFLAGS) \&\& \
sync \&\& sync \&\& sync
$(patsubst %, kvm-install-%, $(KVM_PLATFORMS)): \
kvm-install-%:
: $@
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
$(MAKE) kvm-make-install-base-$*
$(KVMSH) --shutdown $(KVM_PREFIX)$*
$(MAKE) $(KVM_$($*)_TEST_DOMAINS)
$(patsubst %, kvm-install-base-%, $(KVM_PLATFORMS)): \
kvm-install-base-%:
: $@
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
$(MAKE) kvm-make-install-base-$*
$(KVMSH) --shutdown $(KVM_PREFIX)$*
$(MAKE) $(KVM_$($*)_TEST_DOMAINS)
$(patsubst %, kvm-install-all-%, $(KVM_PLATFORMS)): \
kvm-install-all-%:
: $@
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
$(MAKE) kvm-make-install-all-$*
$(KVMSH) --shutdown $(KVM_PREFIX)$*
$(MAKE) $(KVM_$($*)_TEST_DOMAINS)
.PHONY: kvm-install
kvm-install: kvm-keys-ok
kvm-install: $(foreach os, $(KVM_OS), kvm-install-$(os))
.PHONY: kvm-install-all
kvm-install-all: kvm-keys-ok
kvm-install-all: $(foreach os, $(KVM_OS), kvm-install-all-$(os))
.PHONY: kvm-install-base
kvm-install-base: kvm-keys-ok
kvm-install-base: $(foreach os, $(KVM_OS), kvm-install-base-$(os))
#
# Create the test domains
#
# Since running a domain will likely modify its .qcow2 disk image
# (changing MTIME), the domain's disk isn't a good indicator that a
# domain needs updating. Instead use the domain-name to indicate that
# a domain has been created.
# in MiB
KVM_TEST_MEMORY ?= 512
.PRECIOUS: $(KVM_TEST_DOMAINS)
define define-test-domain
$(addprefix $(1), $(2)): \
$(KVM_POOLDIR_PREFIX)$(strip $(3)) \
| \
$$(addprefix $(1), $$(KVM_TEST_NETWORK_NAMES)) \
vm/$(strip $(4)).xml
: define-test-domain
: *=$$*
: @=$$@
: domain=notdir $$@
: test_prefix=$(1)
: guest_name=$(2)
: platform=$(3)
: host_name=$(4)
: KVM_OS_TEST_MEMORY=$$(KVM_$($(strip $(3)))_TEST_MEMORY)
./kvm-uninstall-domain.sh $$@
: work around virsh leaving a file behind
rm -f $(KVM_POOLDIR_PREFIX)$(strip $(3)).qcow2.TRANSIENT-$$(notdir $$@)
$$(KVM_TRANSMOGRIFY) \
-e 's;@@DOMAIN@@;$$(notdir $$@);' \
-e 's;@@SOURCEDIR@@;$$(KVM_SOURCEDIR);' \
-e 's;@@TESTINGDIR@@;$$(KVM_TESTINGDIR);' \
-e "s;@@TEST_PREFIX@@;$(notdir $(1));" \
-e 's;@@GUEST_NAME@@;$(strip $(2));' \
-e 's;@@PLATFORM@@;$(strip $(3));' \
-e 's;@@HOST_NAME@@;$(strip $(4));' \
-e 's;@@MEMORY@@;$$(firstword $$(KVM_$($(strip $(3)))_TEST_MEMORY) $$(KVM_TEST_MEMORY));' \
vm/$(strip $(4)).xml \
> '$$@.tmp'
$$(VIRSH) define $$@.tmp
mv $$@.tmp $$@
endef
# Generate rules for all combinations, including those not enabled.
# Need to pass platform|host and platform and host as, per below,
# linux domains don't get the linux prefix.
$(foreach prefix, $(KVM_TEST_PREFIXES), \
$(foreach platform, $(KVM_PLATFORMS), \
$(foreach host, $(KVM_OS_TEST_HOST_NAMES), \
$(eval $(call define-test-domain, \
$(prefix), $(platform)$(host), \
$(platform), \
$(host))))))
# generate rules for "linux" hosts
$(foreach prefix, $(KVM_TEST_PREFIXES), \
$(foreach host, $(KVM_LINUX_TEST_HOST_NAMES), \
$(eval $(call define-test-domain, \
$(prefix), $(host), \
linux, \
$(host)))))
#
# Get rid of (almost) everything
#
# After running the operation, kvm-install will:
#
# kvm-clean-keys: keys, install
# kvm-clean: transmogrify, build, keys, install
# kvm-uninstall: transmogrify, build, install
# kvm-downgrade: upgrade, transmogrify, build, keys, install
# kvm-purge: base, upgrade, transmogrify, build, keys, install
# kvm-demolish: gateway, base, upgrade, transmogrify, build, keys, install
#
# For kvm-uninstall, instead of trying to uninstall libreswan from the
# build domain, delete both the clones and the build domain and
# $(KVM_KEYS_DOMAIN) the install domains were cloned from. This way,
# in addition to giving kvm-install a 100% fresh start (no dependence
# on 'make uninstall') the next test run also gets entirely new
# domains.
.PHONY: kvm-shutdown
kvm-shutdown: $(foreach os, $(KVM_OS), kvm-shutdown-$(os))
$(patsubst %, kvm-shutdown-%, $(KVM_PLATFORMS)): \
kvm-shutdown-%:
: $@=$*
: $(foreach domain, $(KVM_$($*)_DOMAINS), && $(KVMSH) --shutdown $(notdir $(domain)))
.PHONY: kvm-clean
kvm-clean: kvm-uninstall
kvm-clean: kvm-clean-keys
kvm-clean: kvm-clean-check
rm -rf OBJ.kvm.*
.PHONY: kvm-uninstall
kvm-uninstall: kvm-uninstall-test-networks
kvm-uninstall: $(foreach os, $(KVM_OS), kvm-uninstall-$(os))
$(patsubst %, kvm-uninstall-%, $(KVM_PLATFORMS)): \
kvm-uninstall-%:
: $@=$*
./kvm-uninstall-domain.sh $(KVM_$($*)_TEST_DOMAINS)
./kvm-uninstall-domain.sh $(KVM_$($*)_BUILD_DOMAIN)
.PHONY: kvm-downgrade
kvm-downgrade: kvm-clean
kvm-downgrade: $(foreach os, $(KVM_OS), kvm-downgrade-$(os))
$(patsubst %, kvm-downgrade-%, $(KVM_PLATFORMS)): \
kvm-downgrade-%: kvm-uninstall-%
: $@=$*
./kvm-uninstall-domain.sh $(KVM_$($*)_UPGRADE_DOMAIN)
.PHONY: kvm-purge
kvm-purge: kvm-clean
kvm-purge: $(foreach os, $(KVM_OS), kvm-purge-$(os))
rm -f $(KVM_HOST_OK)
$(patsubst %, kvm-purge-%, $(KVM_PLATFORMS)): \
kvm-purge-%: kvm-downgrade-%
: $@=$*
./kvm-uninstall-domain.sh $(KVM_$($*)_BASE_DOMAIN)
: things like ISOs
rm -vf $(KVM_$($*)_BASE_DOMAIN).*
.PHONY: kvm-demolish
kvm-demolish: kvm-uninstall-gateway
kvm-demolish: $(foreach os, $(KVM_OS), kvm-demolish-$(os))
$(patsubst %, kvm-demolish-%, $(KVM_PLATFORMS)): \
kvm-demolish-%: kvm-purge-%
: $@=$*
#
# Create an RPM for the test domains
#
.PHONY: kvm-rpm
kvm-rpm: $(KVM_POOLDIR_PREFIX)fedora
@echo building rpm for libreswan testing
mkdir -p rpmbuild/SPECS/
: NOTE: testing/packaging/// and NOT packaging/...
sed -e "s/@IPSECBASEVERSION@/$(RPM_VERSION)/g" \
-e "s/^Version:.*/Version: $(RPM_VERSION)/g" \
-e "s/@@INITSYSTEM@@/$(INITSYSTEM)/g" \
testing/packaging/fedora/libreswan-testing.spec \
> rpmbuild/SPECS/libreswan-testing.spec
mkdir -p rpmbuild/SOURCES
git archive \
--format=tar \
--prefix=$(RPM_PREFIX)/ \
-o rpmbuild/SOURCES/$(RPM_PREFIX).tar \
HEAD
: add Makefile.in.local?
if [ -a Makefile.inc.local ] ; then \
tar --transform "s|^|$(RPM_PREFIX)/|" \
-rf rpmbuild/SOURCES/$(RPM_PREFIX).tar \
Makefile.inc.local ; \
fi
gzip -f rpmbuild/SOURCES/$(RPM_PREFIX).tar
$(KVMSH) --chdir /source $(notdir $<) -- \
rpmbuild -D_topdir\\ /source/rpmbuild \
-ba $(RPM_BUILD_CLEAN) \
rpmbuild/SPECS/libreswan-testing.spec
ifeq ($(KVM_INSTALL_RPM), true)
.PHONY: kvm-fedora-install
kvm-fedora-install: $(KVM_POOLDIR_PREFIX)fedora
rm -fr rpmbuild/*RPMS
$(MAKE) kvm-rpm
$(KVMSH) $(KVMSH_FLAGS) --chdir . $(notdir $<) 'rpm -aq | grep libreswan && rpm -e $$(rpm -aq | grep libreswan) || true'
$(KVMSH) $(KVMSH_FLAGS) --chdir . $(notdir $<) 'rpm -i /source/rpmbuild/RPMS/x86_64/libreswan*rpm'
$(KVMSH) $(KVMSH_FLAGS) --chdir . $(notdir $<) 'restorecon /usr/local/sbin /usr/local/libexec/ipsec -Rv'
endif
#
# kvmsh-HOST
#
# Map this onto the first domain group. Logging into the other
# domains can be done by invoking kvmsh.py directly.
#
$(patsubst %, kvmsh-%, $(filter-out $(KVM_DOMAIN_NAMES), $(KVM_HOST_NAMES))): \
kvmsh-%: kvmsh-$(KVM_PREFIX)%
$(patsubst %, kvmsh-%, $(KVM_BASE_DOMAIN_NAMES)) : \
kvmsh-%: $(KVM_POOLDIR)/% | $(KVM_HOST_OK)
$(KVMSH) $(KVMSH_FLAGS) $* $(KVMSH_COMMAND)
$(patsubst %, kvmsh-%, $(KVM_UPGRADE_DOMAIN_NAMES)) : \
kvmsh-%: $(KVM_POOLDIR)/% | $(KVM_HOST_OK)
$(KVMSH) $(KVMSH_FLAGS) $* $(KVMSH_COMMAND)
$(patsubst %, kvmsh-%, $(KVM_BUILD_DOMAIN_NAMES)) : \
kvmsh-%: $(KVM_POOLDIR)/% | $(KVM_HOST_OK)
$(KVMSH) $(KVMSH_FLAGS) $* $(KVMSH_COMMAND)
$(patsubst %, kvmsh-%, $(notdir $(KVM_TEST_DOMAINS))) : \
kvmsh-%: $(KVM_LOCALDIR)/% | $(KVM_HOST_OK)
$(KVMSH) $(KVMSH_FLAGS) $* $(KVMSH_COMMAND)
#
# Some hints
#
# Only what is listed in here is "supported"
#
define kvm-var-value
$(1)=$($(1))
[$(value $(1))]
endef
define kvm-config
Makefile variables:
$(call kvm-var-value,KVM_POOLDIR)
directory for storing the shared base VM;
should be relatively permanent storage
$(call kvm-var-value,KVM_LOCALDIR)
directory for storing the VMs local to this build tree;
can be temporary storage (for instance /tmp)
$(call kvm-var-value,KVM_SOURCEDIR)
$(call kvm-var-value,KVM_TESTINGDIR)
$(call kvm-var-value,KVM_WORKERS)
$(call kvm-var-value,KVM_PREFIX)
$(call kvm-var-value,KVM_PREFIX)
$(call kvm-var-value,KVM_TEST_PREFIXES)
$(call kvm-var-value,KVM_POOLDIR_PREFIX)
$(call kvm-var-value,KVM_GROUP)
$(call kvm-var-value,KVM_PIDFILE)
$(call kvm-var-value,KVM_UID)
$(call kvm-var-value,KVM_GID)
$(call kvm-var-value,KVM_CONNECTION)
$(call kvm-var-value,KVM_VIRSH)
the shared NATting gateway;
used by the base domain along with any local domains
when internet access is required
$(call kvm-var-value,KVM_KEYS_DOMAIN)
$(call kvm-var-value,KVM_OS)
$(call kvm-var-value,KVM_PLATFORMS)
$(call kvm-var-value,KVM_MAKEFLAGS)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_MAKEFLAGS)$(crlf))
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_OS_VARIANT)$(crlf))
$(call kvm-var-value,KVM_BASE_HOST_NAMES)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_BASE_HOST_NAME)$(crlf))
$(call kvm-var-value,KVM_UPGRADE_HOST_NAMES)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_UPGRADE_HOST_NAME)$(crlf))
$(call kvm-var-value,KVM_BUILD_HOST_NAMES)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_BUILD_HOST_NAME)$(crlf))
$(call kvm-var-value,KVM_TEST_HOST_NAMES)
$(call kvm-var-value,KVM_OS_TEST_HOST_NAMES)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_TEST_HOST_NAMES)$(crlf))
$(call kvm-var-value,KVM_HOST_NAMES)
$(call kvm-var-value,KVM_TEST_DOMAINS)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_TEST_DOMAINS)$(crlf))
$(call kvm-var-value,KVM_BASE_DOMAIN_NAMES)
$(call kvm-var-value,KVM_UPGRADE_DOMAIN_NAMES)
$(call kvm-var-value,KVM_BUILD_DOMAIN_NAMES)
$(call kvm-var-value,KVM_DOMAIN_NAMES)
$(call kvm-var-value,KVM_BASE_DOMAINS)
$(call kvm-var-value,KVM_UPGRADE_DOMAINS)
$(call kvm-var-value,KVM_BUILD_DOMAINS)
$(call kvm-var-value,KVM_TEST_DOMAINS)
$(call kvm-var-value,KVM_DOMAINS)
$(foreach platform,$(KVM_PLATFORMS),$(call kvm-var-value,KVM_$($(platform))_DOMAINS)$(crlf))
$(call kvm-var-value,KVM_GATEWAY_ADDRESS)
$(call kvm-var-value,KVM_GATEWAY_NAME)
$(call kvm-var-value,KVM_GATEWAY)
$(call kvm-var-value,KVM_TEST_NETWORK_NAMES)
$(call kvm-var-value,KVM_TEST_NETWORKS)
KVM Domains:
$(KVM_BASE_DOMAIN)
| gateway: $(KVM_GATEWAY_NAME)
| directory: $(KVM_POOLDIR)
|
+- $(KVM_KEYS_DOMAIN)
| | gateway: $(KVM_GATEWAY_NAME)
| | directory: $(KVM_POOLDIR)
| | \
$(foreach prefix,$(KVM_TEST_PREFIXES), \
\
$(crlf)$(sp)$(sp)$(sp)$(sp)|$(sp)$(sp)| test group $(prefix) \
$(crlf)$(sp)$(sp)$(sp)$(sp)|$(sp) +-- \
$(foreach install,$(KVM_TEST_HOST_NAMES),$(prefix)$(install)) \
\
$(crlf)$(sp)$(sp)$(sp)$(sp)|$(sp)$(sp)|$(sp$)$(sp)$(sp) networks: \
$(foreach network, $(KVM_TEST_SUBNETS),$(prefix)$(network)) \
\
$(crlf)$(sp)$(sp)$(sp)$(sp)|$(sp)$(sp)| \
)
endef
define kvm-help
Manually building and modifying the base domain and network:
Normally kvm-install et.al, below, are sufficient. However ....
The first step in setting up the test environment is creating the
base domain. The make targets below can be used to step through the
process of constructing the base domain. At anytime kvmsh-base can
be used to log into that domain.
kvmsh-base
log into the base domain (if necessary, kickstart it); this will
not trigger an upgrade or transmogrify
kvm-downgrade
revert everything back to the kickstarted base domain; no extra
packages will have been upgraded and no transmogrification will
have been performed
if the base domain doesn't exist it will be created
kvm-upgrade
perform an incremental install/upgrade any packages needed by
libreswan; to force a complete re-install of all packages, first
kvm-downgrade
to keep kickstart (which is something of a black box) as simple
as possible, and to make re-running / debugging the upgrade
process easier, this step is not embedded in kickstart.
kvm-transmogrify
install all the configuration files so that the domain will
automatically transmogrify from the base domain to a test domain
during boot
also:
kvm-install-gateway
kvm-uninstall-gateway
just create the base domain's gateway
note that uninstalling the gateway also uninstalls the base
domain (since it depends on the gateway)
Standard targets and operations:
Delete the installed KVMs and networks so that the next kvm-install
will create new versions:
kvm-downgrade:
- delete test domains
- delete test build
- delete test results
- delete test networks
kvm-demolish: wipe out a directory
- delete the base domain
- delete the gateway
Manipulating and accessing (logging into) domains:
kvmsh-HOST ($(filter-out build, $(KVM_TEST_HOST_NAMES)))
- use 'virsh console' to login to the given domain
- for HOST login to the first domain vis:
$(addprefix $(KVM_PREFIX), HOST)
- if necessary, create and boot the host
$(addprefix kvmsh-, $(notdir $(KVM_TEST_DOMAINS)))
- login to the specific domain
- if necessary, create and boot the domain
kvm-shutdown
- shutdown all domains
To build or delete the keys used when testing:
kvm-keys (kvm-clean-keys)
- use the local build domain to create the test keys
To set things up for a test run:
kvm-install:
build / install (or update) everything needed for a test run
kvm-uninstall:
Uninstall libreswan from the the test domains (cheats by
deleting the build and test domains).
Doesn't touch the test results
kvm-clean:
cleans the directory of the build, test results, and test
domains ready for a new run
To run the testsuite against libreswan installed on the test domains
(see "make kvm-install" above):
kvm-check - run all GOOD tests against the
previously installed libreswan
kvm-check KVM_TESTS+=testing/pluto/basic-pluto-0[0-1]
- run test matching the pattern
kvm-check KVM_TEST_FLAGS='--test-status "good|wip"'
- run both good and wip tests
kvm-recheck - like kvm-check but skip tests that
passed during the previous kvm-check
kvm-check-clean - delete the test OUTPUT/ directories
distclean - scrubs the source tree (but don't touch the KVMS)
kvm-status - prints PS for the currently running tests
kvm-kill - kill the currently running tests
To analyze test results:
kvm-results - list the tests and their results
compare against KVM_BASELINE when defined
kvm-diffs - list the tests and their differences
compare against KVM_BASELINE when defined
endef
.PHONY: kvm-help
kvm-help:
$(info $(kvm-help))
$(info For more details see "make kvm-config" and "make web-config")
.PHONY: kvm-config
kvm-config:
$(info $(kvm-config))
|