ci-build.sh: Always install and add s-bit for fusermount3
authorBernd Schubert <bschubert@ddn.com>
Tue, 5 Mar 2024 23:37:53 +0000 (00:37 +0100)
committerBernd Schubert <bschubert@ddn.com>
Thu, 7 Mar 2024 10:56:30 +0000 (11:56 +0100)
As per pull #898, fusermount3 had a severe issue that
should have been detected by ASAN. I guess tests used
the system default and not the sanitized binary.
Order of execution of fusermount3 is to try
1) full install path
if that fails
2) just fusermount3

So tests should be fixed by installing libfuse, setting the s-bit
on fusermount3 and then to run the tests.

test/ci-build.sh

index c266ea2b192ddac096d663a113b1cb3044442048..a023c1531fce11490a8a15743c6f96bbf4d7843a 100755 (executable)
@@ -18,6 +18,9 @@ umask 0022
 # readable/executable.
 SOURCE_DIR="$(readlink -f .)"
 TEST_DIR="$(mktemp -dt libfuse-build-XXXXXX)"
+
+PREFIX_DIR="$(mktemp -dt libfuse-install-XXXXXXX)"
+
 chmod 0755 "${TEST_DIR}"
 cd "${TEST_DIR}"
 echo "Running in ${TEST_DIR}"
@@ -47,13 +50,17 @@ for CC in gcc gcc-9 gcc-10 clang; do
     else
         build_opts=''
     fi
-    meson setup -D werror=true ${build_opts} "${SOURCE_DIR}" || (cat meson-logs/meson-log.txt; false)
+    meson setup -Dprefix=${PREFIX_DIR} -D werror=true ${build_opts} "${SOURCE_DIR}" || (cat meson-logs/meson-log.txt; false)
     ninja
+    sudo ninja install
+
+    # libfuse will first try the install path and then system defaults
+    sudo chmod 4755 ${PREFIX_DIR}/bin/fusermount3
 
-    sudo chown root:root util/fusermount3
-    sudo chmod 4755 util/fusermount3
     ${TEST_CMD}
     popd
+    rm -fr build-${CC}
+    sudo rm -fr ${PREFIX_DIR}
 done
 
 sanitized_build()
@@ -62,7 +69,7 @@ sanitized_build()
 
     mkdir build-san; pushd build-san
 
-    meson setup -D werror=true\
+    meson setup -Dprefix=${PREFIX_DIR} -D werror=true\
            "${SOURCE_DIR}" \
            || (ct meson-logs/meson-log.txt; false)
     meson configure $SAN
@@ -73,11 +80,11 @@ sanitized_build()
 
     meson configure
     ninja
+    sudo ninja install
+    sudo chmod 4755 ${PREFIX_DIR}/bin/fusermount3
 
     # Test as root and regular user
     sudo ${TEST_CMD}
-    sudo chown root:root util/fusermount3
-    sudo chmod 4755 util/fusermount3
     # Cleanup temporary files (since they are now owned by root)
     sudo rm -rf test/.pytest_cache/ test/__pycache__
 
@@ -85,6 +92,7 @@ sanitized_build()
     
     popd
     rm -fr build-san
+    sudo rm -fr ${PREFIX_DIR}
 )
 
 # Sanitized build