blob: 6ad3c6f8ed29d2c7d7752600bd2e6c5b70bedf1e [file] [log] [blame]
Paul Crowley82b41ff2017-10-20 08:17:54 -07001/*
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 Huber71cd43f2018-01-22 11:25:29 -080041#include <private/android_filesystem_config.h>
42
Paul Crowley82b41ff2017-10-20 08:17:54 -070043static 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
49static 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
53static bool valid_uuid(const std::string& s) {
54 return s.size() < 40 && s.find_first_not_of("0123456789abcdefABCDEF-_") == std::string::npos;
55}
56
Alan Stokesbe3db7b2020-02-07 09:29:38 +000057static 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 Crowley82b41ff2017-10-20 08:17:54 -070059 auto clearfscreatecon = android::base::make_scope_guard([] { setfscreatecon(nullptr); });
60 auto secontext = std::unique_ptr<char, void (*)(char*)>(nullptr, freecon);
Alan Stokesbe3db7b2020-02-07 09:29:38 +000061 if (sehandle) {
62 char* tmp_secontext;
63
64 if (selabel_lookup(sehandle, &tmp_secontext, path.c_str(), S_IFDIR) == 0) {
65 secontext.reset(tmp_secontext);
66
67 if (user_id != (uid_t)-1) {
68 if (selinux_android_context_with_level(secontext.get(), &tmp_secontext, user_id,
69 (uid_t)-1) != 0) {
70 PLOG(ERROR) << "Unable to create context with level for: " << path;
71 return false;
72 }
73 secontext.reset(tmp_secontext); // Free the context
74 }
75 }
Paul Crowley82b41ff2017-10-20 08:17:54 -070076 }
Alan Stokesbe3db7b2020-02-07 09:29:38 +000077
Paul Crowley82b41ff2017-10-20 08:17:54 -070078 LOG(DEBUG) << "Setting up mode " << std::oct << mode << std::dec << " uid " << uid << " gid "
Roman Kiryanovf1012362018-07-26 13:41:14 -070079 << gid << " context " << (secontext ? secontext.get() : "null")
80 << " on path: " << path;
Paul Crowley82b41ff2017-10-20 08:17:54 -070081 if (secontext) {
82 if (setfscreatecon(secontext.get()) != 0) {
Alan Stokesbe3db7b2020-02-07 09:29:38 +000083 PLOG(ERROR) << "Unable to setfscreatecon for: " << path;
Paul Crowley82b41ff2017-10-20 08:17:54 -070084 return false;
85 }
86 }
87 if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) {
88 return false;
89 }
90 if (secontext) {
91 char* tmp_oldsecontext = nullptr;
92 if (lgetfilecon(path.c_str(), &tmp_oldsecontext) < 0) {
93 PLOG(ERROR) << "Unable to read secontext for: " << path;
94 return false;
95 }
96 auto oldsecontext = std::unique_ptr<char, void (*)(char*)>(tmp_oldsecontext, freecon);
97 if (strcmp(secontext.get(), oldsecontext.get()) != 0) {
98 LOG(INFO) << "Relabelling from " << ((char*)oldsecontext.get()) << " to "
99 << ((char*)secontext.get()) << ": " << path;
100 if (lsetfilecon(path.c_str(), secontext.get()) != 0) {
101 PLOG(ERROR) << "Relabelling failed for: " << path;
102 return false;
103 }
104 }
105 }
106 return true;
107}
108
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000109static bool prepare_dir(struct selabel_handle* sehandle, mode_t mode, uid_t uid, gid_t gid,
110 const std::string& path) {
111 return prepare_dir_for_user(sehandle, mode, uid, gid, path, (uid_t)-1);
112}
113
Paul Crowley82b41ff2017-10-20 08:17:54 -0700114static bool rmrf_contents(const std::string& path) {
115 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(path.c_str()), closedir);
116 if (!dirp) {
Eric Biggers107441a2023-02-24 17:26:10 +0000117 if (errno == ENOENT) {
118 return true;
119 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700120 PLOG(ERROR) << "Unable to open directory: " << path;
121 return false;
122 }
123 bool res = true;
124 for (;;) {
125 errno = 0;
126 auto const entry = readdir(dirp.get());
127 if (!entry) {
128 if (errno) {
129 PLOG(ERROR) << "readdir failed on: " << path;
130 return false;
131 }
132 return res;
133 }
134 if (entry->d_name[0] == '.') continue;
135 auto subdir = path + "/" + entry->d_name;
136 if (0 !=
137 android::vold::ForkExecvp(std::vector<std::string>{"/system/bin/rm", "-rf", subdir})) {
138 LOG(ERROR) << "rm -rf failed on " << subdir;
139 res = false;
140 }
141 }
142}
143
Oli Lan94457212019-11-19 18:09:34 +0000144static bool prepare_apex_subdirs(struct selabel_handle* sehandle, const std::string& path) {
Oli Lane1b3f5c2020-01-17 11:01:38 +0000145 if (!prepare_dir(sehandle, 0711, 0, 0, path + "/apexdata")) return false;
Oli Lan94457212019-11-19 18:09:34 +0000146
147 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir("/apex"), closedir);
148 if (!dirp) {
149 PLOG(ERROR) << "Unable to open apex directory";
150 return false;
151 }
152 struct dirent* entry;
153 while ((entry = readdir(dirp.get())) != nullptr) {
154 if (entry->d_type != DT_DIR) continue;
155
156 const char* name = entry->d_name;
157 // skip any starting with "."
158 if (name[0] == '.') continue;
159
160 if (strchr(name, '@') != NULL) continue;
161
Oli Lane1b3f5c2020-01-17 11:01:38 +0000162 if (!prepare_dir(sehandle, 0771, AID_ROOT, AID_SYSTEM, path + "/apexdata/" + name)) {
Oli Lan94457212019-11-19 18:09:34 +0000163 return false;
164 }
165 }
166 return true;
167}
168
Paul Crowley82b41ff2017-10-20 08:17:54 -0700169static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int flags) {
170 struct selabel_handle* sehandle = selinux_android_file_context_handle();
171
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000172 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
173 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
Alan Stokese0b7f302020-12-22 14:49:18 +0000174 if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, user_de_path, user_id)) {
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000175 return false;
176 }
177
Mohammad Samiul Islamb4595912022-03-07 20:27:06 +0000178 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Samiul Islam0cf90d72022-02-11 16:17:49 +0000179 if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM,
Nikita Ioffebad7cd02022-02-21 19:03:26 +0000180 misc_de_path + "/sdksandbox", user_id)) {
Samiul Islam0cf90d72022-02-11 16:17:49 +0000181 return false;
182 }
183
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000184 if (volume_uuid.empty()) {
Paul Crowley82b41ff2017-10-20 08:17:54 -0700185 if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/vold")) return false;
Jin Qianf3961442017-10-19 14:44:37 -0700186 if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/storaged")) return false;
Narayan Kamatha232fd72019-01-14 10:03:07 +0000187 if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/rollback")) return false;
Oli Lan94457212019-11-19 18:09:34 +0000188 // TODO: Return false if this returns false once sure this should succeed.
Oli Lanac003c42019-12-02 18:27:24 +0000189 prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/apexrollback");
Oli Lan94457212019-11-19 18:09:34 +0000190 prepare_apex_subdirs(sehandle, misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800191
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000192 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
193 if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, profiles_de_path,
Alan Stokese0b7f302020-12-22 14:49:18 +0000194 user_id)) {
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000195 return false;
196 }
197
Andreas Huber71cd43f2018-01-22 11:25:29 -0800198 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
199 if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, vendor_de_path + "/fpdata")) {
200 return false;
201 }
Kevin Chyncdd42282018-11-20 19:09:15 +0000202 auto facedata_path = vendor_de_path + "/facedata";
203 if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, facedata_path)) {
204 return false;
205 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700206 }
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000207 }
208 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
209 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Alan Stokese0b7f302020-12-22 14:49:18 +0000210 if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, user_ce_path, user_id)) {
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000211 return false;
212 }
213
Mohammad Samiul Islamb4595912022-03-07 20:27:06 +0000214 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Samiul Islam0cf90d72022-02-11 16:17:49 +0000215 if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM,
Nikita Ioffebad7cd02022-02-21 19:03:26 +0000216 misc_ce_path + "/sdksandbox", user_id)) {
Samiul Islam0cf90d72022-02-11 16:17:49 +0000217 return false;
218 }
219
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000220 if (volume_uuid.empty()) {
Paul Crowley82b41ff2017-10-20 08:17:54 -0700221 if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/vold")) return false;
Jin Qianf3961442017-10-19 14:44:37 -0700222 if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/storaged")) return false;
Narayan Kamatha232fd72019-01-14 10:03:07 +0000223 if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/rollback")) return false;
Oli Lan94457212019-11-19 18:09:34 +0000224 // TODO: Return false if this returns false once sure this should succeed.
Oli Lanac003c42019-12-02 18:27:24 +0000225 prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/apexrollback");
Oli Lan94457212019-11-19 18:09:34 +0000226 prepare_apex_subdirs(sehandle, misc_ce_path);
Tianjie62487c92021-10-15 20:32:42 -0700227 // Give gmscore (who runs in cache group) access to the checkin directory. Also provide
228 // the user id to set the correct selinux mls_level.
229 if (!prepare_dir_for_user(sehandle, 0770, AID_SYSTEM, AID_CACHE,
230 misc_ce_path + "/checkin", user_id)) {
Tianjieb2ee9e02021-10-21 15:16:49 -0700231 // TODO(b/203742483) the checkin directory was created with the wrong permission &
232 // context. Delete the directory to get these devices out of the bad state. Revert
233 // the change once the droidfood population is on newer build.
234 LOG(INFO) << "Failed to prepare the checkin directory, deleting for recreation";
235 android::vold::DeleteDirContentsAndDir(misc_ce_path + "/checkin");
236 if (!prepare_dir_for_user(sehandle, 0770, AID_SYSTEM, AID_CACHE,
237 misc_ce_path + "/checkin", user_id)) {
238 return false;
239 }
Tianjie62487c92021-10-15 20:32:42 -0700240 }
Annie Meng66176c52019-01-16 21:32:27 +0000241
242 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
243 if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, system_ce_path + "/backup")) {
244 return false;
245 }
246 if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM,
247 system_ce_path + "/backup_stage")) {
248 return false;
249 }
Paul Crowleyb409ade2019-04-23 17:04:35 -0700250 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
251 auto facedata_path = vendor_ce_path + "/facedata";
252 if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, facedata_path)) {
253 return false;
254 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700255 }
256 }
257 return true;
258}
259
260static bool destroy_subdirs(const std::string& volume_uuid, int user_id, int flags) {
261 bool res = true;
Mohammad Samiul Islamb4595912022-03-07 20:27:06 +0000262 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
263 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
264 res &= rmrf_contents(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800265
Mohammad Samiul Islamb4595912022-03-07 20:27:06 +0000266 if (volume_uuid.empty()) {
Andreas Huber71cd43f2018-01-22 11:25:29 -0800267 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
268 res &= rmrf_contents(vendor_ce_path);
Paul Crowley82b41ff2017-10-20 08:17:54 -0700269 }
Mohammad Samiul Islamb4595912022-03-07 20:27:06 +0000270 }
271 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
272 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
273 res &= rmrf_contents(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800274
Mohammad Samiul Islamb4595912022-03-07 20:27:06 +0000275 if (volume_uuid.empty()) {
Andreas Huber71cd43f2018-01-22 11:25:29 -0800276 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
277 res &= rmrf_contents(vendor_de_path);
Paul Crowley82b41ff2017-10-20 08:17:54 -0700278 }
279 }
280 return res;
281}
282
283int main(int argc, const char* const argv[]) {
284 android::base::InitLogging(const_cast<char**>(argv));
285 std::vector<std::string> args(argv + 1, argv + argc);
286
287 if (args.size() != 4 || !valid_uuid(args[1]) || !small_int(args[2]) || !small_int(args[3])) {
288 usage(argv[0]);
289 return -1;
290 }
291
292 auto volume_uuid = args[1];
293 int user_id = stoi(args[2]);
294 int flags = stoi(args[3]);
295 if (args[0] == "prepare") {
296 if (!prepare_subdirs(volume_uuid, user_id, flags)) return -1;
297 } else if (args[0] == "destroy") {
298 if (!destroy_subdirs(volume_uuid, user_id, flags)) return -1;
299 } else {
300 usage(argv[0]);
301 return -1;
302 }
303 return 0;
304}