Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | /* |
| 18 | * Tool to create a directory with the right SELinux context applied, or |
| 19 | * apply the context if it's absent. Also fixes mode, uid, gid. |
| 20 | */ |
| 21 | |
| 22 | #include <iostream> |
| 23 | #include <string> |
| 24 | #include <vector> |
| 25 | |
| 26 | #include <dirent.h> |
| 27 | #include <stdio.h> |
| 28 | #include <stdlib.h> |
| 29 | #include <sys/stat.h> |
| 30 | #include <sys/types.h> |
| 31 | |
| 32 | #include <android-base/logging.h> |
| 33 | #include <android-base/scopeguard.h> |
| 34 | |
| 35 | #include <cutils/fs.h> |
| 36 | #include <selinux/android.h> |
| 37 | |
| 38 | #include "Utils.h" |
| 39 | #include "android/os/IVold.h" |
| 40 | |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 41 | #include <private/android_filesystem_config.h> |
| 42 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 43 | static void usage(const char* progname) { |
| 44 | std::cerr << "Usage: " << progname << " [ prepare | destroy ] <volume_uuid> <user_id> <flags>" |
| 45 | << std::endl; |
| 46 | exit(-1); |
| 47 | } |
| 48 | |
| 49 | static bool small_int(const std::string& s) { |
| 50 | return !s.empty() && s.size() < 7 && s.find_first_not_of("0123456789") == std::string::npos; |
| 51 | } |
| 52 | |
| 53 | static bool valid_uuid(const std::string& s) { |
| 54 | return s.size() < 40 && s.find_first_not_of("0123456789abcdefABCDEF-_") == std::string::npos; |
| 55 | } |
| 56 | |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 57 | static bool prepare_dir_for_user(struct selabel_handle* sehandle, mode_t mode, uid_t uid, gid_t gid, |
| 58 | const std::string& path, uid_t user_id) { |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 59 | auto clearfscreatecon = android::base::make_scope_guard([] { setfscreatecon(nullptr); }); |
| 60 | auto secontext = std::unique_ptr<char, void (*)(char*)>(nullptr, freecon); |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 61 | char* tmp_secontext; |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 62 | |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 63 | if (selabel_lookup(sehandle, &tmp_secontext, path.c_str(), S_IFDIR) != 0) { |
| 64 | PLOG(ERROR) << "Failed to look up selabel for directory " << path; |
| 65 | return false; |
| 66 | } |
| 67 | secontext.reset(tmp_secontext); |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 68 | |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 69 | if (user_id != (uid_t)-1) { |
| 70 | if (selinux_android_context_with_level(secontext.get(), &tmp_secontext, user_id, |
| 71 | (uid_t)-1) != 0) { |
| 72 | PLOG(ERROR) << "Unable to create context with level for: " << path; |
| 73 | return false; |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 74 | } |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 75 | secontext.reset(tmp_secontext); |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 76 | } |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 77 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 78 | LOG(DEBUG) << "Setting up mode " << std::oct << mode << std::dec << " uid " << uid << " gid " |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 79 | << gid << " context " << secontext.get() << " on path: " << path; |
| 80 | if (setfscreatecon(secontext.get()) != 0) { |
| 81 | LOG(ERROR) << "Failed to setfscreatecon for directory " << path; |
| 82 | return false; |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 83 | } |
| 84 | if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) { |
| 85 | return false; |
| 86 | } |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 87 | char* tmp_oldsecontext = nullptr; |
| 88 | if (lgetfilecon(path.c_str(), &tmp_oldsecontext) < 0) { |
| 89 | PLOG(ERROR) << "Unable to read secontext for: " << path; |
| 90 | return false; |
| 91 | } |
| 92 | auto oldsecontext = std::unique_ptr<char, void (*)(char*)>(tmp_oldsecontext, freecon); |
| 93 | if (strcmp(secontext.get(), oldsecontext.get()) != 0) { |
| 94 | LOG(INFO) << "Relabelling from " << ((char*)oldsecontext.get()) << " to " |
| 95 | << ((char*)secontext.get()) << ": " << path; |
| 96 | if (lsetfilecon(path.c_str(), secontext.get()) != 0) { |
| 97 | PLOG(ERROR) << "Relabelling failed for: " << path; |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 98 | return false; |
| 99 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 100 | } |
| 101 | return true; |
| 102 | } |
| 103 | |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 104 | static bool prepare_dir(struct selabel_handle* sehandle, mode_t mode, uid_t uid, gid_t gid, |
| 105 | const std::string& path) { |
| 106 | return prepare_dir_for_user(sehandle, mode, uid, gid, path, (uid_t)-1); |
| 107 | } |
| 108 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 109 | static bool rmrf_contents(const std::string& path) { |
| 110 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(path.c_str()), closedir); |
| 111 | if (!dirp) { |
Eric Biggers | 629c634 | 2023-02-24 17:26:10 +0000 | [diff] [blame] | 112 | if (errno == ENOENT) { |
| 113 | return true; |
| 114 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 115 | PLOG(ERROR) << "Unable to open directory: " << path; |
| 116 | return false; |
| 117 | } |
| 118 | bool res = true; |
| 119 | for (;;) { |
| 120 | errno = 0; |
| 121 | auto const entry = readdir(dirp.get()); |
| 122 | if (!entry) { |
| 123 | if (errno) { |
| 124 | PLOG(ERROR) << "readdir failed on: " << path; |
| 125 | return false; |
| 126 | } |
| 127 | return res; |
| 128 | } |
| 129 | if (entry->d_name[0] == '.') continue; |
| 130 | auto subdir = path + "/" + entry->d_name; |
| 131 | if (0 != |
| 132 | android::vold::ForkExecvp(std::vector<std::string>{"/system/bin/rm", "-rf", subdir})) { |
| 133 | LOG(ERROR) << "rm -rf failed on " << subdir; |
| 134 | res = false; |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 139 | static bool prepare_apex_subdirs(struct selabel_handle* sehandle, const std::string& path) { |
Oli Lan | e1b3f5c | 2020-01-17 11:01:38 +0000 | [diff] [blame] | 140 | if (!prepare_dir(sehandle, 0711, 0, 0, path + "/apexdata")) return false; |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 141 | |
| 142 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir("/apex"), closedir); |
| 143 | if (!dirp) { |
| 144 | PLOG(ERROR) << "Unable to open apex directory"; |
| 145 | return false; |
| 146 | } |
| 147 | struct dirent* entry; |
| 148 | while ((entry = readdir(dirp.get())) != nullptr) { |
| 149 | if (entry->d_type != DT_DIR) continue; |
| 150 | |
| 151 | const char* name = entry->d_name; |
| 152 | // skip any starting with "." |
| 153 | if (name[0] == '.') continue; |
| 154 | |
| 155 | if (strchr(name, '@') != NULL) continue; |
| 156 | |
Oli Lan | e1b3f5c | 2020-01-17 11:01:38 +0000 | [diff] [blame] | 157 | if (!prepare_dir(sehandle, 0771, AID_ROOT, AID_SYSTEM, path + "/apexdata/" + name)) { |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 158 | return false; |
| 159 | } |
| 160 | } |
| 161 | return true; |
| 162 | } |
| 163 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 164 | static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int flags) { |
| 165 | struct selabel_handle* sehandle = selinux_android_file_context_handle(); |
Eric Biggers | 2ef4e85 | 2023-02-24 18:09:25 +0000 | [diff] [blame^] | 166 | if (!sehandle) { |
| 167 | LOG(ERROR) << "Failed to get SELinux file contexts handle"; |
| 168 | return false; |
| 169 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 170 | |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 171 | if (flags & android::os::IVold::STORAGE_FLAG_DE) { |
| 172 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
Alan Stokes | e0b7f30 | 2020-12-22 14:49:18 +0000 | [diff] [blame] | 173 | if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, user_de_path, user_id)) { |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 174 | return false; |
| 175 | } |
| 176 | |
Mohammad Samiul Islam | b459591 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 177 | auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id); |
Samiul Islam | 0cf90d7 | 2022-02-11 16:17:49 +0000 | [diff] [blame] | 178 | if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, |
Nikita Ioffe | bad7cd0 | 2022-02-21 19:03:26 +0000 | [diff] [blame] | 179 | misc_de_path + "/sdksandbox", user_id)) { |
Samiul Islam | 0cf90d7 | 2022-02-11 16:17:49 +0000 | [diff] [blame] | 180 | return false; |
| 181 | } |
| 182 | |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 183 | if (volume_uuid.empty()) { |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 184 | if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/vold")) return false; |
Jin Qian | f396144 | 2017-10-19 14:44:37 -0700 | [diff] [blame] | 185 | if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/storaged")) return false; |
Narayan Kamath | a232fd7 | 2019-01-14 10:03:07 +0000 | [diff] [blame] | 186 | if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/rollback")) return false; |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 187 | // TODO: Return false if this returns false once sure this should succeed. |
Oli Lan | ac003c4 | 2019-12-02 18:27:24 +0000 | [diff] [blame] | 188 | prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/apexrollback"); |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 189 | prepare_apex_subdirs(sehandle, misc_de_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 190 | |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 191 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
| 192 | if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, profiles_de_path, |
Alan Stokes | e0b7f30 | 2020-12-22 14:49:18 +0000 | [diff] [blame] | 193 | user_id)) { |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 194 | return false; |
| 195 | } |
| 196 | |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 197 | auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id); |
| 198 | if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, vendor_de_path + "/fpdata")) { |
| 199 | return false; |
| 200 | } |
Kevin Chyn | cdd4228 | 2018-11-20 19:09:15 +0000 | [diff] [blame] | 201 | auto facedata_path = vendor_de_path + "/facedata"; |
| 202 | if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, facedata_path)) { |
| 203 | return false; |
| 204 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 205 | } |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 206 | } |
| 207 | if (flags & android::os::IVold::STORAGE_FLAG_CE) { |
| 208 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
Alan Stokes | e0b7f30 | 2020-12-22 14:49:18 +0000 | [diff] [blame] | 209 | if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, user_ce_path, user_id)) { |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 210 | return false; |
| 211 | } |
| 212 | |
Mohammad Samiul Islam | b459591 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 213 | auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id); |
Samiul Islam | 0cf90d7 | 2022-02-11 16:17:49 +0000 | [diff] [blame] | 214 | if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, |
Nikita Ioffe | bad7cd0 | 2022-02-21 19:03:26 +0000 | [diff] [blame] | 215 | misc_ce_path + "/sdksandbox", user_id)) { |
Samiul Islam | 0cf90d7 | 2022-02-11 16:17:49 +0000 | [diff] [blame] | 216 | return false; |
| 217 | } |
| 218 | |
Alan Stokes | be3db7b | 2020-02-07 09:29:38 +0000 | [diff] [blame] | 219 | if (volume_uuid.empty()) { |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 220 | if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/vold")) return false; |
Jin Qian | f396144 | 2017-10-19 14:44:37 -0700 | [diff] [blame] | 221 | if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/storaged")) return false; |
Narayan Kamath | a232fd7 | 2019-01-14 10:03:07 +0000 | [diff] [blame] | 222 | if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/rollback")) return false; |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 223 | // TODO: Return false if this returns false once sure this should succeed. |
Oli Lan | ac003c4 | 2019-12-02 18:27:24 +0000 | [diff] [blame] | 224 | prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/apexrollback"); |
Oli Lan | 9445721 | 2019-11-19 18:09:34 +0000 | [diff] [blame] | 225 | prepare_apex_subdirs(sehandle, misc_ce_path); |
Tianjie | 62487c9 | 2021-10-15 20:32:42 -0700 | [diff] [blame] | 226 | // Give gmscore (who runs in cache group) access to the checkin directory. Also provide |
| 227 | // the user id to set the correct selinux mls_level. |
| 228 | if (!prepare_dir_for_user(sehandle, 0770, AID_SYSTEM, AID_CACHE, |
| 229 | misc_ce_path + "/checkin", user_id)) { |
Tianjie | b2ee9e0 | 2021-10-21 15:16:49 -0700 | [diff] [blame] | 230 | // TODO(b/203742483) the checkin directory was created with the wrong permission & |
| 231 | // context. Delete the directory to get these devices out of the bad state. Revert |
| 232 | // the change once the droidfood population is on newer build. |
| 233 | LOG(INFO) << "Failed to prepare the checkin directory, deleting for recreation"; |
| 234 | android::vold::DeleteDirContentsAndDir(misc_ce_path + "/checkin"); |
| 235 | if (!prepare_dir_for_user(sehandle, 0770, AID_SYSTEM, AID_CACHE, |
| 236 | misc_ce_path + "/checkin", user_id)) { |
| 237 | return false; |
| 238 | } |
Tianjie | 62487c9 | 2021-10-15 20:32:42 -0700 | [diff] [blame] | 239 | } |
Annie Meng | 66176c5 | 2019-01-16 21:32:27 +0000 | [diff] [blame] | 240 | |
| 241 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
| 242 | if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, system_ce_path + "/backup")) { |
| 243 | return false; |
| 244 | } |
| 245 | if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, |
| 246 | system_ce_path + "/backup_stage")) { |
| 247 | return false; |
| 248 | } |
Paul Crowley | b409ade | 2019-04-23 17:04:35 -0700 | [diff] [blame] | 249 | auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id); |
| 250 | auto facedata_path = vendor_ce_path + "/facedata"; |
| 251 | if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, facedata_path)) { |
| 252 | return false; |
| 253 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 254 | } |
| 255 | } |
| 256 | return true; |
| 257 | } |
| 258 | |
| 259 | static bool destroy_subdirs(const std::string& volume_uuid, int user_id, int flags) { |
| 260 | bool res = true; |
Mohammad Samiul Islam | b459591 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 261 | if (flags & android::os::IVold::STORAGE_FLAG_CE) { |
| 262 | auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id); |
| 263 | res &= rmrf_contents(misc_ce_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 264 | |
Mohammad Samiul Islam | b459591 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 265 | if (volume_uuid.empty()) { |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 266 | auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id); |
| 267 | res &= rmrf_contents(vendor_ce_path); |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 268 | } |
Mohammad Samiul Islam | b459591 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 269 | } |
| 270 | if (flags & android::os::IVold::STORAGE_FLAG_DE) { |
| 271 | auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id); |
| 272 | res &= rmrf_contents(misc_de_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 273 | |
Mohammad Samiul Islam | b459591 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 274 | if (volume_uuid.empty()) { |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 275 | auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id); |
| 276 | res &= rmrf_contents(vendor_de_path); |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | return res; |
| 280 | } |
| 281 | |
| 282 | int main(int argc, const char* const argv[]) { |
| 283 | android::base::InitLogging(const_cast<char**>(argv)); |
| 284 | std::vector<std::string> args(argv + 1, argv + argc); |
| 285 | |
| 286 | if (args.size() != 4 || !valid_uuid(args[1]) || !small_int(args[2]) || !small_int(args[3])) { |
| 287 | usage(argv[0]); |
| 288 | return -1; |
| 289 | } |
| 290 | |
| 291 | auto volume_uuid = args[1]; |
| 292 | int user_id = stoi(args[2]); |
| 293 | int flags = stoi(args[3]); |
| 294 | if (args[0] == "prepare") { |
| 295 | if (!prepare_subdirs(volume_uuid, user_id, flags)) return -1; |
| 296 | } else if (args[0] == "destroy") { |
| 297 | if (!destroy_subdirs(volume_uuid, user_id, flags)) return -1; |
| 298 | } else { |
| 299 | usage(argv[0]); |
| 300 | return -1; |
| 301 | } |
| 302 | return 0; |
| 303 | } |