Bug 2176510 - createrepo_c: symbol lookup error: /lib64/libcreaterepo_c.so.0: undefined symbol: g_string_free_and_steal
Summary: createrepo_c: symbol lookup error: /lib64/libcreaterepo_c.so.0: undefined sym...
Keywords:
Status: CLOSED EOL
Alias: None
Product: Fedora
Classification: Fedora
Component: createrepo_c
Version: 39
Hardware: Unspecified
OS: Linux
unspecified
medium
Target Milestone: ---
Assignee: rpm-software-management
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2023-03-08 14:30 UTC by Ondrej Mosnáček
Modified: 2024-11-27 21:08 UTC (History)
8 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2024-11-27 21:08:25 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Ondrej Mosnáček 2023-03-08 14:30:14 UTC
Description of problem:
Running createrepo_c on Fedora Rawhide fails with $SUMMARY.

Version-Release number of selected component (if applicable):
createrepo_c-0.20.1-4.fc39.x86_64
glib2-2.74.1-3.fc38.x86_64

How reproducible:
Always.

Steps to Reproduce:
1. createrepo_c --help

Actual results:
createrepo_c: symbol lookup error: /lib64/libcreaterepo_c.so.0: undefined symbol: g_string_free_and_steal

Expected results:
No error.

Additional info:
Updating glib to 2.75.4-2.fc39 fixes the issue, but the createrepo_c-0.20.1-4.fc39 RPM doesn't require that version. I suspect the problem may actually be in glib2, as it probably shouldn't add a new symbol without either bumping soname or using symbol versioning.

Comment 1 Petr Pisar 2023-03-13 14:08:12 UTC
The missing symbol is used by libcreaterepo_c.so.0 library from createrepo_c-libs-0.20.1-4.fc39.x86_64:

# nm -D /usr/lib64/libcreaterepo_c.so.0 | grep g_string_free_and_steal
                 U g_string_free_and_steal

and the symbol is provides by libglib-2.0.so.0 library from glib2-2.76.0-1.fc39.x86_64:

# nm -D /usr/lib64/libglib-2.0.so.0 | grep g_string_free_and_steal
000000000007fa70 T g_string_free_and_steal

createrepo_c-libs package should constrain a minimal glib2 version to the one which first provided it.

Comment 2 Petr Pisar 2023-03-13 15:24:24 UTC
From glib-2.75.3 NEWS:

* Add `g_string_free_and_steal()` and use it to warn on unused results from
  `g_string_free (_, FALSE)` (!3219, !3226, work by Matthias Clasen and Sergey Bugaev)

from glib/gstring.h:

#define g_string_free(str, free_segment)        \
  (__builtin_constant_p (free_segment) ?        \
    ((free_segment) ?                           \
      (g_string_free) ((str), (free_segment)) : \
      g_string_free_and_steal (str))            \
    :                                           \
    (g_string_free) ((str), (free_segment)))

The best fix would be glib2 to symbol-version new symbols so that rpm-build automatically picks the dependency. However, because glib2 does not use symbol versioning, I recommend fix it on createrepo_c by adding "Requires: glib2 >= 2.75.3" (if compiled against glib2 > 2.75.3).

Comment 3 Fedora Release Engineering 2023-08-16 08:08:52 UTC
This bug appears to have been reported against 'rawhide' during the Fedora Linux 39 development cycle.
Changing version to 39.

Comment 4 Aoife Moloney 2024-11-08 10:49:13 UTC
This message is a reminder that Fedora Linux 39 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 39 on 2024-11-26.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '39'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, change the 'version' 
to a later Fedora Linux version. Note that the version field may be hidden.
Click the "Show advanced fields" button if you do not see it.

Thank you for reporting this issue and we are sorry that we were not 
able to fix it before Fedora Linux 39 is end of life. If you would still like 
to see this bug fixed and are able to reproduce it against a later version 
of Fedora Linux, you are encouraged to change the 'version' to a later version
prior to this bug being closed.

Comment 5 Aoife Moloney 2024-11-27 21:08:25 UTC
Fedora Linux 39 entered end-of-life (EOL) status on 2024-11-26.

Fedora Linux 39 is no longer maintained, which means that it
will not receive any further security or bug fix updates. As a result we
are closing this bug.

If you can reproduce this bug against a currently maintained version of Fedora Linux
please feel free to reopen this bug against that version. Note that the version
field may be hidden. Click the "Show advanced fields" button if you do not see
the version field.

If you are unable to reopen this bug, please file a new report against an
active release.

Thank you for reporting this bug and we are sorry it could not be fixed.


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