-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Application can crash if linked against both libppd and libcups #52
Comments
You have that backwards - libppd implements libcups functions. |
What if we mark all duplicated symbols as weak at the If it breaks something, it will (at the first glance) break only apps that really and intentionally use mix of the overlapping APIs from the both libraries, which is incorrect and extremely dangerous by itself. It is not a perfect solution, but it least it will make things deterministic and result will not depend on a link order. |
Again, libcups.so.2 (CUPS 2.x libcups) always has the PPD functions in it. Any notion of doing weak linkage (not supported on all CUPS platforms) is incorrect since libcups is the original library. Either libppd should rename its functions or it should not include them when building on a system with CUPS 2.x since libcups will provide them. |
I don't see any equivalent of the |
@alexpevzner It is called |
@alexpevzner Note that libppd is putting together the PPD-related API functions of libcups, the functions needed for the PPD compiler ( |
@tillkamppeter One thing you could do here is change the main header to have a block of defines that rename the functions to names that don't conflict with libcups, e.g.: #define ppdClose libppdClose
#define ppdCollect libppdCollect
#define ppdCollect2 libppdCollect2
#define ppdConflicts libppdConflicts
#define ppdEmit libppdEmit
#define ppdEmitAfterOrder libppdEmitAfterOrder
#define ppdEmitFd libppdEmitFd
#define ppdEmitJCL libppdEmitJCL
#define ppdEmitJCLEnd libppdEmitJCLEnd
#define ppdEmitString libppdEmitString
#define ppdErrorString libppdErrorString
#define ppdFindAttr libppdFindAttr
#define ppdFindChoice libppdFindChoice
#define ppdFindCustomOption libppdFindCustomOption
#define ppdFindCustomParam libppdFindCustomParam
#define ppdFindMarkedChoice libppdFindMarkedChoice
#define ppdFindNextAttr libppdFindNextAttr
#define ppdFindOption libppdFindOption
#define ppdFirstCustomParam libppdFirstCustomParam
#define ppdFirstOption libppdFirstOption
#define ppdInstallableConflict libppdInstallableConflict
#define ppdIsMarked libppdIsMarked
#define ppdLastError libppdLastError
#define ppdLocalize libppdLocalize
#define ppdLocalizeAttr libppdLocalizeAttr
#define ppdLocalizeIPPReason libppdLocalizeIPPReason
#define ppdLocalizeMarkerName libppdLocalizeMarkerName
#define ppdMarkDefaults libppdMarkDefaults
#define ppdMarkOption libppdMarkOption
#define ppdNextCustomParam libppdNextCustomParam
#define ppdNextOption libppdNextOption
#define ppdOpen libppdOpen
#define ppdOpen2 libppdOpen2
#define ppdOpenFd libppdOpenFd
#define ppdOpenFile libppdOpenFile
#define ppdPageLength libppdPageLength
#define ppdPageSize libppdPageSize
#define ppdPageSizeLimits libppdPageSizeLimits
#define ppdPageWidth libppdPageWidth
#define ppdSetConformance libppdSetConformance |
CUPS, on its sources, implements (duplicates implementation) of some, but not all, libppd functions, and exports them from the libcups.so library.
For example, the
ppdOpenFd
andppdClose
functions are exported from thelibcups.so
, whileppdLoadAttributes
is not.If the application is linked against both
libcups.so
andlibppd.so
libraries, the following scenario is possible:ppdOpenFd
from thelibcups.so
ppdLoadAttributes
, and this call is now goes into thelibppd.so
library. This function modifies theppd_file_t
structure, but the definition of this type is not exactly the same between these two libraries (the actual difference seems to be in theppd_cache_t
in thelibppd
vs_ppd_cache_s
in thelibcups.so
)ppdClose
and this call goes to thelibcups.so
and crashes there in attempt to destroy the_ppd_cache_s
structure, which was actually created in thelibppd.so
The exact behaviour depends on a link order; if libppd is linked first, everything is OK, while if libcups is linked first, application crashed.
I've caught this issue at Fedora 40 with cups-2.4.11-1.fc40.x86_64 and libppd-2.1~b1-2.fc40.x86_64 packages installed, but most likely it may affect other distros and other version.
It is hard to say what could be a perfect solution for this problem, because libcups header files announces exporting many ppdXXX functions, so this is a part of the libcups public API. And without linking of the
libcups.so
thelibppd.so
functions that useipp_t
andipp_attribute_t
become unusable, because these types are opaque and accessible only vialibcups.so
-exported API...The text was updated successfully, but these errors were encountered: