| Ratan Gupta | 6347619 | 2018-04-19 16:55:32 +0530 | [diff] [blame] | 1 | #include "snmp_util.hpp" | 
| Patrick Williams | 1334b7b | 2021-02-22 17:15:12 -0600 | [diff] [blame^] | 2 |  | 
| Ratan Gupta | 6347619 | 2018-04-19 16:55:32 +0530 | [diff] [blame] | 3 | #include "xyz/openbmc_project/Common/error.hpp" | 
|  | 4 |  | 
| Ratan Gupta | 213517b | 2018-04-28 13:41:09 +0530 | [diff] [blame] | 5 | #include <arpa/inet.h> | 
| Patrick Williams | 1334b7b | 2021-02-22 17:15:12 -0600 | [diff] [blame^] | 6 | #include <netdb.h> | 
| Ratan Gupta | 213517b | 2018-04-28 13:41:09 +0530 | [diff] [blame] | 7 |  | 
| Ratan Gupta | 6347619 | 2018-04-19 16:55:32 +0530 | [diff] [blame] | 8 | #include <phosphor-logging/elog-errors.hpp> | 
|  | 9 | #include <phosphor-logging/log.hpp> | 
|  | 10 |  | 
| Ratan Gupta | 6347619 | 2018-04-19 16:55:32 +0530 | [diff] [blame] | 11 | #include <string> | 
|  | 12 |  | 
|  | 13 | namespace phosphor | 
|  | 14 | { | 
|  | 15 |  | 
|  | 16 | using namespace phosphor::logging; | 
|  | 17 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; | 
|  | 18 |  | 
|  | 19 | ObjectValueTree getManagedObjects(sdbusplus::bus::bus& bus, | 
|  | 20 | const std::string& service, | 
|  | 21 | const std::string& objPath) | 
|  | 22 | { | 
|  | 23 | ObjectValueTree interfaces; | 
|  | 24 |  | 
|  | 25 | auto method = bus.new_method_call(service.c_str(), objPath.c_str(), | 
|  | 26 | "org.freedesktop.DBus.ObjectManager", | 
|  | 27 | "GetManagedObjects"); | 
|  | 28 |  | 
|  | 29 | auto reply = bus.call(method); | 
|  | 30 |  | 
|  | 31 | if (reply.is_method_error()) | 
|  | 32 | { | 
|  | 33 | log<level::ERR>("Failed to get managed objects", | 
|  | 34 | entry("PATH=%s", objPath.c_str())); | 
|  | 35 | elog<InternalFailure>(); | 
|  | 36 | } | 
|  | 37 |  | 
|  | 38 | reply.read(interfaces); | 
|  | 39 | return interfaces; | 
|  | 40 | } | 
|  | 41 |  | 
|  | 42 | namespace network | 
|  | 43 | { | 
|  | 44 |  | 
|  | 45 | std::string resolveAddress(const std::string& address) | 
|  | 46 | { | 
|  | 47 | addrinfo hints{0}; | 
|  | 48 | addrinfo* addr = nullptr; | 
|  | 49 |  | 
|  | 50 | hints.ai_family = AF_UNSPEC; | 
|  | 51 | hints.ai_socktype = SOCK_STREAM; | 
|  | 52 | hints.ai_flags |= AI_CANONNAME; | 
|  | 53 |  | 
|  | 54 | auto result = getaddrinfo(address.c_str(), NULL, &hints, &addr); | 
|  | 55 | if (result) | 
|  | 56 | { | 
|  | 57 | log<level::ERR>("getaddrinfo failed", | 
|  | 58 | entry("ADDRESS=%s", address.c_str())); | 
|  | 59 | elog<InternalFailure>(); | 
|  | 60 | } | 
|  | 61 |  | 
|  | 62 | AddrPtr addrPtr{addr}; | 
|  | 63 | addr = nullptr; | 
|  | 64 |  | 
|  | 65 | char ipaddress[INET6_ADDRSTRLEN]{0}; | 
|  | 66 | result = getnameinfo(addrPtr->ai_addr, addrPtr->ai_addrlen, ipaddress, | 
|  | 67 | sizeof(ipaddress), NULL, 0, NI_NUMERICHOST); | 
|  | 68 | if (result) | 
|  | 69 | { | 
|  | 70 | log<level::ERR>("getnameinfo failed", | 
|  | 71 | entry("ADDRESS=%s", address.c_str())); | 
|  | 72 | elog<InternalFailure>(); | 
|  | 73 | } | 
|  | 74 |  | 
|  | 75 | return ipaddress; | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | namespace snmp | 
|  | 79 | { | 
|  | 80 |  | 
|  | 81 | static constexpr auto busName = "xyz.openbmc_project.Network.SNMP"; | 
|  | 82 | static constexpr auto root = "/xyz/openbmc_project/network/snmp/manager"; | 
|  | 83 | static constexpr auto clientIntf = "xyz.openbmc_project.Network.Client"; | 
|  | 84 |  | 
|  | 85 | /** @brief Gets the sdbus object for this process. | 
|  | 86 | *  @return the bus object. | 
|  | 87 | */ | 
|  | 88 | static auto& getBus() | 
|  | 89 | { | 
|  | 90 | static auto bus = sdbusplus::bus::new_default(); | 
|  | 91 | return bus; | 
|  | 92 | } | 
|  | 93 |  | 
|  | 94 | std::vector<std::string> getManagers() | 
|  | 95 | { | 
|  | 96 | std::vector<std::string> managers; | 
|  | 97 | auto& bus = getBus(); | 
|  | 98 | auto objTree = phosphor::getManagedObjects(bus, busName, root); | 
|  | 99 | for (const auto& objIter : objTree) | 
|  | 100 | { | 
|  | 101 | try | 
|  | 102 | { | 
|  | 103 | auto& intfMap = objIter.second; | 
|  | 104 | auto& snmpClientProps = intfMap.at(clientIntf); | 
| William A. Kennington III | bbee5d0 | 2018-11-06 15:52:22 -0800 | [diff] [blame] | 105 | auto& address = | 
| Patrick Williams | 7d4bd22 | 2020-05-13 11:05:10 -0500 | [diff] [blame] | 106 | std::get<std::string>(snmpClientProps.at("Address")); | 
|  | 107 | auto& port = std::get<uint16_t>(snmpClientProps.at("Port")); | 
| Ratan Gupta | 6347619 | 2018-04-19 16:55:32 +0530 | [diff] [blame] | 108 | auto ipaddress = phosphor::network::resolveAddress(address); | 
|  | 109 | auto mgr = std::move(ipaddress); | 
|  | 110 | if (port > 0) | 
|  | 111 | { | 
|  | 112 | mgr += ":"; | 
|  | 113 | mgr += std::to_string(port); | 
|  | 114 | } | 
|  | 115 | managers.push_back(mgr); | 
|  | 116 | } | 
|  | 117 | catch (const std::exception& e) | 
|  | 118 | { | 
|  | 119 | log<level::ERR>(e.what()); | 
|  | 120 | } | 
|  | 121 | } | 
|  | 122 | return managers; | 
|  | 123 | } | 
|  | 124 |  | 
|  | 125 | } // namespace snmp | 
|  | 126 | } // namespace network | 
|  | 127 | } // namespace phosphor |