Skip to content
Snippets Groups Projects
Commit 3339bc55 authored by Simon McVittie's avatar Simon McVittie
Browse files

pressure-vessel: In Flatpak, put game in same userns/pidns as Steam


Otherwise, pid-based IPC between the Steam client and the game will
fail.

This is not expected to work if bwrap on the host is setuid,
so it will not work for users of Debian, Arch linux-hardened, etc.,
but it's better than nothing.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent d0857ce8
No related branches found
No related tags found
No related merge requests found
Pipeline #5908 passed
This commit is part of merge request !194. Comments created here will be created in the context of that merge request.
...@@ -52,4 +52,8 @@ GFile *flatpak_get_data_dir (const char *app_id); ...@@ -52,4 +52,8 @@ GFile *flatpak_get_data_dir (const char *app_id);
void flatpak_run_add_font_path_args (FlatpakBwrap *bwrap); void flatpak_run_add_font_path_args (FlatpakBwrap *bwrap);
extern const char * const *flatpak_abs_usrmerged_dirs; extern const char * const *flatpak_abs_usrmerged_dirs;
int open_namespace_fd_if_needed (const char *path,
const char *other_path);
#endif /* __FLATPAK_RUN_H__ */ #endif /* __FLATPAK_RUN_H__ */
...@@ -3418,8 +3418,9 @@ check_parental_controls (const char *app_ref, ...@@ -3418,8 +3418,9 @@ check_parental_controls (const char *app_ref,
return TRUE; return TRUE;
} }
#endif
static int int
open_namespace_fd_if_needed (const char *path, open_namespace_fd_if_needed (const char *path,
const char *other_path) { const char *other_path) {
struct stat s, other_s; struct stat s, other_s;
...@@ -3438,6 +3439,7 @@ open_namespace_fd_if_needed (const char *path, ...@@ -3438,6 +3439,7 @@ open_namespace_fd_if_needed (const char *path,
return -1; return -1;
} }
#if 0
static gboolean static gboolean
check_sudo (GError **error) check_sudo (GError **error)
{ {
......
...@@ -1245,6 +1245,7 @@ main (int argc, ...@@ -1245,6 +1245,7 @@ main (int argc,
g_str_equal, g_str_equal,
g_free, NULL); g_free, NULL);
g_autofree char *lock_env_fd = NULL; g_autofree char *lock_env_fd = NULL;
g_autoptr(GArray) pass_fds_through_adverb = g_array_new (FALSE, FALSE, sizeof (int));
my_pid = getpid (); my_pid = getpid ();
...@@ -2187,6 +2188,49 @@ main (int argc, ...@@ -2187,6 +2188,49 @@ main (int argc,
lock_env_fd = g_strdup_printf ("%d", lock_env_tmpf.fd); lock_env_fd = g_strdup_printf ("%d", lock_env_tmpf.fd);
flatpak_bwrap_add_fd (bwrap, glnx_steal_fd (&lock_env_tmpf.fd)); flatpak_bwrap_add_fd (bwrap, glnx_steal_fd (&lock_env_tmpf.fd));
if (is_flatpak_env)
{
int userns_fd, userns2_fd, pidns_fd;
/* Tell the bwrap instance on the host to join the same user and pid
* namespaces as Steam in Flatpak. Otherwise, pid-based IPC between
* the Steam client and the game will fail.
*
* This is not expected to work if bwrap on the host is setuid,
* so it will not work for users of Debian, Arch linux-hardened, etc.,
* but it's better than nothing. */
userns_fd = open ("/run/.userns", O_RDONLY | O_CLOEXEC);
if (userns_fd >= 0)
{
g_array_append_val (pass_fds_through_adverb, userns_fd);
flatpak_bwrap_add_args_data_fd (bwrap, "--userns",
glnx_steal_fd (&userns_fd),
NULL);
userns2_fd = open_namespace_fd_if_needed ("/proc/self/ns/user",
"/run/.userns");
if (userns2_fd >= 0)
{
g_array_append_val (pass_fds_through_adverb, userns2_fd);
flatpak_bwrap_add_args_data_fd (bwrap, "--userns2",
glnx_steal_fd (&userns2_fd),
NULL);
}
}
pidns_fd = open ("/proc/self/ns/pid", O_RDONLY | O_CLOEXEC);
if (pidns_fd >= 0)
{
g_array_append_val (pass_fds_through_adverb, pidns_fd);
flatpak_bwrap_add_args_data_fd (bwrap, "--pidns",
glnx_steal_fd (&pidns_fd),
NULL);
}
}
if (opt_verbose) if (opt_verbose)
{ {
g_message ("%s options before bundling:", bwrap_executable); g_message ("%s options before bundling:", bwrap_executable);
...@@ -2247,6 +2291,13 @@ main (int argc, ...@@ -2247,6 +2291,13 @@ main (int argc,
} }
} }
for (i = 0; i < pass_fds_through_adverb->len; i++)
{
int fd = g_array_index (pass_fds_through_adverb, int, i);
flatpak_bwrap_add_arg_printf (bwrap, "--pass-fd=%d", fd);
}
flatpak_bwrap_add_arg_printf (bwrap, "--pass-fd=%s", lock_env_fd); flatpak_bwrap_add_arg_printf (bwrap, "--pass-fd=%s", lock_env_fd);
switch (opt_shell) switch (opt_shell)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment