Skip to content
Snippets Groups Projects
  1. May 21, 2020
  2. May 20, 2020
  3. May 18, 2020
  4. Apr 15, 2020
  5. Apr 09, 2020
  6. Apr 08, 2020
    • Simon McVittie's avatar
      wrap: Add the ability to unshare the pid namespace · feb948ed
      Simon McVittie authored
      This improves isolation between the host system and the game, and can
      be used in conjunction with bwrap's init/reaper process to make game
      termination fully reliable (unlike subreapers, killing the init process
      automatically kills the entire pid namespace).
      
      One major down-side of doing this is that if the game uses
      process-ID-oriented APIs, for example older versions of
      <https://github.com/FeralInteractive/gamemode
      
      >, then they will not
      work, because the process ID inside the container is not the same as
      the process ID outside the container.
      
      Unfortunately, Steam's own tracking of the processes that belong to a game
      is one of the process-ID-oriented APIs that this harms, so this branch
      does not unshare the pid namespace by default, only when requested. We
      can use this to test whether it can be done without breaking Steam;
      We will probably need to cope with separate pid namespaces if we create
      new containers from inside a Flatpak environment.
      
      Also add an option to unload the gameoverlayrenderer.so module, which
      is not acceptable for production use, but at least works around this
      well enough to unblock further testing.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      feb948ed
  7. Mar 24, 2020
  8. Mar 23, 2020
  9. Mar 18, 2020
  10. Mar 04, 2020
  11. Feb 26, 2020
    • Simon McVittie's avatar
      utils: Add a method to copy a directory tree using hard links · 181337cd
      Simon McVittie authored
      
      This will let us duplicate a runtime and edit it in-place. The major
      appeal of doing this is that it's something we can do in a Flatpak
      environment, where recursively invoking bubblewrap isn't allowed.
      
      It also seems like it might yield a more reliable way to overwrite parts
      of the runtime with their host-system equivalents than the tricks we
      currently use with files and directories mounted over their runtime
      counterparts.
      
      The major down side is that after we've done this, we have a copy of
      the runtime, which we need to garbage-collect and clean up eventually.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      181337cd
Loading