Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 1 | #pragma once |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 2 | #include "dbus_singleton.hpp" |
| 3 | #include "logging.hpp" |
| 4 | |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 5 | #include <boost/asio/ip/address.hpp> |
| 6 | #include <boost/asio/ip/basic_endpoint.hpp> |
Carson Labrado | 7e8890c | 2022-11-23 23:58:01 +0000 | [diff] [blame] | 7 | #include <boost/asio/ip/tcp.hpp> |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 8 | #include <sdbusplus/message.hpp> |
| 9 | |
| 10 | #include <charconv> |
| 11 | #include <iostream> |
| 12 | #include <memory> |
| 13 | |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 14 | namespace async_resolve |
| 15 | { |
| 16 | |
Ed Tanous | e1452be | 2021-10-04 17:03:52 -0700 | [diff] [blame] | 17 | inline bool endpointFromResolveTuple(const std::vector<uint8_t>& ipAddress, |
| 18 | boost::asio::ip::tcp::endpoint& endpoint) |
| 19 | { |
| 20 | if (ipAddress.size() == 4) // ipv4 address |
| 21 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 22 | BMCWEB_LOG_DEBUG("ipv4 address"); |
Ed Tanous | e1452be | 2021-10-04 17:03:52 -0700 | [diff] [blame] | 23 | boost::asio::ip::address_v4 ipv4Addr( |
| 24 | {ipAddress[0], ipAddress[1], ipAddress[2], ipAddress[3]}); |
| 25 | endpoint.address(ipv4Addr); |
| 26 | } |
| 27 | else if (ipAddress.size() == 16) // ipv6 address |
| 28 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 29 | BMCWEB_LOG_DEBUG("ipv6 address"); |
Ed Tanous | e1452be | 2021-10-04 17:03:52 -0700 | [diff] [blame] | 30 | boost::asio::ip::address_v6 ipv6Addr( |
| 31 | {ipAddress[0], ipAddress[1], ipAddress[2], ipAddress[3], |
| 32 | ipAddress[4], ipAddress[5], ipAddress[6], ipAddress[7], |
| 33 | ipAddress[8], ipAddress[9], ipAddress[10], ipAddress[11], |
| 34 | ipAddress[12], ipAddress[13], ipAddress[14], ipAddress[15]}); |
| 35 | endpoint.address(ipv6Addr); |
| 36 | } |
| 37 | else |
| 38 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 39 | BMCWEB_LOG_ERROR("Resolve failed to fetch the IP address"); |
Ed Tanous | e1452be | 2021-10-04 17:03:52 -0700 | [diff] [blame] | 40 | return false; |
| 41 | } |
| 42 | return true; |
| 43 | } |
| 44 | |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 45 | class Resolver |
| 46 | { |
| 47 | public: |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 48 | // unused io param used to keep interface identical to |
| 49 | // boost::asio::tcp:::resolver |
| 50 | explicit Resolver(boost::asio::io_context& /*io*/) {} |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 51 | |
| 52 | ~Resolver() = default; |
| 53 | |
Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame] | 54 | Resolver(const Resolver&) = delete; |
| 55 | Resolver(Resolver&&) = delete; |
| 56 | Resolver& operator=(const Resolver&) = delete; |
| 57 | Resolver& operator=(Resolver&&) = delete; |
| 58 | |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 59 | using results_type = std::vector<boost::asio::ip::tcp::endpoint>; |
| 60 | |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 61 | template <typename ResolveHandler> |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 62 | // This function is kept using snake case so that it is interoperable with |
| 63 | // boost::asio::ip::tcp::resolver |
| 64 | // NOLINTNEXTLINE(readability-identifier-naming) |
Ed Tanous | a716aa7 | 2023-08-01 11:35:53 -0700 | [diff] [blame] | 65 | void async_resolve(std::string_view host, std::string_view port, |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 66 | ResolveHandler&& handler) |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 67 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 68 | BMCWEB_LOG_DEBUG("Trying to resolve: {}:{}", host, port); |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 69 | |
| 70 | uint16_t portNum = 0; |
| 71 | |
| 72 | auto it = std::from_chars(&*port.begin(), &*port.end(), portNum); |
| 73 | if (it.ec != std::errc()) |
| 74 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 75 | BMCWEB_LOG_ERROR("Failed to get the Port"); |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 76 | handler(std::make_error_code(std::errc::invalid_argument), |
| 77 | results_type{}); |
| 78 | |
| 79 | return; |
| 80 | } |
| 81 | |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 82 | uint64_t flag = 0; |
| 83 | crow::connections::systemBus->async_method_call( |
Ed Tanous | a716aa7 | 2023-08-01 11:35:53 -0700 | [diff] [blame] | 84 | [host{std::string(host)}, portNum, |
Ed Tanous | 8cb2c02 | 2024-03-27 16:31:46 -0700 | [diff] [blame] | 85 | handler = std::forward<ResolveHandler>(handler)]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 86 | const boost::system::error_code& ec, |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 87 | const std::vector< |
| 88 | std::tuple<int32_t, int32_t, std::vector<uint8_t>>>& resp, |
| 89 | const std::string& hostName, const uint64_t flagNum) { |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 90 | results_type endpointList; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 91 | if (ec) |
| 92 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 93 | BMCWEB_LOG_ERROR("Resolve failed: {}", ec.message()); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 94 | handler(ec, endpointList); |
| 95 | return; |
| 96 | } |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 97 | BMCWEB_LOG_DEBUG("ResolveHostname returned: {}:{}", hostName, |
| 98 | flagNum); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 99 | // Extract the IP address from the response |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 100 | for (const std::tuple<int32_t, int32_t, std::vector<uint8_t>>& |
| 101 | resolveList : resp) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 102 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 103 | boost::asio::ip::tcp::endpoint endpoint; |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 104 | endpoint.port(portNum); |
Ed Tanous | e1452be | 2021-10-04 17:03:52 -0700 | [diff] [blame] | 105 | if (!endpointFromResolveTuple(std::get<2>(resolveList), |
| 106 | endpoint)) |
| 107 | { |
| 108 | boost::system::error_code ecErr = make_error_code( |
| 109 | boost::system::errc::address_not_available); |
| 110 | handler(ecErr, endpointList); |
| 111 | } |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 112 | BMCWEB_LOG_DEBUG("resolved endpoint is : {}", |
| 113 | endpoint.address().to_string()); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 114 | endpointList.push_back(endpoint); |
| 115 | } |
| 116 | // All the resolved data is filled in the endpointList |
| 117 | handler(ec, endpointList); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 118 | }, |
Sunitha Harish | 29a82b0 | 2021-02-18 15:54:16 +0530 | [diff] [blame] | 119 | "org.freedesktop.resolve1", "/org/freedesktop/resolve1", |
| 120 | "org.freedesktop.resolve1.Manager", "ResolveHostname", 0, host, |
| 121 | AF_UNSPEC, flag); |
| 122 | } |
| 123 | }; |
| 124 | |
| 125 | } // namespace async_resolve |