library_info.hpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. // Copyright 2014 Renato Tegon Forti, Antony Polukhin.
  2. // Copyright 2015 Antony Polukhin.
  3. //
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt
  6. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. #ifndef BOOST_DLL_LIBRARY_INFO_HPP
  8. #define BOOST_DLL_LIBRARY_INFO_HPP
  9. #include <boost/config.hpp>
  10. #include <boost/mpl/max_element.hpp>
  11. #include <boost/mpl/vector_c.hpp>
  12. #include <boost/aligned_storage.hpp>
  13. #include <boost/noncopyable.hpp>
  14. #include <boost/predef/os.h>
  15. #include <boost/predef/architecture.h>
  16. #include <boost/type_traits/integral_constant.hpp>
  17. #include <boost/dll/detail/pe_info.hpp>
  18. #include <boost/dll/detail/elf_info.hpp>
  19. #include <boost/dll/detail/macho_info.hpp>
  20. #ifdef BOOST_HAS_PRAGMA_ONCE
  21. # pragma once
  22. #endif
  23. /// \file boost/dll/library_info.hpp
  24. /// \brief Contains only the boost::dll::library_info class that is capable of
  25. /// extracting different information from binaries.
  26. namespace boost { namespace dll {
  27. /*!
  28. * \brief Class that is capable of extracting different information from a library or binary file.
  29. * Currently understands ELF, MACH-O and PE formats on all the platforms.
  30. */
  31. class library_info: private boost::noncopyable {
  32. private:
  33. boost::filesystem::ifstream f_;
  34. boost::aligned_storage< // making my own std::aligned_union from scratch. TODO: move to TypeTraits
  35. boost::mpl::deref<
  36. boost::mpl::max_element<
  37. boost::mpl::vector_c<std::size_t,
  38. sizeof(boost::dll::detail::elf_info32),
  39. sizeof(boost::dll::detail::elf_info64),
  40. sizeof(boost::dll::detail::pe_info32),
  41. sizeof(boost::dll::detail::pe_info64),
  42. sizeof(boost::dll::detail::macho_info32),
  43. sizeof(boost::dll::detail::macho_info64)
  44. >
  45. >::type
  46. >::type::value
  47. >::type impl_;
  48. /// @cond
  49. boost::dll::detail::x_info_interface& impl() BOOST_NOEXCEPT {
  50. return *reinterpret_cast<boost::dll::detail::x_info_interface*>(impl_.address());
  51. }
  52. inline static void throw_if_in_32bit_impl(boost::true_type /* is_32bit_platform */) {
  53. boost::throw_exception(std::runtime_error("Not native format: 64bit binary"));
  54. }
  55. inline static void throw_if_in_32bit_impl(boost::false_type /* is_32bit_platform */) BOOST_NOEXCEPT {}
  56. inline static void throw_if_in_32bit() {
  57. throw_if_in_32bit_impl( boost::integral_constant<bool, (sizeof(void*) == 4)>() );
  58. }
  59. static void throw_if_in_windows() {
  60. #if BOOST_OS_WINDOWS
  61. boost::throw_exception(std::runtime_error("Not native format: not a PE binary"));
  62. #endif
  63. }
  64. static void throw_if_in_linux() {
  65. #if !BOOST_OS_WINDOWS && !BOOST_OS_MACOS && !BOOST_OS_IOS
  66. boost::throw_exception(std::runtime_error("Not native format: not an ELF binary"));
  67. #endif
  68. }
  69. static void throw_if_in_macos() {
  70. #if BOOST_OS_MACOS || BOOST_OS_IOS
  71. boost::throw_exception(std::runtime_error("Not native format: not an Mach-O binary"));
  72. #endif
  73. }
  74. void init(bool throw_if_not_native) {
  75. if (boost::dll::detail::elf_info32::parsing_supported(f_)) {
  76. if (throw_if_not_native) { throw_if_in_windows(); throw_if_in_macos(); }
  77. new (impl_.address()) boost::dll::detail::elf_info32(f_);
  78. } else if (boost::dll::detail::elf_info64::parsing_supported(f_)) {
  79. if (throw_if_not_native) { throw_if_in_windows(); throw_if_in_macos(); throw_if_in_32bit(); }
  80. new (impl_.address()) boost::dll::detail::elf_info64(f_);
  81. } else if (boost::dll::detail::pe_info32::parsing_supported(f_)) {
  82. if (throw_if_not_native) { throw_if_in_linux(); throw_if_in_macos(); }
  83. new (impl_.address()) boost::dll::detail::pe_info32(f_);
  84. } else if (boost::dll::detail::pe_info64::parsing_supported(f_)) {
  85. if (throw_if_not_native) { throw_if_in_linux(); throw_if_in_macos(); throw_if_in_32bit(); }
  86. new (impl_.address()) boost::dll::detail::pe_info64(f_);
  87. } else if (boost::dll::detail::macho_info32::parsing_supported(f_)) {
  88. if (throw_if_not_native) { throw_if_in_linux(); throw_if_in_windows(); }
  89. new (impl_.address()) boost::dll::detail::macho_info32(f_);
  90. } else if (boost::dll::detail::macho_info64::parsing_supported(f_)) {
  91. if (throw_if_not_native) { throw_if_in_linux(); throw_if_in_windows(); throw_if_in_32bit(); }
  92. new (impl_.address()) boost::dll::detail::macho_info64(f_);
  93. } else {
  94. boost::throw_exception(std::runtime_error("Unsupported binary format"));
  95. }
  96. }
  97. /// @endcond
  98. public:
  99. /*!
  100. * Opens file with specified path and prepares for information extraction.
  101. * \param library_path Path to the binary file from which the info must be extracted.
  102. * \param throw_if_not_native_format Throw an exception if this file format is not
  103. * supported by OS.
  104. */
  105. explicit library_info(const boost::filesystem::path& library_path, bool throw_if_not_native_format = true)
  106. : f_(library_path, std::ios_base::in | std::ios_base::binary)
  107. , impl_()
  108. {
  109. f_.exceptions(
  110. boost::filesystem::ifstream::failbit
  111. | boost::filesystem::ifstream::badbit
  112. | boost::filesystem::ifstream::eofbit
  113. );
  114. init(throw_if_not_native_format);
  115. }
  116. /*!
  117. * \return List of sections that exist in binary file.
  118. */
  119. std::vector<std::string> sections() {
  120. return impl().sections();
  121. }
  122. /*!
  123. * \return List of all the exportable symbols from all the sections that exist in binary file.
  124. */
  125. std::vector<std::string> symbols() {
  126. return impl().symbols();
  127. }
  128. /*!
  129. * \param section_name Name of the section from which symbol names must be returned.
  130. * \return List of symbols from the specified section.
  131. */
  132. std::vector<std::string> symbols(const char* section_name) {
  133. return impl().symbols(section_name);
  134. }
  135. //! \overload std::vector<std::string> symbols(const char* section_name)
  136. std::vector<std::string> symbols(const std::string& section_name) {
  137. return impl().symbols(section_name.c_str());
  138. }
  139. /*!
  140. * \throw Nothing.
  141. */
  142. ~library_info() BOOST_NOEXCEPT {
  143. typedef boost::dll::detail::x_info_interface T;
  144. impl().~T();
  145. }
  146. };
  147. }} // namespace boost::dll
  148. #endif // BOOST_DLL_LIBRARY_INFO_HPP