OSDN Git Service

vold: cleanups for O_CLOEXEC tidy checks.
[android-x86/system-vold.git] / vold_prepare_subdirs.cpp
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
41 #include <private/android_filesystem_config.h>
42
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
57 static bool prepare_dir(struct selabel_handle* sehandle, mode_t mode, uid_t uid, gid_t gid,
58                         const std::string& path) {
59     auto clearfscreatecon = android::base::make_scope_guard([] { setfscreatecon(nullptr); });
60     auto secontext = std::unique_ptr<char, void (*)(char*)>(nullptr, freecon);
61     char* tmp_secontext;
62     if (sehandle && selabel_lookup(sehandle, &tmp_secontext, path.c_str(), S_IFDIR) == 0) {
63         secontext.reset(tmp_secontext);
64     }
65     LOG(DEBUG) << "Setting up mode " << std::oct << mode << std::dec << " uid " << uid << " gid "
66                << gid << " context " << (secontext ? secontext.get() : "null")
67                << " on path: " << path;
68     if (secontext) {
69         if (setfscreatecon(secontext.get()) != 0) {
70             PLOG(ERROR) << "Unable to read setfscreatecon for: " << path;
71             return false;
72         }
73     }
74     if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) {
75         return false;
76     }
77     if (secontext) {
78         char* tmp_oldsecontext = nullptr;
79         if (lgetfilecon(path.c_str(), &tmp_oldsecontext) < 0) {
80             PLOG(ERROR) << "Unable to read secontext for: " << path;
81             return false;
82         }
83         auto oldsecontext = std::unique_ptr<char, void (*)(char*)>(tmp_oldsecontext, freecon);
84         if (strcmp(secontext.get(), oldsecontext.get()) != 0) {
85             LOG(INFO) << "Relabelling from " << ((char*)oldsecontext.get()) << " to "
86                       << ((char*)secontext.get()) << ": " << path;
87             if (lsetfilecon(path.c_str(), secontext.get()) != 0) {
88                 PLOG(ERROR) << "Relabelling failed for: " << path;
89                 return false;
90             }
91         }
92     }
93     return true;
94 }
95
96 static bool rmrf_contents(const std::string& path) {
97     auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(path.c_str()), closedir);
98     if (!dirp) {
99         PLOG(ERROR) << "Unable to open directory: " << path;
100         return false;
101     }
102     bool res = true;
103     for (;;) {
104         errno = 0;
105         auto const entry = readdir(dirp.get());
106         if (!entry) {
107             if (errno) {
108                 PLOG(ERROR) << "readdir failed on: " << path;
109                 return false;
110             }
111             return res;
112         }
113         if (entry->d_name[0] == '.') continue;
114         auto subdir = path + "/" + entry->d_name;
115         if (0 !=
116             android::vold::ForkExecvp(std::vector<std::string>{"/system/bin/rm", "-rf", subdir})) {
117             LOG(ERROR) << "rm -rf failed on " << subdir;
118             res = false;
119         }
120     }
121 }
122
123 static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int flags) {
124     struct selabel_handle* sehandle = selinux_android_file_context_handle();
125
126     if (volume_uuid.empty()) {
127         if (flags & android::os::IVold::STORAGE_FLAG_DE) {
128             auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
129             if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/vold")) return false;
130             if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/storaged")) return false;
131             if (!prepare_dir(sehandle, 0700, 0, 0, misc_de_path + "/rollback")) return false;
132
133             auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
134             if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, vendor_de_path + "/fpdata")) {
135                 return false;
136             }
137         }
138         if (flags & android::os::IVold::STORAGE_FLAG_CE) {
139             auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
140             if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/vold")) return false;
141             if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/storaged")) return false;
142             if (!prepare_dir(sehandle, 0700, 0, 0, misc_ce_path + "/rollback")) return false;
143
144             auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
145             if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM, system_ce_path + "/backup")) {
146                 return false;
147             }
148             if (!prepare_dir(sehandle, 0700, AID_SYSTEM, AID_SYSTEM,
149                              system_ce_path + "/backup_stage")) {
150                 return false;
151             }
152         }
153     }
154     return true;
155 }
156
157 static bool destroy_subdirs(const std::string& volume_uuid, int user_id, int flags) {
158     bool res = true;
159     if (volume_uuid.empty()) {
160         if (flags & android::os::IVold::STORAGE_FLAG_CE) {
161             auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
162             res &= rmrf_contents(misc_ce_path);
163
164             auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
165             res &= rmrf_contents(vendor_ce_path);
166         }
167         if (flags & android::os::IVold::STORAGE_FLAG_DE) {
168             auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
169             res &= rmrf_contents(misc_de_path);
170
171             auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
172             res &= rmrf_contents(vendor_de_path);
173         }
174     }
175     return res;
176 }
177
178 int main(int argc, const char* const argv[]) {
179     android::base::InitLogging(const_cast<char**>(argv));
180     std::vector<std::string> args(argv + 1, argv + argc);
181
182     if (args.size() != 4 || !valid_uuid(args[1]) || !small_int(args[2]) || !small_int(args[3])) {
183         usage(argv[0]);
184         return -1;
185     }
186
187     auto volume_uuid = args[1];
188     int user_id = stoi(args[2]);
189     int flags = stoi(args[3]);
190     if (args[0] == "prepare") {
191         if (!prepare_subdirs(volume_uuid, user_id, flags)) return -1;
192     } else if (args[0] == "destroy") {
193         if (!destroy_subdirs(volume_uuid, user_id, flags)) return -1;
194     } else {
195         usage(argv[0]);
196         return -1;
197     }
198     return 0;
199 }