unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#49847: OpenGL applications may fail to run on foreign distributions
@ 2021-08-03 17:33 Maxim Cournoyer
  2021-08-03 21:13 ` Thiago Jung Bauermann via Bug reports for GNU Guix
  2021-08-04 21:30 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2021-08-03 17:33 UTC (permalink / raw)
  To: 49847

Hello Guix,

I recently discovered that on systems that used another implementation
of OpenGL than those provided by Mesa (such as systems using the
proprietary nvidia or AMD drivers), the OpenGL application would crash,
sometimes even requiring a reboot of the host system to recover!

While the issue could be dismissed due to the use of proprietary drivers
on these systems, I think in theory there might be issues also when mix
and matching Guix's Mesa libGL along the foreign distro kernel (which
may run Mesa but from a much older/or recent version).

I also think that it is quite surprising that graphical applications
distributed with Guix packs fail to be 'universal' in the way we've come
to know them for CLI applications.

It appears this issue may have a solution in enabling libglvnd [0]
support in our Mesa so that the GPU hardware vendor provided libGL.so
could be loaded from the system instead.

Thanks,

Maxim

[0]  https://github.com/NVIDIA/libglvnd/




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#49847: OpenGL applications may fail to run on foreign distributions
  2021-08-03 17:33 bug#49847: OpenGL applications may fail to run on foreign distributions Maxim Cournoyer
@ 2021-08-03 21:13 ` Thiago Jung Bauermann via Bug reports for GNU Guix
  2023-08-08  3:57   ` Maxim Cournoyer
  2021-08-04 21:30 ` Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Thiago Jung Bauermann via Bug reports for GNU Guix @ 2021-08-03 21:13 UTC (permalink / raw)
  To: 49847; +Cc: Maxim Cournoyer

Hi,

Em terça-feira, 3 de agosto de 2021, às 14:33:06 -03, Maxim Cournoyer 
escreveu:
> It appears this issue may have a solution in enabling libglvnd [0]
> support in our Mesa so that the GPU hardware vendor provided libGL.so
> could be loaded from the system instead.

As some additional information, the first version of the patch to update 
Mesa provided in issue 49339 enabled libglvnd, and there’s some discussion 
about it in the ensuing messages.

The Mesa updat patch that was committed doesn’t enable libglvnd, and it was 
decided to address that change separately.

-- 
Thanks,
Thiago






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#49847: OpenGL applications may fail to run on foreign distributions
  2021-08-03 17:33 bug#49847: OpenGL applications may fail to run on foreign distributions Maxim Cournoyer
  2021-08-03 21:13 ` Thiago Jung Bauermann via Bug reports for GNU Guix
@ 2021-08-04 21:30 ` Ludovic Courtès
  2021-08-05  2:21   ` Maxim Cournoyer
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2021-08-04 21:30 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 49847

Hi,

Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:

> I recently discovered that on systems that used another implementation
> of OpenGL than those provided by Mesa (such as systems using the
> proprietary nvidia or AMD drivers), the OpenGL application would crash,
> sometimes even requiring a reboot of the host system to recover!

Ouch.  Isn’t it similar to the problem with libc’s Name Service Switch
(info "(guix) Application Setup"):

     If the nscd is not running, then [applications] perform the name
  lookup by themselves, by loading the name lookup services into their
  own address space and running it.  These name lookup services—the
  ‘libnss_*.so’ files—are ‘dlopen’’d, but they may come from the host
  system’s C library, rather than from the C library the application is
  linked against (the C library coming from Guix).

     And this is where the problem is: if your application is linked
  against Guix’s C library (say, glibc 2.24) and tries to load NSS plugins
  from another C library (say, ‘libnss_mdns.so’ for glibc 2.22), it will
  likely crash or have its name lookups fail unexpectedly.

That is, Mesa can dlopen “drivers” (shared libs), and if these drivers
come from a foreign distro, the application is likely to crash sooner or
later.

If that’s what happens, we’d have to arrange so that our Mesa doesn’t
dlopen non-Guix shared libs.

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#49847: OpenGL applications may fail to run on foreign distributions
  2021-08-04 21:30 ` Ludovic Courtès
@ 2021-08-05  2:21   ` Maxim Cournoyer
  0 siblings, 0 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2021-08-05  2:21 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 49847

Hi Ludovic,

Ludovic Courtès <ludo@gnu.org> writes:

> Hi,
>
> Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:
>
>> I recently discovered that on systems that used another implementation
>> of OpenGL than those provided by Mesa (such as systems using the
>> proprietary nvidia or AMD drivers), the OpenGL application would crash,
>> sometimes even requiring a reboot of the host system to recover!
>
> Ouch.  Isn’t it similar to the problem with libc’s Name Service Switch
> (info "(guix) Application Setup"):
>
>      If the nscd is not running, then [applications] perform the name
>   lookup by themselves, by loading the name lookup services into their
>   own address space and running it.  These name lookup services—the
>   ‘libnss_*.so’ files—are ‘dlopen’’d, but they may come from the host
>   system’s C library, rather than from the C library the application is
>   linked against (the C library coming from Guix).
>
>      And this is where the problem is: if your application is linked
>   against Guix’s C library (say, glibc 2.24) and tries to load NSS plugins
>   from another C library (say, ‘libnss_mdns.so’ for glibc 2.22), it will
>   likely crash or have its name lookups fail unexpectedly.
>
> That is, Mesa can dlopen “drivers” (shared libs), and if these drivers
> come from a foreign distro, the application is likely to crash sooner or
> later.

I'm no expert on the matter (yet :-)) , but I think it's more like the
other way around; the Guix applications are hard-coded to use Mesa's
libGL.so, which has its own expectations of what DRM drivers should be
available from the host system's kernel, or features they provides.
When someone uses another OpenGL implementation than Mesa's own,
apparently all hell may break loose.

Maxim




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#49847: OpenGL applications may fail to run on foreign distributions
  2021-08-03 21:13 ` Thiago Jung Bauermann via Bug reports for GNU Guix
@ 2023-08-08  3:57   ` Maxim Cournoyer
  0 siblings, 0 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2023-08-08  3:57 UTC (permalink / raw)
  To: Thiago Jung Bauermann; +Cc: 49847-done

Hello,

With even nvidia going with free drivers (sadly not free firmware
blobs), I think we can put this issue to rest, at least for now.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-08-08  3:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-03 17:33 bug#49847: OpenGL applications may fail to run on foreign distributions Maxim Cournoyer
2021-08-03 21:13 ` Thiago Jung Bauermann via Bug reports for GNU Guix
2023-08-08  3:57   ` Maxim Cournoyer
2021-08-04 21:30 ` Ludovic Courtès
2021-08-05  2:21   ` Maxim Cournoyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).