Matt Spinler | 711d51d | 2019-11-06 09:36:51 -0600 | [diff] [blame] | 1 | /** |
| 2 | * Copyright © 2019 IBM Corporation |
| 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 | */ |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 16 | #include "repository.hpp" |
| 17 | |
Matt Spinler | 32a6df6 | 2023-01-12 16:30:40 -0600 | [diff] [blame] | 18 | #include <fcntl.h> |
Matt Spinler | dd325c3 | 2020-07-07 11:01:54 -0500 | [diff] [blame] | 19 | #include <sys/stat.h> |
| 20 | |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 21 | #include <phosphor-logging/lg2.hpp> |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 22 | #include <xyz/openbmc_project/Common/File/error.hpp> |
| 23 | |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 24 | #include <fstream> |
| 25 | |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 26 | namespace openpower |
| 27 | { |
| 28 | namespace pels |
| 29 | { |
| 30 | |
| 31 | namespace fs = std::filesystem; |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 32 | namespace file_error = sdbusplus::xyz::openbmc_project::Common::File::Error; |
| 33 | |
Matt Spinler | 7e727a3 | 2020-07-07 15:00:17 -0500 | [diff] [blame] | 34 | constexpr size_t warningPercentage = 95; |
| 35 | |
Matt Spinler | dd325c3 | 2020-07-07 11:01:54 -0500 | [diff] [blame] | 36 | /** |
| 37 | * @brief Returns the amount of space the file uses on disk. |
| 38 | * |
| 39 | * This is different than just the regular size of the file. |
| 40 | * |
| 41 | * @param[in] file - The file to get the size of |
| 42 | * |
| 43 | * @return size_t The disk space the file uses |
| 44 | */ |
| 45 | size_t getFileDiskSize(const std::filesystem::path& file) |
| 46 | { |
| 47 | constexpr size_t statBlockSize = 512; |
| 48 | struct stat statData; |
| 49 | auto rc = stat(file.c_str(), &statData); |
| 50 | if (rc != 0) |
| 51 | { |
| 52 | auto e = errno; |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 53 | lg2::error("Call to stat() failed on {FILE} with errno {ERRNO}", "FILE", |
| 54 | file.native(), "ERRNO", e); |
Matt Spinler | dd325c3 | 2020-07-07 11:01:54 -0500 | [diff] [blame] | 55 | abort(); |
| 56 | } |
| 57 | |
| 58 | return statData.st_blocks * statBlockSize; |
| 59 | } |
| 60 | |
Matt Spinler | 8d5f3a2 | 2020-07-07 10:30:33 -0500 | [diff] [blame] | 61 | Repository::Repository(const std::filesystem::path& basePath, size_t repoSize, |
| 62 | size_t maxNumPELs) : |
| 63 | _logPath(basePath / "logs"), |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 64 | _maxRepoSize(repoSize), _maxNumPELs(maxNumPELs), |
| 65 | _archivePath(basePath / "logs" / "archive") |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 66 | { |
| 67 | if (!fs::exists(_logPath)) |
| 68 | { |
| 69 | fs::create_directories(_logPath); |
| 70 | } |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 71 | |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 72 | if (!fs::exists(_archivePath)) |
| 73 | { |
| 74 | fs::create_directories(_archivePath); |
| 75 | } |
| 76 | |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 77 | restore(); |
| 78 | } |
| 79 | |
| 80 | void Repository::restore() |
| 81 | { |
| 82 | for (auto& dirEntry : fs::directory_iterator(_logPath)) |
| 83 | { |
| 84 | try |
| 85 | { |
| 86 | if (!fs::is_regular_file(dirEntry.path())) |
| 87 | { |
| 88 | continue; |
| 89 | } |
| 90 | |
| 91 | std::ifstream file{dirEntry.path()}; |
| 92 | std::vector<uint8_t> data{std::istreambuf_iterator<char>(file), |
| 93 | std::istreambuf_iterator<char>()}; |
| 94 | file.close(); |
| 95 | |
Matt Spinler | 07eefc5 | 2019-09-26 11:18:26 -0500 | [diff] [blame] | 96 | PEL pel{data}; |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 97 | if (pel.valid()) |
| 98 | { |
Matt Spinler | a3c12a4 | 2019-11-21 13:25:32 -0600 | [diff] [blame] | 99 | // If the host hasn't acked it, reset the host state so |
| 100 | // it will get sent up again. |
| 101 | if (pel.hostTransmissionState() == TransmissionState::sent) |
| 102 | { |
| 103 | pel.setHostTransmissionState(TransmissionState::newPEL); |
| 104 | try |
| 105 | { |
| 106 | write(pel, dirEntry.path()); |
| 107 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 108 | catch (const std::exception& e) |
Matt Spinler | a3c12a4 | 2019-11-21 13:25:32 -0600 | [diff] [blame] | 109 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 110 | lg2::error( |
| 111 | "Failed to save PEL after updating host state, PEL ID = {ID}", |
| 112 | "ID", lg2::hex, pel.id()); |
Matt Spinler | a3c12a4 | 2019-11-21 13:25:32 -0600 | [diff] [blame] | 113 | } |
| 114 | } |
| 115 | |
Matt Spinler | 8e65f4e | 2023-05-02 13:40:08 -0500 | [diff] [blame] | 116 | PELAttributes attributes{ |
| 117 | dirEntry.path(), |
| 118 | getFileDiskSize(dirEntry.path()), |
| 119 | pel.privateHeader().creatorID(), |
| 120 | pel.userHeader().subsystem(), |
| 121 | pel.userHeader().severity(), |
| 122 | pel.userHeader().actionFlags(), |
| 123 | pel.hostTransmissionState(), |
| 124 | pel.hmcTransmissionState(), |
| 125 | pel.plid(), |
| 126 | pel.getDeconfigFlag(), |
| 127 | pel.getGuardFlag(), |
| 128 | getMillisecondsSinceEpoch( |
| 129 | pel.privateHeader().createTimestamp())}; |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 130 | |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 131 | using pelID = LogID::Pel; |
| 132 | using obmcID = LogID::Obmc; |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 133 | _pelAttributes.emplace( |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 134 | LogID(pelID(pel.id()), obmcID(pel.obmcLogID())), |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 135 | attributes); |
Matt Spinler | b188f78 | 2020-07-07 11:18:12 -0500 | [diff] [blame] | 136 | |
| 137 | updateRepoStats(attributes, true); |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 138 | } |
| 139 | else |
| 140 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 141 | lg2::error( |
| 142 | "Found invalid PEL file {FILE} while restoring. Removing.", |
| 143 | "FILE", dirEntry.path()); |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 144 | fs::remove(dirEntry.path()); |
| 145 | } |
| 146 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 147 | catch (const std::exception& e) |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 148 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 149 | lg2::error("Hit exception while restoring PEL file {FILE}: {ERROR}", |
| 150 | "FILE", dirEntry.path(), "ERROR", e); |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 151 | } |
| 152 | } |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 153 | |
| 154 | // Get size of archive folder |
| 155 | for (auto& dirEntry : fs::directory_iterator(_archivePath)) |
| 156 | { |
| 157 | _archiveSize += getFileDiskSize(dirEntry); |
| 158 | } |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | std::string Repository::getPELFilename(uint32_t pelID, const BCDTime& time) |
| 162 | { |
| 163 | char name[50]; |
| 164 | sprintf(name, "%.2X%.2X%.2X%.2X%.2X%.2X%.2X%.2X_%.8X", time.yearMSB, |
| 165 | time.yearLSB, time.month, time.day, time.hour, time.minutes, |
| 166 | time.seconds, time.hundredths, pelID); |
| 167 | return std::string{name}; |
| 168 | } |
| 169 | |
| 170 | void Repository::add(std::unique_ptr<PEL>& pel) |
| 171 | { |
Matt Spinler | df43a30 | 2019-11-21 13:16:56 -0600 | [diff] [blame] | 172 | pel->setHostTransmissionState(TransmissionState::newPEL); |
| 173 | pel->setHMCTransmissionState(TransmissionState::newPEL); |
| 174 | |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 175 | auto path = _logPath / getPELFilename(pel->id(), pel->commitTime()); |
Matt Spinler | ab1b97f | 2019-11-07 13:38:07 -0600 | [diff] [blame] | 176 | |
| 177 | write(*(pel.get()), path); |
| 178 | |
Matt Spinler | 8e65f4e | 2023-05-02 13:40:08 -0500 | [diff] [blame] | 179 | PELAttributes attributes{ |
| 180 | path, |
| 181 | getFileDiskSize(path), |
| 182 | pel->privateHeader().creatorID(), |
| 183 | pel->userHeader().subsystem(), |
| 184 | pel->userHeader().severity(), |
| 185 | pel->userHeader().actionFlags(), |
| 186 | pel->hostTransmissionState(), |
| 187 | pel->hmcTransmissionState(), |
| 188 | pel->plid(), |
| 189 | pel->getDeconfigFlag(), |
| 190 | pel->getGuardFlag(), |
| 191 | getMillisecondsSinceEpoch(pel->privateHeader().createTimestamp())}; |
Matt Spinler | ab1b97f | 2019-11-07 13:38:07 -0600 | [diff] [blame] | 192 | |
| 193 | using pelID = LogID::Pel; |
| 194 | using obmcID = LogID::Obmc; |
| 195 | _pelAttributes.emplace(LogID(pelID(pel->id()), obmcID(pel->obmcLogID())), |
| 196 | attributes); |
| 197 | |
Matt Spinler | 44893cc | 2020-08-26 11:34:17 -0500 | [diff] [blame] | 198 | _lastPelID = pel->id(); |
| 199 | |
Matt Spinler | b188f78 | 2020-07-07 11:18:12 -0500 | [diff] [blame] | 200 | updateRepoStats(attributes, true); |
| 201 | |
Matt Spinler | ab1b97f | 2019-11-07 13:38:07 -0600 | [diff] [blame] | 202 | processAddCallbacks(*pel); |
| 203 | } |
| 204 | |
| 205 | void Repository::write(const PEL& pel, const fs::path& path) |
| 206 | { |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 207 | std::ofstream file{path, std::ios::binary}; |
| 208 | |
| 209 | if (!file.good()) |
| 210 | { |
| 211 | // If this fails, the filesystem is probably full so it isn't like |
| 212 | // we could successfully create yet another error log here. |
| 213 | auto e = errno; |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 214 | fs::remove(path); |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 215 | lg2::error( |
| 216 | "Unable to open PEL file {FILE} for writing, errno = {ERRNO}", |
| 217 | "FILE", path, "ERRNO", e); |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 218 | throw file_error::Open(); |
| 219 | } |
| 220 | |
Matt Spinler | ab1b97f | 2019-11-07 13:38:07 -0600 | [diff] [blame] | 221 | auto data = pel.data(); |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 222 | file.write(reinterpret_cast<const char*>(data.data()), data.size()); |
| 223 | |
| 224 | if (file.fail()) |
| 225 | { |
| 226 | // Same note as above about not being able to create an error log |
| 227 | // for this case even if we wanted. |
| 228 | auto e = errno; |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 229 | file.close(); |
| 230 | fs::remove(path); |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 231 | lg2::error("Unable to write PEL file {FILE}, errno = {ERRNO}", "FILE", |
| 232 | path, "ERRNO", e); |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 233 | throw file_error::Write(); |
| 234 | } |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 235 | } |
| 236 | |
Matt Spinler | 52602e3 | 2020-07-15 12:37:28 -0500 | [diff] [blame] | 237 | std::optional<Repository::LogID> Repository::remove(const LogID& id) |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 238 | { |
| 239 | auto pel = findPEL(id); |
Patrick Williams | ff6b598 | 2021-04-22 09:04:17 -0500 | [diff] [blame] | 240 | if (pel == _pelAttributes.end()) |
Matt Spinler | 475e574 | 2019-07-18 16:09:49 -0500 | [diff] [blame] | 241 | { |
Patrick Williams | ff6b598 | 2021-04-22 09:04:17 -0500 | [diff] [blame] | 242 | return std::nullopt; |
Matt Spinler | 5f5352e | 2020-03-05 16:23:27 -0600 | [diff] [blame] | 243 | } |
Matt Spinler | 52602e3 | 2020-07-15 12:37:28 -0500 | [diff] [blame] | 244 | |
Patrick Williams | ff6b598 | 2021-04-22 09:04:17 -0500 | [diff] [blame] | 245 | LogID actualID = pel->first; |
| 246 | updateRepoStats(pel->second, false); |
| 247 | |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 248 | lg2::debug( |
| 249 | "Removing PEL from repository, PEL ID = {PEL_ID}, BMC log ID = {BMC_ID}", |
| 250 | "PEL_ID", lg2::hex, actualID.pelID.id, "BMC_ID", actualID.obmcID.id); |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 251 | |
| 252 | if (fs::exists(pel->second.path)) |
| 253 | { |
| 254 | // Check for existense of new archive folder |
| 255 | if (!fs::exists(_archivePath)) |
| 256 | { |
| 257 | fs::create_directories(_archivePath); |
| 258 | } |
| 259 | |
| 260 | // Move log file to archive folder |
| 261 | auto fileName = _archivePath / pel->second.path.filename(); |
| 262 | fs::rename(pel->second.path, fileName); |
| 263 | |
| 264 | // Update size of file |
| 265 | _archiveSize += getFileDiskSize(fileName); |
| 266 | } |
| 267 | |
Patrick Williams | ff6b598 | 2021-04-22 09:04:17 -0500 | [diff] [blame] | 268 | _pelAttributes.erase(pel); |
| 269 | |
| 270 | processDeleteCallbacks(actualID.pelID.id); |
| 271 | |
Matt Spinler | 52602e3 | 2020-07-15 12:37:28 -0500 | [diff] [blame] | 272 | return actualID; |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 273 | } |
| 274 | |
Matt Spinler | 2813f36 | 2019-07-19 12:45:28 -0500 | [diff] [blame] | 275 | std::optional<std::vector<uint8_t>> Repository::getPELData(const LogID& id) |
| 276 | { |
| 277 | auto pel = findPEL(id); |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 278 | if (pel != _pelAttributes.end()) |
Matt Spinler | 2813f36 | 2019-07-19 12:45:28 -0500 | [diff] [blame] | 279 | { |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 280 | std::ifstream file{pel->second.path.c_str()}; |
Matt Spinler | 2813f36 | 2019-07-19 12:45:28 -0500 | [diff] [blame] | 281 | if (!file.good()) |
| 282 | { |
| 283 | auto e = errno; |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 284 | lg2::error("Unable to open PEL file {FILE}, errno = {ERRNO}", |
| 285 | "FILE", pel->second.path, "ERRNO", e); |
Matt Spinler | 2813f36 | 2019-07-19 12:45:28 -0500 | [diff] [blame] | 286 | throw file_error::Open(); |
| 287 | } |
| 288 | |
| 289 | std::vector<uint8_t> data{std::istreambuf_iterator<char>(file), |
| 290 | std::istreambuf_iterator<char>()}; |
| 291 | return data; |
| 292 | } |
| 293 | |
| 294 | return std::nullopt; |
| 295 | } |
| 296 | |
Matt Spinler | 6d51224 | 2019-12-09 13:44:17 -0600 | [diff] [blame] | 297 | std::optional<sdbusplus::message::unix_fd> Repository::getPELFD(const LogID& id) |
| 298 | { |
| 299 | auto pel = findPEL(id); |
| 300 | if (pel != _pelAttributes.end()) |
| 301 | { |
Matt Spinler | 32a6df6 | 2023-01-12 16:30:40 -0600 | [diff] [blame] | 302 | int fd = open(pel->second.path.c_str(), O_RDONLY | O_NONBLOCK); |
| 303 | if (fd == -1) |
Matt Spinler | 6d51224 | 2019-12-09 13:44:17 -0600 | [diff] [blame] | 304 | { |
| 305 | auto e = errno; |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 306 | lg2::error("Unable to open PEL file {FILE}, errno = {ERRNO}", |
| 307 | "FILE", pel->second.path, "ERRNO", e); |
Matt Spinler | 6d51224 | 2019-12-09 13:44:17 -0600 | [diff] [blame] | 308 | throw file_error::Open(); |
| 309 | } |
| 310 | |
| 311 | // Must leave the file open here. It will be closed by sdbusplus |
| 312 | // when it sends it back over D-Bus. |
Matt Spinler | 32a6df6 | 2023-01-12 16:30:40 -0600 | [diff] [blame] | 313 | return fd; |
Matt Spinler | 6d51224 | 2019-12-09 13:44:17 -0600 | [diff] [blame] | 314 | } |
| 315 | return std::nullopt; |
| 316 | } |
| 317 | |
Matt Spinler | 1ea7880 | 2019-11-01 13:04:59 -0500 | [diff] [blame] | 318 | void Repository::for_each(ForEachFunc func) const |
| 319 | { |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 320 | for (const auto& [id, attributes] : _pelAttributes) |
Matt Spinler | 1ea7880 | 2019-11-01 13:04:59 -0500 | [diff] [blame] | 321 | { |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 322 | std::ifstream file{attributes.path}; |
Matt Spinler | 1ea7880 | 2019-11-01 13:04:59 -0500 | [diff] [blame] | 323 | |
| 324 | if (!file.good()) |
| 325 | { |
| 326 | auto e = errno; |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 327 | lg2::error( |
| 328 | "Repository::for_each: Unable to open PEL file {FILE}, errno = {ERRNO}", |
| 329 | "FILE", attributes.path, "ERRNO", e); |
Matt Spinler | 1ea7880 | 2019-11-01 13:04:59 -0500 | [diff] [blame] | 330 | continue; |
| 331 | } |
| 332 | |
| 333 | std::vector<uint8_t> data{std::istreambuf_iterator<char>(file), |
| 334 | std::istreambuf_iterator<char>()}; |
| 335 | file.close(); |
| 336 | |
| 337 | PEL pel{data}; |
| 338 | |
| 339 | try |
| 340 | { |
| 341 | if (func(pel)) |
| 342 | { |
| 343 | break; |
| 344 | } |
| 345 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 346 | catch (const std::exception& e) |
Matt Spinler | 1ea7880 | 2019-11-01 13:04:59 -0500 | [diff] [blame] | 347 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 348 | lg2::error("Repository::for_each function exception: {ERROR}", |
| 349 | "ERROR", e); |
Matt Spinler | 1ea7880 | 2019-11-01 13:04:59 -0500 | [diff] [blame] | 350 | } |
| 351 | } |
| 352 | } |
| 353 | |
Matt Spinler | 421f653 | 2019-11-06 15:40:45 -0600 | [diff] [blame] | 354 | void Repository::processAddCallbacks(const PEL& pel) const |
| 355 | { |
| 356 | for (auto& [name, func] : _addSubscriptions) |
| 357 | { |
| 358 | try |
| 359 | { |
| 360 | func(pel); |
| 361 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 362 | catch (const std::exception& e) |
Matt Spinler | 421f653 | 2019-11-06 15:40:45 -0600 | [diff] [blame] | 363 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 364 | lg2::error( |
| 365 | "PEL Repository add callback exception. Name = {NAME}, Error = {ERROR}", |
| 366 | "NAME", name, "ERROR", e); |
Matt Spinler | 421f653 | 2019-11-06 15:40:45 -0600 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | void Repository::processDeleteCallbacks(uint32_t id) const |
| 372 | { |
| 373 | for (auto& [name, func] : _deleteSubscriptions) |
| 374 | { |
| 375 | try |
| 376 | { |
| 377 | func(id); |
| 378 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 379 | catch (const std::exception& e) |
Matt Spinler | 421f653 | 2019-11-06 15:40:45 -0600 | [diff] [blame] | 380 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 381 | lg2::error( |
| 382 | "PEL Repository delete callback exception. Name = {NAME}, Error = {ERROR}", |
| 383 | "NAME", name, "ERROR", e); |
Matt Spinler | 421f653 | 2019-11-06 15:40:45 -0600 | [diff] [blame] | 384 | } |
| 385 | } |
| 386 | } |
| 387 | |
Matt Spinler | 0ff0048 | 2019-11-06 16:19:46 -0600 | [diff] [blame] | 388 | std::optional<std::reference_wrapper<const Repository::PELAttributes>> |
| 389 | Repository::getPELAttributes(const LogID& id) const |
| 390 | { |
| 391 | auto pel = findPEL(id); |
| 392 | if (pel != _pelAttributes.end()) |
| 393 | { |
| 394 | return pel->second; |
| 395 | } |
| 396 | |
| 397 | return std::nullopt; |
| 398 | } |
| 399 | |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 400 | void Repository::setPELHostTransState(uint32_t pelID, TransmissionState state) |
| 401 | { |
| 402 | LogID id{LogID::Pel{pelID}}; |
| 403 | auto attr = std::find_if(_pelAttributes.begin(), _pelAttributes.end(), |
| 404 | [&id](const auto& a) { return a.first == id; }); |
| 405 | |
| 406 | if ((attr != _pelAttributes.end()) && (attr->second.hostState != state)) |
| 407 | { |
| 408 | PELUpdateFunc func = [state](PEL& pel) { |
| 409 | pel.setHostTransmissionState(state); |
Matt Spinler | d0ccda3 | 2023-05-04 09:59:59 -0500 | [diff] [blame] | 410 | return true; |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 411 | }; |
| 412 | |
| 413 | try |
| 414 | { |
| 415 | updatePEL(attr->second.path, func); |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 416 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 417 | catch (const std::exception& e) |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 418 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 419 | lg2::error( |
| 420 | "Unable to update PEL host transmission state. Path = {PATH}, Error = {ERROR}", |
| 421 | "PATH", attr->second.path, "ERROR", e); |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | void Repository::setPELHMCTransState(uint32_t pelID, TransmissionState state) |
| 427 | { |
| 428 | LogID id{LogID::Pel{pelID}}; |
| 429 | auto attr = std::find_if(_pelAttributes.begin(), _pelAttributes.end(), |
| 430 | [&id](const auto& a) { return a.first == id; }); |
| 431 | |
| 432 | if ((attr != _pelAttributes.end()) && (attr->second.hmcState != state)) |
| 433 | { |
| 434 | PELUpdateFunc func = [state](PEL& pel) { |
| 435 | pel.setHMCTransmissionState(state); |
Matt Spinler | d0ccda3 | 2023-05-04 09:59:59 -0500 | [diff] [blame] | 436 | return true; |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 437 | }; |
| 438 | |
| 439 | try |
| 440 | { |
| 441 | updatePEL(attr->second.path, func); |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 442 | } |
Patrick Williams | 66491c6 | 2021-10-06 12:23:37 -0500 | [diff] [blame] | 443 | catch (const std::exception& e) |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 444 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 445 | lg2::error( |
| 446 | "Unable to update PEL HMC transmission state. Path = {PATH}, Error = {ERROR}", |
| 447 | "PATH", attr->second.path, "ERROR", e); |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | } |
| 451 | |
Matt Spinler | 1cb59f7 | 2023-07-20 09:49:50 -0500 | [diff] [blame] | 452 | bool Repository::updatePEL(const fs::path& path, PELUpdateFunc updateFunc) |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 453 | { |
| 454 | std::ifstream file{path}; |
| 455 | std::vector<uint8_t> data{std::istreambuf_iterator<char>(file), |
| 456 | std::istreambuf_iterator<char>()}; |
| 457 | file.close(); |
| 458 | |
| 459 | PEL pel{data}; |
| 460 | |
| 461 | if (pel.valid()) |
| 462 | { |
Matt Spinler | d0ccda3 | 2023-05-04 09:59:59 -0500 | [diff] [blame] | 463 | if (updateFunc(pel)) |
| 464 | { |
| 465 | // Three attribute fields can change post creation from |
| 466 | // an updatePEL call: |
| 467 | // - hmcTransmissionState - When HMC acks a PEL |
| 468 | // - hostTransmissionState - When host acks a PEL |
| 469 | // - deconfig flag - Can be cleared for PELs that call out |
| 470 | // hotplugged FRUs. |
| 471 | // Make sure they're up to date. |
| 472 | LogID id{LogID::Pel(pel.id())}; |
| 473 | auto attr = |
| 474 | std::find_if(_pelAttributes.begin(), _pelAttributes.end(), |
| 475 | [&id](const auto& a) { return a.first == id; }); |
| 476 | if (attr != _pelAttributes.end()) |
| 477 | { |
| 478 | attr->second.hmcState = pel.hmcTransmissionState(); |
| 479 | attr->second.hostState = pel.hostTransmissionState(); |
| 480 | attr->second.deconfig = pel.getDeconfigFlag(); |
| 481 | } |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 482 | |
Matt Spinler | d0ccda3 | 2023-05-04 09:59:59 -0500 | [diff] [blame] | 483 | write(pel, path); |
Matt Spinler | 1cb59f7 | 2023-07-20 09:49:50 -0500 | [diff] [blame] | 484 | return true; |
Matt Spinler | d0ccda3 | 2023-05-04 09:59:59 -0500 | [diff] [blame] | 485 | } |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 486 | } |
| 487 | else |
| 488 | { |
| 489 | throw std::runtime_error( |
| 490 | "Unable to read a valid PEL when trying to update it"); |
| 491 | } |
Matt Spinler | 1cb59f7 | 2023-07-20 09:49:50 -0500 | [diff] [blame] | 492 | return false; |
Matt Spinler | 29d18c1 | 2019-11-21 13:31:27 -0600 | [diff] [blame] | 493 | } |
| 494 | |
Matt Spinler | b188f78 | 2020-07-07 11:18:12 -0500 | [diff] [blame] | 495 | bool Repository::isServiceableSev(const PELAttributes& pel) |
| 496 | { |
| 497 | auto sevType = static_cast<SeverityType>(pel.severity & 0xF0); |
Patrick Williams | 2544b41 | 2022-10-04 08:41:06 -0500 | [diff] [blame] | 498 | auto sevPVEntry = pel_values::findByValue(pel.severity, |
| 499 | pel_values::severityValues); |
Matt Spinler | b188f78 | 2020-07-07 11:18:12 -0500 | [diff] [blame] | 500 | std::string sevName = std::get<pel_values::registryNamePos>(*sevPVEntry); |
| 501 | |
| 502 | bool check1 = (sevType == SeverityType::predictive) || |
| 503 | (sevType == SeverityType::unrecoverable) || |
| 504 | (sevType == SeverityType::critical); |
| 505 | |
| 506 | bool check2 = ((sevType == SeverityType::recovered) || |
| 507 | (sevName == "symptom_recovered")) && |
| 508 | !pel.actionFlags.test(hiddenFlagBit); |
| 509 | |
| 510 | bool check3 = (sevName == "symptom_predictive") || |
| 511 | (sevName == "symptom_unrecoverable") || |
| 512 | (sevName == "symptom_critical"); |
| 513 | |
| 514 | return check1 || check2 || check3; |
| 515 | } |
| 516 | |
| 517 | void Repository::updateRepoStats(const PELAttributes& pel, bool pelAdded) |
| 518 | { |
| 519 | auto isServiceable = Repository::isServiceableSev(pel); |
| 520 | auto bmcPEL = CreatorID::openBMC == static_cast<CreatorID>(pel.creator); |
| 521 | |
| 522 | auto adjustSize = [pelAdded, &pel](auto& runningSize) { |
| 523 | if (pelAdded) |
| 524 | { |
| 525 | runningSize += pel.sizeOnDisk; |
| 526 | } |
| 527 | else |
| 528 | { |
| 529 | runningSize = std::max(static_cast<int64_t>(runningSize) - |
| 530 | static_cast<int64_t>(pel.sizeOnDisk), |
| 531 | static_cast<int64_t>(0)); |
| 532 | } |
| 533 | }; |
| 534 | |
| 535 | adjustSize(_sizes.total); |
| 536 | |
| 537 | if (bmcPEL) |
| 538 | { |
| 539 | adjustSize(_sizes.bmc); |
| 540 | if (isServiceable) |
| 541 | { |
| 542 | adjustSize(_sizes.bmcServiceable); |
| 543 | } |
| 544 | else |
| 545 | { |
| 546 | adjustSize(_sizes.bmcInfo); |
| 547 | } |
| 548 | } |
| 549 | else |
| 550 | { |
| 551 | adjustSize(_sizes.nonBMC); |
| 552 | if (isServiceable) |
| 553 | { |
| 554 | adjustSize(_sizes.nonBMCServiceable); |
| 555 | } |
| 556 | else |
| 557 | { |
| 558 | adjustSize(_sizes.nonBMCInfo); |
| 559 | } |
| 560 | } |
| 561 | } |
| 562 | |
Sumit Kumar | c296692 | 2021-07-21 10:14:03 -0500 | [diff] [blame] | 563 | bool Repository::sizeWarning() |
Matt Spinler | 7e727a3 | 2020-07-07 15:00:17 -0500 | [diff] [blame] | 564 | { |
Sumit Kumar | c296692 | 2021-07-21 10:14:03 -0500 | [diff] [blame] | 565 | std::error_code ec; |
| 566 | |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 567 | if ((_archiveSize > 0) && ((_sizes.total + _archiveSize) > |
| 568 | ((_maxRepoSize * warningPercentage) / 100))) |
| 569 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 570 | lg2::info( |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 571 | "Repository::sizeWarning function:Deleting the files in archive"); |
| 572 | |
Sumit Kumar | c296692 | 2021-07-21 10:14:03 -0500 | [diff] [blame] | 573 | for (const auto& dirEntry : fs::directory_iterator(_archivePath)) |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 574 | { |
Sumit Kumar | c296692 | 2021-07-21 10:14:03 -0500 | [diff] [blame] | 575 | fs::remove(dirEntry.path(), ec); |
| 576 | if (ec) |
| 577 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 578 | lg2::info("Repository::sizeWarning: Could not delete " |
| 579 | "file {FILE} in PEL archive", |
| 580 | "FILE", dirEntry.path()); |
Sumit Kumar | c296692 | 2021-07-21 10:14:03 -0500 | [diff] [blame] | 581 | } |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 582 | } |
Sumit Kumar | c296692 | 2021-07-21 10:14:03 -0500 | [diff] [blame] | 583 | |
| 584 | _archiveSize = 0; |
Sumit Kumar | 1d8835b | 2021-06-07 09:35:30 -0500 | [diff] [blame] | 585 | } |
| 586 | |
Matt Spinler | 7e727a3 | 2020-07-07 15:00:17 -0500 | [diff] [blame] | 587 | return (_sizes.total > (_maxRepoSize * warningPercentage / 100)) || |
| 588 | (_pelAttributes.size() > _maxNumPELs); |
| 589 | } |
| 590 | |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 591 | std::vector<Repository::AttributesReference> |
| 592 | Repository::getAllPELAttributes(SortOrder order) const |
| 593 | { |
| 594 | std::vector<Repository::AttributesReference> attributes; |
| 595 | |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 596 | std::for_each( |
| 597 | _pelAttributes.begin(), _pelAttributes.end(), |
| 598 | [&attributes](auto& pelEntry) { attributes.push_back(pelEntry); }); |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 599 | |
| 600 | std::sort(attributes.begin(), attributes.end(), |
| 601 | [order](const auto& left, const auto& right) { |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 602 | if (order == SortOrder::ascending) |
| 603 | { |
| 604 | return left.get().second.path < right.get().second.path; |
| 605 | } |
| 606 | return left.get().second.path > right.get().second.path; |
| 607 | }); |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 608 | |
| 609 | return attributes; |
| 610 | } |
| 611 | |
Sumit Kumar | 027bf28 | 2022-01-24 11:25:19 -0600 | [diff] [blame] | 612 | std::vector<uint32_t> |
| 613 | Repository::prune(const std::vector<uint32_t>& idsWithHwIsoEntry) |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 614 | { |
| 615 | std::vector<uint32_t> obmcLogIDs; |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 616 | lg2::info("Pruning PEL repository that takes up {TOTAL} bytes and has " |
| 617 | "{NUM_PELS} PELs", |
| 618 | "TOTAL", _sizes.total, "NUM_PELS", _pelAttributes.size()); |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 619 | |
| 620 | // Set up the 5 functions to check if the PEL category |
| 621 | // is still over its limits. |
| 622 | |
| 623 | // BMC informational PELs should only take up 15% |
| 624 | IsOverLimitFunc overBMCInfoLimit = [this]() { |
| 625 | return _sizes.bmcInfo > _maxRepoSize * 15 / 100; |
| 626 | }; |
| 627 | |
| 628 | // BMC non informational PELs should only take up 30% |
| 629 | IsOverLimitFunc overBMCNonInfoLimit = [this]() { |
| 630 | return _sizes.bmcServiceable > _maxRepoSize * 30 / 100; |
| 631 | }; |
| 632 | |
| 633 | // Non BMC informational PELs should only take up 15% |
| 634 | IsOverLimitFunc overNonBMCInfoLimit = [this]() { |
| 635 | return _sizes.nonBMCInfo > _maxRepoSize * 15 / 100; |
| 636 | }; |
| 637 | |
| 638 | // Non BMC non informational PELs should only take up 15% |
| 639 | IsOverLimitFunc overNonBMCNonInfoLimit = [this]() { |
| 640 | return _sizes.nonBMCServiceable > _maxRepoSize * 30 / 100; |
| 641 | }; |
| 642 | |
| 643 | // Bring the total number of PELs down to 80% of the max |
| 644 | IsOverLimitFunc tooManyPELsLimit = [this]() { |
| 645 | return _pelAttributes.size() > _maxNumPELs * 80 / 100; |
| 646 | }; |
| 647 | |
| 648 | // Set up the functions to determine which category a PEL is in. |
| 649 | // TODO: Return false in these functions if a PEL caused a guard record. |
| 650 | |
| 651 | // A BMC informational PEL |
| 652 | IsPELTypeFunc isBMCInfo = [](const PELAttributes& pel) { |
| 653 | return (CreatorID::openBMC == static_cast<CreatorID>(pel.creator)) && |
| 654 | !Repository::isServiceableSev(pel); |
| 655 | }; |
| 656 | |
| 657 | // A BMC non informational PEL |
| 658 | IsPELTypeFunc isBMCNonInfo = [](const PELAttributes& pel) { |
| 659 | return (CreatorID::openBMC == static_cast<CreatorID>(pel.creator)) && |
| 660 | Repository::isServiceableSev(pel); |
| 661 | }; |
| 662 | |
| 663 | // A non BMC informational PEL |
| 664 | IsPELTypeFunc isNonBMCInfo = [](const PELAttributes& pel) { |
| 665 | return (CreatorID::openBMC != static_cast<CreatorID>(pel.creator)) && |
| 666 | !Repository::isServiceableSev(pel); |
| 667 | }; |
| 668 | |
| 669 | // A non BMC non informational PEL |
| 670 | IsPELTypeFunc isNonBMCNonInfo = [](const PELAttributes& pel) { |
| 671 | return (CreatorID::openBMC != static_cast<CreatorID>(pel.creator)) && |
| 672 | Repository::isServiceableSev(pel); |
| 673 | }; |
| 674 | |
| 675 | // When counting PELs, count every PEL |
Patrick Williams | d26fa3e | 2021-04-21 15:22:23 -0500 | [diff] [blame] | 676 | IsPELTypeFunc isAnyPEL = [](const PELAttributes& /*pel*/) { return true; }; |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 677 | |
| 678 | // Check all 4 categories, which will result in at most 90% |
| 679 | // usage (15 + 30 + 15 + 30). |
Sumit Kumar | 027bf28 | 2022-01-24 11:25:19 -0600 | [diff] [blame] | 680 | removePELs(overBMCInfoLimit, isBMCInfo, idsWithHwIsoEntry, obmcLogIDs); |
| 681 | removePELs(overBMCNonInfoLimit, isBMCNonInfo, idsWithHwIsoEntry, |
| 682 | obmcLogIDs); |
| 683 | removePELs(overNonBMCInfoLimit, isNonBMCInfo, idsWithHwIsoEntry, |
| 684 | obmcLogIDs); |
| 685 | removePELs(overNonBMCNonInfoLimit, isNonBMCNonInfo, idsWithHwIsoEntry, |
| 686 | obmcLogIDs); |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 687 | |
| 688 | // After the above pruning check if there are still too many PELs, |
| 689 | // which can happen depending on PEL sizes. |
| 690 | if (_pelAttributes.size() > _maxNumPELs) |
| 691 | { |
Sumit Kumar | 027bf28 | 2022-01-24 11:25:19 -0600 | [diff] [blame] | 692 | removePELs(tooManyPELsLimit, isAnyPEL, idsWithHwIsoEntry, obmcLogIDs); |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | if (!obmcLogIDs.empty()) |
| 696 | { |
Matt Spinler | db3f279 | 2023-07-07 16:25:26 -0500 | [diff] [blame] | 697 | lg2::info("Number of PELs removed to save space: {NUM_PELS}", |
| 698 | "NUM_PELS", obmcLogIDs.size()); |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | return obmcLogIDs; |
| 702 | } |
| 703 | |
Matt Spinler | 45796e8 | 2022-07-01 11:25:27 -0500 | [diff] [blame] | 704 | void Repository::removePELs(const IsOverLimitFunc& isOverLimit, |
| 705 | const IsPELTypeFunc& isPELType, |
Sumit Kumar | 027bf28 | 2022-01-24 11:25:19 -0600 | [diff] [blame] | 706 | const std::vector<uint32_t>& idsWithHwIsoEntry, |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 707 | std::vector<uint32_t>& removedBMCLogIDs) |
| 708 | { |
| 709 | if (!isOverLimit()) |
| 710 | { |
| 711 | return; |
| 712 | } |
| 713 | |
| 714 | auto attributes = getAllPELAttributes(SortOrder::ascending); |
| 715 | |
| 716 | // Make 4 passes on the PELs, stopping as soon as isOverLimit |
| 717 | // returns false. |
| 718 | // Pass 1: only delete HMC acked PELs |
| 719 | // Pass 2: only delete OS acked PELs |
| 720 | // Pass 3: only delete PHYP sent PELs |
| 721 | // Pass 4: delete all PELs |
| 722 | static const std::vector<std::function<bool(const PELAttributes& pel)>> |
| 723 | stateChecks{[](const auto& pel) { |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 724 | return pel.hmcState == TransmissionState::acked; |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 725 | }, |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 726 | |
| 727 | [](const auto& pel) { |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 728 | return pel.hostState == TransmissionState::acked; |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 729 | }, |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 730 | |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 731 | [](const auto& pel) { |
Patrick Williams | ac1ba3f | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 732 | return pel.hostState == TransmissionState::sent; |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 733 | }, |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 734 | |
Patrick Williams | 5fb575a | 2023-10-20 11:18:21 -0500 | [diff] [blame] | 735 | [](const auto& /*pel*/) { return true; }}; |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 736 | |
| 737 | for (const auto& stateCheck : stateChecks) |
| 738 | { |
| 739 | for (auto it = attributes.begin(); it != attributes.end();) |
| 740 | { |
| 741 | const auto& pel = it->get(); |
| 742 | if (isPELType(pel.second) && stateCheck(pel.second)) |
| 743 | { |
| 744 | auto removedID = pel.first.obmcID.id; |
Sumit Kumar | 027bf28 | 2022-01-24 11:25:19 -0600 | [diff] [blame] | 745 | |
| 746 | auto idFound = std::find(idsWithHwIsoEntry.begin(), |
| 747 | idsWithHwIsoEntry.end(), removedID); |
| 748 | if (idFound != idsWithHwIsoEntry.end()) |
| 749 | { |
| 750 | ++it; |
| 751 | continue; |
| 752 | } |
| 753 | |
Matt Spinler | b0a8df5 | 2020-07-07 14:41:06 -0500 | [diff] [blame] | 754 | remove(pel.first); |
| 755 | |
| 756 | removedBMCLogIDs.push_back(removedID); |
| 757 | |
| 758 | attributes.erase(it); |
| 759 | |
| 760 | if (!isOverLimit()) |
| 761 | { |
| 762 | break; |
| 763 | } |
| 764 | } |
| 765 | else |
| 766 | { |
| 767 | ++it; |
| 768 | } |
| 769 | } |
| 770 | |
| 771 | if (!isOverLimit()) |
| 772 | { |
| 773 | break; |
| 774 | } |
| 775 | } |
| 776 | } |
| 777 | |
Sumit Kumar | 2ccdcef | 2021-07-31 10:04:58 -0500 | [diff] [blame] | 778 | void Repository::archivePEL(const PEL& pel) |
| 779 | { |
| 780 | if (pel.valid()) |
| 781 | { |
| 782 | auto path = _archivePath / getPELFilename(pel.id(), pel.commitTime()); |
| 783 | |
| 784 | write(pel, path); |
| 785 | |
| 786 | _archiveSize += getFileDiskSize(path); |
| 787 | } |
| 788 | } |
| 789 | |
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 790 | } // namespace pels |
| 791 | } // namespace openpower |