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
|
# Gotchas:
#
# 1. Quadrigraphs. M4 consumes a number of important special characters, so
# Autoconf uses 4-character sequences, e.g. "@%:@" is the octothorpe (#).
# See: https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Quadrigraphs.html
#
# 2. Booleans. The convention for Autoconf variables, which we follow, is
# “yes” for true and “no” for false. This differs from the Charliecloud
# convention of non-empty for true and empty for false.
### Prologue #################################################################
AC_INIT([Charliecloud], [m4_esyscmd_s([misc/version])],
[https://github.com/hpc/charliecloud])
# I couldn’t figure out a better way to do this. The GNU people really don’t
# like it [e.g., 1]. But, it seems nuts to me to just warn on bad options.
#
# [1]: https://lists.gnu.org/archive/html/autoconf/2024-09/msg00000.html
AS_IF([test -n "$ac_unrecognized_opts"],
[AC_MSG_ERROR([unrecognized option(s); aborting])])
AC_PREREQ([2.69])
AC_CONFIG_SRCDIR([bin/ch-run.c])
AC_CONFIG_AUX_DIR([build-aux])
#AC_CONFIG_MACRO_DIRS([misc/m4])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AS_CASE([$host_os],
[linux*], [],
[*], [AC_MSG_ERROR([Linux is the only supported OS; see issue @%:@42.])]
)
# Turn off maintainer mode by default. This appears to be controversial; see
# issue #595 for links to some discussion.
#
# Bottom line for me: Maintainer mode has (1) never re-built the build system
# in a situation where I felt it helped, but (2) fairly regularly re-builds or
# re-configures at surprising times.
#
# In particular, it often rebuilds before “make clean” and friends, e.g. if
# you change branches and then clean. This seems wrong. In my view, clean
# should remove what is currently there, not what *would have been there* had
# the build used a different, not-yet-existing build system. Disabling
# maintainer mode also lets us put “make maintainer-clean” in autogen.sh
# without triggering spurious rebuilds.
AM_MAINTAINER_MODE([disable])
# WARNING: Install permissions on directories are a problem (see issue #947).
# We want directories to have mode 0755, i.e. rwxr-xr-x. By default,
# Autotools creates directories with “mkdir -p”, which sets permissions on the
# directories it creates, both the target and intermediate, by the standard
# umask rules. That is, the mode is 0777 - umask. For example, if you “sudo
# make install” with a umask of 0077, the result is directories owned by
# root:root with mode 0700, i.e. rwx------, i.e. nobody can use the install.
# That’s not useful.
#
# The workaround is to substitute a different command to create
# directories [1]. What we settled on is a shell script that does what we
# want. Rejected alternatives:
#
# 1. “mkdir -p -m 755”: This only sets the target directory to 0755.
# Intermediate directories still use umask [2].
#
# 2. “install -d -m 755”: This works for GNU install(1), i.e. 0755 is
# applied to intermediate directories as well. However, it doesn’t for
# BusyBox install(1), where intermediate directories still get umask.
#
# 3. Embedding the shell script here directly with “sh -c”. I couldn’t get
# the quoting right.
#
# Note that this needs to be before AM_INIT_AUTOMAKE because that macro does
# something with the value. Note the dummy argument that ends up as $0.
#
# If you don’t like this, you can also set your own command at configure time,
# e.g. “./configure MKDIR_P='mkdir -p'” [3].
#
# [1]: https://unix.stackexchange.com/a/436000
# [2]: http://gnu-automake.7480.n7.nabble.com/bug-12130-sudo-make-install-applies-umask-to-new-directories-tp18545p18548.html
# [3]: https://lists.gnu.org/archive/html/automake/2004-01/msg00013.html
MKDIR_P=\$\(top_srcdir\)/misc/mkdir-p
AM_INIT_AUTOMAKE([1.13 -Wall -Werror foreign subdir-objects])
AC_CONFIG_HEADERS([bin/config.h])
AC_CONFIG_FILES([Makefile
bin/Makefile
doc/Makefile
examples/Makefile
lib/Makefile
misc/Makefile
packaging/Makefile
test/Makefile])
### Our macros ######################################################
# Macro to validate executable versions. Arguments:
#
# $1 name of variable containing executable name or absolute path
# $2 minimum version
# $3 append to $1 to make shell pipeline to get actual version only
# (e.g., without program name)
#
# This macro is not able to determine if a program exists, only whether its
# version is sufficient. ${!1} (i.e, the value of the variable whose name is
# stored in $1) must be either empty, an absolute path to an executable, or
# the name of a program in $PATH. A prior macro such as AX_WITH_PROG can be
# used to ensure this condition.
#
# If ${!1} is an absolute path, and that file isn’t executable, error out. If
# it’s something other than an absolute path, assume it’s the name of a
# program in $PATH; if not, the behavior is undefined but not good (FIXME).
#
# Post-conditions:
#
# 1. If ${!1} is non-empty and the version reported by the program is
# greater than or equal to the minimum, ${!1} is unchanged. If ${!1} is
# empty or reported version is insufficient, ${!1} is the empty string.
# This lets you test version sufficiency by whether ${!1} is empty.
#
# 2. $1_VERSION_NOTE contains a brief explanatory note.
#
AC_DEFUN([CH_CHECK_VERSION], [
AS_VAR_PUSHDEF([prog], [$1])
AS_IF([test -n "$prog"], [
# ${!1} is non-empty
AS_CASE([$prog],
# absolute path; check if executable
[/*], [AC_MSG_CHECKING([if $prog is executable])
AS_IF([test -e "$prog"],
[AC_MSG_RESULT([ok])],
[AC_MSG_RESULT([no])
AC_MSG_ERROR([must be executable])])])
AC_MSG_CHECKING([if $prog version >= $2])
vact=$($prog $3)
AX_COMPARE_VERSION([$2], [le], [$vact], [
AC_SUBST([$1_VERSION_NOTE], ["ok ($vact)"])
AC_MSG_RESULT([ok ($vact)])
], [
AC_SUBST([$1_VERSION_NOTE], ["too old ($vact)"])
AC_MSG_RESULT([too old ($vact)])
AS_UNSET([$1])
])
], [
# ${!} is empty
AC_SUBST([$1_VERSION_NOTE], ["not found"])
AS_UNSET([$1])
])
AS_VAR_POPDEF([prog])
])
# Macro to validate that $1 is a directory (or a symlink to one). If not, exit
# with error, prefixed with $2.
AC_DEFUN([CH_REQUIRE_DIR], [
AC_MSG_CHECKING([whether $1 is a directory])
AS_IF([test -d "$1"],
[AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)
AC_MSG_ERROR([$2: not a directory: $1])])
])
# If $3 is non-empty, prepend to the variable named $1: $2, then $3, then (if
# $$1 is non-empty) a space; otherwise, do nothing. Prepend so that the user’s
# flags, if any, are at the end and can override. For example:
#
# CFLAGS=foo
# bar=qux
# CH_FLAG_ADD([CFLAGS], [-I], [$bar])
# -> CFLAGS='-Iqux foo'
AC_DEFUN([CH_FLAG_ADD], [
flags_name=$1
flag=$2
arg=$3
AS_VAR_COPY([flags_old], [$flags_name])
AS_IF([test -n "$arg"], [
AS_IF([test -n "$flags_old"], [space=' '], [space=''])
AS_VAR_SET([$flags_name], ["$flag$arg$space$flags_old"])
])
])
### Options ##################################################################
# Note: Variables must match option, e.g. --disable-foo-bar => enable_foo_bar.
# Note: --with-sphinx-build provided by AX_WITH_PROG() below.
AC_ARG_ENABLE([buggy-build],
AS_HELP_STRING(
[--enable-buggy-build],
[omit -Werror; please see docs before use!]),
[AS_CASE([$enableval],
[yes], [use_werror=no],
[no], [use_werror=yes],
[*], [AC_MSG_ERROR([--enable-buggy-build: bad argument: $enableval])]
)],
[use_werror=yes])
AC_ARG_ENABLE([bundled-lark],
AS_HELP_STRING([--disable-bundled-lark],
[use system Lark (not recommended; see docs!)]),
[], [enable_bundled_lark=yes])
AC_ARG_ENABLE([ch-image],
AS_HELP_STRING([--disable-ch-image],
[ch-image unprivileged builder & image manager]),
[], [enable_ch_image=yes])
AC_ARG_ENABLE([html],
AS_HELP_STRING([--disable-html], [HTML documentation]),
[], [enable_html=yes])
AC_ARG_ENABLE([impolite-checks],
AS_HELP_STRING([--disable-impolite-checks], [potentially troublesome informational checks]),
[], [enable_impolite_checks=yes])
AC_ARG_ENABLE([man],
AS_HELP_STRING([--disable-man], [man pages]),
[], [enable_man=yes])
AC_ARG_ENABLE([syslog],
AS_HELP_STRING([--disable-syslog], [logging to syslog]),
[], [enable_syslog=yes])
AC_ARG_ENABLE([test],
AS_HELP_STRING([--disable-test], [test suite]),
[], [enable_test=yes])
# --enable-seccomp
AC_ARG_ENABLE([seccomp],
AS_HELP_STRING([--disable-seccomp], [root emulation with --seccomp]))
AS_CASE([$enable_seccomp],
[yes], # explicit “yes”
[want_seccomp=yes
need_seccomp=yes
msg_seccomp=yes],
[no], # explicit “no”
[want_seccomp=no
need_seccomp=no
msg_seccomp=no],
[''], # option not specified
[want_seccomp=yes
need_seccomp=no
msg_seccomp='if tested working'],
[*], # anything else
[AC_MSG_ERROR([invalid --enable-seccomp arg: $enable_seccomp])])
# --with-gc
AC_ARG_WITH([gc],
AS_HELP_STRING([--with-gc@<:@=yes|no@:>@],
[enable conservative garbage collection with libgc]))
AS_CASE([$with_gc],
[yes],
[want_gc=yes
need_gc=yes],
[no],
[want_gc=no
need_gc=no],
[''],
[want_gc=yes
need_gc=no],
[*],
[AC_MSG_ERROR([--with-gc: bad argument: $with_gc])])
AC_ARG_WITH([gc-include],
AS_HELP_STRING([--with-gc-include=DIR],
[directory containing gc.h]))
AS_IF([test -n "$with_gc_include"],
[inc_gc=$with_gc_include
CH_REQUIRE_DIR([$inc_gc], [--with-gc-include])])
AC_ARG_WITH([gc-lib],
AS_HELP_STRING([--with-gc-lib=DIR],
[directory containing libgc.so]))
AS_IF([test -n "$with_gc_lib"],
[lib_gc=$with_gc_lib
CH_REQUIRE_DIR([$lib_gc], [--with-gc])])
# --with-json
AC_ARG_WITH([json],
AS_HELP_STRING([--with-json@<:@=yes|no@:>@],
[enable JSON features by linking with libcjson]))
AS_CASE([$with_json],
[yes], # --with-json=yes or --with-json
[want_json=yes
need_json=yes],
[no], # --with-json=no or --without-json
[want_json=no
need_json=no],
[''], # neither --with-json nor --without-json specified
[want_json=yes
need_json=no],
[*], # unknown argument
[AC_MSG_ERROR([--with-json: bad argument: $with_json])])
AC_ARG_WITH([json-include],
AS_HELP_STRING([--with-json-include=DIR],
[directory containing cJSON.h]))
AS_IF([test -n "$with_json_include"],
[inc_json=$with_json_include
CH_REQUIRE_DIR([$inc_json], [--with-json-include])])
AC_ARG_WITH([json-lib],
AS_HELP_STRING([--with-json-lib=DIR],
[directory containing libcjson.so]))
AS_IF([test -n "$with_json_lib"],
[lib_json=$with_json_lib
CH_REQUIRE_DIR([$lib_json], [--with-json-lib])])
# --with-squashfuse
AC_ARG_WITH([squashfuse],
AS_HELP_STRING([--with-squashfuse@<:@=yes|no@:>@],
[link with libsquashfuse for internal squash mounting]))
AS_CASE([$with_squashfuse],
[yes],
[want_squashfuse=yes
need_squashfuse=yes],
[no],
[want_squashfuse=no
need_squashfuse=no],
[''],
[want_squashfuse=yes
need_squashfuse=no],
[*],
[AC_MSG_ERROR([--with-squashfuse: bad argument: $with_squashfuse])])
AC_ARG_WITH([squashfuse-include],
AS_HELP_STRING([--with-squashfuse-include=DIR],
[parent of squashfuse include directory]))
AS_IF([test -n "$with_squashfuse_include"],
[inc_squashfuse=$with_squashfuse_include
CH_REQUIRE_DIR([$inc_squashfuse], [--with-squashfuse-include])
# If the user gave us the directory containing ll.h et al. rather than
# squashfuse/ as expected, fix it so #include "squashfuse/ll.h" works.
AS_IF([ ! test -d "$inc_squashfuse/squashfuse" \
&& test -f "$inc_squashfuse/ll.h"],
[inc_squashfuse=$(dirname $inc_squashfuse)
AC_MSG_WARN([using --with-squashfuse-include=$inc_squashfuse])]
]))
AC_ARG_WITH([squashfuse-lib],
AS_HELP_STRING([--with-squashfuse-lib=DIR],
[directory containing libsquashfuse_ll.so]))
AS_IF([test -n "$with_squashfuse_lib"],
[lib_squashfuse=$with_squashfuse_lib
CH_REQUIRE_DIR([$lib_squashfuse], [--with-squashfuse-lib])])
# --with-python
AC_ARG_WITH([python],
AS_HELP_STRING(
[--with-python=SHEBANG],
[Python shebang to use for scripts (default: "/usr/bin/env python3")]),
[PYTHON_SHEBANG="$withval"],
[PYTHON_SHEBANG='/usr/bin/env python3'])
# Can’t deduce shebang from Gentoo “sphinx-python”; allow override. See #629.
AC_ARG_WITH([sphinx-python],
AS_HELP_STRING(
[--with-sphinx-python=SHEBANG],
[Python shebang used by Sphinx (default: deduced from sphinx-build executable]]),
[sphinx_python="$withval"],
[sphinx_python=''])
### C compiler ###############################################################
# Need a C99 compiler. (See https://stackoverflow.com/a/28558338.)
AC_PROG_CC
AS_IF([test "$CC" = icc],
[AC_MSG_ERROR([icc not supported (see PR @%:@481)])])
# Compiler flags. Prepend our flags so that the user’s flags are at the end
# and can thus override ours.
CH_FLAG_ADD([CFLAGS], [], [-std=c99])
CH_FLAG_ADD([CFLAGS], [], [-Wall])
# Check printf(3) format strings more aggressively if supported.
AX_CHECK_COMPILE_FLAG([-Wformat=2], CH_FLAG_ADD([CFLAGS], [], [-Wformat=2]))
CH_FLAG_ADD([CPPFLAGS], [-I], [$inc_gc])
CH_FLAG_ADD([CPPFLAGS], [-I], [$inc_json])
CH_FLAG_ADD([CPPFLAGS], [-I], [$inc_squashfuse])
CH_FLAG_ADD([LDFLAGS], [-L], [$lib_gc])
CH_FLAG_ADD([LDFLAGS], [-L], [$lib_json])
CH_FLAG_ADD([LDFLAGS], [-L], [$lib_squashfuse])
# Compiler flags for libfuse3, which is a pre-requisite for SquashFUSE. As of
# 0.5.0, SquashFUSE’s ll.h won’t build without appropriate -I for libfuse3
# [1]. We use pkg-config to find it, but see #1844.
#
# We avoid PKG_CHECK_MODULES because it introduces a dependency on pkg-config
# at autogen.sh time, with impressively incomprehensible error messages if
# it’s not met [2]. This approache also seems simpler [3]?
#
# [1]: https://github.com/vasi/squashfuse/commit/eca5764
# [2]: https://ae1020.github.io/undefined-macro-pkg-config/
# [3]: https://tirania.org/blog/archive/2012/Oct-20.html
AS_IF([test $want_squashfuse = yes], [
AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
AS_IF([test $have_pkg_config != yes],
[AC_MSG_ERROR([need pkg-config to find libfuse3; try --with-squashfuse=no or see issue @%:@1844])])
AC_MSG_CHECKING([for libfuse3 compiler flags])
AS_IF([pkg-config --exists fuse3], [
# note: m4_strip() no worky
cppflags=$(pkg-config --cflags-only-I fuse3 | sed -E s'/\s+$//')
CH_FLAG_ADD([CPPFLAGS], [], [$cppflags])
cflags=$(pkg-config --cflags-only-other fuse3 | sed -E s'/\s+$//')
CH_FLAG_ADD([CFLAGS], [], [$cflags])
AC_MSG_RESULT([found: $cppflags $cflags])
],
[AC_MSG_RESULT([not found])])
])
### ch-run required ##########################################################
# Note: We link both ch-run and ch-checkns with all the shared libraries,
# despite the latter using much less, depending on the compiler to omit
# libraries that aren’t actually used (gcc does this) or just not caring that
# extra libraries are linked.
# argp_parse(3), which is included with glibc but not other libc’s, e.g. musl.
# In the latter case, we need an external libargp.
AC_SEARCH_LIBS(argp_parse, argp, [],
[AC_MSG_ERROR([argp_parse(3) not found; please report this bug])])
# pthreads; needed for “ch-run --join” e.g. sem_open(3).
AX_PTHREAD
CH_FLAG_ADD([CFLAGS], [], [$PTHREAD_CFLAGS])
CH_FLAG_ADD([LIBS], [], [$PTHREAD_LIBS])
# POSIX IPC sometimes lives in librt.
AC_SEARCH_LIBS(shm_open, rt, [],
[AC_MSG_ERROR([shm_open(3) not found; please report this bug])])
# User namespaces
AC_MSG_CHECKING([if in chroot]) # https://unix.stackexchange.com/a/14346
AS_IF([test "$(awk '$5=="/" {print $1}' </proc/1/mountinfo)" \
!= "$(awk '$5=="/" {print $1}' </proc/$$/mountinfo)" ],
[chrooted=yes],
[chrooted=no])
AC_MSG_RESULT($chrooted)
AC_MSG_CHECKING([if user+mount namespaces work])
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#define _GNU_SOURCE
#include <sched.h>
int main(void)
{
if (unshare(CLONE_NEWNS|CLONE_NEWUSER))
return 1; // syscall failed
else
return 0; // syscall succeeded
}
]])],
[have_userns=yes],
[have_userns=no],
[AC_MSG_ERROR([cross-compilation not supported])])
AC_MSG_RESULT($have_userns)
### ch-run optional ##########################################################
# strerrorname_np(3), in newer glibc but not e.g. musl
AC_CHECK_FUNCS([strerrorname_np])
# FNM_EXTMATCH is a GNU extension to support extended globs in fnmatch(3).
AC_CHECK_DECL(FNM_EXTMATCH,
[have_fnm_extmatch=yes],
[have_fnm_extmatch=no],
[[#define _GNU_SOURCE
#include <fnmatch.h>]])
# overlayfs
AC_DEFUN([CH_OVERLAY_C], [[
#define _GNU_SOURCE
#include <errno.h>
#include <fcntl.h>
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <unistd.h>
#define T(x) if (!(x)) fatal_(__FILE__, __LINE__, errno, #x)
#define Z(x) if (x) fatal_(__FILE__, __LINE__, errno, #x)
void fatal_(const char *file, int line, int errno_, const char *str)
{
fprintf(stderr, "error: %s: %d: %s\n", file, line, str);
fprintf(stderr, "errno: %d: %s\n", errno_, strerror(errno_));
exit(1);
}
int main(void)
{
int fd;
uid_t euid = geteuid();
gid_t egid = getegid();
// enter namespaces
Z (unshare(CLONE_NEWNS|CLONE_NEWUSER));
// set up ID maps
T (-1 != (fd = open("/proc/self/uid_map", O_WRONLY)));
T (1 <= dprintf(fd, "%d %d 1\n", 0, euid));
Z (close(fd));
T (-1 != (fd = open("/proc/self/setgroups", O_WRONLY)));
T (1 <= dprintf(fd, "deny\n"));
Z (close(fd));
T (-1 != (fd = open("/proc/self/gid_map", O_WRONLY)));
T (1 <= dprintf(fd, "%d %d 1\n", 0, egid));
Z (close(fd));
// set up overlayfs
Z (mount("/", "/", NULL, MS_BIND | MS_REC | MS_PRIVATE, NULL));
Z (mount(NULL, "/mnt", "tmpfs", 0, NULL));
Z (mkdir("/mnt/upper", 0700));
Z (mkdir("/mnt/lower", 0700));
Z (mkdir("/mnt/lower/test", 0700));
Z (mkdir("/mnt/work", 0700));
Z (mkdir("/mnt/merged", 0700));
Z (mount(NULL, "/mnt/merged", "overlay", MS_NOATIME,
"lowerdir=/mnt/lower,"
"upperdir=/mnt/upper,"
"workdir=/mnt/work,"
"index=on,userxattr,volatile"));
// test if user xattrs are working
#ifdef XATTRS
Z (rmdir("/mnt/merged/test"));
Z (mkdir("/mnt/merged/test", 0700));
#endif
}
]])
AC_MSG_CHECKING([for unprivileged overlayfs])
have_overlayfs="check disabled"
AS_IF([test $enable_impolite_checks = yes],
[AC_RUN_IFELSE([AC_LANG_SOURCE(CH_OVERLAY_C)],
[have_overlayfs=yes],
[have_overlayfs=no],
[AC_MSG_ERROR([cross-compilation not supported])])])
AC_MSG_RESULT($have_overlayfs)
have_tmpfs_xattrs="check disabled"
AC_MSG_CHECKING([for tmpfs user xattrs])
AS_IF([test $enable_impolite_checks = yes],
[AC_RUN_IFELSE([#define XATTRS
AC_LANG_SOURCE(CH_OVERLAY_C)],
[have_tmpfs_xattrs=yes],
[have_tmpfs_xattrs=no],
[AC_MSG_ERROR([cross-compilation not supported])])])
AC_MSG_RESULT($have_tmpfs_xattrs)
# libgc. Note that we don’t try to ensure the header we find matches the
# library we find. Hopefully that’s not a probleqm.
AS_IF([test $want_gc = yes], [
AC_SEARCH_LIBS(GC_malloc, gc,
[have_libgc=yes
CH_FLAG_ADD([LDFLAGS], ['-Wl,-rpath='], [$lib_gc])],
[have_libgc=no])
AC_CHECK_HEADER([gc.h],
[have_gc_h=yes],
[have_gc_h=no])
], [have_libgc=no
have_gc_h=no])
# Error out if needed but not found.
AS_IF([test $have_libgc = yes && test $have_gc_h = yes],
[have_gc=yes],
[have_gc=no])
AS_IF([test $need_gc = yes && test $have_gc = no],
[AC_MSG_ERROR([--with-gc=yes but libgc not found])])
# This function is not found in older libgc, in which case we replace it. Note
# that we cannot use AC_CHECK_FUNC and friends, because that only tests the
# function’s presence in libraries, not whether it can be actually used at
# build time. This one is gated on GC_THREADS in some gc.h versions; since we
# don’t set that, treat it as not found in that case.
have_gc_set_markers_count=no
AS_IF([test $have_gc = yes],
[AC_MSG_CHECKING([for GC_set_markers_count without extra @%:@defines])
AC_LINK_IFELSE(
[AC_LANG_SOURCE([
#define _GNU_SOURCE
#include <gc.h>
#pragma GCC diagnostic error "-Wall"
int main(void)
{
GC_set_markers_count(1);
return 0;
}
])],
[AC_MSG_RESULT([yes])
have_gc_set_markers_count=yes],
[AC_MSG_RESULT([no])]
)])
# cJSON. Also do not check this header matches the library we find.
AS_IF([test $want_json = yes], [
AC_SEARCH_LIBS(cJSON_ParseWithLength, cjson,
[have_libcjson=yes
CH_FLAG_ADD([LDFLAGS], ['-Wl,-rpath='], [$lib_json])],
[have_libcjson=no])
# The include file installs by default to “$PREFIX/include/cjson/cJSON.h”,
# but --with-json-include shouldn’t require a “cjson” subdirectory and it
# seemed impossible to document that concisely anyway. Thereforre, try both
# and define a macro. Double quotes support bundling it with Charliecloud.
AC_CHECK_HEADER([cJSON.h],
[have_cjson_h=yes
cjson_h='"cJSON.h"'],
[AC_CHECK_HEADER([cjson/cJSON.h],
[have_cjson_h=yes
cjson_h='"cjson/cJSON.h"'],
[cjson_h='not found'
have_cjson_h=no])])
], [have_libcjson=no
have_cjson_h=no])
# Error out if needed but not found.
AS_IF([test $have_libcjson = yes && test $have_cjson_h = yes],
[have_json=yes],
[have_json=no])
AS_IF([test $need_json = yes && test $have_json = no],
[AC_MSG_ERROR([--with-json=yes but cJSON not found])])
# Should we build seccomp?
AC_MSG_CHECKING([for seccomp filter support])
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#define _GNU_SOURCE
#include <linux/filter.h>
#include <linux/seccomp.h>
#include <linux/unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/prctl.h>
#define Z(x) if (x) { perror(NULL); exit(1); }
int main(void)
{
struct sock_filter f[] = { BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW) };
struct sock_fprog p = { 1, f };
Z (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0, 0));
Z (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &p, 0, 0, 0));
return 0;
}
]])],
[AC_MSG_RESULT([yes])
test_seccomp=yes],
[AC_MSG_RESULT([no])
test_seccomp=no],
[AC_MSG_ERROR([cross-compilation not supported])])
AS_IF([test $test_seccomp = yes],
[AS_IF([test $want_seccomp = yes],
[have_seccomp=yes], # works and =yes or not given
[have_seccomp=no])], # works and =no
[AS_IF([test $need_seccomp = yes],
[have_seccomp=yes], # doesn’t work and =yes (build anyway)
[have_seccomp=no])]) # doesn’t work and =no or not given
### SquashFS #################################################################
# SquashFS Tools
vmin_mksquashfs=4.2 # CentOS 7
AC_CHECK_PROG([MKSQUASHFS], [mksquashfs], [mksquashfs])
CH_CHECK_VERSION([MKSQUASHFS], [$vmin_mksquashfs],
[-version | head -1 | cut -d' ' -f3])
# SquashFUSE executables
vmin_squashfuse=0.1.100 # Ubuntu 16.04 (Xenial). CentOS 7 has 0.1.102.
AC_CHECK_PROG([SQUASHFUSE], [squashfuse], [squashfuse])
CH_CHECK_VERSION([SQUASHFUSE], [$vmin_squashfuse],
[--help 2>&1 | head -1 | cut -d' ' -f2])
# libsquashfuse
have_libfuse3=no
have_libsquashfuse=no
have_ll_h=no
AS_IF([test $want_squashfuse = yes], [
AC_SEARCH_LIBS(fuse_session_new, fuse3,
[have_libfuse3=yes],
[have_libfuse3=no])
AC_SEARCH_LIBS(sqfs_ll_mount, squashfuse_ll,
[have_libsquashfuse=yes
CH_FLAG_ADD([LDFLAGS], ['-Wl,-rpath='], [$lib_squashfuse])],
[have_libsquashfuse=no])
AC_CHECK_HEADER([squashfuse/ll.h],
[have_ll_h=yes],
[have_ll_h=no],
[#define SQFS_CONFIG_H
#define FUSE_USE_VERSION 32
]) # see comment in fuse.c regarding these defines
])
AS_IF([ test $have_libfuse3 = yes \
&& test $have_libsquashfuse = yes \
&& test $have_ll_h = yes],
[have_squashfuse=yes],
[have_squashfuse=no])
AS_IF([test $need_squashfuse = yes], [
AS_IF([test $have_libfuse3 = no],
AC_MSG_ERROR([--with-squashfuse=yes but libfuse3 not found]))
AS_IF([test $have_squashfuse = no],
AC_MSG_ERROR([--with-squashfuse=yes but libsquashfuse not found]))
])
# Any SquashFUSE support at all?
AS_IF([ test -n "$SQUASHFUSE" \
|| test $have_libsquashfuse = yes],
[have_any_squashfuse=yes],
[have_any_squashfuse=no])
### ch-image #################################################################
# Python
vmin_python=3.6 # NOTE: Keep in sync with lib/charliecloud.py
AC_MSG_CHECKING([if "$PYTHON_SHEBANG" starts with slash])
AS_CASE([$PYTHON_SHEBANG],
[/*], [AC_MSG_RESULT([ok])],
[*], [AC_MSG_RESULT([no])
AC_MSG_ERROR([--with-python: must start with slash])])
python="${PYTHON_SHEBANG#/usr/bin/env }" # use shell to find it
AS_CASE([$python],
[/*], [PYTHON="$python"], # absolute
[*], [AC_CHECK_PROG([PYTHON], [$python], [$python])] # verify it's in $PATH
)
CH_CHECK_VERSION([PYTHON], [$vmin_python],
[--version | head -1 | cut -d' ' -f2])
# Python module “requests”
vmin_requests=2.6.0 # CentOS 7; FIXME: haven’t actually tested this
AS_IF([test -n "$PYTHON"], [
AC_MSG_CHECKING([for requests module])
cat <<EOF | $PYTHON_SHEBANG
import sys
try:
import requests
except Exception:
sys.exit(1)
EOF
AS_IF([test $? -eq 0],
[REQUESTS=$PYTHON; have_requests=yes],
[REQUESTS=; have_requests=no])
AC_MSG_RESULT($have_requests)
CH_CHECK_VERSION([REQUESTS], [$vmin_requests],
[-c 'import requests; print(requests.__version__)'])
])
# Check for bundled Lark; we do not verify or report version. Note this
# assumes that $PWD is the top of the source tree. I don’t believe anything
# else is supported (see issue #820), but it’s brittle.
AC_MSG_CHECKING([for bundled Lark module])
AS_IF([test -e ./lib/lark-*.dist-info],
[lark_status=bundled],
[lark_status=external])
AC_MSG_RESULT($lark_status)
AS_IF([ test $enable_bundled_lark = yes \
&& test $lark_status != bundled],
AC_MSG_ERROR([bundled Lark not found; see docs])])
# DOT
vmin_dot=2.30.1
AC_CHECK_PROG([DOT], [dot], [dot])
CH_CHECK_VERSION([DOT], [$vmin_dot], [dot -V 2>&1 | cut -d' ' -f5])
# Git
vmin_git=2.28.1
AC_CHECK_PROG([GIT], [git], [git])
CH_CHECK_VERSION([GIT], [$vmin_git], [--version | cut -d' ' -f3])
# git2dot
vmin_git2dot=0.8.3
AC_CHECK_PROG([GIT2DOT], [git2dot.py], [git2dot.py])
CH_CHECK_VERSION([GIT2DOT], [$vmin_git2dot], [--version | cut -d' ' -f3])
# rsync
vmin_rsync=3.1.0 # NOTE: keep in sync with lib/charliecloud.py
AC_CHECK_PROG([RSYNC], [rsync], [rsync])
CH_CHECK_VERSION([RSYNC], [$vmin_rsync],
[--version | sed -En 's/rsync +version (@<:@0-9@:>@+\.@<:@0-9@:>@+\.@<:@0-9@:>@+).*$/\1/p'])
### Docs #####################################################################
# Sphinx
vmin_sphinx=1.2.3
AX_WITH_PROG([SPHINX], [sphinx-build])
CH_CHECK_VERSION([SPHINX], [$vmin_sphinx],
[--version | sed -E 's/sphinx-build //'])
# Get the Sphinx Python. We don’t care about version.
AS_IF([test -n "$SPHINX"], [
AS_IF([test -z "$sphinx_python"], [
AC_MSG_CHECKING([for sphinx-build Python])
sphinx_python=$(head -1 "$SPHINX" | sed -E -e 's/^#!\s*//' -e 's/\s.*$//')
AC_MSG_RESULT([$sphinx_python])
AC_MSG_CHECKING([if "$sphinx_python" starts with slash])
AS_CASE([$sphinx_python],
[/*], [AC_MSG_RESULT([ok])],
[*], [AC_MSG_RESULT([no])
AC_MSG_ERROR([--with-sphinx-python: must start with slash])])
])])
# “docutils” module
vmin_docutils=0.14
AS_IF([test -n "$SPHINX"], [
# Sphinx depends on docutils, so we don’t need to check if the module exists
# before checking its version. (CH_CHECK_VERSION isn’t smart enough to deal
# with Python being present but a module not.)
DOCUTILS=$sphinx_python # FIXME: output is confusing
CH_CHECK_VERSION([DOCUTILS], [$vmin_docutils],
[-c 'import docutils; print(docutils.__version__)'])
], [DOCUTILS_VERSION_NOTE='moot b/c no sphinx-build'])
# “sphinx-rtd-theme” module
vmin_rtd=0.2.4
AS_IF([test -n "$SPHINX"], [
AC_MSG_CHECKING([for sphinx_rtd_theme module])
cat <<EOF | $sphinx_python
import sys
try:
import sphinx_rtd_theme
except ImportError:
sys.exit(1)
EOF
AS_IF([test $? -eq 0],
[RTD=$sphinx_python; have_rtd=yes],
[RTD=; have_rtd=no])
AC_MSG_RESULT([$have_rtd])
CH_CHECK_VERSION([RTD], [$vmin_rtd],
[-c 'import sphinx_rtd_theme; print(sphinx_rtd_theme.__version__)'])
], [RTD_VERSION_NOTE='moot b/c no sphinx-build'])
# What should we build?
AS_IF([ test -n "$SPHINX" \
&& test -n "$DOCUTILS" \
&& test -n "$RTD" \
&& (test "$enable_man" = yes || test "$enable_html" = yes)],
[have_docs=yes],
[have_docs=no])
AS_IF([ test $enable_html = yes && test $have_docs = no],
[AC_MSG_WARN([forcing --disable-html: no suitable sphinx-build])
enable_html=no])
AS_IF([ test $enable_man = yes && test $have_docs = no],
[AC_MSG_WARN([forcing --disable-man: no suitable sphinx-build])
enable_man=no])
### Glue scripts #############################################################
# libnvidia-container-cli
vmin_nvidia_cli=1.0.0
AC_CHECK_PROG([NVIDIA_CLI], [nvidia-container-cli], [nvidia-container-cli])
CH_CHECK_VERSION([NVIDIA_CLI], [$vmin_nvidia_CLI],
[-V | head -1 | cut -d' ' -f2])
AC_MSG_CHECKING([for nVidia libraries & executables])
AS_IF([test -n "$NVIDIA_CLI"],
[AS_IF([nvidia-container-cli list | grep -Fq libnvidia],
[have_nvidia_libs=yes],
[have_nvidia_libs=no])],
[have_nvidia_libs=no])
AC_MSG_RESULT($have_nvidia_libs)
### Test suite ###############################################################
# Bash
vmin_bash=4.1
AC_CHECK_PROG([_BASH], [bash], [bash]) # $BASH and $BASH_VERSION already used
CH_CHECK_VERSION([_BASH], [$vmin_bash], [--version | head -1 | cut -d' ' -f4])
# Bats
vmin_bats=1.2.0
AC_CHECK_PROG([BATS], [bats], [bats])
CH_CHECK_VERSION([BATS], [$vmin_bats], [--version | cut -d' ' -f2])
# ShellCheck
vmin_shellcheck=0.9.0
AC_CHECK_PROG([SHELLCHECK], [shellcheck], [shellcheck])
# https://stackoverflow.com/questions/6022384
CH_CHECK_VERSION([SHELLCHECK], [$vmin_shellcheck],
[--version | sed -n '2{s/^version: //;p;q}'])
# sudo, generic
# Avoids prompting for password; see https://superuser.com/a/1183480.
# But logrotate sends an e-mail with every call, so disabled.
#AC_MSG_CHECKING([for generic sudo])
#sudo_out=$(sudo -nv 2>&1)
#AS_IF([ test -z "$sudo_out" \
# || echo "$sudo_out" | grep -Fq asswor],
# [have_sudo=yes],
# [have_sudo=no])
#AC_MSG_RESULT($have_sudo)
# Wget
vmin_wget=1.11 # 2008
AC_CHECK_PROG([WGET], [wget], [wget])
CH_CHECK_VERSION([WGET], [$vmin_wget], [--version | head -1 | cut -d' ' -f3])
### Finalize C compiler ######################################################
# Add -Werror if appropriate. This is here because “running configure tests
# with warnings promoted to errors is not supported” [1], which probably
# explains #798.
#
# [1]: https://github.com/autotools-mirror/autoconf/blob/1f38316/NEWS#L341
AS_IF([test $use_werror = yes],
CH_FLAG_ADD([CFLAGS], [], [-Werror]))
# Test compiler flags. This is at the end to be sure we’ve captured all
# changes.
AX_CHECK_PREPROC_FLAG([$CPPFLAGS], [],
[AC_MSG_ERROR([cannot preprocess; see config.log])])
AX_CHECK_COMPILE_FLAG([$CFLAGS], [],
[AC_MSG_ERROR([cannot compile; see config.log])])
AX_CHECK_LINK_FLAG([$LDFLAGS], [],
[AC_MSG_ERROR([cannot link; see config.log])])
### Output variables #########################################################
# Autotools output variables are ... interesting. This is my best
# understanding:
#
# 1. AC_SUBST(foo) does two things in Makefile.am:
#
# a. Replace the string "@foo@" with the value of foo anywhere it
# appears.
#
# b. Set the Make variable foo to the same value, i.e., add “foo = @foo@”
# which is then substituted as in item 1.
#
# So this is how you transfer a variable from configure to Make.
#
# 2. AC_SUBST_NOTMAKE(foo) does only 1a.
#
# 3. AM_CONDITIONAL(foo, test) creates a variable for use in Automake
# conditionals. E.g. if you say in configure.ac:
#
# AM_CONDITIONAL([foo], [test $foo = yes])
#
# and then in Makefile.am:
#
# if foo
# ... bar ...
# else
# ... baz ...
# endif
#
# then if the configure variable $foo is “yes”, lines “... bar ...” will
# be placed in the Makefile; otherwise, “... baz ...” will be included.
#
# This is how you include and exclude portions of the Makefile.am from
# the output Makefile. It *does not* create a Make variable.
#
# 4. AC_DEFINE(foo, value, comment) #define’s the preprocessor symbol foo to
# value in config.h. (Supposedly, value and comment are optional but I
# got warnings doing that.) Importantly, value is not expanded. This is
# good for either defining or not defining a C macro; you can then use
# #ifdef to gate on that macro.
#
# 5. AC_DEFINE_UNQUOTED also expands value. This is good for defining a C
# macro to the actual value of some configure variable.
#
# Below are the variables we need outside configure that must be manually
# output (e.g., AC_CHECK_FUNCS already sets HAVE_STRERRORNAME_NP above).
AM_CONDITIONAL([ENABLE_CH_IMAGE], [test $enable_ch_image = yes])
AM_CONDITIONAL([ENABLE_HTML], [test $enable_html = yes])
AM_CONDITIONAL([ENABLE_LARK], [test $enable_bundled_lark = yes])
AM_CONDITIONAL([ENABLE_MAN], [test $enable_man = yes])
AS_IF([test $enable_syslog = yes],
[AC_DEFINE([ENABLE_SYSLOG], [1], [log to syslog])])
AM_CONDITIONAL([ENABLE_TEST], [test $enable_test = yes])
AC_SUBST(CFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(PYTHON_SHEBANG)
AC_SUBST(SPHINX)
AS_IF([test $have_fnm_extmatch = yes],
[AC_DEFINE([HAVE_FNM_EXTMATCH], [1], [extended globs supported])])
AS_IF([test $have_gc = yes],
[AC_DEFINE([HAVE_GC], [1], [enable garbage collection])])
AS_IF([test $have_gc_set_markers_count = yes],
[AC_DEFINE([HAVE_GC_SET_MARKERS_COUNT], [1], [GC_set_markers_count()])])
AM_CONDITIONAL([HAVE_JSON], [test $have_json = yes])
AS_IF([test $have_json = yes],
[AC_DEFINE([HAVE_JSON], [1], [enable JSON features])
AC_DEFINE_UNQUOTED([CJSON_H], [$cjson_h], [cJSON.h location])])
AM_CONDITIONAL([HAVE_SQUASHFUSE], [test $have_squashfuse = yes])
AS_IF([test $have_squashfuse = yes],
[AC_DEFINE([HAVE_SQUASHFUSE], [1], [link with libsquashfuse])])
AS_IF([test $have_overlayfs = yes],
[AC_DEFINE([HAVE_OVERLAYFS], [1], [unprivileged overlayfs])])
AS_IF([test $have_seccomp = yes],
[AC_DEFINE([HAVE_SECCOMP], [1], [seccomp supported])])
AM_CONDITIONAL([HAVE_SECCOMP], [test $have_seccomp = yes])
AS_IF([test $have_tmpfs_xattrs = yes],
[AC_DEFINE([HAVE_TMPFS_XATTRS], [1], [tmpfs user xattrs])])
### Prepare report ###########################################################
# FIXME: Should replace all these with macros?
# ch-run (needed below)
AS_IF([ test $have_userns = yes],
[have_ch_run=yes],
[have_ch_run=no])
AS_IF([ test $want_gc = yes],
[note_libgc=$have_libgc
note_gc_h=$have_gc_h
AS_IF([ test $have_gc_set_markers_count = yes],
[note_gc_set_markers_count=yes],
[note_gc_set_markers_count='no, using workaround'])],
[note_libgc='not tested'
note_gc_h='not tested'
note_gc_set_markers_count='not tested'])
AS_IF([ test $want_json = yes],
[note_libcjson=$have_libcjson
AS_IF([test $have_cjson_h = yes],
[note_cjson_h="yes, $cjson_h"],
[note_cjson_h=no])],
[note_libcjson='not tested'
note_cjson_h='not tested'])
# image builders
AS_IF([ test $enable_ch_image = yes \
&& test -n "$PYTHON" \
&& test -n "$PYTHON_SHEBANG" \
&& test -n "$REQUESTS" \
&& test $have_ch_run = yes],
[have_ch_image=yes],
[have_ch_image=no])
AS_IF([ test $have_ch_image = yes \
&& test -n "$GIT"],
[have_ch_image_bu=yes],
[have_ch_image_bu=no])
AS_IF([ test $have_ch_image = yes \
&& test -n "$RSYNC"],
[have_ch_image_rsync=yes],
[have_ch_image_rsync=no])
# managing container images
AS_IF([ test $have_ch_image = yes],
[have_any_builder=yes],
[have_any_builder=no])
AS_IF([ test $have_ch_image = yes],
[have_dockerfile_build=yes],
[have_dockerfile_build=no])
AS_IF([ test $have_ch_image = yes],
[have_builder_to_tar=yes],
[have_builder_to_tar=no])
AS_IF([ test $have_ch_image = yes \
&& test -n "$MKSQUASHFS"],
[have_pack_squash=yes],
[have_pack_squash=no])
# running containers
AS_IF([ test -n "$NVIDIA_CLI" \
&& test $have_nvidia_libs = yes],
[have_nvidia=yes],
[have_nvidia=no])
# test suite
AS_IF([ test $enable_test = yes \
&& test $have_ch_run = yes \
&& test $have_ch_image = yes \
&& test -n "$_BASH" \
&& test -n "$BATS" \
&& test -n "$WGET"], # assume access to Docker Hub or mirror
[have_tests_basic=yes],
[have_tests_basic=no])
AS_IF([ test $have_tests_basic = yes \
&& test $have_docs = yes \
&& test -n "$SHELLCHECK" ], # assume we do have generic sudo
[have_tests_more=yes],
[have_tests_more=no])
AS_IF([ test $have_tests_more = yes \
&& test -n "$DOT" \
&& test -n "$GIT2DOT" ],
[have_tests_debug=yes],
[have_tests_debug=no])
AS_IF([ test $have_tests_basic = yes \
&& test $have_tests_more = yes],
[have_tests_tar=yes],
[have_tests_tar=no])
AS_IF([ test $have_tests_basic = yes \
&& test $have_tests_more = yes \
&& test $have_pack_squash = yes ],
[have_tests_squashunpack=yes],
[have_tests_squashunpack=no])
AS_IF([ test $have_tests_squashunpack = yes \
&& test $have_libsquashfuse = yes],
[have_tests_squashmount=yes],
[have_tests_squashmount=no])
### Write output files #######################################################
AC_OUTPUT
## Print report
AS_IF([ test $have_userns = no \
&& test $chrooted = yes], [
chroot_warning=$(cat <<'EOF'
Warning: configure is running in a chroot, but user namespaces cannot be
created in a chroot; see the man page unshare(2). Therefore, the above may
be a false negative. However, note that like all the run-time configure
tests, this is informational only and does not affect the build.
EOF
)
])
AC_MSG_NOTICE([
Dependencies report
===================
Below is a summary of configure's findings.
Caveats
~~~~~~~
Charliecloud's run-time dependencies are lazy; features just try to use their
dependencies and error if there's a problem. This report summarizes what
configure found on *this system*, because that's often useful, but none of the
run-time findings change what is built and installed.
Listed versions are minimums. These are a bit fuzzy. Try it even if configure
thinks a version is too old, and please report back to us.
Building Charliecloud
~~~~~~~~~~~~~~~~~~~~~
will build and install:
ch-image(1) ... ${enable_ch_image}
HTML documentation ... ${enable_html}
man pages ... ${enable_man}
syslog ... ${enable_syslog}
test suite ... ${enable_test}
required:
C99 compiler ... ${CC}
libraries ... ${LIBS}
\$CPPFLAGS ... ${CPPFLAGS}
\$CFLAGS ... ${CFLAGS}
\$LDFLAGS ... ${LDFLAGS}
extended glob patterns in --unset-env: ${have_fnm_extmatch}
error messages include symbolic errno constant: ${ac_cv_func_strerrorname_np}
garbage collection: ${have_gc}
enabled ... ${want_gc}
libgc ... ${note_libgc}
gc.h ... ${note_gc_h}
GC_set_markers_count() ... ${note_gc_set_markers_count}
JSON features: ${have_json}
enabled ... ${want_json}
libcjson ... ${note_libcjson}
cJSON.h ... ${note_cjson_h}
ch-run(1) internal SquashFS mounting: ${have_squashfuse}
enabled ... ${want_squashfuse}
libfuse3 ... ${have_libfuse3}
libsquashfuse_ll ... ${have_libsquashfuse}
ll.h header ... ${have_ll_h}
documentation: ${have_docs}
HTML enabled ... ${enable_html}
man pages enabled ... ${enable_man}
sphinx-build(1) ≥ $vmin_sphinx ... ${SPHINX_VERSION_NOTE}
sphinx-build(1) Python ... ${sphinx_python:-n/a}
"docutils" module ≥ $vmin_docutils ... ${DOCUTILS_VERSION_NOTE}
"sphinx-rtd-theme" module ≥ $vmin_rtd ... ${RTD_VERSION_NOTE}
Building images
~~~~~~~~~~~~~~~
with ch-image(1): ${have_ch_image}
enabled ... ${enable_ch_image}
Python shebang line ... ${PYTHON_SHEBANG:-none}
Python in shebang ≥ $vmin_python ... ${PYTHON_VERSION_NOTE}
"lark" module ... ${lark_status}
"requests" module ≥ $vmin_requests ... ${REQUESTS_VERSION_NOTE}
ch-run(1) ... ${have_ch_run}
with ch-image(1) using build cache: ${have_ch_image_bu}
ch-image(1): ... ${have_ch_image}
Git ≥ $vmin_git ... ${GIT_VERSION_NOTE}
with ch-image(1) using RSYNC instruction: ${have_ch_image_rsync}
ch-image(1): ... ${have_ch_image}
rsync ≥ $vmin_rsync ... ${RSYNC_VERSION_NOTE}
Managing container images
~~~~~~~~~~~~~~~~~~~~~~~~~
build from Dockerfile: ${have_dockerfile_build}
ch-image(1) builder ... ${have_ch_image}
access to an image repository ... assumed yes
pack images from builder storage to tarball: ${have_builder_to_tar}
ch-image(1) builder ... ${have_ch_image}
pack images from builder storage to SquashFS: ${have_pack_squash}
ch-image(1) builder ... ${have_ch_image}
mksquashfs(1) ≥ $vmin_mksquashfs ... ${MKSQUASHFS_VERSION_NOTE}
Note: Pulling/pushing images from/to a repository is currently done using
the builder directly.
Running containers
~~~~~~~~~~~~~~~~~~
ch-run(1): ${have_ch_run}
user+mount namespaces ... ${have_userns}$chroot_warning
run SquashFS images: ${have_any_squashfuse}
manual mount with SquashFUSE ≥ $vmin_squashfuse ... ${SQUASHFUSE_VERSION_NOTE}
internal mount with libsquashfuse ... ${have_libsquashfuse}
fake system calls with seccomp(2): ${have_seccomp}
enabled ... ${msg_seccomp}
tested working ... ${test_seccomp}
writeable overlay (--write-fake): ${have_overlayfs}
fully functional ... ${have_tmpfs_xattrs}
inject nVidia GPU libraries: ${have_nvidia}
nvidia-container-cli(1) ≥ $vmin_nvidia_cli ... ${NVIDIA_CLI_VERSION_NOTE}
nVidia libraries & executables present ... ${have_nvidia_libs}
Test suite
~~~~~~~~~~
basic tests, all stages: ${have_tests_basic}
test suite enabled ... ${enable_test}
ch-run(1) ... ${have_ch_run}
any builder above ... ${have_ch_image}
access to Docker Hub or mirror ... assumed yes
Bats ≥ $vmin_bats ... ${BATS_VERSION_NOTE}
Bash ≥ $vmin_bash ... ${_BASH_VERSION_NOTE}
wget(1) ≥ $vmin_wget ... ${WGET_VERSION_NOTE}
more complete tests: ${have_tests_more}
basic tests ... ${have_tests_basic}
documentation built ... ${have_docs}
ShellCheck ≥ $vmin_shellcheck ... ${SHELLCHECK_VERSION_NOTE}
generic sudo ... assumed yes
debugging tests: ${have_tests_debug}
more tests ... ${have_tests_more}
DOT ≥ $vmin_dot ... ${DOT_VERSION_NOTE}
git2dot ≥ $vmin_git2dot ... ${GIT2DOT_VERSION_NOTE}
recommended tests, tar-unpack mode: ${have_tests_tar}
basic tests ... ${have_tests_basic}
more tests ... ${have_tests_more}
recommended tests, squash-unpack mode: ${have_tests_squashunpack}
basic tests ... ${have_tests_basic}
more tests ... ${have_tests_more}
pack/unpack SquashFS images ... ${have_pack_squash}
recommended tests, squash-mount mode: ${have_tests_squashmount}
recommended, squash-unpack mode: ${have_tests_squashunpack}
internal SquashFS mounting ... ${have_libsquashfuse}
])
|