Patrick Venture | f085d91 | 2019-03-15 08:50:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2019 Google Inc. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "handler.hpp" |
| 18 | |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 19 | #include "errors.hpp" |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 20 | #include "util.hpp" |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 21 | |
| 22 | #include <ipmid/api.h> |
| 23 | |
Patrick Venture | bb90d4f | 2019-03-15 13:42:06 -0700 | [diff] [blame] | 24 | #include <cinttypes> |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 25 | #include <cstdio> |
| 26 | #include <filesystem> |
| 27 | #include <fstream> |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 28 | #include <map> |
| 29 | #include <nlohmann/json.hpp> |
| 30 | #include <phosphor-logging/elog-errors.hpp> |
Patrick Venture | aa37412 | 2019-03-15 15:09:10 -0700 | [diff] [blame] | 31 | #include <phosphor-logging/log.hpp> |
| 32 | #include <sdbusplus/bus.hpp> |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 33 | #include <sstream> |
| 34 | #include <string> |
| 35 | #include <tuple> |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 36 | #include <xyz/openbmc_project/Common/error.hpp> |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 37 | |
Patrick Venture | f085d91 | 2019-03-15 08:50:00 -0700 | [diff] [blame] | 38 | // The phosphor-host-ipmi daemon requires a configuration that maps |
| 39 | // the if_name to the IPMI LAN channel. However, that doesn't strictly |
| 40 | // define which is meant to be used for NCSI. |
| 41 | #ifndef NCSI_IPMI_CHANNEL |
| 42 | #define NCSI_IPMI_CHANNEL 1 |
| 43 | #endif |
| 44 | |
| 45 | #ifndef NCSI_IF_NAME |
| 46 | #define NCSI_IF_NAME eth0 |
| 47 | #endif |
| 48 | |
| 49 | // To deal with receiving a string without quotes. |
| 50 | #define QUOTE(name) #name |
| 51 | #define STR(macro) QUOTE(macro) |
| 52 | #define NCSI_IF_NAME_STR STR(NCSI_IF_NAME) |
| 53 | |
| 54 | namespace google |
| 55 | { |
| 56 | namespace ipmi |
| 57 | { |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 58 | namespace fs = std::filesystem; |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 59 | using Json = nlohmann::json; |
| 60 | using namespace phosphor::logging; |
| 61 | using InternalFailure = |
| 62 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Patrick Venture | f085d91 | 2019-03-15 08:50:00 -0700 | [diff] [blame] | 63 | |
| 64 | std::tuple<std::uint8_t, std::string> Handler::getEthDetails() const |
| 65 | { |
| 66 | return std::make_tuple(NCSI_IPMI_CHANNEL, NCSI_IF_NAME_STR); |
| 67 | } |
| 68 | |
Patrick Venture | d2037c6 | 2019-03-15 10:29:47 -0700 | [diff] [blame] | 69 | std::int64_t Handler::getRxPackets(const std::string& name) const |
| 70 | { |
| 71 | std::ostringstream opath; |
| 72 | opath << "/sys/class/net/" << name << "/statistics/rx_packets"; |
| 73 | std::string path = opath.str(); |
| 74 | |
| 75 | // Minor sanity & security check (of course, I'm less certain if unicode |
| 76 | // comes into play here. |
| 77 | // |
| 78 | // Basically you can't easily inject ../ or /../ into the path below. |
| 79 | if (name.find("/") != std::string::npos) |
| 80 | { |
| 81 | std::fprintf(stderr, "Invalid or illegal name: '%s'\n", name.c_str()); |
| 82 | throw IpmiException(IPMI_CC_INVALID_FIELD_REQUEST); |
| 83 | } |
| 84 | |
| 85 | std::error_code ec; |
| 86 | if (!fs::exists(path, ec)) |
| 87 | { |
| 88 | std::fprintf(stderr, "Path: '%s' doesn't exist.\n", path.c_str()); |
| 89 | throw IpmiException(IPMI_CC_INVALID_FIELD_REQUEST); |
| 90 | } |
| 91 | // We're uninterested in the state of ec. |
| 92 | |
| 93 | int64_t count = 0; |
| 94 | std::ifstream ifs; |
| 95 | ifs.exceptions(std::ifstream::failbit); |
| 96 | try |
| 97 | { |
| 98 | ifs.open(path); |
| 99 | ifs >> count; |
| 100 | } |
| 101 | catch (std::ios_base::failure& fail) |
| 102 | { |
| 103 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
| 104 | } |
| 105 | |
| 106 | return count; |
| 107 | } |
| 108 | |
Patrick Venture | bb90d4f | 2019-03-15 13:42:06 -0700 | [diff] [blame] | 109 | VersionTuple Handler::getCpldVersion(unsigned int id) const |
| 110 | { |
| 111 | std::ostringstream opath; |
| 112 | opath << "/run/cpld" << id << ".version"; |
| 113 | // Check for file |
| 114 | |
| 115 | std::error_code ec; |
| 116 | if (!fs::exists(opath.str(), ec)) |
| 117 | { |
| 118 | std::fprintf(stderr, "Path: '%s' doesn't exist.\n", |
| 119 | opath.str().c_str()); |
| 120 | throw IpmiException(IPMI_CC_INVALID_FIELD_REQUEST); |
| 121 | } |
| 122 | // We're uninterested in the state of ec. |
| 123 | |
| 124 | // If file exists, read. |
| 125 | std::ifstream ifs; |
| 126 | ifs.exceptions(std::ifstream::failbit); |
| 127 | std::string value; |
| 128 | try |
| 129 | { |
| 130 | ifs.open(opath.str()); |
| 131 | ifs >> value; |
| 132 | } |
| 133 | catch (std::ios_base::failure& fail) |
| 134 | { |
| 135 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
| 136 | } |
| 137 | |
| 138 | // If value parses as expected, return version. |
| 139 | VersionTuple version = std::make_tuple(0, 0, 0, 0); |
| 140 | |
| 141 | int num_fields = |
| 142 | std::sscanf(value.c_str(), "%" SCNu8 ".%" SCNu8 ".%" SCNu8 ".%" SCNu8, |
| 143 | &std::get<0>(version), &std::get<1>(version), |
| 144 | &std::get<2>(version), &std::get<3>(version)); |
| 145 | if (num_fields == 0) |
| 146 | { |
| 147 | std::fprintf(stderr, "Invalid version.\n"); |
| 148 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
| 149 | } |
| 150 | |
| 151 | return version; |
| 152 | } |
| 153 | |
Patrick Venture | aa37412 | 2019-03-15 15:09:10 -0700 | [diff] [blame] | 154 | static constexpr auto TIME_DELAY_FILENAME = "/run/psu_timedelay"; |
| 155 | static constexpr auto SYSTEMD_SERVICE = "org.freedesktop.systemd1"; |
| 156 | static constexpr auto SYSTEMD_ROOT = "/org/freedesktop/systemd1"; |
| 157 | static constexpr auto SYSTEMD_INTERFACE = "org.freedesktop.systemd1.Manager"; |
| 158 | static constexpr auto PSU_HARDRESET_TARGET = "gbmc-psu-hardreset.target"; |
| 159 | |
| 160 | void Handler::psuResetDelay(std::uint32_t delay) const |
| 161 | { |
Patrick Venture | aa37412 | 2019-03-15 15:09:10 -0700 | [diff] [blame] | 162 | std::ofstream ofs; |
| 163 | ofs.open(TIME_DELAY_FILENAME, std::ofstream::out); |
| 164 | if (!ofs.good()) |
| 165 | { |
| 166 | std::fprintf(stderr, "Unable to open file for output.\n"); |
| 167 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
| 168 | } |
| 169 | |
| 170 | ofs << "PSU_HARDRESET_DELAY=" << delay << std::endl; |
| 171 | if (ofs.fail()) |
| 172 | { |
| 173 | std::fprintf(stderr, "Write failed\n"); |
| 174 | ofs.close(); |
| 175 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
| 176 | } |
| 177 | |
| 178 | // Write succeeded, please continue. |
| 179 | ofs.flush(); |
| 180 | ofs.close(); |
| 181 | |
| 182 | auto bus = sdbusplus::bus::new_default(); |
| 183 | auto method = bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_ROOT, |
| 184 | SYSTEMD_INTERFACE, "StartUnit"); |
| 185 | |
| 186 | method.append(PSU_HARDRESET_TARGET); |
| 187 | method.append("replace"); |
| 188 | |
| 189 | try |
| 190 | { |
| 191 | bus.call_noreply(method); |
| 192 | } |
| 193 | catch (const sdbusplus::exception::SdBusError& ex) |
| 194 | { |
| 195 | log<level::ERR>("Failed to call PSU hard reset"); |
| 196 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
| 197 | } |
| 198 | } |
| 199 | |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 200 | std::string Handler::getEntityName(std::uint8_t id, std::uint8_t instance) |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 201 | { |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 202 | // Check if we support this Entity ID. |
| 203 | auto it = _entityIdToName.find(id); |
| 204 | if (it == _entityIdToName.end()) |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 205 | { |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 206 | log<level::ERR>("Unknown Entity ID", entry("ENTITY_ID=%d", id)); |
| 207 | throw IpmiException(IPMI_CC_INVALID_FIELD_REQUEST); |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 210 | std::string entityName; |
| 211 | try |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 212 | { |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 213 | // Parse the JSON config file. |
| 214 | if (!_entityConfigParsed) |
| 215 | { |
| 216 | _entityConfig = parseConfig(_configFile); |
| 217 | _entityConfigParsed = true; |
| 218 | } |
| 219 | |
| 220 | // Find the "entity id:entity instance" mapping to entity name. |
| 221 | entityName = readNameFromConfig(it->second, instance, _entityConfig); |
| 222 | if (entityName.empty()) |
| 223 | { |
| 224 | throw IpmiException(IPMI_CC_INVALID_FIELD_REQUEST); |
| 225 | } |
| 226 | } |
| 227 | catch (InternalFailure& e) |
| 228 | { |
| 229 | throw IpmiException(IPMI_CC_UNSPECIFIED_ERROR); |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 230 | } |
| 231 | |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 232 | return entityName; |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 235 | std::string readNameFromConfig(const std::string& type, uint8_t instance, |
| 236 | const Json& config) |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 237 | { |
| 238 | static const std::vector<Json> empty{}; |
| 239 | std::vector<Json> readings = config.value(type, empty); |
| 240 | std::string name = ""; |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 241 | |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 242 | for (const auto& j : readings) |
| 243 | { |
| 244 | uint8_t instanceNum = j.value("instance", 0); |
| 245 | // Not the instance we're interested in |
| 246 | if (instanceNum != instance) |
| 247 | { |
| 248 | continue; |
| 249 | } |
| 250 | |
| 251 | // Found the instance we're interested in |
| 252 | name = j.value("name", ""); |
| 253 | |
| 254 | break; |
| 255 | } |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 256 | |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 257 | return name; |
| 258 | } |
| 259 | |
Patrick Venture | 49f23ad | 2019-03-16 11:59:55 -0700 | [diff] [blame] | 260 | void Handler::buildI2cPcieMapping() |
| 261 | { |
| 262 | _pcie_i2c_map = buildPcieMap(); |
| 263 | } |
| 264 | |
| 265 | size_t Handler::getI2cPcieMappingSize() const |
| 266 | { |
| 267 | return _pcie_i2c_map.size(); |
| 268 | } |
| 269 | |
| 270 | std::tuple<std::uint32_t, std::string> |
| 271 | Handler::getI2cEntry(unsigned int entry) const |
| 272 | { |
| 273 | return _pcie_i2c_map[entry]; |
| 274 | } |
| 275 | |
Patrick Venture | ab65000 | 2019-03-16 09:08:47 -0700 | [diff] [blame] | 276 | const std::string defaultConfigFile = |
| 277 | "/usr/share/ipmi-entity-association/entity_association_map.json"; |
Patrick Venture | 07f8515 | 2019-03-15 21:36:56 -0700 | [diff] [blame] | 278 | |
Patrick Venture | f085d91 | 2019-03-15 08:50:00 -0700 | [diff] [blame] | 279 | Handler handlerImpl; |
| 280 | |
| 281 | } // namespace ipmi |
| 282 | } // namespace google |