blob: 55a08a43a49c079a2e7f7eab94eaabffbfa98ded [file] [log] [blame]
John Wedig2098dab2021-09-14 13:56:28 -07001
2#include "estoraged.hpp"
3
John Wedigb810c922021-11-17 16:38:03 -08004#include "cryptsetupInterface.hpp"
John Edward Broadbent7f2ab642021-11-11 21:00:38 -08005#include "pattern.hpp"
John Edward Broadbente6ffe702021-10-14 14:03:11 -07006#include "verifyDriveGeometry.hpp"
John Edward Broadbent4e13b0a2021-11-15 15:21:59 -08007
John Wedigb810c922021-11-17 16:38:03 -08008#include <libcryptsetup.h>
9#include <openssl/rand.h>
10#include <stdlib.h>
11
12#include <phosphor-logging/lg2.hpp>
John Wedig972c3fa2021-12-29 17:30:41 -080013#include <xyz/openbmc_project/Common/error.hpp>
John Wedigb810c922021-11-17 16:38:03 -080014
15#include <filesystem>
John Wedig2098dab2021-09-14 13:56:28 -070016#include <iostream>
John Wedigb810c922021-11-17 16:38:03 -080017#include <string_view>
John Wedig2098dab2021-09-14 13:56:28 -070018#include <vector>
19
20namespace estoraged
21{
22
John Wedig972c3fa2021-12-29 17:30:41 -080023using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
24using sdbusplus::xyz::openbmc_project::Common::Error::ResourceNotFound;
25using sdbusplus::xyz::openbmc_project::Common::Error::UnsupportedRequest;
John Wedigb810c922021-11-17 16:38:03 -080026
John Wedig972c3fa2021-12-29 17:30:41 -080027void eStoraged::formatLuks(std::vector<uint8_t> password, FilesystemType type)
John Wedig2098dab2021-09-14 13:56:28 -070028{
John Edward Broadbent4e13b0a2021-11-15 15:21:59 -080029 std::string msg = "OpenBMC.0.1.DriveFormat";
30 lg2::info("Starting format", "REDFISH_MESSAGE_ID", msg);
John Wedigb810c922021-11-17 16:38:03 -080031
John Wedig972c3fa2021-12-29 17:30:41 -080032 if (type != FilesystemType::ext4)
33 {
34 lg2::error("Only ext4 filesystems are supported currently",
35 "REDFISH_MESSAGE_ID", std::string("OpenBMC.0.1.FormatFail"));
36 throw UnsupportedRequest();
37 }
38
John Wedig6218dc52021-12-03 09:36:35 -080039 CryptHandle cryptHandle(devPath.c_str());
40 if (cryptHandle.get() == nullptr)
John Wedigb810c922021-11-17 16:38:03 -080041 {
42 lg2::error("Failed to initialize crypt device", "REDFISH_MESSAGE_ID",
43 std::string("OpenBMC.0.1.FormatFail"));
John Wedig972c3fa2021-12-29 17:30:41 -080044 throw ResourceNotFound();
John Wedigb810c922021-11-17 16:38:03 -080045 }
46
John Wedig6218dc52021-12-03 09:36:35 -080047 formatLuksDev(cryptHandle.get(), password);
48 activateLuksDev(cryptHandle.get(), password);
John Wedigb810c922021-11-17 16:38:03 -080049
50 createFilesystem();
51 mountFilesystem();
John Wedig2098dab2021-09-14 13:56:28 -070052}
53
John Wedig972c3fa2021-12-29 17:30:41 -080054void eStoraged::erase(EraseMethod inEraseMethod)
John Wedig2098dab2021-09-14 13:56:28 -070055{
56 std::cerr << "Erasing encrypted eMMC" << std::endl;
John Edward Broadbente6ffe702021-10-14 14:03:11 -070057 lg2::info("Starting erase", "REDFISH_MESSAGE_ID",
58 std::string("OpenBMC.0.1.DriveErase"));
59 switch (inEraseMethod)
60 {
61 case EraseMethod::CryptoErase:
62 {
63 break;
64 }
65 case EraseMethod::VerifyGeometry:
66 {
67 VerifyDriveGeometry myVerifyGeometry(devPath);
68 uint64_t size = myVerifyGeometry.findSizeOfBlockDevice();
69 myVerifyGeometry.geometryOkay(size);
70 break;
71 }
72 case EraseMethod::LogicalOverWrite:
73 {
John Edward Broadbent7f2ab642021-11-11 21:00:38 -080074 Pattern myErasePattern(devPath);
75 ManagedFd drivefd =
76 stdplus::fd::open(devPath, stdplus::fd::OpenAccess::WriteOnly);
77 myErasePattern.writePattern(myErasePattern.findSizeOfBlockDevice(),
78 drivefd);
John Edward Broadbente6ffe702021-10-14 14:03:11 -070079 break;
80 }
81 case EraseMethod::LogicalVerify:
82 {
John Edward Broadbent7f2ab642021-11-11 21:00:38 -080083 Pattern myErasePattern(devPath);
84 ManagedFd drivefd =
85 stdplus::fd::open(devPath, stdplus::fd::OpenAccess::ReadOnly);
86 myErasePattern.verifyPattern(myErasePattern.findSizeOfBlockDevice(),
87 drivefd);
John Edward Broadbente6ffe702021-10-14 14:03:11 -070088 break;
89 }
90 case EraseMethod::VendorSanitize:
91 {
92 break;
93 }
94 case EraseMethod::ZeroOverWrite:
95 {
96 break;
97 }
98 case EraseMethod::ZeroVerify:
99 {
100 break;
101 }
102 case EraseMethod::SecuredLocked:
103 {
104 break;
105 }
106 }
John Wedig2098dab2021-09-14 13:56:28 -0700107}
108
John Wedig972c3fa2021-12-29 17:30:41 -0800109void eStoraged::lock()
John Wedig2098dab2021-09-14 13:56:28 -0700110{
John Edward Broadbent4e13b0a2021-11-15 15:21:59 -0800111 std::string msg = "OpenBMC.0.1.DriveLock";
112 lg2::info("Starting lock", "REDFISH_MESSAGE_ID", msg);
John Wedigb810c922021-11-17 16:38:03 -0800113
114 unmountFilesystem();
115 deactivateLuksDev();
John Wedig2098dab2021-09-14 13:56:28 -0700116}
117
John Wedigb810c922021-11-17 16:38:03 -0800118void eStoraged::unlock(std::vector<uint8_t> password)
John Wedig2098dab2021-09-14 13:56:28 -0700119{
John Edward Broadbent4e13b0a2021-11-15 15:21:59 -0800120 std::string msg = "OpenBMC.0.1.DriveUnlock";
121 lg2::info("Starting unlock", "REDFISH_MESSAGE_ID", msg);
John Wedigb810c922021-11-17 16:38:03 -0800122
John Wedig6218dc52021-12-03 09:36:35 -0800123 CryptHandle cryptHandle(devPath.c_str());
124 if (cryptHandle.get() == nullptr)
John Wedigb810c922021-11-17 16:38:03 -0800125 {
126 lg2::error("Failed to initialize crypt device", "REDFISH_MESSAGE_ID",
127 std::string("OpenBMC.0.1.UnlockFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800128 throw ResourceNotFound();
John Wedigb810c922021-11-17 16:38:03 -0800129 }
130
John Wedig6218dc52021-12-03 09:36:35 -0800131 activateLuksDev(cryptHandle.get(), password);
John Wedigb810c922021-11-17 16:38:03 -0800132 mountFilesystem();
John Wedig2098dab2021-09-14 13:56:28 -0700133}
134
135void eStoraged::changePassword(std::vector<uint8_t>, std::vector<uint8_t>)
136{
137 std::cerr << "Changing password for encrypted eMMC" << std::endl;
John Edward Broadbente6ffe702021-10-14 14:03:11 -0700138 lg2::info("Starting change password", "REDFISH_MESSAGE_ID",
139 std::string("OpenBMC.0.1.DrivePasswordChanged"));
John Wedig2098dab2021-09-14 13:56:28 -0700140}
141
John Wedigb810c922021-11-17 16:38:03 -0800142bool eStoraged::isLocked() const
143{
144 return locked();
145}
146
147std::string_view eStoraged::getMountPoint() const
148{
149 return mountPoint;
150}
151
152void eStoraged::formatLuksDev(struct crypt_device* cd,
153 std::vector<uint8_t> password)
154{
155 lg2::info("Formatting device {DEV}", "DEV", devPath, "REDFISH_MESSAGE_ID",
156 std::string("OpenBMC.0.1.FormatLuksDev"));
157
158 /* Generate the volume key. */
159 const std::size_t keySize = 64;
160 std::vector<uint8_t> volumeKey(keySize);
161 if (RAND_bytes(volumeKey.data(), keySize) != 1)
162 {
163 lg2::error("Failed to create volume key", "REDFISH_MESSAGE_ID",
164 std::string("OpenBMC.0.1.FormatLuksDevFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800165 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800166 }
167 /* Format the LUKS encrypted device. */
168 int retval =
169 cryptIface->cryptFormat(cd, CRYPT_LUKS2, "aes", "xts-plain64", nullptr,
170 reinterpret_cast<const char*>(volumeKey.data()),
171 volumeKey.size(), nullptr);
172 if (retval < 0)
173 {
174 lg2::error("Failed to format encrypted device: {RETVAL}", "RETVAL",
175 retval, "REDFISH_MESSAGE_ID",
176 std::string("OpenBMC.0.1.FormatLuksDevFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800177 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800178 }
179
180 /* Device is now encrypted. */
181 locked(true);
182
183 /* Set the password. */
184 retval = cryptIface->cryptKeyslotAddByVolumeKey(
185 cd, CRYPT_ANY_SLOT, nullptr, 0,
186 reinterpret_cast<const char*>(password.data()), password.size());
187
188 if (retval < 0)
189 {
190 lg2::error("Failed to set encryption password", "REDFISH_MESSAGE_ID",
191 std::string("OpenBMC.0.1.FormatLuksDevFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800192 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800193 }
194
195 lg2::info("Encrypted device {DEV} successfully formatted", "DEV", devPath,
196 "REDFISH_MESSAGE_ID",
197 std::string("OpenBMC.0.1.FormatLuksDevSuccess"));
198}
199
200void eStoraged::activateLuksDev(struct crypt_device* cd,
201 std::vector<uint8_t> password)
202{
203 lg2::info("Activating LUKS dev {DEV}", "DEV", devPath, "REDFISH_MESSAGE_ID",
204 std::string("OpenBMC.0.1.ActivateLuksDev"));
205
206 int retval = cryptIface->cryptLoad(cd, CRYPT_LUKS2, nullptr);
207 if (retval < 0)
208 {
209 lg2::error("Failed to load LUKS header: {RETVAL}", "RETVAL", retval,
210 "REDFISH_MESSAGE_ID",
211 std::string("OpenBMC.0.1.ActivateLuksDevFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800212 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800213 }
214
215 retval = cryptIface->cryptActivateByPassphrase(
216 cd, containerName.c_str(), CRYPT_ANY_SLOT,
217 reinterpret_cast<const char*>(password.data()), password.size(), 0);
218
219 if (retval < 0)
220 {
221 lg2::error("Failed to activate LUKS dev: {RETVAL}", "RETVAL", retval,
222 "REDFISH_MESSAGE_ID",
223 std::string("OpenBMC.0.1.ActivateLuksDevFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800224 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800225 }
226
227 /* Device is now unlocked. */
228 locked(false);
229
230 lg2::info("Successfully activated LUKS dev {DEV}", "DEV", devPath,
231 "REDFISH_MESSAGE_ID",
232 std::string("OpenBMC.0.1.ActivateLuksDevSuccess"));
233}
234
235void eStoraged::createFilesystem()
236{
237 /* Run the command to create the filesystem. */
238 int retval = fsIface->runMkfs(containerName);
239 if (retval)
240 {
241 lg2::error("Failed to create filesystem: {RETVAL}", "RETVAL", retval,
242 "REDFISH_MESSAGE_ID",
243 std::string("OpenBMC.0.1.CreateFilesystemFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800244 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800245 }
246 lg2::info("Successfully created filesystem for /dev/mapper/{CONTAINER}",
247 "CONTAINER", containerName, "REDFISH_MESSAGE_ID",
248 std::string("OpenBMC.0.1.CreateFilesystemSuccess"));
249}
250
251void eStoraged::mountFilesystem()
252{
John Wedigb17f8252022-01-12 14:24:26 -0800253 /*
254 * Create directory for the filesystem, if it's not already present. It
255 * might already exist if, for example, the BMC reboots after creating the
256 * directory.
257 */
258 if (!fsIface->directoryExists(std::filesystem::path(mountPoint)))
John Wedigb810c922021-11-17 16:38:03 -0800259 {
John Wedigb17f8252022-01-12 14:24:26 -0800260 bool success =
261 fsIface->createDirectory(std::filesystem::path(mountPoint));
262 if (!success)
263 {
264 lg2::error("Failed to create mount point: {DIR}", "DIR", mountPoint,
265 "REDFISH_MESSAGE_ID",
266 std::string("OpenBMC.0.1.MountFilesystemFail"));
267 throw InternalFailure();
268 }
John Wedigb810c922021-11-17 16:38:03 -0800269 }
270
271 /* Run the command to mount the filesystem. */
272 std::string luksContainer("/dev/mapper/" + containerName);
273 int retval = fsIface->doMount(luksContainer.c_str(), mountPoint.c_str(),
274 "ext4", 0, nullptr);
275 if (retval)
276 {
277 lg2::error("Failed to mount filesystem: {RETVAL}", "RETVAL", retval,
278 "REDFISH_MESSAGE_ID",
279 std::string("OpenBMC.0.1.MountFilesystemFail"));
280 bool removeSuccess =
281 fsIface->removeDirectory(std::filesystem::path(mountPoint));
282 if (!removeSuccess)
283 {
284 lg2::error("Failed to remove mount point: {DIR}", "DIR", mountPoint,
285 "REDFISH_MESSAGE_ID",
286 std::string("OpenBMC.0.1.MountFilesystemFail"));
287 }
John Wedig972c3fa2021-12-29 17:30:41 -0800288 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800289 }
290
291 lg2::info("Successfully mounted filesystem at {DIR}", "DIR", mountPoint,
292 "REDFISH_MESSAGE_ID",
293 std::string("OpenBMC.0.1.MountFilesystemSuccess"));
294}
295
296void eStoraged::unmountFilesystem()
297{
298 int retval = fsIface->doUnmount(mountPoint.c_str());
299 if (retval)
300 {
301 lg2::error("Failed to unmount filesystem: {RETVAL}", "RETVAL", retval,
302 "REDFISH_MESSAGE_ID",
303 std::string("OpenBMC.0.1.UnmountFilesystemFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800304 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800305 }
306
307 /* Remove the mount point. */
308 bool success = fsIface->removeDirectory(std::filesystem::path(mountPoint));
309 if (!success)
310 {
311 lg2::error("Failed to remove mount point {DIR}", "DIR", mountPoint,
312 "REDFISH_MESSAGE_ID",
313 std::string("OpenBMC.0.1.UnmountFilesystemFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800314 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800315 }
316
317 lg2::info("Successfully unmounted filesystem at {DIR}", "DIR", mountPoint,
318 "REDFISH_MESSAGE_ID",
319 std::string("OpenBMC.0.1.MountFilesystemSuccess"));
320}
321
322void eStoraged::deactivateLuksDev()
323{
324 lg2::info("Deactivating LUKS device {DEV}", "DEV", devPath,
325 "REDFISH_MESSAGE_ID",
326 std::string("OpenBMC.0.1.DeactivateLuksDev"));
327
328 int retval = cryptIface->cryptDeactivate(nullptr, containerName.c_str());
329 if (retval < 0)
330 {
331 lg2::error("Failed to deactivate crypt device: {RETVAL}", "RETVAL",
332 retval, "REDFISH_MESSAGE_ID",
333 std::string("OpenBMC.0.1.DeactivateLuksDevFail"));
John Wedig972c3fa2021-12-29 17:30:41 -0800334 throw InternalFailure();
John Wedigb810c922021-11-17 16:38:03 -0800335 }
336
337 /* Device is now locked. */
338 locked(true);
339
340 lg2::info("Successfully deactivated LUKS device {DEV}", "DEV", devPath,
341 "REDFISH_MESSAGE_ID",
342 std::string("OpenBMC.0.1.DeactivateLuksDevSuccess"));
343}
344
John Wedig2098dab2021-09-14 13:56:28 -0700345} // namespace estoraged