Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018 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 | |
Patrick Venture | cd8dab4 | 2019-01-15 19:57:38 -0800 | [diff] [blame] | 17 | #include "manager.hpp" |
| 18 | |
Patrick Venture | e50d4e4 | 2018-10-23 09:50:27 -0700 | [diff] [blame] | 19 | #include <algorithm> |
Kun Yi | b61a88b | 2019-11-12 22:50:34 -0800 | [diff] [blame] | 20 | #include <iostream> |
Patrick Venture | b3e07e2 | 2018-09-27 15:11:57 -0700 | [diff] [blame] | 21 | #include <memory> |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 22 | #include <string> |
| 23 | #include <vector> |
| 24 | |
| 25 | namespace blobs |
| 26 | { |
| 27 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 28 | bool BlobManager::registerHandler(std::unique_ptr<GenericBlobInterface> handler) |
| 29 | { |
| 30 | if (!handler) |
| 31 | { |
| 32 | return false; |
| 33 | } |
| 34 | |
| 35 | handlers.push_back(std::move(handler)); |
| 36 | return true; |
| 37 | } |
| 38 | |
| 39 | uint32_t BlobManager::buildBlobList() |
| 40 | { |
| 41 | /* Clear out the current list (IPMI handler is presently single-threaded). |
| 42 | */ |
| 43 | ids.clear(); |
| 44 | |
| 45 | /* Grab the list of blobs and extend the local list */ |
Patrick Venture | a6e21a0 | 2018-10-23 09:45:04 -0700 | [diff] [blame] | 46 | for (const auto& h : handlers) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 47 | { |
| 48 | std::vector<std::string> blobs = h->getBlobIds(); |
| 49 | ids.insert(ids.end(), blobs.begin(), blobs.end()); |
| 50 | } |
| 51 | |
| 52 | return ids.size(); |
| 53 | } |
| 54 | |
| 55 | std::string BlobManager::getBlobId(uint32_t index) |
| 56 | { |
| 57 | /* Range check. */ |
| 58 | if (index >= ids.size()) |
| 59 | { |
| 60 | return ""; |
| 61 | } |
| 62 | |
| 63 | return ids[index]; |
| 64 | } |
| 65 | |
| 66 | bool BlobManager::open(uint16_t flags, const std::string& path, |
| 67 | uint16_t* session) |
| 68 | { |
| 69 | GenericBlobInterface* handler = getHandler(path); |
| 70 | |
| 71 | /* No handler found. */ |
| 72 | if (!handler) |
| 73 | { |
| 74 | return false; |
| 75 | } |
| 76 | |
Patrick Venture | 2f58151 | 2019-01-10 09:30:36 -0800 | [diff] [blame] | 77 | /* No sessions available... */ |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 78 | if (!getSession(session)) |
| 79 | { |
| 80 | return false; |
| 81 | } |
| 82 | |
| 83 | /* Verify flags - must be at least read or write */ |
| 84 | if (!(flags & (OpenFlags::read | OpenFlags::write))) |
| 85 | { |
| 86 | /* Neither read not write set, which means calls to Read/Write will |
| 87 | * reject. */ |
| 88 | return false; |
| 89 | } |
| 90 | |
Kun Yi | b61a88b | 2019-11-12 22:50:34 -0800 | [diff] [blame] | 91 | /* Try to clean up anything that's falling out of cleanup timeout for this |
| 92 | * handler */ |
| 93 | cleanUpStaleSessions(handler); |
| 94 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 95 | if (!handler->open(*session, flags, path)) |
| 96 | { |
| 97 | return false; |
| 98 | } |
| 99 | |
| 100 | /* Associate session with handler */ |
| 101 | sessions[*session] = SessionInfo(path, handler, flags); |
Kun Yi | b61a88b | 2019-11-12 22:50:34 -0800 | [diff] [blame] | 102 | openSessions[handler].insert(*session); |
Kun Yi | 9ce8348 | 2019-11-14 13:08:39 -0800 | [diff] [blame] | 103 | openFiles[path]++; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 104 | return true; |
| 105 | } |
| 106 | |
Patrick Venture | 8bc1177 | 2019-06-04 07:20:24 -0700 | [diff] [blame] | 107 | bool BlobManager::stat(const std::string& path, BlobMeta* meta) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 108 | { |
| 109 | /* meta should never be NULL. */ |
| 110 | GenericBlobInterface* handler = getHandler(path); |
| 111 | |
| 112 | /* No handler found. */ |
| 113 | if (!handler) |
| 114 | { |
| 115 | return false; |
| 116 | } |
| 117 | |
| 118 | return handler->stat(path, meta); |
| 119 | } |
| 120 | |
Patrick Venture | 8bc1177 | 2019-06-04 07:20:24 -0700 | [diff] [blame] | 121 | bool BlobManager::stat(uint16_t session, BlobMeta* meta) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 122 | { |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 123 | if (auto handler = getActionHandler(session)) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 124 | { |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 125 | return handler->stat(session, meta); |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 126 | } |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 127 | return false; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | bool BlobManager::commit(uint16_t session, const std::vector<uint8_t>& data) |
| 131 | { |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 132 | if (auto handler = getActionHandler(session)) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 133 | { |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 134 | return handler->commit(session, data); |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 135 | } |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 136 | return false; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | bool BlobManager::close(uint16_t session) |
| 140 | { |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 141 | if (auto handler = getActionHandler(session)) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 142 | { |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 143 | if (!handler->close(session)) |
| 144 | { |
| 145 | return false; |
| 146 | } |
Kun Yi | b61a88b | 2019-11-12 22:50:34 -0800 | [diff] [blame] | 147 | eraseSession(handler, session); |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 148 | return true; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 149 | } |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 150 | return false; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | std::vector<uint8_t> BlobManager::read(uint16_t session, uint32_t offset, |
| 154 | uint32_t requestedSize) |
| 155 | { |
Patrick Venture | 86c87f5 | 2019-02-01 14:44:15 -0800 | [diff] [blame] | 156 | /* TODO: Currently, configure_ac isn't finding libuserlayer, w.r.t the |
| 157 | * symbols I need. |
| 158 | */ |
| 159 | |
| 160 | /** The channel to use for now. |
| 161 | * TODO: We will receive this information through the IPMI message call. |
| 162 | */ |
| 163 | // const int ipmiChannel = ipmi::currentChNum; |
| 164 | /** This information is transport specific. |
| 165 | * TODO: We need a way to know this dynamically. |
| 166 | * on BT, 4 bytes of header, and 1 reply code. |
| 167 | */ |
| 168 | // uint32_t maxTransportSize = ipmi::getChannelMaxTransferSize(ipmiChannel); |
| 169 | |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 170 | if (auto handler = getActionHandler(session, OpenFlags::read)) |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 171 | { |
| 172 | return handler->read(session, offset, |
| 173 | std::min(maximumReadSize, requestedSize)); |
| 174 | } |
| 175 | return {}; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | bool BlobManager::write(uint16_t session, uint32_t offset, |
| 179 | const std::vector<uint8_t>& data) |
| 180 | { |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 181 | if (auto handler = getActionHandler(session, OpenFlags::write)) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 182 | { |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 183 | return handler->write(session, offset, data); |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 184 | } |
Kun Yi | fea1d81 | 2019-11-14 11:38:44 -0800 | [diff] [blame] | 185 | return false; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | bool BlobManager::deleteBlob(const std::string& path) |
| 189 | { |
| 190 | GenericBlobInterface* handler = getHandler(path); |
| 191 | |
| 192 | /* No handler found. */ |
| 193 | if (!handler) |
| 194 | { |
| 195 | return false; |
| 196 | } |
| 197 | |
| 198 | /* Check if the file has any open handles. */ |
Kun Yi | 9ce8348 | 2019-11-14 13:08:39 -0800 | [diff] [blame] | 199 | if (openFiles[path] > 0) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 200 | { |
| 201 | return false; |
| 202 | } |
| 203 | |
| 204 | /* Try deleting it. */ |
| 205 | return handler->deleteBlob(path); |
| 206 | } |
| 207 | |
Patrick Venture | 5c4b17b | 2018-10-04 10:32:22 -0700 | [diff] [blame] | 208 | bool BlobManager::writeMeta(uint16_t session, uint32_t offset, |
| 209 | const std::vector<uint8_t>& data) |
| 210 | { |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 211 | if (auto handler = getActionHandler(session)) |
Patrick Venture | 5c4b17b | 2018-10-04 10:32:22 -0700 | [diff] [blame] | 212 | { |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 213 | return handler->writeMeta(session, offset, data); |
Patrick Venture | 5c4b17b | 2018-10-04 10:32:22 -0700 | [diff] [blame] | 214 | } |
Kun Yi | c892f4a | 2019-11-19 13:42:46 -0800 | [diff] [blame] | 215 | return false; |
Patrick Venture | 5c4b17b | 2018-10-04 10:32:22 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 218 | bool BlobManager::getSession(uint16_t* sess) |
| 219 | { |
| 220 | uint16_t tries = 0; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 221 | |
| 222 | if (!sess) |
| 223 | { |
| 224 | return false; |
| 225 | } |
| 226 | |
| 227 | /* This is not meant to fail as you have 64KiB values available. */ |
| 228 | |
| 229 | /* TODO(venture): We could just count the keys in the session map to know |
| 230 | * if it's full. |
| 231 | */ |
| 232 | do |
| 233 | { |
Patrick Venture | c9ad5ff | 2018-10-12 17:05:49 -0700 | [diff] [blame] | 234 | uint16_t lsess = next++; |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 235 | if (!sessions.count(lsess)) |
| 236 | { |
| 237 | /* value not in use, return it. */ |
| 238 | (*sess) = lsess; |
| 239 | return true; |
| 240 | } |
| 241 | } while (++tries < 0xffff); |
| 242 | |
| 243 | return false; |
| 244 | } |
Patrick Venture | b3e07e2 | 2018-09-27 15:11:57 -0700 | [diff] [blame] | 245 | |
Kun Yi | 9cd8f76 | 2019-11-22 20:11:42 -0800 | [diff] [blame] | 246 | GenericBlobInterface* BlobManager::getHandler(const std::string& path) |
| 247 | { |
| 248 | /* Find a handler. */ |
| 249 | auto h = std::find_if( |
| 250 | handlers.begin(), handlers.end(), |
| 251 | [&path](const auto& iter) { return (iter->canHandleBlob(path)); }); |
| 252 | if (h != handlers.end()) |
| 253 | { |
| 254 | return h->get(); |
| 255 | } |
| 256 | |
| 257 | return nullptr; |
| 258 | } |
| 259 | |
| 260 | GenericBlobInterface* BlobManager::getActionHandler(uint16_t session, |
| 261 | uint16_t requiredFlags) |
| 262 | { |
| 263 | if (auto item = sessions.find(session); |
| 264 | item != sessions.end() && (item->second.flags & requiredFlags)) |
| 265 | { |
| 266 | item->second.lastActionTime = std::chrono::steady_clock::now(); |
| 267 | return item->second.handler; |
| 268 | } |
| 269 | return nullptr; |
| 270 | } |
| 271 | |
| 272 | void BlobManager::eraseSession(GenericBlobInterface* const handler, |
| 273 | uint16_t session) |
| 274 | { |
| 275 | if (auto item = sessions.find(session); item != sessions.end()) |
| 276 | { |
| 277 | const auto& blobId = item->second.blobId; |
| 278 | |
| 279 | /* Ok for openSessions[handler] to be an empty set */ |
| 280 | openSessions[handler].erase(session); |
| 281 | openFiles[blobId]--; |
| 282 | if (openFiles[blobId] == 0) |
| 283 | { |
| 284 | openFiles.erase(blobId); |
| 285 | } |
| 286 | |
| 287 | /* Erase at the end after using the session info */ |
| 288 | sessions.erase(session); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | void BlobManager::cleanUpStaleSessions(GenericBlobInterface* const handler) |
| 293 | { |
| 294 | if (openSessions.count(handler) == 0) |
| 295 | { |
| 296 | return; |
| 297 | } |
| 298 | |
| 299 | auto timeNow = std::chrono::steady_clock::now(); |
| 300 | std::set<uint16_t> expiredSet; |
| 301 | |
| 302 | for (auto sessionId : openSessions[handler]) |
| 303 | { |
| 304 | if (timeNow - sessions[sessionId].lastActionTime >= sessionTimeout) |
| 305 | { |
| 306 | expiredSet.insert(sessionId); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | for (auto sessionId : expiredSet) |
| 311 | { |
| 312 | std::cerr << "phosphor-ipmi-blobs: expiring stale session " << sessionId |
| 313 | << std::endl; |
| 314 | |
| 315 | /* We do a best case recovery by issuing an expire call. If it fails |
| 316 | * don't erase sessions since the handler side might be still tracking |
| 317 | * it as open. */ |
| 318 | if (handler->expire(sessionId)) |
| 319 | { |
| 320 | eraseSession(handler, sessionId); |
| 321 | } |
| 322 | else |
| 323 | { |
| 324 | std::cerr << "phosphor-ipmi-blobs: failed to expire session " |
| 325 | << sessionId << std::endl; |
| 326 | } |
| 327 | } |
| 328 | } |
| 329 | |
Patrick Venture | b3e07e2 | 2018-09-27 15:11:57 -0700 | [diff] [blame] | 330 | static std::unique_ptr<BlobManager> manager; |
| 331 | |
Patrick Venture | 73eb687 | 2018-10-01 18:37:34 -0700 | [diff] [blame] | 332 | ManagerInterface* getBlobManager() |
Patrick Venture | b3e07e2 | 2018-09-27 15:11:57 -0700 | [diff] [blame] | 333 | { |
| 334 | if (manager == nullptr) |
| 335 | { |
| 336 | manager = std::make_unique<BlobManager>(); |
| 337 | } |
| 338 | |
| 339 | return manager.get(); |
| 340 | } |
| 341 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 342 | } // namespace blobs |