140e9b92eSEd Tanous // SPDX-License-Identifier: Apache-2.0 240e9b92eSEd Tanous // SPDX-FileCopyrightText: Copyright OpenBMC Authors 33d30708fSChicago Duan #pragma once 43d30708fSChicago Duan 53d30708fSChicago Duan #include "async_resp.hpp" 63d30708fSChicago Duan #include "dbus_utility.hpp" 73d30708fSChicago Duan #include "error_messages.hpp" 83d30708fSChicago Duan #include "event_service_manager.hpp" 9539d8c6bSEd Tanous #include "generated/enums/event_destination.hpp" 103d30708fSChicago Duan #include "http_response.hpp" 113d30708fSChicago Duan #include "logging.hpp" 123d30708fSChicago Duan #include "utils/dbus_utils.hpp" 133d30708fSChicago Duan 14d7857201SEd Tanous #include <asm-generic/errno.h> 15d7857201SEd Tanous #include <systemd/sd-bus.h> 16d7857201SEd Tanous 173d30708fSChicago Duan #include <boost/system/error_code.hpp> 183d30708fSChicago Duan #include <boost/url/format.hpp> 19d7857201SEd Tanous #include <boost/url/url.hpp> 20d7857201SEd Tanous #include <sdbusplus/message.hpp> 21d7857201SEd Tanous #include <sdbusplus/message/native_types.hpp> 223d30708fSChicago Duan #include <sdbusplus/unpack_properties.hpp> 233d30708fSChicago Duan 24d7857201SEd Tanous #include <cstdint> 253d30708fSChicago Duan #include <memory> 263d30708fSChicago Duan #include <string> 273d30708fSChicago Duan #include <string_view> 28d7857201SEd Tanous #include <utility> 293d30708fSChicago Duan 303d30708fSChicago Duan namespace redfish 313d30708fSChicago Duan { 323d30708fSChicago Duan 333d30708fSChicago Duan inline void afterGetSnmpTrapClientdata( 343d30708fSChicago Duan const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 353d30708fSChicago Duan const boost::system::error_code& ec, 363d30708fSChicago Duan const dbus::utility::DBusPropertiesMap& propertiesList) 373d30708fSChicago Duan { 383d30708fSChicago Duan if (ec) 393d30708fSChicago Duan { 4062598e31SEd Tanous BMCWEB_LOG_ERROR("D-Bus response error on GetSubTree {}", ec); 413d30708fSChicago Duan messages::internalError(asyncResp->res); 423d30708fSChicago Duan return; 433d30708fSChicago Duan } 443d30708fSChicago Duan 453d30708fSChicago Duan std::string address; 463d30708fSChicago Duan uint16_t port = 0; 473d30708fSChicago Duan 483d30708fSChicago Duan bool success = sdbusplus::unpackPropertiesNoThrow( 493d30708fSChicago Duan dbus_utils::UnpackErrorPrinter(), propertiesList, "Address", address, 503d30708fSChicago Duan "Port", port); 513d30708fSChicago Duan 523d30708fSChicago Duan if (!success) 533d30708fSChicago Duan { 543d30708fSChicago Duan messages::internalError(asyncResp->res); 553d30708fSChicago Duan return; 563d30708fSChicago Duan } 573d30708fSChicago Duan 583d30708fSChicago Duan asyncResp->res.jsonValue["Destination"] = 593d30708fSChicago Duan boost::urls::format("snmp://{}:{}", address, port); 603d30708fSChicago Duan } 613d30708fSChicago Duan 62504af5a0SPatrick Williams inline void getSnmpTrapClientdata( 63504af5a0SPatrick Williams const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, const std::string& id, 64504af5a0SPatrick Williams const std::string& objectPath) 653d30708fSChicago Duan { 663d30708fSChicago Duan asyncResp->res.jsonValue["@odata.type"] = 673d30708fSChicago Duan "#EventDestination.v1_8_0.EventDestination"; 68539d8c6bSEd Tanous asyncResp->res.jsonValue["Protocol"] = 69539d8c6bSEd Tanous event_destination::EventDestinationProtocol::SNMPv2c; 703d30708fSChicago Duan asyncResp->res.jsonValue["@odata.id"] = 713d30708fSChicago Duan boost::urls::format("/redfish/v1/EventService/Subscriptions/{}", id); 723d30708fSChicago Duan 733d30708fSChicago Duan asyncResp->res.jsonValue["Id"] = id; 743d30708fSChicago Duan asyncResp->res.jsonValue["Name"] = "Event Destination"; 753d30708fSChicago Duan 76539d8c6bSEd Tanous asyncResp->res.jsonValue["SubscriptionType"] = 77539d8c6bSEd Tanous event_destination::SubscriptionType::SNMPTrap; 78539d8c6bSEd Tanous asyncResp->res.jsonValue["EventFormatType"] = 79539d8c6bSEd Tanous event_destination::EventFormatType::Event; 803d30708fSChicago Duan 81deae6a78SEd Tanous dbus::utility::getAllProperties( 82deae6a78SEd Tanous "xyz.openbmc_project.Network.SNMP", objectPath, 83deae6a78SEd Tanous "xyz.openbmc_project.Network.Client", 843d30708fSChicago Duan [asyncResp](const boost::system::error_code& ec, 853d30708fSChicago Duan const dbus::utility::DBusPropertiesMap& properties) { 863d30708fSChicago Duan afterGetSnmpTrapClientdata(asyncResp, ec, properties); 873d30708fSChicago Duan }); 883d30708fSChicago Duan } 893d30708fSChicago Duan 90bd79bce8SPatrick Williams inline void getSnmpTrapClient( 91bd79bce8SPatrick Williams const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, const std::string& id) 923d30708fSChicago Duan { 93*177612aaSEd Tanous dbus::utility::async_method_call( 94*177612aaSEd Tanous asyncResp, 953d30708fSChicago Duan [asyncResp, id](const boost::system::error_code& ec, 963d30708fSChicago Duan dbus::utility::ManagedObjectType& resp) { 973d30708fSChicago Duan if (ec) 983d30708fSChicago Duan { 9962598e31SEd Tanous BMCWEB_LOG_ERROR("D-Bus response error on GetManagedObjects {}", 10062598e31SEd Tanous ec); 1013d30708fSChicago Duan messages::internalError(asyncResp->res); 1023d30708fSChicago Duan return; 1033d30708fSChicago Duan } 1043d30708fSChicago Duan 1053d30708fSChicago Duan for (const auto& objpath : resp) 1063d30708fSChicago Duan { 1073d30708fSChicago Duan sdbusplus::message::object_path path(objpath.first); 1083d30708fSChicago Duan const std::string snmpId = path.filename(); 1093d30708fSChicago Duan if (snmpId.empty()) 1103d30708fSChicago Duan { 11162598e31SEd Tanous BMCWEB_LOG_ERROR("The SNMP client ID is wrong"); 1123d30708fSChicago Duan messages::internalError(asyncResp->res); 1133d30708fSChicago Duan return; 1143d30708fSChicago Duan } 1153d30708fSChicago Duan const std::string subscriptionId = "snmp" + snmpId; 1163d30708fSChicago Duan if (id != subscriptionId) 1173d30708fSChicago Duan { 1183d30708fSChicago Duan continue; 1193d30708fSChicago Duan } 1203d30708fSChicago Duan 1213d30708fSChicago Duan getSnmpTrapClientdata(asyncResp, id, objpath.first); 1223d30708fSChicago Duan return; 1233d30708fSChicago Duan } 1243d30708fSChicago Duan 1253d30708fSChicago Duan messages::resourceNotFound(asyncResp->res, "Subscriptions", id); 1263d30708fSChicago Duan EventServiceManager::getInstance().deleteSubscription(id); 1273d30708fSChicago Duan }, 1283d30708fSChicago Duan "xyz.openbmc_project.Network.SNMP", 1293d30708fSChicago Duan "/xyz/openbmc_project/network/snmp/manager", 1303d30708fSChicago Duan "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); 1313d30708fSChicago Duan } 1323d30708fSChicago Duan 13363509dd5SRavi Teja inline void afterSnmpClientCreate( 13463509dd5SRavi Teja const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 13563509dd5SRavi Teja const boost::system::error_code& ec, const sdbusplus::message_t& msg, 13663509dd5SRavi Teja const std::string& host, const std::string& dbusSNMPid) 1373d30708fSChicago Duan { 1383d30708fSChicago Duan if (ec) 1393d30708fSChicago Duan { 14063509dd5SRavi Teja const sd_bus_error* dbusError = msg.get_error(); 14163509dd5SRavi Teja if (dbusError != nullptr) 14263509dd5SRavi Teja { 14363509dd5SRavi Teja if (std::string_view( 14463509dd5SRavi Teja "xyz.openbmc_project.Common.Error.InvalidArgument") == 14563509dd5SRavi Teja dbusError->name) 14663509dd5SRavi Teja { 14763509dd5SRavi Teja messages::propertyValueIncorrect(asyncResp->res, "Destination", 14863509dd5SRavi Teja host); 14963509dd5SRavi Teja return; 15063509dd5SRavi Teja } 1513d30708fSChicago Duan if (ec.value() != EBADR) 1523d30708fSChicago Duan { 1533d30708fSChicago Duan // SNMP not installed 1543d30708fSChicago Duan messages::propertyValueOutOfRange(asyncResp->res, "SNMPv2c", 1553d30708fSChicago Duan "Protocol"); 1563d30708fSChicago Duan return; 1573d30708fSChicago Duan } 15863509dd5SRavi Teja } 1593d30708fSChicago Duan messages::internalError(asyncResp->res); 1603d30708fSChicago Duan return; 1613d30708fSChicago Duan } 1623d30708fSChicago Duan sdbusplus::message::object_path path(dbusSNMPid); 1633d30708fSChicago Duan const std::string snmpId = path.filename(); 1643d30708fSChicago Duan if (snmpId.empty()) 1653d30708fSChicago Duan { 1663d30708fSChicago Duan messages::internalError(asyncResp->res); 1673d30708fSChicago Duan return; 1683d30708fSChicago Duan } 1693d30708fSChicago Duan 1703d30708fSChicago Duan std::string subscriptionId = "snmp" + snmpId; 1713d30708fSChicago Duan 1723d30708fSChicago Duan boost::urls::url uri = boost::urls::format( 1733d30708fSChicago Duan "/redfish/v1/EventService/Subscriptions/{}", subscriptionId); 1743d30708fSChicago Duan asyncResp->res.addHeader("Location", uri.buffer()); 1753d30708fSChicago Duan messages::created(asyncResp->res); 1763d30708fSChicago Duan } 1773d30708fSChicago Duan 178504af5a0SPatrick Williams inline void addSnmpTrapClient( 179504af5a0SPatrick Williams const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 1803d30708fSChicago Duan const std::string& host, uint16_t snmpTrapPort) 1813d30708fSChicago Duan { 182*177612aaSEd Tanous dbus::utility::async_method_call( 183*177612aaSEd Tanous asyncResp, 184bd79bce8SPatrick Williams [asyncResp, 185bd79bce8SPatrick Williams host](const boost::system::error_code& ec, 186bd79bce8SPatrick Williams const sdbusplus::message_t& msg, const std::string& dbusSNMPid) { 18763509dd5SRavi Teja afterSnmpClientCreate(asyncResp, ec, msg, host, dbusSNMPid); 1883d30708fSChicago Duan }, 1893d30708fSChicago Duan "xyz.openbmc_project.Network.SNMP", 1903d30708fSChicago Duan "/xyz/openbmc_project/network/snmp/manager", 1913d30708fSChicago Duan "xyz.openbmc_project.Network.Client.Create", "Client", host, 1923d30708fSChicago Duan snmpTrapPort); 1933d30708fSChicago Duan } 1943d30708fSChicago Duan 195bd79bce8SPatrick Williams inline void getSnmpSubscriptionList( 196bd79bce8SPatrick Williams const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 197bd79bce8SPatrick Williams const std::string& snmpId, nlohmann::json& memberArray) 1983d30708fSChicago Duan { 1993d30708fSChicago Duan const std::string subscriptionId = "snmp" + snmpId; 2003d30708fSChicago Duan 2013d30708fSChicago Duan nlohmann::json::object_t member; 2023d30708fSChicago Duan member["@odata.id"] = boost::urls::format( 2033d30708fSChicago Duan "/redfish/v1/EventService/Subscriptions/{}", subscriptionId); 2043d30708fSChicago Duan memberArray.push_back(std::move(member)); 2053d30708fSChicago Duan 2063d30708fSChicago Duan asyncResp->res.jsonValue["Members@odata.count"] = memberArray.size(); 2073d30708fSChicago Duan } 2083d30708fSChicago Duan 209504af5a0SPatrick Williams inline void deleteSnmpTrapClient( 210504af5a0SPatrick Williams const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 2113d30708fSChicago Duan const std::string& param) 2123d30708fSChicago Duan { 2133d30708fSChicago Duan std::string_view snmpTrapId = param; 2143d30708fSChicago Duan 2153d30708fSChicago Duan // Erase "snmp" in the request to find the corresponding 2163d30708fSChicago Duan // dbus snmp client id. For example, the snmpid in the 2173d30708fSChicago Duan // request is "snmp1", which will be "1" after being erased. 2183d30708fSChicago Duan snmpTrapId.remove_prefix(4); 2193d30708fSChicago Duan 2203d30708fSChicago Duan sdbusplus::message::object_path snmpPath = 2213d30708fSChicago Duan sdbusplus::message::object_path( 2223d30708fSChicago Duan "/xyz/openbmc_project/network/snmp/manager") / 2233d30708fSChicago Duan std::string(snmpTrapId); 2243d30708fSChicago Duan 225*177612aaSEd Tanous dbus::utility::async_method_call( 226*177612aaSEd Tanous asyncResp, 2273d30708fSChicago Duan [asyncResp, param](const boost::system::error_code& ec) { 2283d30708fSChicago Duan if (ec) 2293d30708fSChicago Duan { 2303d30708fSChicago Duan // The snmp trap id is incorrect 2313d30708fSChicago Duan if (ec.value() == EBADR) 2323d30708fSChicago Duan { 2333d30708fSChicago Duan messages::resourceNotFound(asyncResp->res, "Subscription", 2343d30708fSChicago Duan param); 2353d30708fSChicago Duan return; 2363d30708fSChicago Duan } 2373d30708fSChicago Duan messages::internalError(asyncResp->res); 2383d30708fSChicago Duan return; 2393d30708fSChicago Duan } 2403d30708fSChicago Duan messages::success(asyncResp->res); 2413d30708fSChicago Duan }, 2423d30708fSChicago Duan "xyz.openbmc_project.Network.SNMP", static_cast<std::string>(snmpPath), 2433d30708fSChicago Duan "xyz.openbmc_project.Object.Delete", "Delete"); 2443d30708fSChicago Duan } 2453d30708fSChicago Duan 2463d30708fSChicago Duan } // namespace redfish 247