From 66556e603816fe530fae874906726da2b6003d70 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Tue, 25 Feb 2020 17:39:00 +0000
Subject: [PATCH] runtime: Move more responsibility for runtime setup to here

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 src/runtime.c | 8 ++++++++
 src/runtime.h | 2 --
 src/wrap.c    | 6 ------
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/runtime.c b/src/runtime.c
index c795d7d6e..20133cf91 100644
--- a/src/runtime.c
+++ b/src/runtime.c
@@ -104,6 +104,8 @@ static const char * const libquals[] =
 static gboolean pv_runtime_use_host_graphics_stack (PvRuntime *self,
                                                     FlatpakBwrap *bwrap,
                                                     GError **error);
+static void pv_runtime_set_search_paths (PvRuntime *self,
+                                         FlatpakBwrap *bwrap);
 
 static void
 pv_runtime_init (PvRuntime *self)
@@ -1760,6 +1762,10 @@ pv_runtime_bind (PvRuntime *self,
   g_return_val_if_fail (!pv_bwrap_was_finished (bwrap), FALSE);
   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
 
+  /* Start with just the root tmpfs (which appears automatically)
+   * and the standard API filesystems */
+  pv_bwrap_add_api_filesystems (bwrap);
+
   if (!bind_runtime (self, bwrap, error))
     return FALSE;
 
@@ -1772,6 +1778,8 @@ pv_runtime_bind (PvRuntime *self,
                           "/run/pressure-vessel",
                           NULL);
 
+  pv_runtime_set_search_paths (self, bwrap);
+
   return TRUE;
 }
 
diff --git a/src/runtime.h b/src/runtime.h
index 05d480e51..5eef8b552 100644
--- a/src/runtime.h
+++ b/src/runtime.h
@@ -47,8 +47,6 @@ PvRuntime *pv_runtime_new (const char *source_files,
 
 void pv_runtime_append_lock_adverb (PvRuntime *self,
                                     FlatpakBwrap *bwrap);
-void pv_runtime_set_search_paths (PvRuntime *self,
-                                  FlatpakBwrap *bwrap);
 gboolean pv_runtime_bind (PvRuntime *self,
                           FlatpakBwrap *bwrap,
                           GError **error);
diff --git a/src/wrap.c b/src/wrap.c
index f5ce983c2..2c5232335 100644
--- a/src/wrap.c
+++ b/src/wrap.c
@@ -1026,15 +1026,9 @@ main (int argc,
                                 tools_dir,
                                 error);
 
-      /* Start with just the root tmpfs (which appears automatically)
-       * and the standard API filesystems */
-      pv_bwrap_add_api_filesystems (bwrap);
-
       if (runtime == NULL)
         goto out;
 
-      pv_runtime_set_search_paths (runtime, bwrap);
-
       if (!pv_runtime_bind (runtime, bwrap, error))
         goto out;
     }
-- 
GitLab