Skip to content
Snippets Groups Projects
  1. Aug 06, 2021
  2. Aug 03, 2021
  3. Aug 02, 2021
  4. Jul 29, 2021
  5. Jul 22, 2021
  6. 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
    • Simon McVittie's avatar
      runtime: Share /usr/share/nvidia if we have at least one libGLX_nvidia · 40d7a402
      Simon McVittie authored
      
      If we have libGLX_nvidia.so.0 for *any* architecture - even if we are
      msising some instances - then we still want to share /usr/share/nvidia
      with the container.
      
      Because we always use libGLX_nvidia.so.0 from the graphics stack
      provider and do not have a concept of whether it is older or newer,
      and we do not expect our runtime to have a copy of libGLX_nvidia.so.0,
      we do not need to worry about giving the runtime's library an
      incompatible version of the data files from the provider.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      40d7a402
    • Simon McVittie's avatar
      runtime: Look for NVIDIA driver data in /usr/share/nvidia first · 91eecab8
      Simon McVittie authored
      
      The NVIDIA driver hard-codes /usr/share/nvidia even if it is installed
      in /opt or something, so instead of deriving ${prefix} from the library
      path and then checking for ${prefix}/share/nvidia followed by
      /usr/share/nvidia as a fallback, we do the opposite: check for
      /usr/share/nvidia first, followed by ${prefix}/share/nvidia as a fallback.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      Resolves: #73 (T29292)
      91eecab8
  7. Jul 14, 2021
  8. Jun 10, 2021
  9. May 11, 2021
  10. May 07, 2021
  11. Apr 30, 2021
    • Simon McVittie's avatar
      runtime: Add support for creating runtime from a mtree(5) · 799b7931
      Simon McVittie authored
      
      At the moment we deploy the runtime from a giant tarball to avoid Steam
      downloader limitations, but that leads to a noticeable delay the first
      time we launch a game after a new runtime version has been downloaded.
      
      Now that the Steam download mechanism can deal better with larger
      numbers of smaller files, we're considering returning to the original
      design where the runtime depot contains unpacked files. However, the
      Steam download mechanism doesn't preserve permissions, modification
      times, or filenames that differ only by case, and has not always
      preserved empty directories, so we need a way to deal with all of
      those things.
      
      By reading a manifest written in a subset of the BSD mtree(5) format,
      we can create directories and symlinks, and set permissions modification
      times on regular files. As a bonus, it's actually slightly faster to
      duplicate a runtime with hard-links (--copy-runtime mode) by reading the
      manifest than by reading the actual directory tree, because the manifest
      is more likely to be contiguous on disk.
      
      In principle the mtree(5) manifest could also be used to validate that
      the runtime content has not become corrupted by checking files against
      their sha256sums. This isn't implemented here (and it would have to be
      done only on demand rather than routinely, because it would be slow),
      but the parser does at least read the sha256.
      
      In the tests, we now need to remove the mtree manifest when copying
      and editing a runtime. When we edit a runtime in-place, it no longer
      conforms to the manifest, so this can't necesarily be expected to work.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      799b7931
  12. Apr 28, 2021
  13. Apr 27, 2021
    • Simon McVittie's avatar
      pv-runtime: Use threads to enumerate graphics drivers in parallel · 94699abd
      Simon McVittie authored
      
      SrtSystemInfo is not thread-aware, but can safely be handed off from
      one thread to another, and caches its results internally; so we can use
      a thread per architecture, plus an extra thread for cross-architecture
      Vulkan and EGL ICDs, to enumerate graphics drivers and populate the
      cache in parallel with any other container setup. We join the threads
      just before looking at their results, to maximize the length of time
      for which we're running in parallel.
      
      On slow hardware (Lenovo T520 circa 2011, with 500G 7200rpm HDD) this
      cuts something like 20% off the setup time with a cold cache
      (`echo 3 | sudo tee /proc/sys/vm/drop_caches`). It also has a benefit
      (more like 15%) with a warm cache, immediately after a previous
      pressure-vessel run.
      
      This does make it somewhat harder to profile pressure-vessel, because
      when two I/O-bound operations run in parallel, they both take longer
      than they otherwise would, even though the overall task finishes sooner;
      this makes it hard to attribute I/O cost to particular actions. The
      new --single-thread option can be used to get a better idea of where
      the time is really going.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      94699abd
    • Simon McVittie's avatar
      pv-runtime: Convert the graphics provider into an object · 98ac00a1
      Simon McVittie authored
      
      This encapsulates both the PROVIDER_GRAPHICS_STACK flag and the
      associated paths: if the object is null then the paths are meaningless,
      and if the object is non-null then they are meaningful.
      
      Making this an immutable "value object" also means we can share it
      between threads, unlike PvRuntime, which has state. This could become
      important if we want to make graphics driver enumeration multi-threaded
      to speed up pressure-vessel.
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      98ac00a1
    • Ludovico de Nittis's avatar
      runtime: Avoid Wayland when in a Scout container · b11ba4cc
      Ludovico de Nittis authored
      
      Unset SDL_VIDEODRIVER if it was previously set to "wayland", when we are
      in a Scout SteamLinuxRuntime, because Scout is too old to support
      Wayland.
      
      This is not necessary for Soldier or Sniper because we expect it to be
      working for them.
      
      Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
      b11ba4cc
  14. Apr 26, 2021
  15. Apr 22, 2021
  16. Apr 21, 2021
  17. Apr 20, 2021
  18. Apr 16, 2021
  19. Apr 13, 2021
    • Simon McVittie's avatar
      runtime: Don't set PulseAudio as default if PULSE_SERVER isn't set · 0c308afb
      Simon McVittie authored
      Since !269, on systems where PulseAudio is available, we set PULSE_SERVER
      to a suitable non-empty value, and "lock" it into the environment to
      avoid it getting overridden by pressure-vessel-launch (in use-cases
      where we're using that). We also create an /etc/asound.conf in the
      container's namespace that will make PulseAudio the default for
      applications that use the ALSA user-space library libasound.so.2, such
      as Shadowrun Returns.
      
      Conversely, on systems where PulseAudio is *not* available (for example
      where the system is using plain ALSA), we "lock" PULSE_SERVER to a null
      value so that we will actively remove it from the environment if set.
      However, this caused a regression: we created /etc/asound.conf based
      on whether PULSE_SERVER was "locked", which effectively meant this was
      done unconditionally. An /etc/asound.conf that configures PulseAudio
      to be the default is not going to work on non-PulseAudio systems.
      
      Instead of checking whether PULSE_SERVER is "locked", check whether it's
      null. This has the desired effect: we configure PulseAudio to be the
      default if and only if we detected that it's available.
      
      Helps: https://github.com/ValveSoftware/steam-runtime/issues/344
      Helps: https://github.com/ValveSoftware/steam-runtime/issues/384
      
      
      Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
      0c308afb
    • Ludovico de Nittis's avatar
      runtime: Search for libdrm_amdgpu.so.1 in addition to libdrm.so.2 · c526c210
      Ludovico de Nittis authored
      
      libdrm.so.2 is not included in the freedesktop.org GL Platform runtime
      and this leads us to search for the libdrm directory in the wrong place.
      
      For this reason we first look at libdrm_amdgpu.so.1 and use libdrm.so.2
      as a fallback.
      
      Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
      c526c210
Loading