manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Nan Zhou | 77665bd | 2022-10-12 20:28:58 +0000 | [diff] [blame] | 3 | #include "ibm/utils.hpp" |
| 4 | |
Ed Tanous | 11ba397 | 2022-07-11 09:50:41 -0700 | [diff] [blame] | 5 | #include <boost/algorithm/string/predicate.hpp> |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 6 | #include <boost/container/flat_map.hpp> |
Manojkiran Eda | 55fd1a9 | 2020-04-30 19:06:48 +0530 | [diff] [blame] | 7 | #include <boost/endian/conversion.hpp> |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 8 | #include <logging.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 9 | #include <nlohmann/json.hpp> |
| 10 | |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 11 | #include <filesystem> |
Sunitha Harish | 8a3bb71 | 2019-12-13 03:48:09 -0600 | [diff] [blame] | 12 | #include <fstream> |
Ed Tanous | 11ba397 | 2022-07-11 09:50:41 -0700 | [diff] [blame] | 13 | #include <variant> |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 14 | |
| 15 | namespace crow |
| 16 | { |
| 17 | namespace ibm_mc_lock |
| 18 | { |
| 19 | |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 20 | using SType = std::string; |
| 21 | |
| 22 | /*---------------------------------------- |
| 23 | |Segment flags : LockFlag | SegmentLength| |
| 24 | ------------------------------------------*/ |
| 25 | |
| 26 | using SegmentFlags = std::vector<std::pair<SType, uint32_t>>; |
| 27 | |
| 28 | // Lockrequest = session-id | hmc-id | locktype | resourceid | segmentinfo |
| 29 | using LockRequest = std::tuple<SType, SType, SType, uint64_t, SegmentFlags>; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 30 | using LockRequests = std::vector<LockRequest>; |
| 31 | using Rc = |
| 32 | std::pair<bool, std::variant<uint32_t, std::pair<uint32_t, LockRequest>>>; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 33 | using RcRelaseLock = std::pair<bool, std::pair<uint32_t, LockRequest>>; |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 34 | using RcGetLockList = |
| 35 | std::variant<std::string, std::vector<std::pair<uint32_t, LockRequests>>>; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 36 | using ListOfTransactionIds = std::vector<uint32_t>; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 37 | using RcAcquireLock = std::pair<bool, std::variant<Rc, std::pair<bool, int>>>; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 38 | using RcReleaseLockApi = std::pair<bool, std::variant<bool, RcRelaseLock>>; |
| 39 | using SessionFlags = std::pair<SType, SType>; |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 40 | using ListOfSessionIds = std::vector<std::string>; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 41 | |
| 42 | class Lock |
| 43 | { |
Ed Tanous | 543f440 | 2022-01-06 13:12:53 -0800 | [diff] [blame] | 44 | uint32_t transactionId = 0; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 45 | boost::container::flat_map<uint32_t, LockRequests> lockTable; |
| 46 | |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 47 | protected: |
| 48 | /* |
| 49 | * This function implements the logic for validating an incoming |
| 50 | * lock request/requests. |
| 51 | * |
| 52 | * Returns : True (if Valid) |
| 53 | * Returns : False (if not a Valid lock request) |
| 54 | */ |
| 55 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 56 | virtual bool isValidLockRequest(const LockRequest& refLockRecord); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 57 | |
| 58 | /* |
| 59 | * This function implements the logic of checking if the incoming |
| 60 | * multi-lock request is not having conflicting requirements. |
| 61 | * |
| 62 | * Returns : True (if conflicting) |
| 63 | * Returns : False (if not conflicting) |
| 64 | */ |
| 65 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 66 | virtual bool isConflictRequest(const LockRequests& refLockRequestStructure); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 67 | /* |
| 68 | * Implements the core algorithm to find the conflicting |
| 69 | * lock requests. |
| 70 | * |
| 71 | * This functions takes two lock requests and check if both |
| 72 | * are conflicting to each other. |
| 73 | * |
| 74 | * Returns : True (if conflicting) |
| 75 | * Returns : False (if not conflicting) |
| 76 | */ |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 77 | virtual bool isConflictRecord(const LockRequest& refLockRecord1, |
| 78 | const LockRequest& refLockRecord2); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * This function implements the logic of checking the conflicting |
| 82 | * locks from a incoming single/multi lock requests with the already |
| 83 | * existing lock request in the lock table. |
| 84 | * |
| 85 | */ |
| 86 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 87 | virtual Rc isConflictWithTable(const LockRequests& refLockRequestStructure); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 88 | /* |
| 89 | * This function implements the logic of checking the ownership of the |
| 90 | * lock from the releaselock request. |
| 91 | * |
| 92 | * Returns : True (if the requesting HMC & Session owns the lock(s)) |
| 93 | * Returns : False (if the request HMC or Session does not own the lock(s)) |
| 94 | */ |
| 95 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 96 | virtual RcRelaseLock isItMyLock(const ListOfTransactionIds& refRids, |
| 97 | const SessionFlags& ids); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * This function validates the the list of transactionID's and returns false |
| 101 | * if the transaction ID is not valid & not present in the lock table |
| 102 | */ |
| 103 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 104 | virtual bool validateRids(const ListOfTransactionIds& refRids); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * This function releases the locks that are already obtained by the |
| 108 | * requesting Management console. |
| 109 | */ |
| 110 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 111 | void releaseLock(const ListOfTransactionIds& refRids); |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 112 | |
| 113 | Lock() |
| 114 | { |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 115 | transactionId = lockTable.empty() ? 0 : prev(lockTable.end())->first; |
| 116 | } |
| 117 | |
Sunitha Harish | 8a3bb71 | 2019-12-13 03:48:09 -0600 | [diff] [blame] | 118 | /* |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 119 | * This function implements the algorithm for checking the respective |
| 120 | * bytes of the resource id based on the lock management algorithm. |
| 121 | */ |
| 122 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 123 | static bool checkByte(uint64_t resourceId1, uint64_t resourceId2, |
| 124 | uint32_t position); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 125 | |
| 126 | /* |
| 127 | * This functions implements a counter that generates a unique 32 bit |
| 128 | * number for every successful transaction. This number will be used by |
| 129 | * the Management Console for debug. |
| 130 | */ |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 131 | virtual uint32_t generateTransactionId(); |
Sunitha Harish | 8a3bb71 | 2019-12-13 03:48:09 -0600 | [diff] [blame] | 132 | |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 133 | public: |
| 134 | /* |
Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame] | 135 | * Explicitly deleted copy and move constructors |
| 136 | */ |
| 137 | Lock(const Lock&) = delete; |
| 138 | Lock(Lock&&) = delete; |
| 139 | Lock& operator=(const Lock&) = delete; |
| 140 | Lock& operator=(Lock&&) = delete; |
| 141 | |
| 142 | /* |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 143 | * This function implements the logic for acquiring a lock on a |
Manojkiran Eda | 5bb0ece | 2020-01-20 20:22:36 +0530 | [diff] [blame] | 144 | * resource if the incoming request is legitimate without any |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 145 | * conflicting requirements & without any conflicting requirement |
Gunnar Mills | caa3ce3 | 2020-07-08 14:46:53 -0500 | [diff] [blame] | 146 | * with the existing locks in the lock table. |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 147 | * |
| 148 | */ |
| 149 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 150 | RcAcquireLock acquireLock(const LockRequests& lockRequestStructure); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 151 | |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 152 | /* |
| 153 | * This function implements the logic for releasing the lock that are |
| 154 | * owned by a management console session. |
| 155 | * |
| 156 | * The locks can be released by two ways |
| 157 | * - Using list of transaction ID's |
| 158 | * - Using a Session ID |
| 159 | * |
| 160 | * Client can choose either of the ways by using `Type` JSON key. |
| 161 | * |
| 162 | */ |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 163 | RcReleaseLockApi releaseLock(const ListOfTransactionIds& p, |
| 164 | const SessionFlags& ids); |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 165 | |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 166 | /* |
| 167 | * This function implements the logic for getting the list of locks obtained |
| 168 | * by a particular management console. |
| 169 | */ |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 170 | RcGetLockList getLockList(const ListOfSessionIds& listSessionId); |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 171 | |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 172 | /* |
| 173 | * This function is releases all the locks obtained by a particular |
| 174 | * session. |
| 175 | */ |
| 176 | |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 177 | void releaseLock(const std::string& sessionId); |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 178 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 179 | static Lock& getInstance() |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 180 | { |
| 181 | static Lock lockObject; |
| 182 | return lockObject; |
| 183 | } |
manojkiraneda | 4eaf2ee | 2019-12-13 17:10:41 +0530 | [diff] [blame] | 184 | |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 185 | virtual ~Lock() = default; |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 186 | }; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 187 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 188 | inline RcGetLockList Lock::getLockList(const ListOfSessionIds& listSessionId) |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 189 | { |
| 190 | |
| 191 | std::vector<std::pair<uint32_t, LockRequests>> lockList; |
| 192 | |
| 193 | if (!lockTable.empty()) |
| 194 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 195 | for (const auto& i : listSessionId) |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 196 | { |
| 197 | auto it = lockTable.begin(); |
| 198 | while (it != lockTable.end()) |
| 199 | { |
| 200 | // Check if session id of this entry matches with session id |
| 201 | // given |
| 202 | if (std::get<0>(it->second[0]) == i) |
| 203 | { |
| 204 | BMCWEB_LOG_DEBUG << "Session id is found in the locktable"; |
| 205 | |
| 206 | // Push the whole lock record into a vector for returning |
| 207 | // the json |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 208 | lockList.emplace_back(it->first, it->second); |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 209 | } |
| 210 | // Go to next entry in map |
| 211 | it++; |
| 212 | } |
| 213 | } |
| 214 | } |
| 215 | // we may have found at least one entry with the given session id |
| 216 | // return the json list of lock records pertaining to the given |
| 217 | // session id, or send an empty list if lock table is empty |
Ed Tanous | 02379d3 | 2020-09-15 21:15:44 -0700 | [diff] [blame] | 218 | return {lockList}; |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 219 | } |
| 220 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 221 | inline RcReleaseLockApi Lock::releaseLock(const ListOfTransactionIds& p, |
| 222 | const SessionFlags& ids) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 223 | { |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 224 | bool status = validateRids(p); |
| 225 | |
| 226 | if (!status) |
| 227 | { |
| 228 | // Validation of rids failed |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 229 | BMCWEB_LOG_ERROR << "releaseLock: Contains invalid request id"; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 230 | return std::make_pair(false, status); |
| 231 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 232 | // Validation passed, check if all the locks are owned by the |
| 233 | // requesting HMC |
| 234 | auto status2 = isItMyLock(p, ids); |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 235 | if (!status2.first) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 236 | { |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 237 | return std::make_pair(false, status2); |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 238 | } |
Manojkiran Eda | a1ffbb8 | 2020-10-28 17:42:21 +0530 | [diff] [blame] | 239 | return std::make_pair(true, status2); |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 240 | } |
| 241 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 242 | inline RcAcquireLock Lock::acquireLock(const LockRequests& lockRequestStructure) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 243 | { |
| 244 | |
| 245 | // validate the lock request |
| 246 | |
Ed Tanous | 9eb808c | 2022-01-25 10:19:23 -0800 | [diff] [blame] | 247 | for (const auto& lockRecord : lockRequestStructure) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 248 | { |
| 249 | bool status = isValidLockRequest(lockRecord); |
| 250 | if (!status) |
| 251 | { |
| 252 | BMCWEB_LOG_DEBUG << "Not a Valid record"; |
| 253 | BMCWEB_LOG_DEBUG << "Bad json in request"; |
| 254 | return std::make_pair(true, std::make_pair(status, 0)); |
| 255 | } |
| 256 | } |
| 257 | // check for conflict record |
| 258 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 259 | const LockRequests& multiRequest = lockRequestStructure; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 260 | bool status = isConflictRequest(multiRequest); |
| 261 | |
| 262 | if (status) |
| 263 | { |
| 264 | BMCWEB_LOG_DEBUG << "There is a conflict within itself"; |
| 265 | return std::make_pair(true, std::make_pair(status, 1)); |
| 266 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 267 | BMCWEB_LOG_DEBUG << "The request is not conflicting within itself"; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 268 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 269 | // Need to check for conflict with the locktable entries. |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 270 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 271 | auto conflict = isConflictWithTable(multiRequest); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 272 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 273 | BMCWEB_LOG_DEBUG << "Done with checking conflict with the locktable"; |
| 274 | return std::make_pair(false, conflict); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 275 | } |
| 276 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 277 | inline void Lock::releaseLock(const std::string& sessionId) |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 278 | { |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 279 | if (!lockTable.empty()) |
| 280 | { |
| 281 | auto it = lockTable.begin(); |
| 282 | while (it != lockTable.end()) |
| 283 | { |
Ed Tanous | 26f6976 | 2022-01-25 09:49:11 -0800 | [diff] [blame] | 284 | if (!it->second.empty()) |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 285 | { |
| 286 | // Check if session id of this entry matches with session id |
| 287 | // given |
| 288 | if (std::get<0>(it->second[0]) == sessionId) |
| 289 | { |
| 290 | BMCWEB_LOG_DEBUG << "Remove the lock from the locktable " |
| 291 | "having sessionID=" |
| 292 | << sessionId; |
| 293 | BMCWEB_LOG_DEBUG << "TransactionID =" << it->first; |
| 294 | it = lockTable.erase(it); |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 295 | } |
| 296 | else |
| 297 | { |
| 298 | it++; |
| 299 | } |
| 300 | } |
| 301 | } |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 302 | } |
| 303 | } |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 304 | inline RcRelaseLock Lock::isItMyLock(const ListOfTransactionIds& refRids, |
| 305 | const SessionFlags& ids) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 306 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 307 | for (const auto& id : refRids) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 308 | { |
| 309 | // Just need to compare the client id of the first lock records in the |
| 310 | // complete lock row(in the map), because the rest of the lock records |
| 311 | // would have the same client id |
| 312 | |
| 313 | std::string expectedClientId = std::get<1>(lockTable[id][0]); |
| 314 | std::string expectedSessionId = std::get<0>(lockTable[id][0]); |
| 315 | |
| 316 | if ((expectedClientId == ids.first) && |
| 317 | (expectedSessionId == ids.second)) |
| 318 | { |
| 319 | // It is owned by the currently request hmc |
| 320 | BMCWEB_LOG_DEBUG << "Lock is owned by the current hmc"; |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 321 | // remove the lock |
| 322 | if (lockTable.erase(id) != 0U) |
| 323 | { |
| 324 | BMCWEB_LOG_DEBUG << "Removing the locks with transaction ID : " |
| 325 | << id; |
| 326 | } |
| 327 | else |
| 328 | { |
| 329 | BMCWEB_LOG_ERROR << "Removing the locks from the lock table " |
| 330 | "failed, transaction ID: " |
| 331 | << id; |
| 332 | } |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 333 | } |
| 334 | else |
| 335 | { |
| 336 | BMCWEB_LOG_DEBUG << "Lock is not owned by the current hmc"; |
| 337 | return std::make_pair(false, std::make_pair(id, lockTable[id][0])); |
| 338 | } |
| 339 | } |
| 340 | return std::make_pair(true, std::make_pair(0, LockRequest())); |
| 341 | } |
| 342 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 343 | inline bool Lock::validateRids(const ListOfTransactionIds& refRids) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 344 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 345 | for (const auto& id : refRids) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 346 | { |
| 347 | auto search = lockTable.find(id); |
| 348 | |
| 349 | if (search != lockTable.end()) |
| 350 | { |
| 351 | BMCWEB_LOG_DEBUG << "Valid Transaction id"; |
| 352 | // continue for the next rid |
| 353 | } |
| 354 | else |
| 355 | { |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 356 | BMCWEB_LOG_ERROR << "validateRids: At least 1 inValid Request id: " |
| 357 | << id; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 358 | return false; |
| 359 | } |
| 360 | } |
| 361 | return true; |
| 362 | } |
| 363 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 364 | inline bool Lock::isValidLockRequest(const LockRequest& refLockRecord) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 365 | { |
| 366 | |
| 367 | // validate the locktype |
| 368 | |
| 369 | if (!((boost::equals(std::get<2>(refLockRecord), "Read") || |
| 370 | (boost::equals(std::get<2>(refLockRecord), "Write"))))) |
| 371 | { |
| 372 | BMCWEB_LOG_DEBUG << "Validation of LockType Failed"; |
| 373 | BMCWEB_LOG_DEBUG << "Locktype : " << std::get<2>(refLockRecord); |
| 374 | return false; |
| 375 | } |
| 376 | |
| 377 | BMCWEB_LOG_DEBUG << static_cast<int>(std::get<4>(refLockRecord).size()); |
| 378 | |
| 379 | // validate the number of segments |
| 380 | // Allowed No of segments are between 2 and 6 |
| 381 | if ((static_cast<int>(std::get<4>(refLockRecord).size()) > 6) || |
| 382 | (static_cast<int>(std::get<4>(refLockRecord).size()) < 2)) |
| 383 | { |
Gunnar Mills | caa3ce3 | 2020-07-08 14:46:53 -0500 | [diff] [blame] | 384 | BMCWEB_LOG_DEBUG << "Validation of Number of Segments Failed"; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 385 | BMCWEB_LOG_DEBUG << "Number of Segments provied : " |
Ed Tanous | 7cd94e4 | 2020-09-29 16:03:02 -0700 | [diff] [blame] | 386 | << std::get<4>(refLockRecord).size(); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 387 | return false; |
| 388 | } |
| 389 | |
| 390 | int lockFlag = 0; |
| 391 | // validate the lockflags & segment length |
| 392 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 393 | for (const auto& p : std::get<4>(refLockRecord)) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 394 | { |
| 395 | |
| 396 | // validate the lock flags |
| 397 | // Allowed lockflags are locksame,lockall & dontlock |
| 398 | |
| 399 | if (!((boost::equals(p.first, "LockSame") || |
| 400 | (boost::equals(p.first, "LockAll")) || |
| 401 | (boost::equals(p.first, "DontLock"))))) |
| 402 | { |
| 403 | BMCWEB_LOG_DEBUG << "Validation of lock flags failed"; |
| 404 | BMCWEB_LOG_DEBUG << p.first; |
| 405 | return false; |
| 406 | } |
| 407 | |
| 408 | // validate the segment length |
| 409 | // Allowed values of segment length are between 1 and 4 |
| 410 | |
| 411 | if (p.second < 1 || p.second > 4) |
| 412 | { |
| 413 | BMCWEB_LOG_DEBUG << "Validation of Segment Length Failed"; |
| 414 | BMCWEB_LOG_DEBUG << p.second; |
| 415 | return false; |
| 416 | } |
| 417 | |
| 418 | if ((boost::equals(p.first, "LockSame") || |
| 419 | (boost::equals(p.first, "LockAll")))) |
| 420 | { |
| 421 | ++lockFlag; |
| 422 | if (lockFlag >= 2) |
| 423 | { |
| 424 | return false; |
| 425 | } |
| 426 | } |
| 427 | } |
| 428 | |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 429 | return true; |
| 430 | } |
| 431 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 432 | inline Rc Lock::isConflictWithTable(const LockRequests& refLockRequestStructure) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 433 | { |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 434 | if (lockTable.empty()) |
| 435 | { |
Ed Tanous | f8fe53e | 2022-06-30 15:55:45 -0700 | [diff] [blame^] | 436 | uint32_t thisTransactionId = generateTransactionId(); |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 437 | BMCWEB_LOG_DEBUG << thisTransactionId; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 438 | // Lock table is empty, so we are safe to add the lockrecords |
| 439 | // as there will be no conflict |
| 440 | BMCWEB_LOG_DEBUG << "Lock table is empty, so adding the lockrecords"; |
| 441 | lockTable.emplace(std::pair<uint32_t, LockRequests>( |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 442 | thisTransactionId, refLockRequestStructure)); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 443 | |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 444 | return std::make_pair(false, thisTransactionId); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 445 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 446 | BMCWEB_LOG_DEBUG |
| 447 | << "Lock table is not empty, check for conflict with lock table"; |
| 448 | // Lock table is not empty, compare the lockrequest entries with |
| 449 | // the entries in the lock table |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 450 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 451 | for (const auto& lockRecord1 : refLockRequestStructure) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 452 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 453 | for (const auto& map : lockTable) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 454 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 455 | for (const auto& lockRecord2 : map.second) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 456 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 457 | bool status = isConflictRecord(lockRecord1, lockRecord2); |
| 458 | if (status) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 459 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 460 | return std::make_pair( |
| 461 | true, std::make_pair(map.first, lockRecord2)); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 462 | } |
| 463 | } |
| 464 | } |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 465 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 466 | |
| 467 | // Reached here, so no conflict with the locktable, so we are safe to |
| 468 | // add the request records into the lock table |
| 469 | |
| 470 | // Lock table is empty, so we are safe to add the lockrecords |
| 471 | // as there will be no conflict |
| 472 | BMCWEB_LOG_DEBUG << " Adding elements into lock table"; |
| 473 | transactionId = generateTransactionId(); |
| 474 | lockTable.emplace(std::make_pair(transactionId, refLockRequestStructure)); |
| 475 | |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 476 | return std::make_pair(false, transactionId); |
| 477 | } |
| 478 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 479 | inline bool Lock::isConflictRequest(const LockRequests& refLockRequestStructure) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 480 | { |
| 481 | // check for all the locks coming in as a part of single request |
| 482 | // return conflict if any two lock requests are conflicting |
| 483 | |
| 484 | if (refLockRequestStructure.size() == 1) |
| 485 | { |
| 486 | BMCWEB_LOG_DEBUG << "Only single lock request, so there is no conflict"; |
| 487 | // This means , we have only one lock request in the current |
| 488 | // request , so no conflict within the request |
| 489 | return false; |
| 490 | } |
| 491 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 492 | BMCWEB_LOG_DEBUG |
| 493 | << "There are multiple lock requests coming in a single request"; |
| 494 | |
| 495 | // There are multiple requests a part of one request |
| 496 | |
| 497 | for (uint32_t i = 0; i < refLockRequestStructure.size(); i++) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 498 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 499 | for (uint32_t j = i + 1; j < refLockRequestStructure.size(); j++) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 500 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 501 | const LockRequest& p = refLockRequestStructure[i]; |
| 502 | const LockRequest& q = refLockRequestStructure[j]; |
| 503 | bool status = isConflictRecord(p, q); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 504 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 505 | if (status) |
| 506 | { |
| 507 | return true; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 508 | } |
| 509 | } |
| 510 | } |
| 511 | return false; |
| 512 | } |
| 513 | |
| 514 | // This function converts the provided uint64_t resource id's from the two |
Gunnar Mills | caa3ce3 | 2020-07-08 14:46:53 -0500 | [diff] [blame] | 515 | // lock requests subjected for comparison, and this function also compares |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 516 | // the content by bytes mentioned by a uint32_t number. |
| 517 | |
| 518 | // If all the elements in the lock requests which are subjected for comparison |
Gunnar Mills | caa3ce3 | 2020-07-08 14:46:53 -0500 | [diff] [blame] | 519 | // are same, then the last comparison would be to check for the respective |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 520 | // bytes in the resourceid based on the segment length. |
| 521 | |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 522 | inline bool Lock::checkByte(uint64_t resourceId1, uint64_t resourceId2, |
| 523 | uint32_t position) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 524 | { |
Ed Tanous | 46ff87b | 2022-01-07 09:25:51 -0800 | [diff] [blame] | 525 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 526 | uint8_t* p = reinterpret_cast<uint8_t*>(&resourceId1); |
Ed Tanous | 46ff87b | 2022-01-07 09:25:51 -0800 | [diff] [blame] | 527 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 528 | uint8_t* q = reinterpret_cast<uint8_t*>(&resourceId2); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 529 | |
Ed Tanous | ca45aa3 | 2022-01-07 09:28:45 -0800 | [diff] [blame] | 530 | // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) |
| 531 | uint8_t pPosition = p[position]; |
| 532 | // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) |
| 533 | uint8_t qPosition = q[position]; |
| 534 | |
| 535 | BMCWEB_LOG_DEBUG << "Comparing bytes " << std::to_string(pPosition) << "," |
| 536 | << std::to_string(qPosition); |
Ed Tanous | dcf2ebc | 2022-01-25 10:07:45 -0800 | [diff] [blame] | 537 | return pPosition == qPosition; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 538 | } |
| 539 | |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 540 | inline bool Lock::isConflictRecord(const LockRequest& refLockRecord1, |
| 541 | const LockRequest& refLockRecord2) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 542 | { |
| 543 | // No conflict if both are read locks |
| 544 | |
| 545 | if (boost::equals(std::get<2>(refLockRecord1), "Read") && |
| 546 | boost::equals(std::get<2>(refLockRecord2), "Read")) |
| 547 | { |
| 548 | BMCWEB_LOG_DEBUG << "Both are read locks, no conflict"; |
| 549 | return false; |
| 550 | } |
| 551 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 552 | uint32_t i = 0; |
| 553 | for (const auto& p : std::get<4>(refLockRecord1)) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 554 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 555 | |
| 556 | // return conflict when any of them is try to lock all resources |
| 557 | // under the current resource level. |
| 558 | if (boost::equals(p.first, "LockAll") || |
| 559 | boost::equals(std::get<4>(refLockRecord2)[i].first, "LockAll")) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 560 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 561 | BMCWEB_LOG_DEBUG |
| 562 | << "Either of the Comparing locks are trying to lock all " |
| 563 | "resources under the current resource level"; |
| 564 | return true; |
| 565 | } |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 566 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 567 | // determine if there is a lock-all-with-same-segment-size. |
| 568 | // If the current segment sizes are the same,then we should fail. |
| 569 | |
| 570 | if ((boost::equals(p.first, "LockSame") || |
| 571 | boost::equals(std::get<4>(refLockRecord2)[i].first, "LockSame")) && |
| 572 | (p.second == std::get<4>(refLockRecord2)[i].second)) |
| 573 | { |
| 574 | return true; |
| 575 | } |
| 576 | |
| 577 | // if segment lengths are not the same, it means two different locks |
| 578 | // So no conflict |
| 579 | if (p.second != std::get<4>(refLockRecord2)[i].second) |
| 580 | { |
| 581 | BMCWEB_LOG_DEBUG << "Segment lengths are not same"; |
| 582 | BMCWEB_LOG_DEBUG << "Segment 1 length : " << p.second; |
| 583 | BMCWEB_LOG_DEBUG << "Segment 2 length : " |
| 584 | << std::get<4>(refLockRecord2)[i].second; |
| 585 | return false; |
| 586 | } |
| 587 | |
| 588 | // compare segment data |
| 589 | |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 590 | for (uint32_t j = 0; j < p.second; j++) |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 591 | { |
Ali Ahmed | d3d26ba | 2021-04-30 09:13:53 -0500 | [diff] [blame] | 592 | // if the segment data is different, then the locks is on a |
| 593 | // different resource so no conflict between the lock |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 594 | // records. |
Ali Ahmed | d3d26ba | 2021-04-30 09:13:53 -0500 | [diff] [blame] | 595 | // BMC is little endian, but the resourceID is formed by |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 596 | // the Management Console in such a way that, the first byte |
| 597 | // from the MSB Position corresponds to the First Segment |
Ali Ahmed | d3d26ba | 2021-04-30 09:13:53 -0500 | [diff] [blame] | 598 | // data. Therefore we need to convert the incoming |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 599 | // resourceID into Big Endian before processing further. |
| 600 | if (!(checkByte( |
| 601 | boost::endian::endian_reverse(std::get<3>(refLockRecord1)), |
| 602 | boost::endian::endian_reverse(std::get<3>(refLockRecord2)), |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 603 | j))) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 604 | { |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 605 | return false; |
| 606 | } |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 607 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 608 | |
| 609 | ++i; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 610 | } |
| 611 | |
Sunitha Harish | 41bb02b | 2022-08-08 03:12:15 -0500 | [diff] [blame] | 612 | return true; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 613 | } |
| 614 | |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 615 | inline uint32_t Lock::generateTransactionId() |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 616 | { |
| 617 | ++transactionId; |
| 618 | return transactionId; |
| 619 | } |
| 620 | |
| 621 | } // namespace ibm_mc_lock |
| 622 | } // namespace crow |