使用Boost.Log和Boost.ASIO会导致崩溃 [英] Use of Boost.Log and Boost.ASIO causes a crash

查看:429
本文介绍了使用Boost.Log和Boost.ASIO会导致崩溃的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到一个问题,当应用程序加载使用Boost.ASIO的共享库时,在应用程序中使用Boost.Log会导致崩溃或挂起!任何见解将不胜感激;下面是一个完整的cmake可构建示例。

I am running into an issue where the use of Boost.Log in an app causes a crash or a hang when the app loads a shared library that uses Boost.ASIO! Any insights would be appreciated; a full cmake-buildable example is below.

如果未注释main.cpp中的全局记录器对象的声明,则程序将立即进行seg-fault或resolve()调用将不执行任何操作。如果没有注释,则该程序可以正常工作。

If the declaration of the global logger object in main.cpp is uncommented the program will either seg-fault immediately or the resolve() call will do nothing. If left commented out then the program works.

我正在使用Boost 1.55,g ++(Ubuntu 4.8.4-2ubuntu1〜14.04.3)4.8.4

I'm using Boost 1.55, g++ (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4

CMakeLists.txt

CMakeLists.txt

cmake_minimum_required (VERSION 2.8)
project (boosttest)
add_definitions(-fPIC -pthread -std=c++11)
find_package(Boost 1.55.0 REQUIRED)
add_definitions( -DBOOST_LOG_DYN_LINK )
include_directories(${Boost_INCLUDE_DIRS})

# Build the shared lib.
add_library(testlib SHARED
    Lib
)

target_link_libraries(testlib
    pthread
)

# Build the test app.
add_executable(testapp
    main
)

target_link_libraries(testapp
    dl
    pthread
    boost_system
    boost_log
)

Main.cpp

#include <iostream>
#include <memory>
#include <dlfcn.h>
#include <boost/log/core.hpp>
#include <boost/log/sources/channel_logger.hpp>

#include "Lib.h"

using LoggerType = boost::log::sources::channel_logger_mt<>;
//LoggerType gLogger; // If this is uncommented then probably a crash.


std::unique_ptr<Lib> LoadLib(const std::string& libName) {
    typedef Lib* (*LibConstructor)();

    union FunctionLookup {
        LibConstructor entry;
        void* voidPtr;
    };

    void* handle = ::dlopen(libName.c_str(), RTLD_LAZY);
    if (!handle) {
        throw std::runtime_error(::dlerror());
    }

    FunctionLookup lookup;

    lookup.voidPtr = ::dlsym(handle, "create");
    if (!lookup.voidPtr) {
        throw std::runtime_error(::dlerror());
    }

    return std::unique_ptr<Lib>(lookup.entry());
}


int main(int argc, char* argv[]) {
    try {
        std::unique_ptr<Lib> lib = LoadLib("./libtestlib.so");
        std::cout << "successfully loaded lib\n";
        lib->resolve("www.google.com");
    }
    catch (const std::exception& e) {
        std::cerr << "*** " << e.what() << "\n";
    }

   std::cout << "Exiting" << std::endl;
   return 0;
}

Lib.h

#pragma once
#include <boost/asio.hpp>

using boost::asio::ip::tcp;

class Lib
{
public:
    Lib();
    virtual ~Lib() {}
    virtual void resolve(const std::string& host);

private:
    void onResolve(const boost::system::error_code&, tcp::resolver::iterator);

    boost::asio::io_service m_ioService;
    tcp::resolver m_resolver;
};

Lib.cpp

#include <functional>
#include "Lib.h"

extern "C" Lib* create() { return new Lib(); }
extern "C" void destroy(Lib* lib) { delete lib; }

Lib::Lib()
:  m_resolver(m_ioService)
{
}

void Lib::resolve(const std::string& host) {
    tcp::resolver::query query(host, "http");
    auto next = std::bind(&Lib::onResolve, this, std::placeholders::_1, std::placeholders::_2);
    m_resolver.async_resolve(query, std::move(next));
    m_ioService.run(); // If it doesn't crash then this does nothing.
}


void Lib::onResolve(const boost::system::error_code& /*err*/, tcp::resolver::iterator /*iter*/)
{
    std::cout << "onResolve() called!\n";
}


推荐答案

所以我设法解决了这个问题(我认为)不是动态链接Boost.Log库。

So I managed to fix this (I think) by not dynamically linking the Boost.Log libs.

新的CMakeLists.txt

New CMakeLists.txt

cmake_minimum_required (VERSION 2.8)
project (boosttest)
add_definitions(-fPIC -pthread -std=c++11)
find_package(Boost 1.55.0 REQUIRED)
include_directories(${Boost_INCLUDE_DIRS})

# Build the shared lib.
add_library(testlib SHARED
    Lib
)

target_link_libraries(testlib
    pthread
)

# Build the test app.
add_executable(testapp
    main
)

target_link_libraries(testapp
    dl
    pthread
    boost_system
    boost_log.a
    boost_thread
)

这篇关于使用Boost.Log和Boost.ASIO会导致崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆