John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 1 | |
| 2 | #include "estoraged.hpp" |
| 3 | |
John Edward Broadbent | 59dffa6 | 2022-01-13 17:41:32 -0800 | [diff] [blame] | 4 | #include "cryptErase.hpp" |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 5 | #include "cryptsetupInterface.hpp" |
John Edward Broadbent | 7f2ab64 | 2021-11-11 21:00:38 -0800 | [diff] [blame] | 6 | #include "pattern.hpp" |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 7 | #include "verifyDriveGeometry.hpp" |
John Edward Broadbent | 4bc8a10 | 2021-12-30 16:11:49 -0800 | [diff] [blame] | 8 | #include "zero.hpp" |
John Edward Broadbent | 4e13b0a | 2021-11-15 15:21:59 -0800 | [diff] [blame] | 9 | |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 10 | #include <libcryptsetup.h> |
| 11 | #include <openssl/rand.h> |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 12 | |
| 13 | #include <phosphor-logging/lg2.hpp> |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 14 | #include <xyz/openbmc_project/Common/error.hpp> |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 15 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 16 | #include <cstdlib> |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 17 | #include <filesystem> |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 18 | #include <iostream> |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 19 | #include <string_view> |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 20 | #include <vector> |
| 21 | |
| 22 | namespace estoraged |
| 23 | { |
| 24 | |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 25 | using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
| 26 | using sdbusplus::xyz::openbmc_project::Common::Error::ResourceNotFound; |
| 27 | using sdbusplus::xyz::openbmc_project::Common::Error::UnsupportedRequest; |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 28 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 29 | void EStoraged::formatLuks(std::vector<uint8_t> password, FilesystemType type) |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 30 | { |
John Edward Broadbent | 4e13b0a | 2021-11-15 15:21:59 -0800 | [diff] [blame] | 31 | std::string msg = "OpenBMC.0.1.DriveFormat"; |
| 32 | lg2::info("Starting format", "REDFISH_MESSAGE_ID", msg); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 33 | |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 34 | if (type != FilesystemType::ext4) |
| 35 | { |
| 36 | lg2::error("Only ext4 filesystems are supported currently", |
| 37 | "REDFISH_MESSAGE_ID", std::string("OpenBMC.0.1.FormatFail")); |
| 38 | throw UnsupportedRequest(); |
| 39 | } |
| 40 | |
John Wedig | 6218dc5 | 2021-12-03 09:36:35 -0800 | [diff] [blame] | 41 | CryptHandle cryptHandle(devPath.c_str()); |
| 42 | if (cryptHandle.get() == nullptr) |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 43 | { |
| 44 | lg2::error("Failed to initialize crypt device", "REDFISH_MESSAGE_ID", |
| 45 | std::string("OpenBMC.0.1.FormatFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 46 | throw ResourceNotFound(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 47 | } |
| 48 | |
John Wedig | 6218dc5 | 2021-12-03 09:36:35 -0800 | [diff] [blame] | 49 | formatLuksDev(cryptHandle.get(), password); |
| 50 | activateLuksDev(cryptHandle.get(), password); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 51 | |
| 52 | createFilesystem(); |
| 53 | mountFilesystem(); |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 56 | void EStoraged::erase(EraseMethod inEraseMethod) |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 57 | { |
| 58 | std::cerr << "Erasing encrypted eMMC" << std::endl; |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 59 | lg2::info("Starting erase", "REDFISH_MESSAGE_ID", |
| 60 | std::string("OpenBMC.0.1.DriveErase")); |
| 61 | switch (inEraseMethod) |
| 62 | { |
| 63 | case EraseMethod::CryptoErase: |
| 64 | { |
John Edward Broadbent | 59dffa6 | 2022-01-13 17:41:32 -0800 | [diff] [blame] | 65 | CryptErase myCryptErase(devPath); |
| 66 | myCryptErase.doErase(); |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 67 | break; |
| 68 | } |
| 69 | case EraseMethod::VerifyGeometry: |
| 70 | { |
| 71 | VerifyDriveGeometry myVerifyGeometry(devPath); |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 72 | myVerifyGeometry.geometryOkay(); |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 73 | break; |
| 74 | } |
| 75 | case EraseMethod::LogicalOverWrite: |
| 76 | { |
John Edward Broadbent | 7f2ab64 | 2021-11-11 21:00:38 -0800 | [diff] [blame] | 77 | Pattern myErasePattern(devPath); |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 78 | myErasePattern.writePattern(); |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 79 | break; |
| 80 | } |
| 81 | case EraseMethod::LogicalVerify: |
| 82 | { |
John Edward Broadbent | 7f2ab64 | 2021-11-11 21:00:38 -0800 | [diff] [blame] | 83 | Pattern myErasePattern(devPath); |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 84 | myErasePattern.verifyPattern(); |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 85 | break; |
| 86 | } |
| 87 | case EraseMethod::VendorSanitize: |
| 88 | { |
| 89 | break; |
| 90 | } |
| 91 | case EraseMethod::ZeroOverWrite: |
| 92 | { |
John Edward Broadbent | 4bc8a10 | 2021-12-30 16:11:49 -0800 | [diff] [blame] | 93 | Zero myZero(devPath); |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 94 | myZero.writeZero(); |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 95 | break; |
| 96 | } |
| 97 | case EraseMethod::ZeroVerify: |
| 98 | { |
John Edward Broadbent | 4bc8a10 | 2021-12-30 16:11:49 -0800 | [diff] [blame] | 99 | Zero myZero(devPath); |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 100 | myZero.verifyZero(); |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 101 | break; |
| 102 | } |
| 103 | case EraseMethod::SecuredLocked: |
| 104 | { |
John Edward Broadbent | f59b729 | 2022-02-15 15:07:15 -0800 | [diff] [blame] | 105 | if (isLocked()) |
| 106 | { |
| 107 | lock(); |
| 108 | } |
| 109 | // TODO: implement hardware locking |
| 110 | // Until that is done, we can lock using eStoraged::lock() |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 111 | break; |
| 112 | } |
| 113 | } |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 116 | void EStoraged::lock() |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 117 | { |
John Edward Broadbent | 4e13b0a | 2021-11-15 15:21:59 -0800 | [diff] [blame] | 118 | std::string msg = "OpenBMC.0.1.DriveLock"; |
| 119 | lg2::info("Starting lock", "REDFISH_MESSAGE_ID", msg); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 120 | |
| 121 | unmountFilesystem(); |
| 122 | deactivateLuksDev(); |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 125 | void EStoraged::unlock(std::vector<uint8_t> password) |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 126 | { |
John Edward Broadbent | 4e13b0a | 2021-11-15 15:21:59 -0800 | [diff] [blame] | 127 | std::string msg = "OpenBMC.0.1.DriveUnlock"; |
| 128 | lg2::info("Starting unlock", "REDFISH_MESSAGE_ID", msg); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 129 | |
John Wedig | 6218dc5 | 2021-12-03 09:36:35 -0800 | [diff] [blame] | 130 | CryptHandle cryptHandle(devPath.c_str()); |
| 131 | if (cryptHandle.get() == nullptr) |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 132 | { |
| 133 | lg2::error("Failed to initialize crypt device", "REDFISH_MESSAGE_ID", |
| 134 | std::string("OpenBMC.0.1.UnlockFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 135 | throw ResourceNotFound(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 136 | } |
| 137 | |
John Wedig | 6218dc5 | 2021-12-03 09:36:35 -0800 | [diff] [blame] | 138 | activateLuksDev(cryptHandle.get(), password); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 139 | mountFilesystem(); |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 142 | void EStoraged::changePassword(std::vector<uint8_t> /*oldPassword*/, |
| 143 | std::vector<uint8_t> /*newPassword*/) |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 144 | { |
| 145 | std::cerr << "Changing password for encrypted eMMC" << std::endl; |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 146 | lg2::info("Starting change password", "REDFISH_MESSAGE_ID", |
| 147 | std::string("OpenBMC.0.1.DrivePasswordChanged")); |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 150 | bool EStoraged::isLocked() const |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 151 | { |
| 152 | return locked(); |
| 153 | } |
| 154 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 155 | std::string_view EStoraged::getMountPoint() const |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 156 | { |
| 157 | return mountPoint; |
| 158 | } |
| 159 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 160 | void EStoraged::formatLuksDev(struct crypt_device* cd, |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 161 | std::vector<uint8_t> password) |
| 162 | { |
| 163 | lg2::info("Formatting device {DEV}", "DEV", devPath, "REDFISH_MESSAGE_ID", |
| 164 | std::string("OpenBMC.0.1.FormatLuksDev")); |
| 165 | |
| 166 | /* Generate the volume key. */ |
| 167 | const std::size_t keySize = 64; |
| 168 | std::vector<uint8_t> volumeKey(keySize); |
| 169 | if (RAND_bytes(volumeKey.data(), keySize) != 1) |
| 170 | { |
| 171 | lg2::error("Failed to create volume key", "REDFISH_MESSAGE_ID", |
| 172 | std::string("OpenBMC.0.1.FormatLuksDevFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 173 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 174 | } |
| 175 | /* Format the LUKS encrypted device. */ |
| 176 | int retval = |
| 177 | cryptIface->cryptFormat(cd, CRYPT_LUKS2, "aes", "xts-plain64", nullptr, |
| 178 | reinterpret_cast<const char*>(volumeKey.data()), |
| 179 | volumeKey.size(), nullptr); |
| 180 | if (retval < 0) |
| 181 | { |
| 182 | lg2::error("Failed to format encrypted device: {RETVAL}", "RETVAL", |
| 183 | retval, "REDFISH_MESSAGE_ID", |
| 184 | std::string("OpenBMC.0.1.FormatLuksDevFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 185 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* Device is now encrypted. */ |
| 189 | locked(true); |
| 190 | |
| 191 | /* Set the password. */ |
| 192 | retval = cryptIface->cryptKeyslotAddByVolumeKey( |
| 193 | cd, CRYPT_ANY_SLOT, nullptr, 0, |
| 194 | reinterpret_cast<const char*>(password.data()), password.size()); |
| 195 | |
| 196 | if (retval < 0) |
| 197 | { |
| 198 | lg2::error("Failed to set encryption password", "REDFISH_MESSAGE_ID", |
| 199 | std::string("OpenBMC.0.1.FormatLuksDevFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 200 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | lg2::info("Encrypted device {DEV} successfully formatted", "DEV", devPath, |
| 204 | "REDFISH_MESSAGE_ID", |
| 205 | std::string("OpenBMC.0.1.FormatLuksDevSuccess")); |
| 206 | } |
| 207 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 208 | void EStoraged::activateLuksDev(struct crypt_device* cd, |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 209 | std::vector<uint8_t> password) |
| 210 | { |
| 211 | lg2::info("Activating LUKS dev {DEV}", "DEV", devPath, "REDFISH_MESSAGE_ID", |
| 212 | std::string("OpenBMC.0.1.ActivateLuksDev")); |
| 213 | |
| 214 | int retval = cryptIface->cryptLoad(cd, CRYPT_LUKS2, nullptr); |
| 215 | if (retval < 0) |
| 216 | { |
| 217 | lg2::error("Failed to load LUKS header: {RETVAL}", "RETVAL", retval, |
| 218 | "REDFISH_MESSAGE_ID", |
| 219 | std::string("OpenBMC.0.1.ActivateLuksDevFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 220 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | retval = cryptIface->cryptActivateByPassphrase( |
| 224 | cd, containerName.c_str(), CRYPT_ANY_SLOT, |
| 225 | reinterpret_cast<const char*>(password.data()), password.size(), 0); |
| 226 | |
| 227 | if (retval < 0) |
| 228 | { |
| 229 | lg2::error("Failed to activate LUKS dev: {RETVAL}", "RETVAL", retval, |
| 230 | "REDFISH_MESSAGE_ID", |
| 231 | std::string("OpenBMC.0.1.ActivateLuksDevFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 232 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | /* Device is now unlocked. */ |
| 236 | locked(false); |
| 237 | |
| 238 | lg2::info("Successfully activated LUKS dev {DEV}", "DEV", devPath, |
| 239 | "REDFISH_MESSAGE_ID", |
| 240 | std::string("OpenBMC.0.1.ActivateLuksDevSuccess")); |
| 241 | } |
| 242 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 243 | void EStoraged::createFilesystem() |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 244 | { |
| 245 | /* Run the command to create the filesystem. */ |
| 246 | int retval = fsIface->runMkfs(containerName); |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 247 | if (retval != 0) |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 248 | { |
| 249 | lg2::error("Failed to create filesystem: {RETVAL}", "RETVAL", retval, |
| 250 | "REDFISH_MESSAGE_ID", |
| 251 | std::string("OpenBMC.0.1.CreateFilesystemFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 252 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 253 | } |
| 254 | lg2::info("Successfully created filesystem for /dev/mapper/{CONTAINER}", |
| 255 | "CONTAINER", containerName, "REDFISH_MESSAGE_ID", |
| 256 | std::string("OpenBMC.0.1.CreateFilesystemSuccess")); |
| 257 | } |
| 258 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 259 | void EStoraged::mountFilesystem() |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 260 | { |
John Wedig | b17f825 | 2022-01-12 14:24:26 -0800 | [diff] [blame] | 261 | /* |
| 262 | * Create directory for the filesystem, if it's not already present. It |
| 263 | * might already exist if, for example, the BMC reboots after creating the |
| 264 | * directory. |
| 265 | */ |
| 266 | if (!fsIface->directoryExists(std::filesystem::path(mountPoint))) |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 267 | { |
John Wedig | b17f825 | 2022-01-12 14:24:26 -0800 | [diff] [blame] | 268 | bool success = |
| 269 | fsIface->createDirectory(std::filesystem::path(mountPoint)); |
| 270 | if (!success) |
| 271 | { |
| 272 | lg2::error("Failed to create mount point: {DIR}", "DIR", mountPoint, |
| 273 | "REDFISH_MESSAGE_ID", |
| 274 | std::string("OpenBMC.0.1.MountFilesystemFail")); |
| 275 | throw InternalFailure(); |
| 276 | } |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | /* Run the command to mount the filesystem. */ |
| 280 | std::string luksContainer("/dev/mapper/" + containerName); |
| 281 | int retval = fsIface->doMount(luksContainer.c_str(), mountPoint.c_str(), |
| 282 | "ext4", 0, nullptr); |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 283 | if (retval != 0) |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 284 | { |
| 285 | lg2::error("Failed to mount filesystem: {RETVAL}", "RETVAL", retval, |
| 286 | "REDFISH_MESSAGE_ID", |
| 287 | std::string("OpenBMC.0.1.MountFilesystemFail")); |
| 288 | bool removeSuccess = |
| 289 | fsIface->removeDirectory(std::filesystem::path(mountPoint)); |
| 290 | if (!removeSuccess) |
| 291 | { |
| 292 | lg2::error("Failed to remove mount point: {DIR}", "DIR", mountPoint, |
| 293 | "REDFISH_MESSAGE_ID", |
| 294 | std::string("OpenBMC.0.1.MountFilesystemFail")); |
| 295 | } |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 296 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | lg2::info("Successfully mounted filesystem at {DIR}", "DIR", mountPoint, |
| 300 | "REDFISH_MESSAGE_ID", |
| 301 | std::string("OpenBMC.0.1.MountFilesystemSuccess")); |
| 302 | } |
| 303 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 304 | void EStoraged::unmountFilesystem() |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 305 | { |
| 306 | int retval = fsIface->doUnmount(mountPoint.c_str()); |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 307 | if (retval != 0) |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 308 | { |
| 309 | lg2::error("Failed to unmount filesystem: {RETVAL}", "RETVAL", retval, |
| 310 | "REDFISH_MESSAGE_ID", |
| 311 | std::string("OpenBMC.0.1.UnmountFilesystemFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 312 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | /* Remove the mount point. */ |
| 316 | bool success = fsIface->removeDirectory(std::filesystem::path(mountPoint)); |
| 317 | if (!success) |
| 318 | { |
| 319 | lg2::error("Failed to remove mount point {DIR}", "DIR", mountPoint, |
| 320 | "REDFISH_MESSAGE_ID", |
| 321 | std::string("OpenBMC.0.1.UnmountFilesystemFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 322 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | lg2::info("Successfully unmounted filesystem at {DIR}", "DIR", mountPoint, |
| 326 | "REDFISH_MESSAGE_ID", |
| 327 | std::string("OpenBMC.0.1.MountFilesystemSuccess")); |
| 328 | } |
| 329 | |
Ed Tanous | 82897c3 | 2022-02-21 14:11:59 -0800 | [diff] [blame] | 330 | void EStoraged::deactivateLuksDev() |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 331 | { |
| 332 | lg2::info("Deactivating LUKS device {DEV}", "DEV", devPath, |
| 333 | "REDFISH_MESSAGE_ID", |
| 334 | std::string("OpenBMC.0.1.DeactivateLuksDev")); |
| 335 | |
| 336 | int retval = cryptIface->cryptDeactivate(nullptr, containerName.c_str()); |
| 337 | if (retval < 0) |
| 338 | { |
| 339 | lg2::error("Failed to deactivate crypt device: {RETVAL}", "RETVAL", |
| 340 | retval, "REDFISH_MESSAGE_ID", |
| 341 | std::string("OpenBMC.0.1.DeactivateLuksDevFail")); |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 342 | throw InternalFailure(); |
John Wedig | b810c92 | 2021-11-17 16:38:03 -0800 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /* Device is now locked. */ |
| 346 | locked(true); |
| 347 | |
| 348 | lg2::info("Successfully deactivated LUKS device {DEV}", "DEV", devPath, |
| 349 | "REDFISH_MESSAGE_ID", |
| 350 | std::string("OpenBMC.0.1.DeactivateLuksDevSuccess")); |
| 351 | } |
| 352 | |
John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 353 | } // namespace estoraged |