From 9718d9844e11c110db904cb3e56306cc9612889f Mon Sep 17 00:00:00 2001 From: Ludovico de Nittis <ludovico.denittis@collabora.com> Date: Mon, 4 Jan 2021 16:14:48 +0100 Subject: [PATCH] adverb: respect STEAM_COMPAT_FLAGS=search-cwd If we have "search-cwd" in `STEAM_COMPAT_FLAGS`, and we are running the main program, we need to append to `LD_LIBRARY_PATH` the working directory of the game that we want to execute. Said directory is expected to be `STEAM_COMPAT_INSTALL_PATH`. Fixes: #46 Signed-off-by: Ludovico de Nittis <ludovico.denittis@collabora.com> --- pressure-vessel/adverb.c | 60 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/pressure-vessel/adverb.c b/pressure-vessel/adverb.c index 29188fc47..061fd69be 100644 --- a/pressure-vessel/adverb.c +++ b/pressure-vessel/adverb.c @@ -631,6 +631,31 @@ cli_log_func (const gchar *log_domain, g_printerr ("%s[%d]: %s\n", (const char *) user_data, my_pid, message); } +/* + * is_main_program: + * + * Check if the command to execute is the main program. + * The check used is similar to the one in _v2-entry-point. + * Try to keep them in sync. + */ +static gboolean +is_main_program (char *argv[]) +{ + gsize i; + const gchar *session_id = g_environ_getenv ((gchar **) global_original_environ, + "STEAM_COMPAT_SESSION_ID"); + if (session_id == NULL) + /* Non-session mode, behaving like the main program */ + return TRUE; + + for (i = 0; argv[i] != NULL; i++) + { + if (g_strcmp0 (argv[i], "waitforexitandrun") == 0) + return TRUE; + } + return FALSE; +} + int main (int argc, char *argv[]) @@ -648,6 +673,8 @@ main (int argc, sigset_t mask; struct sigaction terminate_child_action = {}; g_autoptr(FlatpakBwrap) wrapped_command = NULL; + gboolean search_cwd = FALSE; + const gchar *steam_compat_flags = NULL; my_pid = getpid (); @@ -837,6 +864,39 @@ main (int argc, } } + steam_compat_flags = g_environ_getenv (original_environ, "STEAM_COMPAT_FLAGS"); + + if (steam_compat_flags != NULL) + { + g_auto(GStrv) flags = g_strsplit (steam_compat_flags, ",", -1); + for (gsize i = 0; flags[i] != NULL; i++) + { + if (g_strcmp0 (flags[i], "search-cwd") == 0) + search_cwd = TRUE; + } + } + + if (search_cwd && is_main_program (argv)) + { + /* This option is used for legacy purposes to cope with games that + * relied on LD_LIBRARY_PATH ending with a colon, which ld.so interprets + * as the current working directory. But because it was a bug, rather + * than a feature, it has been removed, breaking, as a result, a few + * games. */ + const gchar *install_path = g_environ_getenv (original_environ, + "STEAM_COMPAT_INSTALL_PATH"); + const gchar *ld_library_path = g_environ_getenv (original_environ, + "LD_LIBRARY_PATH"); + g_autofree gchar *new_ld_library_path = NULL; + + if (ld_library_path != NULL) + new_ld_library_path = g_strdup_printf ("%s:%s", ld_library_path, install_path); + else + new_ld_library_path = g_strdup_printf ("%s", install_path); + + flatpak_bwrap_set_env (wrapped_command, "LD_LIBRARY_PATH", new_ld_library_path, TRUE); + } + /* Respond to common termination signals by killing the child instead of * ourselves */ terminate_child_action.sa_handler = terminate_child_cb; -- GitLab