Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 1 | #pragma once |
Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 2 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 3 | #include "app.hpp" |
| 4 | #include "async_resp.hpp" |
| 5 | #include "error_messages.hpp" |
| 6 | #include "event_service_manager.hpp" |
| 7 | #include "ibm/locks.hpp" |
| 8 | #include "resource_messages.hpp" |
| 9 | #include "utils/json_utils.hpp" |
| 10 | |
Ed Tanous | 11ba397 | 2022-07-11 09:50:41 -0700 | [diff] [blame] | 11 | #include <boost/algorithm/string/predicate.hpp> |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 12 | #include <boost/container/flat_set.hpp> |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 13 | #include <nlohmann/json.hpp> |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 14 | #include <sdbusplus/message/types.hpp> |
| 15 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 16 | #include <filesystem> |
| 17 | #include <fstream> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 18 | |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 19 | using SType = std::string; |
| 20 | using SegmentFlags = std::vector<std::pair<std::string, uint32_t>>; |
| 21 | using LockRequest = std::tuple<SType, SType, SType, uint64_t, SegmentFlags>; |
| 22 | using LockRequests = std::vector<LockRequest>; |
| 23 | using Rc = std::pair<bool, std::variant<uint32_t, LockRequest>>; |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 24 | using RcGetLockList = |
| 25 | std::variant<std::string, std::vector<std::pair<uint32_t, LockRequests>>>; |
| 26 | using ListOfSessionIds = std::vector<std::string>; |
Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 27 | namespace crow |
| 28 | { |
| 29 | namespace ibm_mc |
| 30 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 31 | constexpr const char* methodNotAllowedMsg = "Method Not Allowed"; |
| 32 | constexpr const char* resourceNotFoundMsg = "Resource Not Found"; |
| 33 | constexpr const char* contentNotAcceptableMsg = "Content Not Acceptable"; |
| 34 | constexpr const char* internalServerError = "Internal Server Error"; |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 35 | |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 36 | constexpr size_t maxSaveareaDirSize = |
Sunitha Harish | f8a4347 | 2022-08-08 02:07:12 -0500 | [diff] [blame] | 37 | 25000000; // Allow save area dir size to be max 25MB |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 38 | constexpr size_t minSaveareaFileSize = |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 39 | 100; // Allow save area file size of minimum 100B |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 40 | constexpr size_t maxSaveareaFileSize = |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 41 | 500000; // Allow save area file size upto 500KB |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 42 | constexpr size_t maxBroadcastMsgSize = |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 43 | 1000; // Allow Broadcast message size upto 1KB |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 44 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 45 | inline void handleFilePut(const crow::Request& req, |
| 46 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | 02379d3 | 2020-09-15 21:15:44 -0700 | [diff] [blame] | 47 | const std::string& fileID) |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 48 | { |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 49 | std::error_code ec; |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 50 | // Check the content-type of the request |
Sunitha Harish | 086d32c | 2021-02-01 02:11:49 -0600 | [diff] [blame] | 51 | boost::beast::string_view contentType = req.getHeaderValue("content-type"); |
| 52 | if (!boost::iequals(contentType, "application/octet-stream")) |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 53 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 54 | asyncResp->res.result(boost::beast::http::status::not_acceptable); |
| 55 | asyncResp->res.jsonValue["Description"] = contentNotAcceptableMsg; |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 56 | return; |
| 57 | } |
Sunitha Harish | 086d32c | 2021-02-01 02:11:49 -0600 | [diff] [blame] | 58 | BMCWEB_LOG_DEBUG |
| 59 | << "File upload in application/octet-stream format. Continue.."; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 60 | |
| 61 | BMCWEB_LOG_DEBUG |
| 62 | << "handleIbmPut: Request to create/update the save-area file"; |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 63 | std::string_view path = |
| 64 | "/var/lib/bmcweb/ibm-management-console/configfiles"; |
| 65 | if (!crow::ibm_utils::createDirectory(path)) |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 66 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 67 | asyncResp->res.result(boost::beast::http::status::not_found); |
| 68 | asyncResp->res.jsonValue["Description"] = resourceNotFoundMsg; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 69 | return; |
| 70 | } |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 71 | |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 72 | std::ofstream file; |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 73 | std::filesystem::path loc( |
| 74 | "/var/lib/bmcweb/ibm-management-console/configfiles"); |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 75 | |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 76 | // Get the current size of the savearea directory |
| 77 | std::filesystem::recursive_directory_iterator iter(loc, ec); |
| 78 | if (ec) |
| 79 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 80 | asyncResp->res.result( |
| 81 | boost::beast::http::status::internal_server_error); |
| 82 | asyncResp->res.jsonValue["Description"] = internalServerError; |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 83 | BMCWEB_LOG_DEBUG << "handleIbmPut: Failed to prepare save-area " |
| 84 | "directory iterator. ec : " |
| 85 | << ec; |
| 86 | return; |
| 87 | } |
| 88 | std::uintmax_t saveAreaDirSize = 0; |
Ed Tanous | 9eb808c | 2022-01-25 10:19:23 -0800 | [diff] [blame] | 89 | for (const auto& it : iter) |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 90 | { |
| 91 | if (!std::filesystem::is_directory(it, ec)) |
| 92 | { |
| 93 | if (ec) |
| 94 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 95 | asyncResp->res.result( |
| 96 | boost::beast::http::status::internal_server_error); |
| 97 | asyncResp->res.jsonValue["Description"] = internalServerError; |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 98 | BMCWEB_LOG_DEBUG << "handleIbmPut: Failed to find save-area " |
| 99 | "directory . ec : " |
| 100 | << ec; |
| 101 | return; |
| 102 | } |
| 103 | std::uintmax_t fileSize = std::filesystem::file_size(it, ec); |
| 104 | if (ec) |
| 105 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 106 | asyncResp->res.result( |
| 107 | boost::beast::http::status::internal_server_error); |
| 108 | asyncResp->res.jsonValue["Description"] = internalServerError; |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 109 | BMCWEB_LOG_DEBUG << "handleIbmPut: Failed to find save-area " |
| 110 | "file size inside the directory . ec : " |
| 111 | << ec; |
| 112 | return; |
| 113 | } |
| 114 | saveAreaDirSize += fileSize; |
| 115 | } |
| 116 | } |
| 117 | BMCWEB_LOG_DEBUG << "saveAreaDirSize: " << saveAreaDirSize; |
| 118 | |
| 119 | // Get the file size getting uploaded |
Ed Tanous | 33c6b58 | 2023-02-14 15:05:48 -0800 | [diff] [blame] | 120 | const std::string& data = req.body(); |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 121 | BMCWEB_LOG_DEBUG << "data length: " << data.length(); |
| 122 | |
| 123 | if (data.length() < minSaveareaFileSize) |
| 124 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 125 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 126 | asyncResp->res.jsonValue["Description"] = |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 127 | "File size is less than minimum allowed size[100B]"; |
| 128 | return; |
| 129 | } |
| 130 | if (data.length() > maxSaveareaFileSize) |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 131 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 132 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 133 | asyncResp->res.jsonValue["Description"] = |
Ratan Gupta | e46946a | 2020-05-11 13:22:59 +0530 | [diff] [blame] | 134 | "File size exceeds maximum allowed size[500KB]"; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 135 | return; |
| 136 | } |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 137 | |
| 138 | // Form the file path |
| 139 | loc /= fileID; |
Ed Tanous | 8cc8ede | 2022-02-28 10:20:59 -0800 | [diff] [blame] | 140 | BMCWEB_LOG_DEBUG << "Writing to the file: " << loc.string(); |
Asmitha Karunanithi | 10693fa | 2020-07-27 02:27:49 -0500 | [diff] [blame] | 141 | |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 142 | // Check if the same file exists in the directory |
| 143 | bool fileExists = std::filesystem::exists(loc, ec); |
| 144 | if (ec) |
Asmitha Karunanithi | 10693fa | 2020-07-27 02:27:49 -0500 | [diff] [blame] | 145 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 146 | asyncResp->res.result( |
| 147 | boost::beast::http::status::internal_server_error); |
| 148 | asyncResp->res.jsonValue["Description"] = internalServerError; |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 149 | BMCWEB_LOG_DEBUG << "handleIbmPut: Failed to find if file exists. ec : " |
| 150 | << ec; |
| 151 | return; |
Asmitha Karunanithi | 10693fa | 2020-07-27 02:27:49 -0500 | [diff] [blame] | 152 | } |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 153 | |
| 154 | std::uintmax_t newSizeToWrite = 0; |
| 155 | if (fileExists) |
| 156 | { |
| 157 | // File exists. Get the current file size |
| 158 | std::uintmax_t currentFileSize = std::filesystem::file_size(loc, ec); |
| 159 | if (ec) |
| 160 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 161 | asyncResp->res.result( |
| 162 | boost::beast::http::status::internal_server_error); |
| 163 | asyncResp->res.jsonValue["Description"] = internalServerError; |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 164 | BMCWEB_LOG_DEBUG << "handleIbmPut: Failed to find file size. ec : " |
| 165 | << ec; |
| 166 | return; |
| 167 | } |
| 168 | // Calculate the difference in the file size. |
| 169 | // If the data.length is greater than the existing file size, then |
| 170 | // calculate the difference. Else consider the delta size as zero - |
| 171 | // because there is no increase in the total directory size. |
| 172 | // We need to add the diff only if the incoming data is larger than the |
| 173 | // existing filesize |
| 174 | if (data.length() > currentFileSize) |
| 175 | { |
| 176 | newSizeToWrite = data.length() - currentFileSize; |
| 177 | } |
| 178 | BMCWEB_LOG_DEBUG << "newSizeToWrite: " << newSizeToWrite; |
| 179 | } |
| 180 | else |
| 181 | { |
| 182 | // This is a new file upload |
| 183 | newSizeToWrite = data.length(); |
| 184 | } |
| 185 | |
| 186 | // Calculate the total dir size before writing the new file |
| 187 | BMCWEB_LOG_DEBUG << "total new size: " << saveAreaDirSize + newSizeToWrite; |
| 188 | |
| 189 | if ((saveAreaDirSize + newSizeToWrite) > maxSaveareaDirSize) |
| 190 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 191 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 192 | asyncResp->res.jsonValue["Description"] = |
| 193 | "File size does not fit in the savearea " |
Sunitha Harish | f8a4347 | 2022-08-08 02:07:12 -0500 | [diff] [blame] | 194 | "directory maximum allowed size[25MB]"; |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 195 | return; |
| 196 | } |
| 197 | |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 198 | file.open(loc, std::ofstream::out); |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 199 | |
| 200 | // set the permission of the file to 600 |
| 201 | std::filesystem::perms permission = std::filesystem::perms::owner_write | |
| 202 | std::filesystem::perms::owner_read; |
| 203 | std::filesystem::permissions(loc, permission); |
| 204 | |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 205 | if (file.fail()) |
| 206 | { |
| 207 | BMCWEB_LOG_DEBUG << "Error while opening the file for writing"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 208 | asyncResp->res.result( |
| 209 | boost::beast::http::status::internal_server_error); |
| 210 | asyncResp->res.jsonValue["Description"] = |
| 211 | "Error while creating the file"; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 212 | return; |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 213 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 214 | file << data; |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 215 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 216 | std::string origin = "/ibm/v1/Host/ConfigFiles/" + fileID; |
| 217 | // Push an event |
| 218 | if (fileExists) |
| 219 | { |
| 220 | BMCWEB_LOG_DEBUG << "config file is updated"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 221 | asyncResp->res.jsonValue["Description"] = "File Updated"; |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 222 | |
| 223 | redfish::EventServiceManager::getInstance().sendEvent( |
| 224 | redfish::messages::resourceChanged(), origin, "IBMConfigFile"); |
| 225 | } |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 226 | else |
| 227 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 228 | BMCWEB_LOG_DEBUG << "config file is created"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 229 | asyncResp->res.jsonValue["Description"] = "File Created"; |
Asmitha Karunanithi | 10693fa | 2020-07-27 02:27:49 -0500 | [diff] [blame] | 230 | |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 231 | redfish::EventServiceManager::getInstance().sendEvent( |
| 232 | redfish::messages::resourceCreated(), origin, "IBMConfigFile"); |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 233 | } |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 234 | } |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 235 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 236 | inline void |
| 237 | handleConfigFileList(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 238 | { |
| 239 | std::vector<std::string> pathObjList; |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 240 | std::filesystem::path loc( |
| 241 | "/var/lib/bmcweb/ibm-management-console/configfiles"); |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 242 | if (std::filesystem::exists(loc) && std::filesystem::is_directory(loc)) |
| 243 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 244 | for (const auto& file : std::filesystem::directory_iterator(loc)) |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 245 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 246 | const std::filesystem::path& pathObj = file.path(); |
cm-jishnu | 5a19396 | 2022-12-02 03:45:27 -0600 | [diff] [blame] | 247 | if (std::filesystem::is_regular_file(pathObj)) |
| 248 | { |
| 249 | pathObjList.push_back("/ibm/v1/Host/ConfigFiles/" + |
| 250 | pathObj.filename().string()); |
| 251 | } |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 252 | } |
| 253 | } |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 254 | asyncResp->res.jsonValue["@odata.type"] = |
| 255 | "#IBMConfigFile.v1_0_0.IBMConfigFile"; |
| 256 | asyncResp->res.jsonValue["@odata.id"] = "/ibm/v1/Host/ConfigFiles/"; |
| 257 | asyncResp->res.jsonValue["Id"] = "ConfigFiles"; |
| 258 | asyncResp->res.jsonValue["Name"] = "ConfigFiles"; |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 259 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 260 | asyncResp->res.jsonValue["Members"] = std::move(pathObjList); |
| 261 | asyncResp->res.jsonValue["Actions"]["#IBMConfigFiles.DeleteAll"] = { |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 262 | {"target", |
Sunitha Harish | e56f254 | 2020-07-22 02:38:59 -0500 | [diff] [blame] | 263 | "/ibm/v1/Host/ConfigFiles/Actions/IBMConfigFiles.DeleteAll"}}; |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 264 | } |
| 265 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 266 | inline void |
| 267 | deleteConfigFiles(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 268 | { |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 269 | std::error_code ec; |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 270 | std::filesystem::path loc( |
| 271 | "/var/lib/bmcweb/ibm-management-console/configfiles"); |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 272 | if (std::filesystem::exists(loc) && std::filesystem::is_directory(loc)) |
| 273 | { |
| 274 | std::filesystem::remove_all(loc, ec); |
| 275 | if (ec) |
| 276 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 277 | asyncResp->res.result( |
| 278 | boost::beast::http::status::internal_server_error); |
| 279 | asyncResp->res.jsonValue["Description"] = internalServerError; |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 280 | BMCWEB_LOG_DEBUG << "deleteConfigFiles: Failed to delete the " |
| 281 | "config files directory. ec : " |
| 282 | << ec; |
| 283 | } |
| 284 | } |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 285 | } |
| 286 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 287 | inline void |
| 288 | getLockServiceData(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 289 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 290 | asyncResp->res.jsonValue["@odata.type"] = "#LockService.v1_0_0.LockService"; |
| 291 | asyncResp->res.jsonValue["@odata.id"] = "/ibm/v1/HMC/LockService/"; |
| 292 | asyncResp->res.jsonValue["Id"] = "LockService"; |
| 293 | asyncResp->res.jsonValue["Name"] = "LockService"; |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 294 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 295 | asyncResp->res.jsonValue["Actions"]["#LockService.AcquireLock"] = { |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 296 | {"target", "/ibm/v1/HMC/LockService/Actions/LockService.AcquireLock"}}; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 297 | asyncResp->res.jsonValue["Actions"]["#LockService.ReleaseLock"] = { |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 298 | {"target", "/ibm/v1/HMC/LockService/Actions/LockService.ReleaseLock"}}; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 299 | asyncResp->res.jsonValue["Actions"]["#LockService.GetLockList"] = { |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 300 | {"target", "/ibm/v1/HMC/LockService/Actions/LockService.GetLockList"}}; |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 301 | } |
| 302 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 303 | inline void handleFileGet(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 304 | const std::string& fileID) |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 305 | { |
| 306 | BMCWEB_LOG_DEBUG << "HandleGet on SaveArea files on path: " << fileID; |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 307 | std::filesystem::path loc( |
| 308 | "/var/lib/bmcweb/ibm-management-console/configfiles/" + fileID); |
cm-jishnu | 5a19396 | 2022-12-02 03:45:27 -0600 | [diff] [blame] | 309 | if (!std::filesystem::exists(loc) || !std::filesystem::is_regular_file(loc)) |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 310 | { |
Gunnar Mills | a7405d5 | 2023-02-22 13:23:23 -0600 | [diff] [blame] | 311 | BMCWEB_LOG_WARNING << loc.string() << " Not found"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 312 | asyncResp->res.result(boost::beast::http::status::not_found); |
| 313 | asyncResp->res.jsonValue["Description"] = resourceNotFoundMsg; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 314 | return; |
| 315 | } |
| 316 | |
| 317 | std::ifstream readfile(loc.string()); |
| 318 | if (!readfile) |
| 319 | { |
Gunnar Mills | a7405d5 | 2023-02-22 13:23:23 -0600 | [diff] [blame] | 320 | BMCWEB_LOG_WARNING << loc.string() << " Not found"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 321 | asyncResp->res.result(boost::beast::http::status::not_found); |
| 322 | asyncResp->res.jsonValue["Description"] = resourceNotFoundMsg; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 323 | return; |
| 324 | } |
| 325 | |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 326 | std::string contentDispositionParam = "attachment; filename=\"" + fileID + |
| 327 | "\""; |
Ed Tanous | d9f6c62 | 2022-03-17 09:12:17 -0700 | [diff] [blame] | 328 | asyncResp->res.addHeader(boost::beast::http::field::content_disposition, |
| 329 | contentDispositionParam); |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 330 | std::string fileData; |
| 331 | fileData = {std::istreambuf_iterator<char>(readfile), |
| 332 | std::istreambuf_iterator<char>()}; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 333 | asyncResp->res.jsonValue["Data"] = fileData; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 334 | } |
| 335 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 336 | inline void |
| 337 | handleFileDelete(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 338 | const std::string& fileID) |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 339 | { |
Sunitha Harish | 3e919b5 | 2020-10-13 01:21:48 -0500 | [diff] [blame] | 340 | std::string filePath("/var/lib/bmcweb/ibm-management-console/configfiles/" + |
| 341 | fileID); |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 342 | BMCWEB_LOG_DEBUG << "Removing the file : " << filePath << "\n"; |
Ed Tanous | 2c70f80 | 2020-09-28 14:29:23 -0700 | [diff] [blame] | 343 | std::ifstream fileOpen(filePath.c_str()); |
| 344 | if (static_cast<bool>(fileOpen)) |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 345 | { |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 346 | if (remove(filePath.c_str()) == 0) |
| 347 | { |
| 348 | BMCWEB_LOG_DEBUG << "File removed!\n"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 349 | asyncResp->res.jsonValue["Description"] = "File Deleted"; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 350 | } |
| 351 | else |
| 352 | { |
| 353 | BMCWEB_LOG_ERROR << "File not removed!\n"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 354 | asyncResp->res.result( |
| 355 | boost::beast::http::status::internal_server_error); |
| 356 | asyncResp->res.jsonValue["Description"] = internalServerError; |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 357 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 358 | } |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 359 | else |
| 360 | { |
Gunnar Mills | a7405d5 | 2023-02-22 13:23:23 -0600 | [diff] [blame] | 361 | BMCWEB_LOG_WARNING << "File not found!\n"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 362 | asyncResp->res.result(boost::beast::http::status::not_found); |
| 363 | asyncResp->res.jsonValue["Description"] = resourceNotFoundMsg; |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 364 | } |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 365 | } |
| 366 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 367 | inline void |
| 368 | handleBroadcastService(const crow::Request& req, |
| 369 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 370 | { |
| 371 | std::string broadcastMsg; |
| 372 | |
Willy Tu | 15ed678 | 2021-12-14 11:03:16 -0800 | [diff] [blame] | 373 | if (!redfish::json_util::readJsonPatch(req, asyncResp->res, "Message", |
| 374 | broadcastMsg)) |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 375 | { |
| 376 | BMCWEB_LOG_DEBUG << "Not a Valid JSON"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 377 | asyncResp->res.result(boost::beast::http::status::bad_request); |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 378 | return; |
| 379 | } |
| 380 | if (broadcastMsg.size() > maxBroadcastMsgSize) |
| 381 | { |
| 382 | BMCWEB_LOG_ERROR << "Message size exceeds maximum allowed size[1KB]"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 383 | asyncResp->res.result(boost::beast::http::status::bad_request); |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 384 | return; |
| 385 | } |
| 386 | redfish::EventServiceManager::getInstance().sendBroadcastMsg(broadcastMsg); |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 387 | } |
| 388 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 389 | inline void handleFileUrl(const crow::Request& req, |
| 390 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 391 | const std::string& fileID) |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 392 | { |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 393 | if (req.method() == boost::beast::http::verb::put) |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 394 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 395 | handleFilePut(req, asyncResp, fileID); |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 396 | return; |
| 397 | } |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 398 | if (req.method() == boost::beast::http::verb::get) |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 399 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 400 | handleFileGet(asyncResp, fileID); |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 401 | return; |
| 402 | } |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 403 | if (req.method() == boost::beast::http::verb::delete_) |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 404 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 405 | handleFileDelete(asyncResp, fileID); |
asmithakarun | 1c7b07c | 2019-09-09 03:42:59 -0500 | [diff] [blame] | 406 | return; |
| 407 | } |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 408 | } |
Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 409 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 410 | inline void |
| 411 | handleAcquireLockAPI(const crow::Request& req, |
| 412 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 413 | std::vector<nlohmann::json> body) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 414 | { |
| 415 | LockRequests lockRequestStructure; |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 416 | for (auto& element : body) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 417 | { |
| 418 | std::string lockType; |
Ed Tanous | 543f440 | 2022-01-06 13:12:53 -0800 | [diff] [blame] | 419 | uint64_t resourceId = 0; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 420 | |
| 421 | SegmentFlags segInfo; |
| 422 | std::vector<nlohmann::json> segmentFlags; |
| 423 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 424 | if (!redfish::json_util::readJson(element, asyncResp->res, "LockType", |
| 425 | lockType, "ResourceID", resourceId, |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 426 | "SegmentFlags", segmentFlags)) |
| 427 | { |
| 428 | BMCWEB_LOG_DEBUG << "Not a Valid JSON"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 429 | asyncResp->res.result(boost::beast::http::status::bad_request); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 430 | return; |
| 431 | } |
| 432 | BMCWEB_LOG_DEBUG << lockType; |
| 433 | BMCWEB_LOG_DEBUG << resourceId; |
| 434 | |
| 435 | BMCWEB_LOG_DEBUG << "Segment Flags are present"; |
| 436 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 437 | for (auto& e : segmentFlags) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 438 | { |
| 439 | std::string lockFlags; |
Ed Tanous | 543f440 | 2022-01-06 13:12:53 -0800 | [diff] [blame] | 440 | uint32_t segmentLength = 0; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 441 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 442 | if (!redfish::json_util::readJson(e, asyncResp->res, "LockFlag", |
| 443 | lockFlags, "SegmentLength", |
| 444 | segmentLength)) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 445 | { |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 446 | asyncResp->res.result(boost::beast::http::status::bad_request); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 447 | return; |
| 448 | } |
| 449 | |
| 450 | BMCWEB_LOG_DEBUG << "Lockflag : " << lockFlags; |
| 451 | BMCWEB_LOG_DEBUG << "SegmentLength : " << segmentLength; |
| 452 | |
| 453 | segInfo.push_back(std::make_pair(lockFlags, segmentLength)); |
| 454 | } |
Ed Tanous | bb759e3 | 2022-08-02 17:07:54 -0700 | [diff] [blame] | 455 | |
| 456 | lockRequestStructure.push_back(make_tuple( |
| 457 | req.session->uniqueId, req.session->clientId.value_or(""), lockType, |
| 458 | resourceId, segInfo)); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | // print lock request into journal |
| 462 | |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 463 | for (auto& i : lockRequestStructure) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 464 | { |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 465 | BMCWEB_LOG_DEBUG << std::get<0>(i); |
| 466 | BMCWEB_LOG_DEBUG << std::get<1>(i); |
| 467 | BMCWEB_LOG_DEBUG << std::get<2>(i); |
| 468 | BMCWEB_LOG_DEBUG << std::get<3>(i); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 469 | |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 470 | for (const auto& p : std::get<4>(i)) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 471 | { |
| 472 | BMCWEB_LOG_DEBUG << p.first << ", " << p.second; |
| 473 | } |
| 474 | } |
| 475 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 476 | const LockRequests& t = lockRequestStructure; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 477 | |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 478 | auto varAcquireLock = crow::ibm_mc_lock::Lock::getInstance().acquireLock(t); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 479 | |
| 480 | if (varAcquireLock.first) |
| 481 | { |
| 482 | // Either validity failure of there is a conflict with itself |
| 483 | |
| 484 | auto validityStatus = |
| 485 | std::get<std::pair<bool, int>>(varAcquireLock.second); |
| 486 | |
| 487 | if ((!validityStatus.first) && (validityStatus.second == 0)) |
| 488 | { |
| 489 | BMCWEB_LOG_DEBUG << "Not a Valid record"; |
| 490 | BMCWEB_LOG_DEBUG << "Bad json in request"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 491 | asyncResp->res.result(boost::beast::http::status::bad_request); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 492 | return; |
| 493 | } |
| 494 | if (validityStatus.first && (validityStatus.second == 1)) |
| 495 | { |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 496 | BMCWEB_LOG_ERROR << "There is a conflict within itself"; |
Sunitha Harish | f8a4347 | 2022-08-08 02:07:12 -0500 | [diff] [blame] | 497 | asyncResp->res.result(boost::beast::http::status::conflict); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 498 | return; |
| 499 | } |
| 500 | } |
| 501 | else |
| 502 | { |
| 503 | auto conflictStatus = |
| 504 | std::get<crow::ibm_mc_lock::Rc>(varAcquireLock.second); |
| 505 | if (!conflictStatus.first) |
| 506 | { |
| 507 | BMCWEB_LOG_DEBUG << "There is no conflict with the locktable"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 508 | asyncResp->res.result(boost::beast::http::status::ok); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 509 | |
| 510 | auto var = std::get<uint32_t>(conflictStatus.second); |
| 511 | nlohmann::json returnJson; |
| 512 | returnJson["id"] = var; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 513 | asyncResp->res.jsonValue["TransactionID"] = var; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 514 | return; |
| 515 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 516 | BMCWEB_LOG_DEBUG << "There is a conflict with the lock table"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 517 | asyncResp->res.result(boost::beast::http::status::conflict); |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 518 | auto var = |
| 519 | std::get<std::pair<uint32_t, LockRequest>>(conflictStatus.second); |
Ed Tanous | e05aec5 | 2022-01-25 10:28:56 -0800 | [diff] [blame] | 520 | nlohmann::json returnJson; |
| 521 | nlohmann::json segments; |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 522 | nlohmann::json myarray = nlohmann::json::array(); |
| 523 | returnJson["TransactionID"] = var.first; |
| 524 | returnJson["SessionID"] = std::get<0>(var.second); |
| 525 | returnJson["HMCID"] = std::get<1>(var.second); |
| 526 | returnJson["LockType"] = std::get<2>(var.second); |
| 527 | returnJson["ResourceID"] = std::get<3>(var.second); |
| 528 | |
Ed Tanous | 02cad96 | 2022-06-30 16:50:15 -0700 | [diff] [blame] | 529 | for (const auto& i : std::get<4>(var.second)) |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 530 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 531 | segments["LockFlag"] = i.first; |
| 532 | segments["SegmentLength"] = i.second; |
| 533 | myarray.push_back(segments); |
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 | |
| 536 | returnJson["SegmentFlags"] = myarray; |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 537 | BMCWEB_LOG_ERROR << "Conflicting lock record: " << returnJson; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 538 | asyncResp->res.jsonValue["Record"] = returnJson; |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 539 | return; |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 540 | } |
| 541 | } |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 542 | inline void |
| 543 | handleRelaseAllAPI(const crow::Request& req, |
| 544 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Manojkiran Eda | 5bb0ece | 2020-01-20 20:22:36 +0530 | [diff] [blame] | 545 | { |
| 546 | crow::ibm_mc_lock::Lock::getInstance().releaseLock(req.session->uniqueId); |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 547 | asyncResp->res.result(boost::beast::http::status::ok); |
Manojkiran Eda | 5bb0ece | 2020-01-20 20:22:36 +0530 | [diff] [blame] | 548 | } |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 549 | |
Ed Tanous | 02379d3 | 2020-09-15 21:15:44 -0700 | [diff] [blame] | 550 | inline void |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 551 | handleReleaseLockAPI(const crow::Request& req, |
| 552 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | 02379d3 | 2020-09-15 21:15:44 -0700 | [diff] [blame] | 553 | const std::vector<uint32_t>& listTransactionIds) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 554 | { |
| 555 | BMCWEB_LOG_DEBUG << listTransactionIds.size(); |
| 556 | BMCWEB_LOG_DEBUG << "Data is present"; |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 557 | for (unsigned int listTransactionId : listTransactionIds) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 558 | { |
Ed Tanous | 4e08751 | 2020-09-28 18:41:25 -0700 | [diff] [blame] | 559 | BMCWEB_LOG_DEBUG << listTransactionId; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 560 | } |
| 561 | |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 562 | // validate the request ids |
| 563 | |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 564 | auto varReleaselock = crow::ibm_mc_lock::Lock::getInstance().releaseLock( |
Ed Tanous | bb759e3 | 2022-08-02 17:07:54 -0700 | [diff] [blame] | 565 | listTransactionIds, std::make_pair(req.session->clientId.value_or(""), |
| 566 | req.session->uniqueId)); |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 567 | |
| 568 | if (!varReleaselock.first) |
| 569 | { |
| 570 | // validation Failed |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 571 | BMCWEB_LOG_ERROR << "handleReleaseLockAPI: validation failed"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 572 | asyncResp->res.result(boost::beast::http::status::bad_request); |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 573 | return; |
| 574 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 575 | auto statusRelease = |
| 576 | std::get<crow::ibm_mc_lock::RcRelaseLock>(varReleaselock.second); |
| 577 | if (statusRelease.first) |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 578 | { |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 579 | // The current hmc owns all the locks, so we already released |
| 580 | // them |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 581 | return; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 582 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 583 | |
| 584 | // valid rid, but the current hmc does not own all the locks |
| 585 | BMCWEB_LOG_DEBUG << "Current HMC does not own all the locks"; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 586 | asyncResp->res.result(boost::beast::http::status::unauthorized); |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 587 | |
| 588 | auto var = statusRelease.second; |
Ed Tanous | e05aec5 | 2022-01-25 10:28:56 -0800 | [diff] [blame] | 589 | nlohmann::json returnJson; |
| 590 | nlohmann::json segments; |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 591 | nlohmann::json myArray = nlohmann::json::array(); |
| 592 | returnJson["TransactionID"] = var.first; |
| 593 | returnJson["SessionID"] = std::get<0>(var.second); |
| 594 | returnJson["HMCID"] = std::get<1>(var.second); |
| 595 | returnJson["LockType"] = std::get<2>(var.second); |
| 596 | returnJson["ResourceID"] = std::get<3>(var.second); |
| 597 | |
Ed Tanous | 02cad96 | 2022-06-30 16:50:15 -0700 | [diff] [blame] | 598 | for (const auto& i : std::get<4>(var.second)) |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 599 | { |
| 600 | segments["LockFlag"] = i.first; |
| 601 | segments["SegmentLength"] = i.second; |
| 602 | myArray.push_back(segments); |
| 603 | } |
| 604 | |
| 605 | returnJson["SegmentFlags"] = myArray; |
Sunitha Harish | 3e7ab70 | 2022-08-08 02:08:39 -0500 | [diff] [blame] | 606 | BMCWEB_LOG_DEBUG << "handleReleaseLockAPI: lockrecord: " << returnJson; |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 607 | asyncResp->res.jsonValue["Record"] = returnJson; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 608 | } |
| 609 | |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 610 | inline void |
| 611 | handleGetLockListAPI(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 612 | const ListOfSessionIds& listSessionIds) |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 613 | { |
| 614 | BMCWEB_LOG_DEBUG << listSessionIds.size(); |
| 615 | |
Ratan Gupta | 07386c6 | 2019-12-14 14:06:09 +0530 | [diff] [blame] | 616 | auto status = |
| 617 | crow::ibm_mc_lock::Lock::getInstance().getLockList(listSessionIds); |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 618 | auto var = std::get<std::vector<std::pair<uint32_t, LockRequests>>>(status); |
| 619 | |
| 620 | nlohmann::json lockRecords = nlohmann::json::array(); |
| 621 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 622 | for (const auto& transactionId : var) |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 623 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 624 | for (const auto& lockRecord : transactionId.second) |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 625 | { |
| 626 | nlohmann::json returnJson; |
| 627 | |
| 628 | returnJson["TransactionID"] = transactionId.first; |
| 629 | returnJson["SessionID"] = std::get<0>(lockRecord); |
| 630 | returnJson["HMCID"] = std::get<1>(lockRecord); |
| 631 | returnJson["LockType"] = std::get<2>(lockRecord); |
| 632 | returnJson["ResourceID"] = std::get<3>(lockRecord); |
| 633 | |
| 634 | nlohmann::json segments; |
| 635 | nlohmann::json segmentInfoArray = nlohmann::json::array(); |
| 636 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 637 | for (const auto& segment : std::get<4>(lockRecord)) |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 638 | { |
| 639 | segments["LockFlag"] = segment.first; |
| 640 | segments["SegmentLength"] = segment.second; |
| 641 | segmentInfoArray.push_back(segments); |
| 642 | } |
| 643 | |
| 644 | returnJson["SegmentFlags"] = segmentInfoArray; |
| 645 | lockRecords.push_back(returnJson); |
| 646 | } |
| 647 | } |
Sunitha Harish | db81c07 | 2021-01-21 23:33:21 -0600 | [diff] [blame] | 648 | asyncResp->res.result(boost::beast::http::status::ok); |
| 649 | asyncResp->res.jsonValue["Records"] = lockRecords; |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 650 | } |
| 651 | |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 652 | inline bool isValidConfigFileName(const std::string& fileName, |
| 653 | crow::Response& res) |
| 654 | { |
| 655 | if (fileName.empty()) |
| 656 | { |
| 657 | BMCWEB_LOG_ERROR << "Empty filename"; |
| 658 | res.jsonValue["Description"] = "Empty file path in the url"; |
| 659 | return false; |
| 660 | } |
| 661 | |
| 662 | // ConfigFile name is allowed to take upper and lowercase letters, |
| 663 | // numbers and hyphen |
| 664 | std::size_t found = fileName.find_first_not_of( |
| 665 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-"); |
| 666 | if (found != std::string::npos) |
| 667 | { |
| 668 | BMCWEB_LOG_ERROR << "Unsupported character in filename: " << fileName; |
| 669 | res.jsonValue["Description"] = "Unsupported character in filename"; |
| 670 | return false; |
| 671 | } |
| 672 | |
| 673 | // Check the filename length |
| 674 | if (fileName.length() > 20) |
| 675 | { |
| 676 | BMCWEB_LOG_ERROR << "Name must be maximum 20 characters. " |
| 677 | "Input filename length is: " |
| 678 | << fileName.length(); |
| 679 | res.jsonValue["Description"] = "Filename must be maximum 20 characters"; |
| 680 | return false; |
| 681 | } |
| 682 | |
| 683 | return true; |
| 684 | } |
| 685 | |
Ed Tanous | 02379d3 | 2020-09-15 21:15:44 -0700 | [diff] [blame] | 686 | inline void requestRoutes(App& app) |
Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 687 | { |
Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 688 | // allowed only for admin |
| 689 | BMCWEB_ROUTE(app, "/ibm/v1/") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 690 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 691 | .methods(boost::beast::http::verb::get)( |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 692 | [](const crow::Request&, |
| 693 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 694 | asyncResp->res.jsonValue["@odata.type"] = |
| 695 | "#ibmServiceRoot.v1_0_0.ibmServiceRoot"; |
| 696 | asyncResp->res.jsonValue["@odata.id"] = "/ibm/v1/"; |
| 697 | asyncResp->res.jsonValue["Id"] = "IBM Rest RootService"; |
| 698 | asyncResp->res.jsonValue["Name"] = "IBM Service Root"; |
| 699 | asyncResp->res.jsonValue["ConfigFiles"]["@odata.id"] = |
| 700 | "/ibm/v1/Host/ConfigFiles"; |
| 701 | asyncResp->res.jsonValue["LockService"]["@odata.id"] = |
| 702 | "/ibm/v1/HMC/LockService"; |
| 703 | asyncResp->res.jsonValue["BroadcastService"]["@odata.id"] = |
| 704 | "/ibm/v1/HMC/BroadcastService"; |
| 705 | }); |
Sunitha Harish | 97b0e43 | 2019-11-21 04:59:29 -0600 | [diff] [blame] | 706 | |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 707 | BMCWEB_ROUTE(app, "/ibm/v1/Host/ConfigFiles") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 708 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 709 | .methods(boost::beast::http::verb::get)( |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 710 | [](const crow::Request&, |
| 711 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 712 | handleConfigFileList(asyncResp); |
| 713 | }); |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 714 | |
| 715 | BMCWEB_ROUTE(app, |
Sunitha Harish | e56f254 | 2020-07-22 02:38:59 -0500 | [diff] [blame] | 716 | "/ibm/v1/Host/ConfigFiles/Actions/IBMConfigFiles.DeleteAll") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 717 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 718 | .methods(boost::beast::http::verb::post)( |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 719 | [](const crow::Request&, |
| 720 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 721 | deleteConfigFiles(asyncResp); |
| 722 | }); |
Ratan Gupta | d3630cb | 2019-12-14 11:21:35 +0530 | [diff] [blame] | 723 | |
Sunitha Harish | 7c0bbe7 | 2020-07-30 08:25:28 -0500 | [diff] [blame] | 724 | BMCWEB_ROUTE(app, "/ibm/v1/Host/ConfigFiles/<str>") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 725 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 726 | .methods(boost::beast::http::verb::put, boost::beast::http::verb::get, |
| 727 | boost::beast::http::verb::delete_)( |
| 728 | [](const crow::Request& req, |
| 729 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 730 | const std::string& fileName) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 731 | BMCWEB_LOG_DEBUG << "ConfigFile : " << fileName; |
| 732 | // Validate the incoming fileName |
| 733 | if (!isValidConfigFileName(fileName, asyncResp->res)) |
| 734 | { |
| 735 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 736 | return; |
| 737 | } |
| 738 | handleFileUrl(req, asyncResp, fileName); |
| 739 | }); |
Ratan Gupta | 734a1c3 | 2019-12-14 11:53:48 +0530 | [diff] [blame] | 740 | |
| 741 | BMCWEB_ROUTE(app, "/ibm/v1/HMC/LockService") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 742 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
Ed Tanous | b41187f | 2019-10-24 16:30:02 -0700 | [diff] [blame] | 743 | .methods(boost::beast::http::verb::get)( |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 744 | [](const crow::Request&, |
| 745 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 746 | getLockServiceData(asyncResp); |
| 747 | }); |
manojkiraneda | 0b631ae | 2019-12-03 17:54:28 +0530 | [diff] [blame] | 748 | |
| 749 | BMCWEB_ROUTE(app, "/ibm/v1/HMC/LockService/Actions/LockService.AcquireLock") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 750 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 751 | .methods(boost::beast::http::verb::post)( |
| 752 | [](const crow::Request& req, |
| 753 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 754 | std::vector<nlohmann::json> body; |
| 755 | if (!redfish::json_util::readJsonAction(req, asyncResp->res, "Request", |
| 756 | body)) |
| 757 | { |
| 758 | BMCWEB_LOG_DEBUG << "Not a Valid JSON"; |
| 759 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 760 | return; |
| 761 | } |
| 762 | handleAcquireLockAPI(req, asyncResp, body); |
| 763 | }); |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 764 | BMCWEB_ROUTE(app, "/ibm/v1/HMC/LockService/Actions/LockService.ReleaseLock") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 765 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 766 | .methods(boost::beast::http::verb::post)( |
| 767 | [](const crow::Request& req, |
| 768 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 769 | std::string type; |
| 770 | std::vector<uint32_t> listTransactionIds; |
manojkiraneda | 3b6dea6 | 2019-12-13 17:05:36 +0530 | [diff] [blame] | 771 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 772 | if (!redfish::json_util::readJsonPatch(req, asyncResp->res, "Type", |
| 773 | type, "TransactionIDs", |
| 774 | listTransactionIds)) |
| 775 | { |
| 776 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 777 | return; |
| 778 | } |
| 779 | if (type == "Transaction") |
| 780 | { |
| 781 | handleReleaseLockAPI(req, asyncResp, listTransactionIds); |
| 782 | } |
| 783 | else if (type == "Session") |
| 784 | { |
| 785 | handleRelaseAllAPI(req, asyncResp); |
| 786 | } |
| 787 | else |
| 788 | { |
| 789 | BMCWEB_LOG_DEBUG << " Value of Type : " << type |
| 790 | << "is Not a Valid key"; |
| 791 | redfish::messages::propertyValueNotInList(asyncResp->res, type, |
| 792 | "Type"); |
| 793 | } |
| 794 | }); |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 795 | BMCWEB_ROUTE(app, "/ibm/v1/HMC/LockService/Actions/LockService.GetLockList") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 796 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 797 | .methods(boost::beast::http::verb::post)( |
| 798 | [](const crow::Request& req, |
| 799 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 800 | ListOfSessionIds listSessionIds; |
manojkiraneda | 402b571 | 2019-12-13 17:07:09 +0530 | [diff] [blame] | 801 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 802 | if (!redfish::json_util::readJsonPatch(req, asyncResp->res, |
| 803 | "SessionIDs", listSessionIds)) |
| 804 | { |
| 805 | asyncResp->res.result(boost::beast::http::status::bad_request); |
| 806 | return; |
| 807 | } |
| 808 | handleGetLockListAPI(asyncResp, listSessionIds); |
| 809 | }); |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 810 | |
| 811 | BMCWEB_ROUTE(app, "/ibm/v1/HMC/BroadcastService") |
Ed Tanous | 432a890 | 2021-06-14 15:28:56 -0700 | [diff] [blame] | 812 | .privileges({{"ConfigureComponents", "ConfigureManager"}}) |
Asmitha Karunanithi | 5738de5 | 2020-07-17 02:03:31 -0500 | [diff] [blame] | 813 | .methods(boost::beast::http::verb::post)( |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 814 | [](const crow::Request& req, |
| 815 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 816 | handleBroadcastService(req, asyncResp); |
| 817 | }); |
Ratan Gupta | 453fed0 | 2019-12-14 09:39:47 +0530 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | } // namespace ibm_mc |
| 821 | } // namespace crow |