blob: f2b16e3d345e740d8fb014199c2a4e8aa697a50e [file] [log] [blame]
Paul Crowley1ef25582016-01-21 20:26:12 +00001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "KeyStorage.h"
18
19#include "Keymaster.h"
Paul Crowley63c18d32016-02-10 14:02:47 +000020#include "ScryptParameters.h"
Paul Crowley1ef25582016-01-21 20:26:12 +000021#include "Utils.h"
22
23#include <vector>
24
25#include <errno.h>
26#include <sys/stat.h>
27#include <sys/types.h>
28#include <sys/wait.h>
29#include <unistd.h>
30
31#include <openssl/sha.h>
32
33#include <android-base/file.h>
34#include <android-base/logging.h>
35
Paul Crowley63c18d32016-02-10 14:02:47 +000036#include <cutils/properties.h>
37
Paul Crowley320e5e12016-03-04 14:07:05 -080038#include <hardware/hw_auth_token.h>
39
Paul Crowley1ef25582016-01-21 20:26:12 +000040#include <keymaster/authorization_set.h>
41
Paul Crowley63c18d32016-02-10 14:02:47 +000042extern "C" {
43
44#include "crypto_scrypt.h"
Paul Crowley63c18d32016-02-10 14:02:47 +000045}
46
Paul Crowley1ef25582016-01-21 20:26:12 +000047namespace android {
48namespace vold {
49
Paul Crowleydf528a72016-03-09 09:31:37 -080050const KeyAuthentication kEmptyAuthentication{"", ""};
Paul Crowley05720802016-02-08 15:55:41 +000051
Paul Crowley1ef25582016-01-21 20:26:12 +000052static constexpr size_t AES_KEY_BYTES = 32;
53static constexpr size_t GCM_NONCE_BYTES = 12;
54static constexpr size_t GCM_MAC_BYTES = 16;
Paul Crowleydf528a72016-03-09 09:31:37 -080055static constexpr size_t SALT_BYTES = 1 << 4;
56static constexpr size_t SECDISCARDABLE_BYTES = 1 << 14;
57static constexpr size_t STRETCHED_BYTES = 1 << 6;
Paul Crowley1ef25582016-01-21 20:26:12 +000058
Paul Crowley05720802016-02-08 15:55:41 +000059static const char* kCurrentVersion = "1";
Paul Crowley1ef25582016-01-21 20:26:12 +000060static const char* kRmPath = "/system/bin/rm";
61static const char* kSecdiscardPath = "/system/bin/secdiscard";
Paul Crowley63c18d32016-02-10 14:02:47 +000062static const char* kStretch_none = "none";
63static const char* kStretch_nopassword = "nopassword";
64static const std::string kStretchPrefix_scrypt = "scrypt ";
Paul Crowley1ef25582016-01-21 20:26:12 +000065static const char* kFn_encrypted_key = "encrypted_key";
Paul Crowley05720802016-02-08 15:55:41 +000066static const char* kFn_keymaster_key_blob = "keymaster_key_blob";
Paul Crowley63c18d32016-02-10 14:02:47 +000067static const char* kFn_salt = "salt";
Paul Crowley1ef25582016-01-21 20:26:12 +000068static const char* kFn_secdiscardable = "secdiscardable";
Paul Crowley05720802016-02-08 15:55:41 +000069static const char* kFn_stretching = "stretching";
70static const char* kFn_version = "version";
Paul Crowley1ef25582016-01-21 20:26:12 +000071
Paul Crowley13ffd8e2016-01-27 14:30:22 +000072static bool checkSize(const std::string& kind, size_t actual, size_t expected) {
Paul Crowley1ef25582016-01-21 20:26:12 +000073 if (actual != expected) {
Paul Crowleydf528a72016-03-09 09:31:37 -080074 LOG(ERROR) << "Wrong number of bytes in " << kind << ", expected " << expected << " got "
75 << actual;
Paul Crowley1ef25582016-01-21 20:26:12 +000076 return false;
77 }
78 return true;
79}
80
Paul Crowleydf528a72016-03-09 09:31:37 -080081static std::string hashSecdiscardable(const std::string& secdiscardable) {
Paul Crowley1ef25582016-01-21 20:26:12 +000082 SHA512_CTX c;
83
84 SHA512_Init(&c);
85 // Personalise the hashing by introducing a fixed prefix.
86 // Hashing applications should use personalization except when there is a
87 // specific reason not to; see section 4.11 of https://www.schneier.com/skein1.3.pdf
Paul Crowley13ffd8e2016-01-27 14:30:22 +000088 std::string secdiscardableHashingPrefix = "Android secdiscardable SHA512";
89 secdiscardableHashingPrefix.resize(SHA512_CBLOCK);
90 SHA512_Update(&c, secdiscardableHashingPrefix.data(), secdiscardableHashingPrefix.size());
Paul Crowley1ef25582016-01-21 20:26:12 +000091 SHA512_Update(&c, secdiscardable.data(), secdiscardable.size());
92 std::string res(SHA512_DIGEST_LENGTH, '\0');
Paul Crowleydf528a72016-03-09 09:31:37 -080093 SHA512_Final(reinterpret_cast<uint8_t*>(&res[0]), &c);
Paul Crowley1ef25582016-01-21 20:26:12 +000094 return res;
95}
96
Paul Crowleydf528a72016-03-09 09:31:37 -080097static bool generateKeymasterKey(Keymaster& keymaster, const KeyAuthentication& auth,
98 const std::string& appId, std::string* key) {
Paul Crowley320e5e12016-03-04 14:07:05 -080099 auto paramBuilder = keymaster::AuthorizationSetBuilder()
Paul Crowleydf528a72016-03-09 09:31:37 -0800100 .AesEncryptionKey(AES_KEY_BYTES * 8)
101 .Authorization(keymaster::TAG_BLOCK_MODE, KM_MODE_GCM)
102 .Authorization(keymaster::TAG_MIN_MAC_LENGTH, GCM_MAC_BYTES * 8)
103 .Authorization(keymaster::TAG_PADDING, KM_PAD_NONE);
Paul Crowleya051eb72016-03-08 16:08:32 -0800104 addStringParam(&paramBuilder, keymaster::TAG_APPLICATION_ID, appId);
Paul Crowley320e5e12016-03-04 14:07:05 -0800105 if (auth.token.empty()) {
106 LOG(DEBUG) << "Creating key that doesn't need auth token";
107 paramBuilder.Authorization(keymaster::TAG_NO_AUTH_REQUIRED);
108 } else {
109 LOG(DEBUG) << "Auth token required for key";
110 if (auth.token.size() != sizeof(hw_auth_token_t)) {
111 LOG(ERROR) << "Auth token should be " << sizeof(hw_auth_token_t) << " bytes, was "
Paul Crowleydf528a72016-03-09 09:31:37 -0800112 << auth.token.size() << " bytes";
Paul Crowley320e5e12016-03-04 14:07:05 -0800113 return false;
114 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800115 const hw_auth_token_t* at = reinterpret_cast<const hw_auth_token_t*>(auth.token.data());
Paul Crowley320e5e12016-03-04 14:07:05 -0800116 paramBuilder.Authorization(keymaster::TAG_USER_SECURE_ID, at->user_id);
117 paramBuilder.Authorization(keymaster::TAG_USER_AUTH_TYPE, HW_AUTH_PASSWORD);
118 paramBuilder.Authorization(keymaster::TAG_AUTH_TIMEOUT, 5);
119 }
120 return keymaster.generateKey(paramBuilder.build(), key);
121}
122
Paul Crowleydf528a72016-03-09 09:31:37 -0800123static keymaster::AuthorizationSetBuilder beginParams(const KeyAuthentication& auth,
124 const std::string& appId) {
Paul Crowley320e5e12016-03-04 14:07:05 -0800125 auto paramBuilder = keymaster::AuthorizationSetBuilder()
Paul Crowleydf528a72016-03-09 09:31:37 -0800126 .Authorization(keymaster::TAG_BLOCK_MODE, KM_MODE_GCM)
127 .Authorization(keymaster::TAG_MAC_LENGTH, GCM_MAC_BYTES * 8)
128 .Authorization(keymaster::TAG_PADDING, KM_PAD_NONE);
Paul Crowleya051eb72016-03-08 16:08:32 -0800129 addStringParam(&paramBuilder, keymaster::TAG_APPLICATION_ID, appId);
Paul Crowley320e5e12016-03-04 14:07:05 -0800130 if (!auth.token.empty()) {
131 LOG(DEBUG) << "Supplying auth token to Keymaster";
Paul Crowleya051eb72016-03-08 16:08:32 -0800132 addStringParam(&paramBuilder, keymaster::TAG_AUTH_TOKEN, auth.token);
Paul Crowley320e5e12016-03-04 14:07:05 -0800133 }
134 return paramBuilder;
Paul Crowley1ef25582016-01-21 20:26:12 +0000135}
136
Paul Crowleydf528a72016-03-09 09:31:37 -0800137static bool encryptWithKeymasterKey(Keymaster& keymaster, const std::string& key,
138 const KeyAuthentication& auth, const std::string& appId,
139 const std::string& message, std::string* ciphertext) {
Paul Crowley320e5e12016-03-04 14:07:05 -0800140 auto params = beginParams(auth, appId).build();
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000141 keymaster::AuthorizationSet outParams;
Paul Crowleya051eb72016-03-08 16:08:32 -0800142 auto opHandle = keymaster.begin(KM_PURPOSE_ENCRYPT, key, params, &outParams);
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000143 if (!opHandle) return false;
144 keymaster_blob_t nonceBlob;
145 if (!outParams.GetTagValue(keymaster::TAG_NONCE, &nonceBlob)) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000146 LOG(ERROR) << "GCM encryption but no nonce generated";
147 return false;
148 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000149 // nonceBlob here is just a pointer into existing data, must not be freed
Paul Crowleydf528a72016-03-09 09:31:37 -0800150 std::string nonce(reinterpret_cast<const char*>(nonceBlob.data), nonceBlob.data_length);
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000151 if (!checkSize("nonce", nonce.size(), GCM_NONCE_BYTES)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000152 std::string body;
Paul Crowleya051eb72016-03-08 16:08:32 -0800153 if (!opHandle.updateCompletely(message, &body)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000154
155 std::string mac;
Paul Crowleya051eb72016-03-08 16:08:32 -0800156 if (!opHandle.finishWithOutput(&mac)) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000157 if (!checkSize("mac", mac.size(), GCM_MAC_BYTES)) return false;
Paul Crowleya051eb72016-03-08 16:08:32 -0800158 *ciphertext = nonce + body + mac;
Paul Crowley1ef25582016-01-21 20:26:12 +0000159 return true;
160}
161
Paul Crowleydf528a72016-03-09 09:31:37 -0800162static bool decryptWithKeymasterKey(Keymaster& keymaster, const std::string& key,
163 const KeyAuthentication& auth, const std::string& appId,
164 const std::string& ciphertext, std::string* message) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000165 auto nonce = ciphertext.substr(0, GCM_NONCE_BYTES);
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000166 auto bodyAndMac = ciphertext.substr(GCM_NONCE_BYTES);
Paul Crowley320e5e12016-03-04 14:07:05 -0800167 auto params = addStringParam(beginParams(auth, appId), keymaster::TAG_NONCE, nonce).build();
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000168 auto opHandle = keymaster.begin(KM_PURPOSE_DECRYPT, key, params);
169 if (!opHandle) return false;
170 if (!opHandle.updateCompletely(bodyAndMac, message)) return false;
171 if (!opHandle.finish()) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000172 return true;
173}
174
Paul Crowleydf528a72016-03-09 09:31:37 -0800175static bool readFileToString(const std::string& filename, std::string* result) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800176 if (!android::base::ReadFileToString(filename, result)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800177 PLOG(ERROR) << "Failed to read from " << filename;
178 return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000179 }
180 return true;
181}
182
Paul Crowleydf528a72016-03-09 09:31:37 -0800183static bool writeStringToFile(const std::string& payload, const std::string& filename) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000184 if (!android::base::WriteStringToFile(payload, filename)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800185 PLOG(ERROR) << "Failed to write to " << filename;
186 return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000187 }
188 return true;
189}
190
Paul Crowley63c18d32016-02-10 14:02:47 +0000191static std::string getStretching() {
192 char paramstr[PROPERTY_VALUE_MAX];
193
194 property_get(SCRYPT_PROP, paramstr, SCRYPT_DEFAULTS);
195 return std::string() + kStretchPrefix_scrypt + paramstr;
196}
197
Paul Crowleydf528a72016-03-09 09:31:37 -0800198static bool stretchingNeedsSalt(const std::string& stretching) {
Paul Crowley63c18d32016-02-10 14:02:47 +0000199 return stretching != kStretch_nopassword && stretching != kStretch_none;
200}
201
Paul Crowleydf528a72016-03-09 09:31:37 -0800202static bool stretchSecret(const std::string& stretching, const std::string& secret,
203 const std::string& salt, std::string* stretched) {
Paul Crowley63c18d32016-02-10 14:02:47 +0000204 if (stretching == kStretch_nopassword) {
205 if (!secret.empty()) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800206 LOG(WARNING) << "Password present but stretching is nopassword";
Paul Crowley63c18d32016-02-10 14:02:47 +0000207 // Continue anyway
208 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800209 stretched->clear();
Paul Crowley63c18d32016-02-10 14:02:47 +0000210 } else if (stretching == kStretch_none) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800211 *stretched = secret;
Paul Crowleydf528a72016-03-09 09:31:37 -0800212 } else if (std::equal(kStretchPrefix_scrypt.begin(), kStretchPrefix_scrypt.end(),
213 stretching.begin())) {
Paul Crowley63c18d32016-02-10 14:02:47 +0000214 int Nf, rf, pf;
Paul Crowleydf528a72016-03-09 09:31:37 -0800215 if (!parse_scrypt_parameters(stretching.substr(kStretchPrefix_scrypt.size()).c_str(), &Nf,
216 &rf, &pf)) {
Paul Crowley63c18d32016-02-10 14:02:47 +0000217 LOG(ERROR) << "Unable to parse scrypt params in stretching: " << stretching;
218 return false;
219 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800220 stretched->assign(STRETCHED_BYTES, '\0');
Paul Crowleydf528a72016-03-09 09:31:37 -0800221 if (crypto_scrypt(reinterpret_cast<const uint8_t*>(secret.data()), secret.size(),
222 reinterpret_cast<const uint8_t*>(salt.data()), salt.size(),
223 1 << Nf, 1 << rf, 1 << pf,
224 reinterpret_cast<uint8_t*>(&(*stretched)[0]), stretched->size()) != 0) {
Paul Crowley63c18d32016-02-10 14:02:47 +0000225 LOG(ERROR) << "scrypt failed with params: " << stretching;
226 return false;
227 }
228 } else {
229 LOG(ERROR) << "Unknown stretching type: " << stretching;
230 return false;
231 }
232 return true;
233}
234
Paul Crowleydf528a72016-03-09 09:31:37 -0800235static bool generateAppId(const KeyAuthentication& auth, const std::string& stretching,
236 const std::string& salt, const std::string& secdiscardable,
237 std::string* appId) {
Paul Crowley63c18d32016-02-10 14:02:47 +0000238 std::string stretched;
Paul Crowleya051eb72016-03-08 16:08:32 -0800239 if (!stretchSecret(stretching, auth.secret, salt, &stretched)) return false;
240 *appId = hashSecdiscardable(secdiscardable) + stretched;
Paul Crowley63c18d32016-02-10 14:02:47 +0000241 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000242}
243
Paul Crowleydf528a72016-03-09 09:31:37 -0800244bool storeKey(const std::string& dir, const KeyAuthentication& auth, const std::string& key) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000245 if (TEMP_FAILURE_RETRY(mkdir(dir.c_str(), 0700)) == -1) {
246 PLOG(ERROR) << "key mkdir " << dir;
247 return false;
248 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800249 if (!writeStringToFile(kCurrentVersion, dir + "/" + kFn_version)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000250 std::string secdiscardable;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000251 if (ReadRandomBytes(SECDISCARDABLE_BYTES, secdiscardable) != OK) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000252 // TODO status_t plays badly with PLOG, fix it.
253 LOG(ERROR) << "Random read failed";
254 return false;
255 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000256 if (!writeStringToFile(secdiscardable, dir + "/" + kFn_secdiscardable)) return false;
Paul Crowley63c18d32016-02-10 14:02:47 +0000257 std::string stretching = auth.secret.empty() ? kStretch_nopassword : getStretching();
Paul Crowleydf528a72016-03-09 09:31:37 -0800258 if (!writeStringToFile(stretching, dir + "/" + kFn_stretching)) return false;
Paul Crowley63c18d32016-02-10 14:02:47 +0000259 std::string salt;
260 if (stretchingNeedsSalt(stretching)) {
261 if (ReadRandomBytes(SALT_BYTES, salt) != OK) {
262 LOG(ERROR) << "Random read failed";
263 return false;
264 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800265 if (!writeStringToFile(salt, dir + "/" + kFn_salt)) return false;
Paul Crowley63c18d32016-02-10 14:02:47 +0000266 }
Paul Crowley320e5e12016-03-04 14:07:05 -0800267 std::string appId;
Paul Crowleya051eb72016-03-08 16:08:32 -0800268 if (!generateAppId(auth, stretching, salt, secdiscardable, &appId)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000269 Keymaster keymaster;
270 if (!keymaster) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000271 std::string kmKey;
Paul Crowleya051eb72016-03-08 16:08:32 -0800272 if (!generateKeymasterKey(keymaster, auth, appId, &kmKey)) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000273 if (!writeStringToFile(kmKey, dir + "/" + kFn_keymaster_key_blob)) return false;
Paul Crowley320e5e12016-03-04 14:07:05 -0800274 std::string encryptedKey;
Paul Crowleya051eb72016-03-08 16:08:32 -0800275 if (!encryptWithKeymasterKey(keymaster, kmKey, auth, appId, key, &encryptedKey)) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000276 if (!writeStringToFile(encryptedKey, dir + "/" + kFn_encrypted_key)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000277 return true;
278}
279
Paul Crowleydf528a72016-03-09 09:31:37 -0800280bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, std::string* key) {
Paul Crowley05720802016-02-08 15:55:41 +0000281 std::string version;
Paul Crowleya051eb72016-03-08 16:08:32 -0800282 if (!readFileToString(dir + "/" + kFn_version, &version)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000283 if (version != kCurrentVersion) {
284 LOG(ERROR) << "Version mismatch, expected " << kCurrentVersion << " got " << version;
285 return false;
286 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000287 std::string secdiscardable;
Paul Crowleya051eb72016-03-08 16:08:32 -0800288 if (!readFileToString(dir + "/" + kFn_secdiscardable, &secdiscardable)) return false;
Paul Crowley63c18d32016-02-10 14:02:47 +0000289 std::string stretching;
Paul Crowleya051eb72016-03-08 16:08:32 -0800290 if (!readFileToString(dir + "/" + kFn_stretching, &stretching)) return false;
Paul Crowley63c18d32016-02-10 14:02:47 +0000291 std::string salt;
292 if (stretchingNeedsSalt(stretching)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800293 if (!readFileToString(dir + "/" + kFn_salt, &salt)) return false;
Paul Crowley63c18d32016-02-10 14:02:47 +0000294 }
Paul Crowley320e5e12016-03-04 14:07:05 -0800295 std::string appId;
Paul Crowleya051eb72016-03-08 16:08:32 -0800296 if (!generateAppId(auth, stretching, salt, secdiscardable, &appId)) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000297 std::string kmKey;
Paul Crowleya051eb72016-03-08 16:08:32 -0800298 if (!readFileToString(dir + "/" + kFn_keymaster_key_blob, &kmKey)) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000299 std::string encryptedMessage;
Paul Crowleya051eb72016-03-08 16:08:32 -0800300 if (!readFileToString(dir + "/" + kFn_encrypted_key, &encryptedMessage)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000301 Keymaster keymaster;
302 if (!keymaster) return false;
Paul Crowley320e5e12016-03-04 14:07:05 -0800303 return decryptWithKeymasterKey(keymaster, kmKey, auth, appId, encryptedMessage, key);
Paul Crowley1ef25582016-01-21 20:26:12 +0000304}
305
Paul Crowleydf528a72016-03-09 09:31:37 -0800306static bool deleteKey(const std::string& dir) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000307 std::string kmKey;
Paul Crowleya051eb72016-03-08 16:08:32 -0800308 if (!readFileToString(dir + "/" + kFn_keymaster_key_blob, &kmKey)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000309 Keymaster keymaster;
310 if (!keymaster) return false;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000311 if (!keymaster.deleteKey(kmKey)) return false;
Paul Crowley1ef25582016-01-21 20:26:12 +0000312 return true;
313}
314
Paul Crowleydf528a72016-03-09 09:31:37 -0800315static bool secdiscardSecdiscardable(const std::string& dir) {
316 if (ForkExecvp(
317 std::vector<std::string>{kSecdiscardPath, "--", dir + "/" + kFn_secdiscardable}) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000318 LOG(ERROR) << "secdiscard failed";
319 return false;
320 }
321 return true;
322}
323
Paul Crowleydf528a72016-03-09 09:31:37 -0800324static bool recursiveDeleteKey(const std::string& dir) {
325 if (ForkExecvp(std::vector<std::string>{kRmPath, "-rf", dir}) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000326 LOG(ERROR) << "recursive delete failed";
327 return false;
328 }
329 return true;
330}
331
Paul Crowleydf528a72016-03-09 09:31:37 -0800332bool destroyKey(const std::string& dir) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000333 bool success = true;
334 // Try each thing, even if previous things failed.
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000335 success &= deleteKey(dir);
336 success &= secdiscardSecdiscardable(dir);
337 success &= recursiveDeleteKey(dir);
Paul Crowley1ef25582016-01-21 20:26:12 +0000338 return success;
339}
340
341} // namespace vold
342} // namespace android