From 7c352b04d2584a1817eb4df5b651f0aa8202e757 Mon Sep 17 00:00:00 2001 From: Simon McVittie <smcv@collabora.com> Date: Wed, 4 Aug 2021 20:04:01 +0100 Subject: [PATCH] tests: Test that LD_PRELOAD=libbasename.so is handled as expected Signed-off-by: Simon McVittie <smcv@collabora.com> --- tests/pressure-vessel/wrap-setup.c | 98 ++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) diff --git a/tests/pressure-vessel/wrap-setup.c b/tests/pressure-vessel/wrap-setup.c index ea708c14f..fad380efb 100644 --- a/tests/pressure-vessel/wrap-setup.c +++ b/tests/pressure-vessel/wrap-setup.c @@ -222,6 +222,8 @@ populate_ld_preload (Fixture *f, { "/in-root-${FUTURE}.so" }, { "./${RELATIVE}.so" }, { "./relative.so" }, + { "libfakeroot.so" }, + { "libpthread.so.0" }, { "/usr/local/lib/libgtk3-nocsd.so.0", .warning = "Disabling gtk3-nocsd LD_PRELOAD: it is known to cause crashes.", @@ -373,6 +375,30 @@ test_remap_ld_preload (Fixture *f, g_assert_cmpstr (g_ptr_array_index (argv, i++), ==, "--ld-preload=./relative.so"); + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libfakeroot is not in the runtime or graphics stack provider, only + * the current namespace */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_64 + "/libfakeroot.so:abi=" + SRT_ABI_X86_64)); + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_32 + "/libfakeroot.so:abi=" + SRT_ABI_I386)); + + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libpthread.so.0 *is* in the runtime, as we would expect */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, "--ld-preload=libpthread.so.0"); + g_assert_cmpuint (argv->len, ==, i); /* FlatpakExports never exports /app */ @@ -520,6 +546,30 @@ test_remap_ld_preload_flatpak (Fixture *f, g_assert_cmpstr (g_ptr_array_index (argv, i++), ==, "--ld-preload=./relative.so"); + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libfakeroot is not in the runtime or graphics stack provider, only + * the current namespace */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_64 + "/libfakeroot.so:abi=" + SRT_ABI_X86_64)); + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_32 + "/libfakeroot.so:abi=" + SRT_ABI_I386)); + + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libpthread.so.0 *is* in the runtime, as we would expect */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, "--ld-preload=libpthread.so.0"); + g_assert_cmpuint (argv->len, ==, i); } @@ -620,6 +670,30 @@ test_remap_ld_preload_no_runtime (Fixture *f, g_assert_cmpstr (g_ptr_array_index (argv, i++), ==, "--ld-preload=./relative.so"); + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libfakeroot is not in the runtime or graphics stack provider, only + * the current namespace */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_64 + "/libfakeroot.so:abi=" + SRT_ABI_X86_64)); + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_32 + "/libfakeroot.so:abi=" + SRT_ABI_I386)); + + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libpthread.so.0 *is* in the runtime, as we would expect */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, "--ld-preload=libpthread.so.0"); + g_assert_cmpuint (argv->len, ==, i); /* FlatpakExports never exports /app */ @@ -761,6 +835,30 @@ test_remap_ld_preload_flatpak_no_runtime (Fixture *f, g_assert_cmpstr (g_ptr_array_index (argv, i++), ==, "--ld-preload=./relative.so"); + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libfakeroot is not in the runtime or graphics stack provider, only + * the current namespace */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_64 + "/libfakeroot.so:abi=" + SRT_ABI_X86_64)); + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, + ("--ld-preload=/path/to/" + MOCK_LIB_32 + "/libfakeroot.so:abi=" + SRT_ABI_I386)); + + /* Our mock implementation of pv_runtime_has_library() behaves as though + * libpthread.so.0 *is* in the runtime, as we would expect */ + g_assert_cmpuint (argv->len, >, i); + g_assert_cmpstr (g_ptr_array_index (argv, i++), + ==, "--ld-preload=libpthread.so.0"); + g_assert_cmpuint (argv->len, ==, i); } -- GitLab