Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 1 | #include <phosphor-logging/elog.hpp> |
| 2 | #include "xyz/openbmc_project/Led/Fru/Monitor/error.hpp" |
| 3 | #include "xyz/openbmc_project/Led/Mapper/error.hpp" |
| 4 | #include "elog-errors.hpp" |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 5 | #include "fru-fault-monitor.hpp" |
Dhruvaraj Subhashchandran | 891c476 | 2017-07-31 14:26:37 -0500 | [diff] [blame] | 6 | #include <phosphor-logging/elog-errors.hpp> |
| 7 | #include "xyz/openbmc_project/Common/error.hpp" |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 8 | |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 9 | namespace phosphor |
| 10 | { |
| 11 | namespace led |
| 12 | { |
| 13 | namespace fru |
| 14 | { |
| 15 | namespace fault |
| 16 | { |
| 17 | namespace monitor |
| 18 | { |
| 19 | |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 20 | using namespace phosphor::logging; |
| 21 | |
| 22 | constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper"; |
| 23 | constexpr auto MAPPER_OBJ_PATH = "/xyz/openbmc_project/object_mapper"; |
| 24 | constexpr auto MAPPER_IFACE = "xyz.openbmc_project.ObjectMapper"; |
| 25 | constexpr auto OBJMGR_IFACE = "org.freedesktop.DBus.ObjectManager"; |
| 26 | constexpr auto LED_GROUPS = "/xyz/openbmc_project/led/groups/"; |
| 27 | constexpr auto LOG_PATH = "/xyz/openbmc_project/logging"; |
Dhruvaraj Subhashchandran | 891c476 | 2017-07-31 14:26:37 -0500 | [diff] [blame] | 28 | constexpr auto LOG_IFACE = "xyz.openbmc_project.Logging.Entry"; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 29 | |
| 30 | using AssociationList = std::vector<std::tuple< |
| 31 | std::string, std::string, std::string>>; |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 32 | using Attributes = sdbusplus::message::variant<bool,AssociationList>; |
| 33 | using AttributeName = std::string; |
| 34 | using AttributeMap = std::map<AttributeName, Attributes>; |
| 35 | using PropertyName = std::string; |
| 36 | using PropertyMap = std::map<PropertyName, AttributeMap>; |
| 37 | using LogEntryMsg = std::pair<sdbusplus::message::object_path, PropertyMap>; |
| 38 | |
Dhruvaraj Subhashchandran | 891c476 | 2017-07-31 14:26:37 -0500 | [diff] [blame] | 39 | using Service = std::string; |
| 40 | using Path = std::string; |
| 41 | using Interface = std::string; |
| 42 | using Interfaces = std::vector<Interface>; |
| 43 | using MapperResponseType = std::map<Path, std::map<Service, Interfaces>>; |
| 44 | |
| 45 | using InternalFailure = |
| 46 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
| 47 | |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 48 | using MethodErr = |
| 49 | sdbusplus::xyz::openbmc_project::Led::Mapper::Error::MethodError; |
| 50 | using ObjectNotFoundErr = |
| 51 | sdbusplus::xyz::openbmc_project::Led::Mapper::Error::ObjectNotFoundError; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 52 | using InventoryPathErr = |
| 53 | sdbusplus::xyz::openbmc_project:: |
| 54 | Led::Fru::Monitor::Error::InventoryPathError; |
| 55 | |
| 56 | std::string getService(sdbusplus::bus::bus& bus, |
| 57 | const std::string& path) |
| 58 | { |
| 59 | auto mapper = bus.new_method_call(MAPPER_BUSNAME, |
| 60 | MAPPER_OBJ_PATH, |
| 61 | MAPPER_IFACE, "GetObject"); |
| 62 | mapper.append(path.c_str(), std::vector<std::string>({OBJMGR_IFACE})); |
| 63 | auto mapperResponseMsg = bus.call(mapper); |
| 64 | if (mapperResponseMsg.is_method_error()) |
| 65 | { |
| 66 | using namespace xyz::openbmc_project::Led::Mapper; |
| 67 | elog<MethodErr>( |
| 68 | MethodError::METHOD_NAME("GetObject"), |
| 69 | MethodError::PATH(path.c_str()), |
| 70 | MethodError::INTERFACE( |
| 71 | OBJMGR_IFACE)); |
| 72 | } |
| 73 | |
| 74 | std::map<std::string, std::vector<std::string>> mapperResponse; |
| 75 | mapperResponseMsg.read(mapperResponse); |
| 76 | if (mapperResponse.empty()) |
| 77 | { |
| 78 | using namespace xyz::openbmc_project::Led::Mapper; |
| 79 | elog<ObjectNotFoundErr>( |
| 80 | ObjectNotFoundError::METHOD_NAME("GetObject"), |
| 81 | ObjectNotFoundError::PATH(path.c_str()), |
| 82 | ObjectNotFoundError::INTERFACE( |
| 83 | OBJMGR_IFACE)); |
| 84 | } |
| 85 | |
| 86 | return mapperResponse.cbegin()->first; |
| 87 | } |
| 88 | |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 89 | void action(sdbusplus::bus::bus& bus, |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 90 | const std::string& path, |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 91 | bool assert) |
| 92 | { |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 93 | std::string service; |
| 94 | try |
| 95 | { |
| 96 | service = getService(bus, LED_GROUPS); |
| 97 | } |
| 98 | catch (MethodErr& e) |
| 99 | { |
| 100 | commit<MethodErr>(); |
| 101 | return; |
| 102 | } |
| 103 | catch (ObjectNotFoundErr& e) |
| 104 | { |
| 105 | commit<ObjectNotFoundErr>(); |
| 106 | return; |
| 107 | } |
| 108 | |
| 109 | auto pos = path.rfind("/"); |
| 110 | if (pos == std::string::npos) |
| 111 | { |
| 112 | using namespace xyz::openbmc_project::Led::Fru::Monitor; |
| 113 | report<InventoryPathErr>( |
| 114 | InventoryPathError::PATH( |
| 115 | path.c_str())); |
| 116 | return; |
| 117 | } |
| 118 | auto unit = path.substr(pos + 1); |
| 119 | |
| 120 | std::string ledPath = LED_GROUPS + |
| 121 | unit + '_' + LED_FAULT; |
| 122 | |
| 123 | auto method = bus.new_method_call(service.c_str(), |
| 124 | ledPath.c_str(), |
| 125 | "org.freedesktop.DBus.Properties", |
| 126 | "Set"); |
| 127 | method.append("xyz.openbmc_project.Led.Group"); |
| 128 | method.append("Asserted"); |
| 129 | |
| 130 | method.append(sdbusplus::message::variant<bool>(assert)); |
| 131 | bus.call_noreply(method); |
| 132 | |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 133 | return; |
| 134 | } |
| 135 | |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 136 | void Add::created(sdbusplus::message::message& msg) |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 137 | { |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 138 | auto bus = msg.get_bus(); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 139 | |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 140 | LogEntryMsg logEntry; |
| 141 | msg.read(logEntry); |
| 142 | std::string objectPath(std::move(logEntry.first)); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 143 | |
| 144 | std::size_t found = objectPath.find(ELOG_ENTRY); |
| 145 | if (found == std::string::npos) |
| 146 | { |
| 147 | //Not a new error entry skip |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 148 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 149 | } |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 150 | log<level::ERR>(objectPath.c_str()); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 151 | |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 152 | auto iter = logEntry.second.find("org.openbmc.Associations"); |
| 153 | if (iter == logEntry.second.end()) |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 154 | { |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 155 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 156 | } |
| 157 | |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 158 | auto attr = iter->second.find("associations"); |
| 159 | if (attr == iter->second.end()) |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 160 | { |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 161 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 162 | } |
| 163 | |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 164 | auto& assocs = |
| 165 | sdbusplus::message::variant_ns::get<AssociationList>(attr->second); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 166 | if (assocs.empty()) |
| 167 | { |
| 168 | //No associations skip |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 169 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | for (const auto& item : assocs) |
| 173 | { |
| 174 | if (std::get<1>(item).compare(CALLOUT_REV_ASSOCIATION) == 0) |
| 175 | { |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 176 | removeWatches.emplace_back( |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 177 | std::make_unique<Remove>(bus, std::get<2>(item))); |
Dhruvaraj Subhashchandran | 891c476 | 2017-07-31 14:26:37 -0500 | [diff] [blame] | 178 | action(bus, std::get<2>(item), true); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 179 | } |
| 180 | } |
Dhruvaraj Subhashchandran | aebfde8 | 2017-07-11 01:36:33 -0500 | [diff] [blame] | 181 | |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 182 | return; |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 183 | } |
| 184 | |
Dhruvaraj Subhashchandran | 891c476 | 2017-07-31 14:26:37 -0500 | [diff] [blame] | 185 | void Add::processExistingCallouts(sdbusplus::bus::bus& bus) |
| 186 | { |
| 187 | auto depth = 0; |
| 188 | auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, |
| 189 | MAPPER_OBJ_PATH, |
| 190 | MAPPER_IFACE, |
| 191 | "GetSubTree"); |
| 192 | mapperCall.append("/"); |
| 193 | mapperCall.append(depth); |
| 194 | mapperCall.append(std::vector<Interface>({LOG_IFACE})); |
| 195 | |
| 196 | auto mapperResponseMsg = bus.call(mapperCall); |
| 197 | if (mapperResponseMsg.is_method_error()) |
| 198 | { |
| 199 | using namespace xyz::openbmc_project::Led::Mapper; |
| 200 | report<MethodErr>( |
| 201 | MethodError::METHOD_NAME("GetSubTree"), |
| 202 | MethodError::PATH(MAPPER_OBJ_PATH), |
| 203 | MethodError::INTERFACE( |
| 204 | OBJMGR_IFACE)); |
| 205 | return; |
| 206 | } |
| 207 | |
| 208 | MapperResponseType mapperResponse; |
| 209 | mapperResponseMsg.read(mapperResponse); |
| 210 | if (mapperResponse.empty()) |
| 211 | { |
Dhruvaraj Subhashchandran | fc30e0c | 2017-09-19 03:59:08 -0500 | [diff] [blame^] | 212 | //No errors to process. |
Dhruvaraj Subhashchandran | 891c476 | 2017-07-31 14:26:37 -0500 | [diff] [blame] | 213 | return; |
| 214 | } |
| 215 | |
| 216 | for (const auto& elem : mapperResponse) |
| 217 | { |
| 218 | auto method = bus.new_method_call(elem.second.begin()->first.c_str(), |
| 219 | elem.first.c_str(), |
| 220 | "org.freedesktop.DBus.Properties", |
| 221 | "Get"); |
| 222 | method.append("org.openbmc.Associations"); |
| 223 | method.append("associations"); |
| 224 | auto reply = bus.call(method); |
| 225 | if (reply.is_method_error()) |
| 226 | { |
| 227 | //do not stop, continue with next elog |
| 228 | log<level::ERR>("Error in getting associations"); |
| 229 | continue; |
| 230 | } |
| 231 | |
| 232 | sdbusplus::message::variant<AssociationList> assoc; |
| 233 | reply.read(assoc); |
| 234 | auto& assocs = assoc.get<AssociationList>(); |
| 235 | if (assocs.empty()) |
| 236 | { |
| 237 | //no associations, skip |
| 238 | continue; |
| 239 | } |
| 240 | |
| 241 | for (const auto& item : assocs) |
| 242 | { |
| 243 | if (std::get<1>(item).compare(CALLOUT_REV_ASSOCIATION) == 0) |
| 244 | { |
| 245 | removeWatches.emplace_back( |
| 246 | std::make_unique<Remove>(bus, std::get<2>(item))); |
| 247 | action(bus, std::get<2>(item), true); |
| 248 | } |
| 249 | } |
| 250 | } |
| 251 | } |
| 252 | |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 253 | void Remove::removed(sdbusplus::message::message& msg) |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 254 | { |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 255 | auto bus = msg.get_bus(); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 256 | std::string assoc; |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 257 | msg.read(assoc); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 258 | |
| 259 | if (assoc.compare("org.openbmc.Association")) |
| 260 | { |
| 261 | //Skip if not about association |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 262 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | std::map<std::string, std::vector<std::string>> endPoints; |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 266 | msg.read(endPoints); |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 267 | auto it = endPoints.find("endpoints"); |
| 268 | |
| 269 | if (it == endPoints.end()) |
| 270 | { |
| 271 | //No end points,skip |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 272 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | if (!((*it).second.empty())) |
| 276 | { |
| 277 | //Skip, end points are not empty |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 278 | return; |
Dhruvaraj Subhashchandran | 3c6f29a | 2017-04-20 09:47:28 -0500 | [diff] [blame] | 279 | } |
| 280 | |
Patrick Williams | 3eedbe4 | 2017-05-31 17:27:05 -0500 | [diff] [blame] | 281 | action(bus, inventoryPath, false); |
| 282 | return; |
Dhruvaraj Subhashchandran | 59b86cd | 2017-04-13 00:19:44 -0500 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | }//namespace monitor |
| 286 | }//namespace fault |
| 287 | }//namespace fru |
| 288 | }//namespace led |
| 289 | }//namespace phosphor |