Skip to content
Snippets Groups Projects
  1. Aug 05, 2021
    • Simon McVittie's avatar
      pv-wrap, pv-launcher: Set a reasonable RLIMIT_NOFILE · 4854d072
      Simon McVittie authored
      We could inherit any RLIMIT_NOFILE from Steam or another caller, but
      we want to give games a predictable execution environment.
      
      If a game uses select(), allocates memory proportional to the soft limit
      on file descriptors, or loops for a number of iterations proportional to
      the soft limit on file descriptors (as we did prior to commit 97b5a8f6
      "pressure-vessel: Let short-term subprocesses inherit non-CLOEXEC fds"),
      then file descriptors numerically greater than 1023 are going to be a
      problem. If the soft limit is more than 1024 (= FD_SETSIZE), reduce it
      to 1024 to avoid this.
      
      Conversely, if we're launched with a soft limit strictly less than 1024,
      let's try to raise it to 1024 if the hard limit allows that.
      
      Related to <https://github.com/ValveSoftware/steam-for-linux/issues/7970
      
      >.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      4854d072
  2. Jul 20, 2021
    • Simon McVittie's avatar
      pressure-vessel: Remove the concept of "locking" environment variables · feb92d87
      Simon McVittie authored
      
      This was only necessary because we were reusing a single container
      across multiple entry-point invocations, and expecting "most" arbitrary
      environment variables from each new invocation to be taken into account
      for commands running in the container, which meant that we needed to
      keep track of which environment variables had to be exceptions to that
      rule for technical reasons. Now that we're no longer injecting multiple
      commands into the same container like that, we don't need this
      complexity.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      feb92d87
  3. Feb 26, 2021
    • Simon McVittie's avatar
      pressure-vessel: Put apt-style severity prefixes on messages · dbf21961
      Simon McVittie authored
      
      These indicate which lines are harmless and which lines are really bad,
      without taking up too much space.
      
      The mapping from GLib log level to message is not 100% obvious, because
      G_LOG_LEVEL_ERROR is "worse than" an error. We diagnose "can't happen"
      situations (assertion failures, etc.) as "Internal error". Ideally,
      users should never see these: they indicate a bug.
      
      For situations that will cause pressure-vessel to exit with an error,
      introduce a new log level flag PV_LOG_LEVEL_FAILURE and map it to the
      apt-style "E:" prefix. pv_log_failure() is a convenience macro to log
      at level PV_LOG_LEVEL_FAILURE. Conceptually this is a fatal error, but
      it's a fatal error prompted by something external to pressure-vessel,
      for which we want pressure-vessel to clean up "nicely" and exit
      gracefully, even though it's going to fail - so we can't use g_error()
      for this.
      
      In the parts of main() that involve parsing command-line arguments,
      add usage_error() as syntactic sugar for pv_log_failure(). I might
      eventually turn these into G_OPTION_ERROR_FAILED as we factor out
      more of main() into helper functions, but for now they're handled
      separately.
      
      For less-severe log levels, use single-letter prefixes similar to apt's.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      dbf21961
  4. Jan 05, 2021
  5. Nov 17, 2020
  6. Oct 29, 2020
  7. Oct 22, 2020
    • Simon McVittie's avatar
      pressure-vessel: Disable GIO modules differently · 92b1c2b6
      Simon McVittie authored
      
      Now that GIO_MODULE_DIR has been backported into scout's GLib, we can
      disable GIO modules completely, instead of loading them but then not
      using them. This avoids some misleading warnings (#32).
      
      This will not be completely effective on non-Debian systems until we
      also patch scout's GLib to make GIO_MODULE_DIR take precedence over
      the hard-coded legacy search path /usr/lib/gio/modules.
      
      The unit test for this is still in tests/pressure-vessel/utils.c
      for now.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      92b1c2b6
  8. Oct 06, 2020
  9. Oct 01, 2020
    • Simon McVittie's avatar
      launcher: Always set PWD to the command's actual working directory · e71023ff
      Simon McVittie authored
      
      pressure-vessel-wrap unsets PWD, but we don't want the command to inherit
      a value of PWD from the launcher. In particular, when running in session
      mode, the launcher's $PWD is the Steam installation, typically
      ~/.local/share/Steam, and the setup commands are also run with that
      working directory, but the actual game is run with the current working
      directory set to its own game directory (which we didn't necessarily
      even know at the time that the launcher was started).
      
      Consumers of $PWD should really check that it is equivalent to the
      actual current working directory and ignore it if it does not, like
      GNU get_current_dir_name(3) and our pv_get_current_dirs() do, but
      blindly believing $PWD is a common shell-scripting mistake, and I
      wouldn't be surprised if there are some games whose launcher scripts
      will believe $PWD even when it doesn't coincide with the real working
      directory.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      e71023ff
    • Ludovico de Nittis's avatar
      Add an environment variables locking system · d7a6aebb
      Ludovico de Nittis authored
      
      If we want to pass all the possible variables that a user might have set
      in its environment, we need a mechanism to lock the variables that
      pressure-vessel is editing (e.g. LIBGL_DRIVERS_PATH), variables that we
      want to keep unset because will be wrong in the new container (e.g.
      FLATPAK_ID) and variables that should inherit their value from the host
      system (e.g. DISPLAY).
      
      Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
      d7a6aebb
  10. Sep 30, 2020
  11. Sep 28, 2020
  12. Sep 25, 2020
  13. Sep 09, 2020
  14. Sep 08, 2020
  15. Sep 04, 2020
  16. Aug 18, 2020
  17. Aug 04, 2020
Loading