Commit Graph

16 Commits

Author SHA1 Message Date
Félix Baylac Jacqué bb2abba8ee Add a flag to print the nix-gl-host LD_LIBRARY_PATH
In some situations, such as environment setup scripts, we'd like to
print the nix-gl-host LD_LIBRARY_PATH instead of running a binary.
2022-12-06 17:45:52 +01:00
Ivor Wanders 95456b5ed1 Make the copied library writable.
We need to make sure the library is writable before trying to patchelf
it.
2022-12-06 10:54:21 +01:00
Félix Baylac Jacqué 29f82cbd52 Update doc 2022-12-05 15:38:58 +01:00
Félix Baylac Jacqué 8e93fe5dea DSO search: Add escape hatch
We add a -d/--driver-directory flag allowing the user to circomvent
the DSO automatic lookup and instead force nix-gl-host to load its
dynamic libraries from a specific directory.
2022-12-05 15:34:29 +01:00
Félix Baylac Jacqué d020c8f4fe Exec: search for executables in the PATH
Using execvp instead of execv. It'll look for the binary in PATH if
the bin_path provided is not an explicit path.
2022-12-05 15:30:43 +01:00
Félix Baylac Jacqué 375148c949 Introduce a cache system
Copying & patching all the DSOs is a time consuming process (~10s on a
slow hard drive computer). We definitely don't want to go through it
for each process start, we need to introduce a cache.

For this cache, we go the concervative way. We're going to "resolve" a
DSO name (ie. find the DSO absolute path) and sha256-hash each DSO.
We're then going to compare the fingerprints to determine whether or
not we need to nuke and rebuild the DSO cache.

The cache state is persisted through a JSON file saved in the cache dir.
2022-12-05 13:33:01 +01:00
Félix Baylac Jacqué 494bac3613 Types: add return types to function
Removing two unused functions at the same time.
2022-12-04 09:21:02 +01:00
Félix Baylac Jacqué 4d4b5e2dad GLX support via LD_LIBRARY_PATH 2022-12-04 09:21:02 +01:00
Félix Baylac Jacqué 314da66ae5 Introduce Cuda support 2022-12-04 09:16:40 +01:00
Félix Baylac Jacqué 8100ad24d6 DSO scanning: separately scan the cuda drivers
We create a new function in charge of finding the CUDA DSOs. We also
modify the find_nvidia_dsos function and remove the cuda-related
libraries from its output.

We take advantage of this new feature to factor out the file searching
logic in its own function.
2022-12-04 09:12:43 +01:00
Félix Baylac Jacqué 6fb5f29175 EGL support for the Nvidia proprietary driver
Good news: we did not have to patch libglvnd for the EGL support. All
the low-level machinery was already here (but sadly undocumented).

Bad news: properly supporting the EGL stack turned out being more
involving than its GLX counterpart on the wrapper side. Not only you
need the main EGL lib in charge of implementing the
primitives (libEGL_nvidia.so), but also two other libraries
implementing the wayland and gbm bindings.

These DSOs in turn depend on some non-glibc but open source shared
libraries. I decided to use the ones coming from the host system
rather than the ones provided by Nixpkgs: it's best to assume that the
host system did its homework to determine which version of these
libraries the Nvidia driver is expecting to work with.
2022-11-29 17:55:39 +01:00
Félix Baylac-Jacqué 39d40f4922
Readme: status update 2022-11-24 17:12:22 +01:00
Félix Baylac-Jacqué 7e49ce6fbd
Nix: add patched libglvnd overlay 2022-11-24 17:03:46 +01:00
Félix Baylac-Jacqué 0ccc67bbb4
nix-gl-host: first relatively naive implementation
First take.

For now, we're only try to support the Nvidia proprietary driver. We
also cut quite some corners :)

We hardcode a list of DSOs we're looking for in the code. That's
obviously the best long-term decision, we'll have to revise this
particular approach later on.

We're looking for these listed DSOs in the GL_VENDOR_PATH provided by
the user. We'll need to patch these DSOs and we obviously don't want
to alter the host OS configuration. So we have to first copy them to
the user XDG cache directory.

Once copied, we alter their runpath to point to the user cache dir:
these DSO can depend on each other.

Finally, we point the patched libglvnd GLX implementation to the cache
dir and replace the current process with the target one.
2022-11-24 17:03:46 +01:00
Félix Baylac Jacqué 834d7d56c9
Add Nix build infrastructure 2022-11-24 17:03:42 +01:00
Félix Baylac Jacqué 91d1d09d89 Init: add short readme describing the project's goal 2022-11-22 10:28:40 +01:00