Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 17 | #include "Ext4Crypt.h" |
| 18 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 19 | #include "KeyStorage.h" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 20 | #include "Utils.h" |
| 21 | |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 22 | #include <iomanip> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 23 | #include <map> |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 24 | #include <set> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 25 | #include <string> |
| 26 | #include <sstream> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 27 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 28 | #include <stdio.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 29 | #include <errno.h> |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 30 | #include <dirent.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 31 | #include <sys/mount.h> |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 32 | #include <sys/types.h> |
| 33 | #include <sys/stat.h> |
| 34 | #include <fcntl.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 35 | #include <cutils/properties.h> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 36 | #include <openssl/sha.h> |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 37 | #include <selinux/android.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 38 | |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 39 | #include <private/android_filesystem_config.h> |
| 40 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 41 | #include "unencrypted_properties.h" |
| 42 | #include "key_control.h" |
| 43 | #include "cryptfs.h" |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 44 | #include "ext4_crypt_init_extensions.h" |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 45 | |
| 46 | #define LOG_TAG "Ext4Crypt" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 47 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 48 | #define EMULATED_USES_SELINUX 0 |
| 49 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 50 | #include <cutils/fs.h> |
| 51 | #include <cutils/log.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 52 | #include <cutils/klog.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 53 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 54 | #include <android-base/file.h> |
Elliott Hughes | 6bf0547 | 2015-12-04 17:55:33 -0800 | [diff] [blame] | 55 | #include <android-base/logging.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 56 | #include <android-base/stringprintf.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 57 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 58 | using android::base::StringPrintf; |
| 59 | |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 60 | static bool e4crypt_is_native() { |
| 61 | char value[PROPERTY_VALUE_MAX]; |
| 62 | property_get("ro.crypto.type", value, "none"); |
| 63 | return !strcmp(value, "file"); |
| 64 | } |
| 65 | |
| 66 | static bool e4crypt_is_emulated() { |
| 67 | return property_get_bool("persist.sys.emulate_fbe", false); |
| 68 | } |
Jeff Sharkey | c79fb89 | 2015-11-12 20:18:02 -0800 | [diff] [blame] | 69 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 70 | namespace { |
| 71 | // Key length in bits |
| 72 | const int key_length = 128; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 73 | static_assert(key_length % 8 == 0, |
| 74 | "Key length must be multiple of 8 bits"); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 75 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 76 | const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys"; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 77 | const std::string user_key_temp = user_key_dir + "/temp"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 78 | |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 79 | bool s_enabled = false; |
| 80 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 81 | // Some users are ephemeral, don't try to wipe their keys from disk |
| 82 | std::set<userid_t> s_ephemeral_users; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame^] | 83 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 84 | // Map user ids to key references |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 85 | std::map<userid_t, std::string> s_de_key_raw_refs; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 86 | std::map<userid_t, std::string> s_ce_key_raw_refs; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 87 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 88 | // ext4enc:TODO get this const from somewhere good |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 89 | const int EXT4_KEY_DESCRIPTOR_SIZE = 8; |
| 90 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 91 | // ext4enc:TODO Include structure from somewhere sensible |
| 92 | // MUST be in sync with ext4_crypto.c in kernel |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 93 | const int EXT4_MAX_KEY_SIZE = 64; |
| 94 | const int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 95 | struct ext4_encryption_key { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 96 | uint32_t mode; |
| 97 | char raw[EXT4_MAX_KEY_SIZE]; |
| 98 | uint32_t size; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 99 | }; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 102 | static bool install_key(const std::string &key, std::string &raw_ref); |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 103 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 104 | static UnencryptedProperties GetProps(const char* path) |
| 105 | { |
| 106 | return UnencryptedProperties(path); |
| 107 | } |
| 108 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 109 | int e4crypt_crypto_complete(const char* path) |
| 110 | { |
| 111 | SLOGI("ext4 crypto complete called on %s", path); |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame^] | 112 | if (GetProps(path).Get<std::string>(properties::ref).empty()) { |
| 113 | SLOGI("No key reference, so not ext4enc"); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 114 | return -1; |
| 115 | } |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 120 | // Get raw keyref - used to make keyname and to pass to ioctl |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 121 | static std::string generate_key_ref(const char* key, int length) |
| 122 | { |
| 123 | SHA512_CTX c; |
| 124 | |
| 125 | SHA512_Init(&c); |
| 126 | SHA512_Update(&c, key, length); |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 127 | unsigned char key_ref1[SHA512_DIGEST_LENGTH]; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 128 | SHA512_Final(key_ref1, &c); |
| 129 | |
| 130 | SHA512_Init(&c); |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 131 | SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH); |
| 132 | unsigned char key_ref2[SHA512_DIGEST_LENGTH]; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 133 | SHA512_Final(key_ref2, &c); |
| 134 | |
| 135 | return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE); |
| 136 | } |
| 137 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 138 | static ext4_encryption_key fill_key(const std::string &key) |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 139 | { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 140 | // ext4enc:TODO Currently raw key is required to be of length |
| 141 | // sizeof(ext4_key.raw) == EXT4_MAX_KEY_SIZE, so zero pad to |
| 142 | // this length. Change when kernel bug is fixed. |
| 143 | ext4_encryption_key ext4_key = {EXT4_ENCRYPTION_MODE_AES_256_XTS, |
| 144 | {0}, |
| 145 | sizeof(ext4_key.raw)}; |
| 146 | memset(ext4_key.raw, 0, sizeof(ext4_key.raw)); |
| 147 | static_assert(key_length / 8 <= sizeof(ext4_key.raw), |
| 148 | "Key too long!"); |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 149 | memcpy(ext4_key.raw, &key[0], key.size()); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 150 | return ext4_key; |
| 151 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 152 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 153 | static std::string keyname(const std::string &raw_ref) |
| 154 | { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 155 | std::ostringstream o; |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 156 | o << "ext4:"; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 157 | for (auto i = raw_ref.begin(); i != raw_ref.end(); ++i) { |
| 158 | o << std::hex << std::setw(2) << std::setfill('0') << (int)*i; |
| 159 | } |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 160 | return o.str(); |
| 161 | } |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 162 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 163 | // Get the keyring we store all keys in |
| 164 | static key_serial_t e4crypt_keyring() |
| 165 | { |
| 166 | return keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0); |
| 167 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 168 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 169 | // Install password into global keyring |
| 170 | // Return raw key reference for use in policy |
| 171 | static bool install_key(const std::string &key, std::string &raw_ref) |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 172 | { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 173 | if (key.size() != key_length/8) { |
| 174 | LOG(ERROR) << "Wrong size key " << key.size(); |
| 175 | return false; |
| 176 | } |
| 177 | auto ext4_key = fill_key(key); |
| 178 | raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size); |
| 179 | auto ref = keyname(raw_ref); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 180 | key_serial_t device_keyring = e4crypt_keyring(); |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 181 | key_serial_t key_id = add_key("logon", ref.c_str(), |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 182 | (void*)&ext4_key, sizeof(ext4_key), |
| 183 | device_keyring); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 184 | if (key_id == -1) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 185 | PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 186 | return false; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 187 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 188 | LOG(INFO) << "Added key " << key_id << " (" << ref << ") to keyring " |
| 189 | << device_keyring << " in process " << getpid(); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 190 | return true; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 193 | int e4crypt_get_field(const char* path, const char* fieldname, |
| 194 | char* value, size_t len) |
| 195 | { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 196 | auto v = GetProps(path).GetChild(properties::props) |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 197 | .Get<std::string>(fieldname); |
| 198 | |
| 199 | if (v == "") { |
| 200 | return CRYPTO_GETFIELD_ERROR_NO_FIELD; |
| 201 | } |
| 202 | |
| 203 | if (v.length() >= len) { |
| 204 | return CRYPTO_GETFIELD_ERROR_BUF_TOO_SMALL; |
| 205 | } |
| 206 | |
| 207 | strlcpy(value, v.c_str(), len); |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | int e4crypt_set_field(const char* path, const char* fieldname, |
| 212 | const char* value) |
| 213 | { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 214 | return GetProps(path).GetChild(properties::props) |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 215 | .Set(fieldname, std::string(value)) ? 0 : -1; |
| 216 | } |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 217 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 218 | static std::string get_de_key_path(userid_t user_id) { |
| 219 | return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id); |
| 220 | } |
| 221 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 222 | static std::string get_ce_key_path(userid_t user_id) { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 223 | return StringPrintf("%s/ce/%d/current", user_key_dir.c_str(), user_id); |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 224 | } |
| 225 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 226 | static bool read_and_install_key(const std::string &key_path, std::string &raw_ref) |
| 227 | { |
| 228 | std::string key; |
| 229 | if (!android::vold::retrieveKey(key_path, key)) return false; |
| 230 | if (!install_key(key, raw_ref)) return false; |
| 231 | return true; |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 232 | } |
| 233 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 234 | static bool read_and_install_user_ce_key(userid_t user_id) |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 235 | { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 236 | if (s_ce_key_raw_refs.count(user_id) != 0) return true; |
| 237 | const auto key_path = get_ce_key_path(user_id); |
| 238 | std::string raw_ref; |
| 239 | if (!read_and_install_key(key_path, raw_ref)) return false; |
| 240 | s_ce_key_raw_refs[user_id] = raw_ref; |
| 241 | LOG(DEBUG) << "Installed ce key for user " << user_id; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 242 | return true; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 245 | static bool prepare_dir(const std::string &dir, mode_t mode, uid_t uid, gid_t gid) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 246 | LOG(DEBUG) << "Preparing: " << dir; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 247 | if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) { |
| 248 | PLOG(ERROR) << "Failed to prepare " << dir; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 249 | return false; |
| 250 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 251 | return true; |
| 252 | } |
| 253 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 254 | static bool random_key(std::string &key) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 255 | if (android::vold::ReadRandomBytes(key_length / 8, key) != 0) { |
| 256 | // TODO status_t plays badly with PLOG, fix it. |
| 257 | LOG(ERROR) << "Random read failed"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 258 | return false; |
| 259 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 260 | return true; |
| 261 | } |
| 262 | |
| 263 | static bool path_exists(const std::string &path) { |
| 264 | return access(path.c_str(), F_OK) == 0; |
| 265 | } |
| 266 | |
| 267 | // NB this assumes that there is only one thread listening for crypt commands, because |
| 268 | // it creates keys in a fixed location. |
| 269 | static bool store_key(const std::string &key_path, const std::string &key) { |
| 270 | if (path_exists(key_path)) { |
| 271 | LOG(ERROR) << "Already exists, cannot create key at: " << key_path; |
| 272 | return false; |
| 273 | } |
| 274 | if (path_exists(user_key_temp)) { |
| 275 | android::vold::destroyKey(user_key_temp); |
| 276 | } |
| 277 | if (!android::vold::storeKey(user_key_temp, key)) return false; |
| 278 | if (rename(user_key_temp.c_str(), key_path.c_str()) != 0) { |
| 279 | PLOG(ERROR) << "Unable to move new key to location: " << key_path; |
| 280 | return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 281 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 282 | LOG(DEBUG) << "Created key " << key_path; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 283 | return true; |
| 284 | } |
| 285 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 286 | static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) { |
| 287 | std::string de_key, ce_key; |
| 288 | if (!random_key(de_key)) return false; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 289 | if (!random_key(ce_key)) return false; |
| 290 | if (create_ephemeral) { |
| 291 | // If the key should be created as ephemeral, don't store it. |
| 292 | s_ephemeral_users.insert(user_id); |
| 293 | } else { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 294 | if (!store_key(get_de_key_path(user_id), de_key)) return false; |
| 295 | if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id), |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 296 | 0700, AID_ROOT, AID_ROOT)) return false; |
| 297 | if (!store_key(get_ce_key_path(user_id), ce_key)) return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 298 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 299 | std::string de_raw_ref; |
| 300 | if (!install_key(de_key, de_raw_ref)) return false; |
| 301 | s_de_key_raw_refs[user_id] = de_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 302 | std::string ce_raw_ref; |
| 303 | if (!install_key(ce_key, ce_raw_ref)) return false; |
| 304 | s_ce_key_raw_refs[user_id] = ce_raw_ref; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 305 | LOG(DEBUG) << "Created keys for user " << user_id; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 306 | return true; |
| 307 | } |
| 308 | |
| 309 | static bool lookup_key_ref(const std::map<userid_t, std::string> &key_map, |
| 310 | userid_t user_id, std::string &raw_ref) { |
| 311 | auto refi = key_map.find(user_id); |
| 312 | if (refi == key_map.end()) { |
| 313 | LOG(ERROR) << "Cannot find key for " << user_id; |
| 314 | return false; |
| 315 | } |
| 316 | raw_ref = refi->second; |
| 317 | return true; |
| 318 | } |
| 319 | |
| 320 | static bool set_policy(const std::string &raw_ref, const std::string& path) { |
| 321 | if (do_policy_set(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) { |
| 322 | LOG(ERROR) << "Failed to set policy on: " << path; |
| 323 | return false; |
| 324 | } |
| 325 | return true; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 326 | } |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 327 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 328 | static bool is_numeric(const char *name) { |
| 329 | for (const char *p = name; *p != '\0'; p++) { |
| 330 | if (!isdigit(*p)) |
| 331 | return false; |
| 332 | } |
| 333 | return true; |
| 334 | } |
| 335 | |
| 336 | static bool load_all_de_keys() { |
| 337 | auto de_dir = user_key_dir + "/de"; |
| 338 | auto dirp = std::unique_ptr<DIR, int(*)(DIR*)>(opendir(de_dir.c_str()), closedir); |
| 339 | if (!dirp) { |
| 340 | PLOG(ERROR) << "Unable to read de key directory"; |
| 341 | return false; |
| 342 | } |
| 343 | for (;;) { |
| 344 | errno = 0; |
| 345 | auto entry = readdir(dirp.get()); |
| 346 | if (!entry) { |
| 347 | if (errno) { |
| 348 | PLOG(ERROR) << "Unable to read de key directory"; |
| 349 | return false; |
| 350 | } |
| 351 | break; |
| 352 | } |
| 353 | if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) { |
| 354 | LOG(DEBUG) << "Skipping non-de-key " << entry->d_name; |
| 355 | continue; |
| 356 | } |
| 357 | userid_t user_id = atoi(entry->d_name); |
| 358 | if (s_de_key_raw_refs.count(user_id) == 0) { |
| 359 | std::string raw_ref; |
| 360 | if (!read_and_install_key(de_dir + "/" + entry->d_name, raw_ref)) return false; |
| 361 | s_de_key_raw_refs[user_id] = raw_ref; |
| 362 | LOG(DEBUG) << "Installed de key for user " << user_id; |
| 363 | } |
| 364 | } |
| 365 | // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the |
| 366 | // correct policy set on them, and that no rogue ones exist. |
| 367 | return true; |
| 368 | } |
| 369 | |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame^] | 370 | int e4crypt_enable(const char* path) |
| 371 | { |
| 372 | LOG(INFO) << "e4crypt_enable"; |
| 373 | |
| 374 | if (s_enabled) { |
| 375 | LOG(INFO) << "Already enabled"; |
| 376 | return 0; |
| 377 | } |
| 378 | |
| 379 | std::string device_key; |
| 380 | std::string device_key_path = std::string(path) + "/unencrypted/device_key"; |
| 381 | if (!android::vold::retrieveKey(device_key_path, device_key)) { |
| 382 | LOG(INFO) << "Creating new key"; |
| 383 | if (!random_key(device_key)) { |
| 384 | return -1; |
| 385 | } |
| 386 | |
| 387 | if (!android::vold::storeKey(device_key_path, device_key)) { |
| 388 | return -1; |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | std::string device_key_ref; |
| 393 | if (!install_key(device_key, device_key_ref)) { |
| 394 | LOG(ERROR) << "Failed to install device key"; |
| 395 | return -1; |
| 396 | } |
| 397 | |
| 398 | UnencryptedProperties props(path); |
| 399 | if (!props.Remove(properties::ref)) { |
| 400 | SLOGE("Failed to remove key ref"); |
| 401 | return -1; |
| 402 | } |
| 403 | |
| 404 | if (!props.Set(properties::ref, device_key_ref)) { |
| 405 | SLOGE("Cannot save key reference"); |
| 406 | return -1; |
| 407 | } |
| 408 | |
| 409 | s_enabled = true; |
| 410 | return 0; |
| 411 | } |
| 412 | |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 413 | int e4crypt_init_user0() { |
| 414 | LOG(DEBUG) << "e4crypt_init_user0"; |
| 415 | if (e4crypt_is_native()) { |
| 416 | if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return -1; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 417 | if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return -1; |
| 418 | if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return -1; |
| 419 | auto de_path = get_de_key_path(0); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 420 | auto ce_path = get_ce_key_path(0); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 421 | if (!path_exists(de_path) || !path_exists(ce_path)) { |
| 422 | if (path_exists(de_path)) { |
| 423 | android::vold::destroyKey(de_path); // Ignore failure |
| 424 | } |
| 425 | if (path_exists(ce_path)) { |
| 426 | android::vold::destroyKey(ce_path); // Ignore failure |
| 427 | } |
| 428 | if (!create_and_install_user_keys(0, false)) return -1; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 429 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 430 | if (!load_all_de_keys()) return -1; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 431 | } |
| 432 | // Ignore failures. FIXME this is horrid |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 433 | // FIXME: we need an idempotent policy-setting call, which simply verifies the |
| 434 | // policy is already set on a second run, even if the directory is nonempty. |
| 435 | // Then we need to call it all the time. |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 436 | e4crypt_prepare_user_storage(nullptr, 0, 0, false); |
| 437 | return 0; |
| 438 | } |
| 439 | |
Paul Crowley | 27cbce9 | 2015-12-10 14:51:30 +0000 | [diff] [blame] | 440 | int e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 441 | LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 442 | if (!e4crypt_is_native()) { |
| 443 | return 0; |
| 444 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 445 | // FIXME test for existence of key that is not loaded yet |
| 446 | if (s_ce_key_raw_refs.count(user_id) != 0) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 447 | LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " |
| 448 | << user_id << " serial " << serial; |
| 449 | // FIXME should we fail the command? |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 450 | return 0; |
| 451 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 452 | if (!create_and_install_user_keys(user_id, ephemeral)) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 453 | return -1; |
| 454 | } |
| 455 | // TODO: create second key for user_de data |
| 456 | return 0; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 457 | } |
| 458 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 459 | static bool evict_key(const std::string &raw_ref) { |
| 460 | auto ref = keyname(raw_ref); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 461 | auto key_serial = keyctl_search(e4crypt_keyring(), "logon", ref.c_str(), 0); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 462 | if (keyctl_revoke(key_serial) != 0) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 463 | PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 464 | return false; |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 465 | } |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 466 | LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref; |
| 467 | return true; |
| 468 | } |
| 469 | |
| 470 | int e4crypt_destroy_user_key(userid_t user_id) { |
| 471 | LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")"; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 472 | if (!e4crypt_is_native()) { |
| 473 | return 0; |
| 474 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 475 | bool success = true; |
| 476 | std::string raw_ref; |
| 477 | success &= lookup_key_ref(s_ce_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 478 | success &= lookup_key_ref(s_de_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 479 | auto it = s_ephemeral_users.find(user_id); |
| 480 | if (it != s_ephemeral_users.end()) { |
| 481 | s_ephemeral_users.erase(it); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 482 | } else { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 483 | success &= android::vold::destroyKey(get_ce_key_path(user_id)); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 484 | success &= android::vold::destroyKey(get_de_key_path(user_id)); |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 485 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 486 | return success ? 0 : -1; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 487 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 488 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 489 | static int emulated_lock(const std::string& path) { |
| 490 | if (chmod(path.c_str(), 0000) != 0) { |
| 491 | PLOG(ERROR) << "Failed to chmod " << path; |
| 492 | return -1; |
| 493 | } |
| 494 | #if EMULATED_USES_SELINUX |
| 495 | if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) { |
| 496 | PLOG(WARNING) << "Failed to setfilecon " << path; |
| 497 | return -1; |
| 498 | } |
| 499 | #endif |
| 500 | return 0; |
| 501 | } |
| 502 | |
| 503 | static int emulated_unlock(const std::string& path, mode_t mode) { |
| 504 | if (chmod(path.c_str(), mode) != 0) { |
| 505 | PLOG(ERROR) << "Failed to chmod " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 506 | // FIXME temporary workaround for b/26713622 |
| 507 | if (e4crypt_is_emulated()) return -1; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 508 | } |
| 509 | #if EMULATED_USES_SELINUX |
| 510 | if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) { |
| 511 | PLOG(WARNING) << "Failed to restorecon " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 512 | // FIXME temporary workaround for b/26713622 |
| 513 | if (e4crypt_is_emulated()) return -1; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 514 | } |
| 515 | #endif |
| 516 | return 0; |
| 517 | } |
| 518 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 519 | int e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token) { |
| 520 | LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " " << (token != nullptr); |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 521 | if (e4crypt_is_native()) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 522 | if (!read_and_install_user_ce_key(user_id)) { |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 523 | LOG(ERROR) << "Couldn't read key for " << user_id; |
| 524 | return -1; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 525 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 526 | } else { |
| 527 | // When in emulation mode, we just use chmod. However, we also |
| 528 | // unlock directories when not in emulation mode, to bring devices |
| 529 | // back into a known-good state. |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 530 | if (emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) || |
| 531 | emulated_unlock(android::vold::BuildDataMediaPath(nullptr, user_id), 0770) || |
| 532 | emulated_unlock(android::vold::BuildDataUserPath(nullptr, user_id), 0771)) { |
| 533 | LOG(ERROR) << "Failed to unlock user " << user_id; |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 534 | return -1; |
| 535 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 536 | } |
| 537 | return 0; |
| 538 | } |
| 539 | |
| 540 | int e4crypt_lock_user_key(userid_t user_id) { |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 541 | if (e4crypt_is_native()) { |
| 542 | // TODO: remove from kernel keyring |
| 543 | } else if (e4crypt_is_emulated()) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 544 | // When in emulation mode, we just use chmod |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 545 | if (emulated_lock(android::vold::BuildDataSystemCePath(user_id)) || |
| 546 | emulated_lock(android::vold::BuildDataMediaPath(nullptr, user_id)) || |
| 547 | emulated_lock(android::vold::BuildDataUserPath(nullptr, user_id))) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 548 | PLOG(ERROR) << "Failed to lock user " << user_id; |
| 549 | return -1; |
| 550 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 551 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 552 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 553 | return 0; |
| 554 | } |
| 555 | |
Lenka Trochtova | 9ad4369 | 2015-12-11 13:27:26 +0100 | [diff] [blame] | 556 | int e4crypt_prepare_user_storage(const char* volume_uuid, |
| 557 | userid_t user_id, |
| 558 | int serial, |
| 559 | bool ephemeral) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 560 | if (volume_uuid) { |
| 561 | LOG(DEBUG) << "e4crypt_prepare_user_storage " << volume_uuid << " " << user_id; |
| 562 | } else { |
| 563 | LOG(DEBUG) << "e4crypt_prepare_user_storage, null volume " << user_id; |
| 564 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 565 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
| 566 | auto media_ce_path = android::vold::BuildDataMediaPath(volume_uuid, user_id); |
| 567 | auto user_ce_path = android::vold::BuildDataUserPath(volume_uuid, user_id); |
| 568 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 569 | |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 570 | // FIXME: should this be 0770 or 0700? |
| 571 | if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return -1; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 572 | if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return -1; |
| 573 | if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1; |
| 574 | if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 575 | |
| 576 | if (e4crypt_crypto_complete(DATA_MNT_POINT) == 0) { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 577 | std::string ce_raw_ref, de_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 578 | if (!lookup_key_ref(s_ce_key_raw_refs, user_id, ce_raw_ref)) return -1; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 579 | if (!lookup_key_ref(s_de_key_raw_refs, user_id, de_raw_ref)) return -1; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 580 | if (!set_policy(ce_raw_ref, system_ce_path)) return -1; |
| 581 | if (!set_policy(ce_raw_ref, media_ce_path)) return -1; |
| 582 | if (!set_policy(ce_raw_ref, user_ce_path)) return -1; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 583 | if (!set_policy(de_raw_ref, user_de_path)) return -1; |
| 584 | // FIXME I thought there were more DE directories than this |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | return 0; |
| 588 | } |