Bug 626852 - (gwibber:8548): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name'
Summary: (gwibber:8548): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: notify-python
Version: 14
Hardware: All
OS: Linux
low
medium
Target Milestone: ---
Assignee: John Dennis
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2010-08-24 14:59 UTC by Bill Nottingham
Modified: 2014-03-17 03:24 UTC (History)
8 users (show)

Fixed In Version: notify-python-0.1.1-15.fc14
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2010-09-17 18:22:42 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Bill Nottingham 2010-08-24 14:59:10 UTC
Description of problem:


<notting> mclasen: (gwibber:7830): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name' <- is this an intentional removal?
<mclasen> notting: I still see it here, in 2.x and in 3
<notting> oh cute
 libnotify isn't linked against gtk2
<mclasen> no
 it relies on the app linking against one version of gtk now
<notting> mclasen: so, if you're in python, you must import them in a certain order?
<mclasen> perhaps ?
 I don't know much about python, to put it mildly
<walters> notting: i think so, yes
<notting> walters: didn't help

As said, swapping the include order in gwibber/microblog/util/__init__.py:142
didn't help.

Version-Release number of selected component (if applicable):

libnotify-0.5.1-1.fc14.x86_64
gwibber-2.31.4-1.fc14.noarch

How reproducible:

100%

Steps to Reproduce:
1. Run gwibber from a text console

Comment 1 Tom "spot" Callaway 2010-08-24 15:15:43 UTC
Uhhh... maybe Dave Malcolm can shed some light here.

Comment 2 Dave Malcolm 2010-08-24 16:11:42 UTC
Off the top of my head, this sounds like a "gold" change:
  https://fedoraproject.org/wiki/GoldIncompatibilities

Comment 3 Bill Nottingham 2010-08-24 17:07:29 UTC
I'm confused. Both _pynotify.so, and pygtk2 are linked against gtk2.

Comment 4 Bill Nottingham 2010-08-24 17:07:52 UTC
(In reply to comment #2)
> Off the top of my head, this sounds like a "gold" change:
>   https://fedoraproject.org/wiki/GoldIncompatibilities

We're not using gold, unless I missed something.

Comment 5 Dave Malcolm 2010-08-30 19:12:21 UTC
Minimal reproducer (on an x64_64 rawhide box):

$ python -c "import pynotify; pynotify.init('foo')"

(-c:1940): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name'

$ rpm -qf /usr/lib64/python2.7/site-packages/gtk-2.0/pynotify/_pynotify.so
notify-python-0.1.1-14.fc15.x86_64

$ rpm -qf /usr/lib64/libnotify.so.1
libnotify-0.5.1-1.fc14.x86_64

$ eu-readelf -s /usr/lib64/libnotify.so.1|grep gdk_screen_make
   89: 0000000000000000      0 NOTYPE  GLOBAL DEFAULT    UNDEF gdk_screen_make_display_name

libnotify uses "gdk_screen_make_display_name" but isn't linked against anything providing it.


Importing pygtk first doesn't help:
$ python -c "import gtk ; import pynotify; pynotify.init('foo')"

(-c:1945): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name'

$ python -c "import gtk.gdk ; import pynotify; pynotify.init('foo')"

(-c:20551): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name'

$ rpm -q pygtk2 gtk2
pygtk2-2.17.0-7.fc15.x86_64
gtk2-2.21.6-1.fc15.x86_64

$ eu-readelf -d /usr/lib64/python2.7/site-packages/gtk-2.0/gtk/_gtk.so|grep NEEDED | grep gtk
  NEEDED            Shared library: [libgtk-x11-2.0.so.0]

$ eu-readelf -s /usr/lib64/libgtk-x11-2.0.so|grep gdk_screen_make
(no output)

$ eu-readelf -d /usr/lib64/libgtk-x11-2.0.so|grep gdk
  NEEDED            Shared library: [libgdk-x11-2.0.so.0]
  NEEDED            Shared library: [libgdk_pixbuf-2.0.so.0]

$ eu-readelf -s /usr/lib64/libgdk-x11-2.0.so|grep gdk_screen_make
 1215: 000000386ec6eb30    155 FUNC    GLOBAL DEFAULT       11 gdk_screen_make_display_name

so this is the DSO containing the implementation.

Comment 6 Dave Malcolm 2010-08-30 19:13:57 UTC
Given that libnotify is using gdk, why isn't it linked against gdk?  Is the idea to support being linked against different parallel-installable GTK stacks?

Comment 7 Dave Malcolm 2010-08-30 19:18:44 UTC
Trying to resolve this at the python level by importing things in a contrived order seems fragile at best, and doesn't seem to work:
>>> import gtk.gdk
>>> s = gtk.gdk.Screen()
>>> s.make_display_name()
'localhost:10.0'
>>> import pynotify; pynotify.init('foo')

(.:31451): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name'
False

Comment 8 Bill Nottingham 2010-08-30 19:38:29 UTC
I believe it's linked this way so that it can work in either gtk2 or gtk3 apps.

Comment 9 Dave Malcolm 2010-08-30 21:19:15 UTC
(In reply to comment #7)
> Trying to resolve this at the python level by importing things in a contrived
> order seems fragile at best, and doesn't seem to work:
> >>> import gtk.gdk
> >>> s = gtk.gdk.Screen()
> >>> s.make_display_name()
> 'localhost:10.0'
> >>> import pynotify; pynotify.init('foo')
> 
> (.:31451): libnotify-WARNING **: Missing symbol 'gdk_screen_make_display_name'
> False

Running under gdb and putting a breakpoint on "gdk_screen_make_display_name", it hits the breakpoint at the call to "s.make_display_name()".

I notice that when it does so, it's reported by gdb as being within
  IA__gdk_screen_make_display_name
rather than
  gdk_screen_make_display_name

as in:

#0  IA__gdk_screen_make_display_name (screen=0xa1ace0 [GdkScreenX11]) at gdkscreen-x11.c:1286

Comment 10 Jan Kratochvil 2010-08-30 21:24:18 UTC
libgdk-x11-2.0.so has ELF symbol gdk_screen_make_display_name but DWARF symbol (that is from debuginfo) IA__gdk_screen_make_display_name.  GDB prefers DWARFs symbols to print but resolves both.
Unaware how is it related to libnotify, though.

Comment 11 Dave Malcolm 2010-08-30 21:34:50 UTC
See sys.setdlopenflags: if you want extension modules to share symbols, 

setdlopenflags(...)
    setdlopenflags(n) -> None
    
    Set the flags used by the interpreter for dlopen calls, such as when the
    interpreter loads extension modules.  Among other things, this will enable
    a lazy resolving of symbols when importing a module, if called as
    sys.setdlopenflags(0).  To share symbols across extension modules, call as
    sys.setdlopenflags(ctypes.RTLD_GLOBAL).  Symbolic names for the flag modules
    can be either found in the ctypes module, or in the DLFCN module. If DLFCN
    is not available, it can be generated from /usr/include/dlfcn.h using the
    h2py script.

>>> import ctypes
>>> import sys
>>> sys.setdlopenflags(sys.getdlopenflags() | ctypes.RTLD_GLOBAL)
>>> import gtk
>>> import pynotify
>>> pynotify.init('foo')
True

Comment 12 Dave Malcolm 2010-08-30 21:39:18 UTC
>>> n = pynotify.Notification(summary='foo')
>>> n.show()
True

...and a notification appeared

Comment 13 Dave Malcolm 2010-08-30 21:42:24 UTC
It looks like if libnotify is going to be shipped in this half-linked state, then notify-python's pynotify.__init__.py needs to be patched to add:
   import ctypes
   import sys
   sys.setdlopenflags(sys.getdlopenflags() | ctypes.RTLD_GLOBAL)

before:
   from _pynotify import *

(probably with a detailed comment explaining why!)

Comment 14 Dave Malcolm 2010-08-30 21:47:38 UTC
(In reply to comment #13)
> It looks like if libnotify is going to be shipped in this half-linked state,
> then notify-python's pynotify.__init__.py needs to be patched to add:
>    import ctypes
>    import sys
>    sys.setdlopenflags(sys.getdlopenflags() | ctypes.RTLD_GLOBAL)

Need to add an:
     import gtk
here as well

> before:
>    from _pynotify import *
> 
> (probably with a detailed comment explaining why!)

Comment 15 Dave Malcolm 2010-08-30 21:53:05 UTC
As a test, I hacked up /usr/lib64/python2.7/site-packages/gtk-2.0/pynotify/__init__.py on my rawhide VM to read:

--- BEGIN QUOTE ---
import ctypes
import sys
sys.setdlopenflags(sys.getdlopenflags() | ctypes.RTLD_GLOBAL)
import gtk

from _pynotify import *
--- END QUOTE ---

With that content, it seems to work:
>>> import pynotify
>>> pynotify.init('foo')
True
>>> n = pynotify.Notification(summary='foo')
>>> n.show()
True
(notification appeared)

Comment 16 Fedora Update System 2010-09-09 20:37:38 UTC
gwibber-2.31.93-1.847bzr.fc13 has been submitted as an update for Fedora 13.
https://admin.fedoraproject.org/updates/gwibber-2.31.93-1.847bzr.fc13

Comment 17 Fedora Update System 2010-09-09 20:38:07 UTC
gwibber-2.31.93-1.847bzr.fc12 has been submitted as an update for Fedora 12.
https://admin.fedoraproject.org/updates/gwibber-2.31.93-1.847bzr.fc12

Comment 18 Fedora Update System 2010-09-09 20:38:36 UTC
notify-python-0.1.1-15.fc14,gwibber-2.31.93-1.847bzr.fc14 has been submitted as an update for Fedora 14.
https://admin.fedoraproject.org/updates/notify-python-0.1.1-15.fc14,gwibber-2.31.93-1.847bzr.fc14

Comment 19 Fedora Update System 2010-09-10 03:25:31 UTC
gwibber-2.31.93-1.847bzr.fc12 has been pushed to the Fedora 12 testing repository.  If problems still persist, please make note of it in this bug report.
 If you want to test the update, you can install it with 
 su -c 'yum --enablerepo=updates-testing update gwibber'.  You can provide feedback for this update here: https://admin.fedoraproject.org/updates/gwibber-2.31.93-1.847bzr.fc12

Comment 20 Fedora Update System 2010-09-17 18:22:12 UTC
gwibber-2.31.93-1.847bzr.fc12 has been pushed to the Fedora 12 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 21 Fedora Update System 2010-09-17 18:27:24 UTC
gwibber-2.31.93-1.847bzr.fc13 has been pushed to the Fedora 13 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 22 Fedora Update System 2010-09-23 12:48:20 UTC
notify-python-0.1.1-15.fc14, gwibber-2.31.93-1.847bzr.fc14 has been pushed to the Fedora 14 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 23 El_Hoy 2011-05-19 17:37:58 UTC
I'm having a similar problembut with the libnotify gem (ruby). It uses other gem called ffi to use libnotify.so.1 and it seems that dont work on fedora. it give the same error.
https://github.com/splattael/libnotify/issues/4


Note You need to log in before you can comment on or make changes to this bug.