Skip to content
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

Runtime type_mismatch after upgrade to 1.69 #199

Closed
floli opened this issue Jan 25, 2019 · 12 comments
Closed

Runtime type_mismatch after upgrade to 1.69 #199

floli opened this issue Jan 25, 2019 · 12 comments
Assignees
Milestone

Comments

@floli
Copy link

floli commented Jan 25, 2019

Hello,

after my distribution (Arch) rolled out the upgrade to Boost 1.69 I am unable to compile my application anymore.

I try to get the log_level set. Minimal compiling example:

#define BOOST_TEST_DYN_LINK
#include <boost/test/unit_test.hpp>
#include <boost/test/unit_test_parameters.hpp>

bool init_unit_test()
{
  using namespace boost::unit_test;
  
  auto logLevel = runtime_config::get<log_level>(runtime_config::btrt_log_level);
  return true;
}

int main(int argc, char* argv[])
{
  int retCode = boost::unit_test::unit_test_main( &init_unit_test, argc, argv );
  return retCode;
}

which compiles fine with g++ -std=c++11 -lboost_unit_test_framework boosttesting.cpp or with clang++

but gives an runtime error (exact same for both compilers):

 % ./a.out 
Test setup error: boost::runtime::arg_type_mismatch: Access with invalid type for argument corresponding to parameter log_level
% g++ --version
g++ (GCC) 8.2.1 20181127

% clang++ --version
clang version 7.0.1 (tags/RELEASE_701/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin

Thanks!

@raffienficiaud
Copy link
Member

Hi,

Thanks for the report. Since the error is pretty weird, this might be due to the numerous issues that popped out when the visibility default have changed on the boost project. The symbol btrt_log_level might be seen differently inside the shared library and outside (in your test module).

I have fixed many of those, the fixes are in the develop branch.

  1. Can you reproduce the issue when you statically link to the library? (I hope this is part of the distribution)
  2. Would it be possible for you to give a try on that branch?

If this does not work for you, I'll open a branch for fixing this.

Thanks!

@floli
Copy link
Author

floli commented Feb 5, 2019

I would love to test and I think my distribution (Arch) also ships the static files (*.a). Could you give some advice on how to statically link?

I removed the #define, of course, but I am unsure about the compiler command line:

 g++ -std=c++11  boosttesting.cpp /usr/lib/libboost_test_exec_monitor.a -lboost_unit_test_framework       
boosttesting.cpp: In Funktion »int main(int, char**)«:
boosttesting.cpp:16:51: Fehler: ungültige Umwandlung von »bool (*)()« in »boost::unit_test::init_unit_test_func« {aka »boost::unit_test::test_suite* (*)(int, char**)«} [-fpermissive]
   int retCode = boost::unit_test::unit_test_main( &init_unit_test, argc, argv );
                                                   ^~~~~~~~~~~~~~~
In file included from boosttesting.cpp:2:
/usr/include/boost/test/unit_test.hpp:45:57: Anmerkung:   Argument 1 von »int boost::unit_test::unit_test_main(boost::unit_test::init_unit_test_func, int, char**)« wird initialisiert
 int BOOST_TEST_DECL unit_test_main( init_unit_test_func init_func, int argc, char* argv[] );
                                     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~

@Summerdave
Copy link

@floli
Your code will not work with system boost.test, as main is already compiled into libboost_unit_test_framework.a (See here). You would have to rebuild boost with -DBOOST_ALTERNATIVE_INIT_API (and also #define it in your code).
@raffienficiaud
I investigated the issue using

#define BOOST_TEST_MODULE example
#include <iostream>
#include <boost/test/unit_test.hpp>
#include <boost/test/unit_test_parameters.hpp>

BOOST_AUTO_TEST_CASE(failDyn)
{
    using namespace boost::unit_test;
    std::cout << runtime_config::get<log_level>( runtime_config::btrt_log_level ) << std::endl;
}

For static linking I used g++ $BOOST_ROOT/lib/libboost_unit_test_framework.a example.cpp, for dynamic linking I used g++ $BOOST_ROOT/lib/libboost_unit_test_framework.so -Wl,-rpath=$BOOST_ROOT/lib -DBOOST_TEST_DYN_LINK example.cpp.
Testing was done on the develop branch, commit aa2ffbf1. The statically linked variant worked just fine. The dynamically linked variant failed with:

fatal error: in "failDyn": boost::runtime::arg_type_mismatch: Access with invalid type for argument corresponding to parameter log_level

This is really odd.

@raffienficiaud
Copy link
Member

Thanks for the feedback!

May I ask you to try again by replacing

enum log_level {

with

enum BOOST_SYMBOL_VISIBLE log_level {

in the file $BOOST_ROOT/libs/test/include/boost/test/detail/log_level.hpp ?

The assertion is fired by a mismatch of the RTTI for the log_level symbol, my guess is that it is seen differently from within and outside the shared library.

@Summerdave
Copy link

I tried it but unfortunately the error persists.

@raffienficiaud
Copy link
Member

Thanks for the feedback. Would you please check the branch topic/GH-199-runtime-type_mismatch-after-upgrade ?

Thanks!

@Summerdave
Copy link

Works like a charm :).
Thank You!

@Summerdave
Copy link

Is there a workaround for code that uses Boost.Test <= 1.69 (It was broken since 1.64)?

@raffienficiaud
Copy link
Member

@Summerdave was it broken since 1.64? I believe the default to hidden symbols was for 1.67/1.68?

Anyway, several options, but none of them will be pleasant to hear :)

  1. if you are able to compile the library yourself, you may ask for default visibility by compiling with (see here):

    To disable that feature you can use use a command line ./b2 visibility=global to build.
    
  2. Applying this fix to boost.test?

  3. Otherwise linking to the static library until you get the fix might be a possibility,

  4. Using the header only variant might be another one?

  5. Having your own way of parsing the command line (will add some doc on how to do it for 1.70)?

None of those solution can use the symbol that you were consuming, it is just "hidden" inside the boundaries of the shared library. I am sorry about that.

@raffienficiaud raffienficiaud added next In "next" branch and removed fix-proposed labels Feb 8, 2019
raffienficiaud added a commit that referenced this issue Feb 8, 2019
…next-internal

* topic/GH-199-runtime-type_mismatch-after-upgrade:
  Change log
  Default visibility for enums and rtti objects facility
@floli
Copy link
Author

floli commented Feb 8, 2019

@Summerdave was it broken since 1.64? I believe the default to hidden symbols was for 1.67/1.68?

No, it worked fine before Boost 1.69 and will likely work on 1.70. We will find a workaround, thanks for your help @raffienficiaud

floli pushed a commit to precice/precice that referenced this issue Feb 8, 2019
There is a bug regarding the visibility in library symbols of Boost
Test 1.69, see boostorg/test#199

For that version we omit getting the version set at the test
executable command line and simpy assume debug.

See also #251

Closes #251
@Summerdave
Copy link

Summerdave commented Feb 8, 2019

@Summerdave was it broken since 1.64? I believe the default to hidden symbols was for 1.67/1.68?

You are right. I compiled Boost.Test with a (very) recent b2 when i checked out the old tag.

Anyway, thank you very much.

@floli
Copy link
Author

floli commented Feb 10, 2019

I think @Summerdave referred to a conditional compile we had in our project because names changed from 1.64 to 1.65. See precice/precice@41c8a58#diff-056d65e350602d6404f094b31127c8d9 where the workaround was removed, because we lifted our minimal version requirement to 1.65.

@raffienficiaud raffienficiaud added this to the 1.70 milestone Feb 10, 2019
@raffienficiaud raffienficiaud added develop and removed next In "next" branch labels Feb 14, 2019
JM1 added a commit to JM1/hbrs-mpl that referenced this issue Dec 16, 2020
JM1 added a commit to JM1/hbrs-mpl that referenced this issue Dec 16, 2020
JM1 added a commit to JM1/hbrs-mpl that referenced this issue Dec 16, 2020
JM1 added a commit to JM1/hbrs-mpl that referenced this issue Dec 16, 2020
JM1 added a commit to JM1/hbrs-mpl that referenced this issue Dec 16, 2020
JM1 added a commit to JM1/python-edamer that referenced this issue Jan 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants