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