Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 873520

Summary: <xfce-base/libxfce4ui-4.19: does not have wayland USE flag despite potentially using Wayland-only symbols from GTK
Product: Gentoo Linux Reporter: Kacper Słomiński <kacper.slominski72>
Component: Current packagesAssignee: XFCE Team <xfce>
Status: UNCONFIRMED ---    
Severity: normal CC: binhost, eschwartz93, freedesktop-bugs, gnome, kacper.slominski72, leio, mgorny, sam, Xeha
Priority: Normal    
Version: unspecified   
Hardware: AMD64   
OS: Linux   
See Also: https://bugs.gentoo.org/show_bug.cgi?id=624960
Whiteboard:
Package list:
Runtime testing required: ---

Description Kacper Słomiński 2022-09-29 20:35:17 UTC
libxfce4ui will potentially do Wayland-specific things if GDK_WINDOWING_WAYLAND is defined by Gdk, which happens if Gtk is built with the wayland USE flag. Despite this, it's missing a wayland USE flag of it's own (and the associated dependency on the wayland flag for Gtk). This means that the following sequence of events will produce a broken libxfce4ui (which will for example prevent launching Xfce):
1. Add wayland to your USE flags
2. Run "emerge --deep --verbose --newuse @world"
3. Install Xfce or any program that uses libxfce4ui
4. Remove wayland from your USE flags
5. Run "emerge --deep --verbose --newuse @world"

After that, libxfce4ui-2.so will still refer to the "gdk_wayland_display_get_type" symbol, which will no longer exists due to Gtk not having the wayland USE flag set anymore.
Comment 1 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2022-09-30 06:42:11 UTC
I don't see any configure option that would be relevant to this.  This is an upstream bug then, isn't it?
Comment 2 Kacper Słomiński 2022-09-30 07:04:53 UTC
There is no configure option, but it does check for the define that Gdk defines (GDK_WINDOWING_WAYLAND), which seems good enough to me in this case.
Comment 3 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2022-09-30 07:10:08 UTC
(In reply to Kacper Słomiński from comment #2)
> There is no configure option, but it does check for the define that Gdk
> defines (GDK_WINDOWING_WAYLAND), which seems good enough to me in this case.

I don't see how to use that to prevent the breakage if libxfce4ui[-wayland] is built against gtk+[wayland].
Comment 4 Kacper Słomiński 2022-09-30 07:14:52 UTC
(In reply to Michał Górny from comment #3)
> I don't see how to use that to prevent the breakage if libxfce4ui[-wayland]
> is built against gtk+[wayland].

Hmm, good point. I was thinking of having libfxce4ui depend on gtk+ having the same state of the wayland USE flag. Also probably worth noting, the Wayland detection is only there to disable some functionality that's broken under Wayland:

#ifdef GDK_WINDOWING_WAYLAND
  if (GDK_IS_WAYLAND_DISPLAY (gdk_display_get_default ()))
    {
      if (startup_notify == TRUE)
        {
          /* 'sn_display_new' crashes when used via wayland, so no startup notification support here */
          g_warning ("startup notification not supported for wayland sessions");
          startup_notify = FALSE;
        }
    }
#endif
Comment 5 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2022-09-30 07:39:07 UTC
Sounds like they're working around some bug in startup-notification then.  Any idea if this bug is still valid?  I suppose it kinda sucks to add a dep on conditional symbols over something like this.
Comment 6 Kacper Słomiński 2022-09-30 21:21:38 UTC
Not sure what do to about this. Looking at the source code for libsn, sn_display_new crashes because it unconditionally uses the given X11 display (and immediately goes to work querying atoms without checking if it's valid), so it's not easy to fix there probably, considering the whole lib looks pretty X11-specific.
Comment 7 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2022-09-30 21:30:42 UTC
Just for some further reading: there's all sorts of problems similar to this, unfortunately, see bug 624960 (although the XFCE issue here is actually something concrete instead of gcr etc)
Comment 8 Xeha 2024-02-24 21:04:20 UTC
This also affects the new official binpkgs. They have wayland symbols.
Comment 9 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-02-25 16:38:28 UTC
(In reply to Xeha from comment #8)
> This also affects the new official binpkgs. They have wayland symbols.

Which ones, specifically? The same one Kacper reported, or bug 624960 in general?
Comment 10 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2024-02-25 17:06:00 UTC
I suppose this no longer applies to 4.19+ that no longer does automagic Wayland symbols.

I suppose the easy way out would be to add IUSE='wayland X' and dep on gtk+[wayland=,X=], though it would be inconvenient for users.

The hard way would be to hack it to control the code depending on the flags, and then do gtk+[wayland?,X?].
Comment 11 Xeha 2024-02-25 18:31:56 UTC
(In reply to Sam James from comment #9)
> (In reply to Xeha from comment #8)
> > This also affects the new official binpkgs. They have wayland symbols.
> 
> Which ones, specifically? The same one Kacper reported, or bug 624960 in
> general?

The same as this one (by Kacper). Updated a node which had the new binpkgs enabled and it broke in the exact same way.
Comment 12 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-05-19 14:12:39 UTC
This continues to bit people - someone just hit it on IRC today, and we had https://forums.gentoo.org/viewtopic-t-1168976.html the other day too.
Comment 13 Eli Schwartz 2024-05-19 17:59:39 UTC
w.r.t. bug 624960 and bug 680496.

The current state of affairs is that packages such as libxfce4ui engage in the act of performing automagic dependencies (they automagically depend on gtk+[wayland], to be specific).

Result: packages are broken, and leaving packages broken is bad. There are two general possibilities for fixing it:

- adding new functionality to EAPI 9

- packages that automagically depend on gtk+[wayland] should have IUSE="wayland" and depend on gtk+[wayland=] to force rebuilds



The first option is a great long-term idea, but is not an appropriate solution for making systems correct *today*. It requires a multi-year process to design, agree on, and roll out new functionality across PMS and portage, and in the meantime users are stuck.

I propose implementing option 2 and migrating to option 1 as part of bumping individual packages to EAPI=9 (whenever that happens).
Comment 14 Mart Raudsepp gentoo-dev 2024-05-19 19:08:35 UTC
Do not forget that X is the very same case, so you would need [X=] as well in many cases then, and that's probably a fun experience to a user that wants to get rid of legacy X stuff gradually.
Comment 15 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-05-19 19:15:11 UTC
(In reply to Mart Raudsepp from comment #14)
> Do not forget that X is the very same case, so you would need [X=] as well
> in many cases then, and that's probably a fun experience to a user that
> wants to get rid of legacy X stuff gradually.

USE=X is in the base desktop profile (unlike USE=wayland), so it's not so bad.
Comment 16 Mart Raudsepp gentoo-dev 2024-05-19 19:19:31 UTC
But USE=X is the one that people will actually be disabling once we make it viable in terms of other matters. Though granted, not in the context of XFCE4, where also gtk+[X] is hard required in libxfce4ui per the code I looked at.

As for wayland, I would be happy to just package.use.force that one on gtk at this point.
Comment 17 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-05-19 19:25:31 UTC
(In reply to Mart Raudsepp from comment #16)
> But USE=X is the one that people will actually be disabling once we make it
> viable in terms of other matters. Though granted, not in the context of
> XFCE4, where also gtk+[X] is hard required in libxfce4ui per the code I
> looked at.

Fair point, yeah.

> 
> As for wayland, I would be happy to just package.use.force that one on gtk
> at this point.

This would WFM. Toggling it is of dubious value, right? Plus, we have precedent for p.use.force for ABI "breaks" like this.
Comment 18 Mart Raudsepp gentoo-dev 2024-05-19 19:27:15 UTC
I mostly fear for the outcry of those still stuck with X11 desktops, I suppose.