| #include "utils.hpp" |
| #include "host-ipmid/ipmid-api.h" |
| #include <phosphor-logging/log.hpp> |
| #include <phosphor-logging/elog-errors.hpp> |
| #include "xyz/openbmc_project/Common/error.hpp" |
| |
| namespace ipmi |
| { |
| |
| using namespace phosphor::logging; |
| using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| |
| |
| //TODO There may be cases where an interface is implemented by multiple |
| // objects,to handle such cases we are interested on that object |
| // which are on interested busname. |
| // Currently mapper doesn't give the readable busname(gives busid) so we can't |
| // use busname to find the object,will do later once the support is there. |
| |
| DbusObjectInfo getDbusObject(sdbusplus::bus::bus& bus, |
| const std::string& interface, |
| const std::string& serviceRoot, |
| const std::string& match) |
| { |
| std::vector<DbusInterface> interfaces; |
| interfaces.emplace_back(interface); |
| |
| auto depth = 0; |
| |
| auto mapperCall = bus.new_method_call(MAPPER_BUS_NAME, |
| MAPPER_OBJ, |
| MAPPER_INTF, |
| "GetSubTree"); |
| |
| mapperCall.append(serviceRoot, depth, interfaces); |
| |
| auto mapperReply = bus.call(mapperCall); |
| if (mapperReply.is_method_error()) |
| { |
| log<level::ERR>("Error in mapper call"); |
| elog<InternalFailure>(); |
| } |
| |
| ObjectTree objectTree; |
| mapperReply.read(objectTree); |
| |
| if (objectTree.empty()) |
| { |
| log<level::ERR>("No Object has impelmented the interface", |
| entry("INTERFACE=%s", interface.c_str())); |
| elog<InternalFailure>(); |
| } |
| |
| DbusObjectInfo objectInfo; |
| |
| // if match is empty then return the first object |
| if(match == "") |
| { |
| objectInfo = std::make_pair(objectTree.begin()->first, |
| std::move(objectTree.begin()->second.begin()->first)); |
| return objectInfo; |
| } |
| |
| // else search the match string in the object path |
| auto objectFound = false; |
| for (auto& object : objectTree) |
| { |
| if(object.first.find(match) != std::string::npos) |
| { |
| objectFound = true; |
| objectInfo = make_pair(object.first, |
| std::move(object.second.begin()->first)); |
| break; |
| } |
| } |
| |
| if(!objectFound) |
| { |
| log<level::ERR>("Failed to find object which matches", |
| entry("MATCH=%s", match.c_str())); |
| elog<InternalFailure>(); |
| } |
| return objectInfo; |
| |
| } |
| |
| Value getDbusProperty(sdbusplus::bus::bus& bus, |
| const std::string& service, |
| const std::string& objPath, |
| const std::string& interface, |
| const std::string& property) |
| { |
| |
| Value value; |
| |
| auto method = bus.new_method_call( |
| service.c_str(), |
| objPath.c_str(), |
| PROP_INTF, |
| METHOD_GET); |
| |
| method.append(interface, property); |
| |
| auto reply = bus.call(method); |
| |
| if (reply.is_method_error()) |
| { |
| log<level::ERR>("Failed to get property", |
| entry("PROPERTY=%s", property.c_str()), |
| entry("PATH=%s", objPath.c_str()), |
| entry("INTERFACE=%s", interface.c_str())); |
| elog<InternalFailure>(); |
| } |
| |
| reply.read(value); |
| |
| return value; |
| } |
| |
| PropertyMap getAllDbusProperties(sdbusplus::bus::bus& bus, |
| const std::string& service, |
| const std::string& objPath, |
| const std::string& interface) |
| { |
| PropertyMap properties; |
| |
| auto method = bus.new_method_call( |
| service.c_str(), |
| objPath.c_str(), |
| PROP_INTF, |
| METHOD_GET_ALL); |
| |
| method.append(interface); |
| |
| auto reply = bus.call(method); |
| |
| if (reply.is_method_error()) |
| { |
| log<level::ERR>("Failed to get all properties", |
| entry("PATH=%s", objPath.c_str()), |
| entry("INTERFACE=%s", interface.c_str())); |
| elog<InternalFailure>(); |
| } |
| |
| reply.read(properties); |
| return properties; |
| } |
| |
| void setDbusProperty(sdbusplus::bus::bus& bus, |
| const std::string& service, |
| const std::string& objPath, |
| const std::string& interface, |
| const std::string& property, |
| const Value& value) |
| { |
| auto method = bus.new_method_call( |
| service.c_str(), |
| objPath.c_str(), |
| PROP_INTF, |
| METHOD_SET); |
| |
| method.append(interface, property, value); |
| |
| if (!bus.call(method)) |
| { |
| log<level::ERR>("Failed to set property", |
| entry("PROPERTY=%s", property.c_str()), |
| entry("PATH=%s",objPath.c_str()), |
| entry("INTERFACE=%s",interface.c_str())); |
| elog<InternalFailure>(); |
| } |
| |
| } |
| |
| |
| std::string getService(sdbusplus::bus::bus& bus, |
| const std::string& intf, |
| const std::string& path) |
| { |
| auto mapperCall = bus.new_method_call("xyz.openbmc_project.ObjectMapper", |
| "/xyz/openbmc_project/object_mapper", |
| "xyz.openbmc_project.ObjectMapper", |
| "GetObject"); |
| |
| mapperCall.append(path); |
| mapperCall.append(std::vector<std::string>({intf})); |
| |
| auto mapperResponseMsg = bus.call(mapperCall); |
| |
| if (mapperResponseMsg.is_method_error()) |
| { |
| throw std::runtime_error("ERROR in mapper call"); |
| } |
| |
| std::map<std::string, std::vector<std::string>> mapperResponse; |
| mapperResponseMsg.read(mapperResponse); |
| |
| if (mapperResponse.begin() == mapperResponse.end()) |
| { |
| throw std::runtime_error("ERROR in reading the mapper response"); |
| } |
| |
| return mapperResponse.begin()->first; |
| } |
| |
| |
| } // namespace ipmi |
| |
| |