1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ANDROID_APEXD_APEXD_UTILS_H_
#define ANDROID_APEXD_APEXD_UTILS_H_
#include <chrono>
#include <filesystem>
#include <string>
#include <thread>
#include <vector>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <android-base/chrono_utils.h>
#include <android-base/logging.h>
#include <cutils/android_reboot.h>
#include "status_or.h"
#include "string_log.h"
namespace android {
namespace apex {
inline int WaitChild(pid_t pid) {
int status;
pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
if (got_pid != pid) {
PLOG(WARNING) << "waitpid failed: wanted " << pid << ", got " << got_pid;
return 1;
}
if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
return 0;
} else {
return status;
}
}
inline int ForkAndRun(const std::vector<std::string>& args,
std::string* error_msg) {
std::vector<const char*> argv;
argv.resize(args.size() + 1, nullptr);
std::transform(args.begin(), args.end(), argv.begin(),
[](const std::string& in) { return in.c_str(); });
// 3) Fork.
pid_t pid = fork();
if (pid == -1) {
// Fork failed.
*error_msg = PStringLog() << "Unable to fork";
return -1;
}
if (pid == 0) {
execv(argv[0], const_cast<char**>(argv.data()));
PLOG(ERROR) << "execv failed";
_exit(1);
}
int rc = WaitChild(pid);
if (rc != 0) {
*error_msg = StringLog() << "Failed run: status=" << rc;
}
return rc;
}
template <typename Fn>
Status WalkDir(const std::string& path, Fn fn) {
namespace fs = std::filesystem;
std::error_code ec;
auto it = fs::directory_iterator(path, ec);
auto end = fs::directory_iterator();
while (!ec && it != end) {
fn(*it);
it.increment(ec);
}
if (ec) {
return Status::Fail(StringLog() << "Can't open " << path
<< " for reading : " << ec.message());
}
return Status::Success();
}
template <typename FilterFn>
StatusOr<std::vector<std::string>> ReadDir(const std::string& path,
FilterFn fn) {
namespace fs = std::filesystem;
using Status = StatusOr<std::vector<std::string>>;
std::vector<std::string> ret;
auto status = WalkDir(path, [&](const fs::directory_entry& entry) {
if (fn(entry)) {
ret.push_back(entry.path());
}
});
if (!status.Ok()) {
return Status::Fail(status.ErrorMessage());
}
return Status(std::move(ret));
}
inline bool IsEmptyDirectory(const std::string& path) {
auto res = ReadDir(path, [](auto _) { return true; });
return res.Ok() && res->empty();
}
inline Status createDirIfNeeded(const std::string& path, mode_t mode) {
struct stat stat_data;
if (stat(path.c_str(), &stat_data) != 0) {
if (errno == ENOENT) {
if (mkdir(path.c_str(), mode) != 0) {
return Status::Fail(PStringLog() << "Could not mkdir " << path);
}
} else {
return Status::Fail(PStringLog() << "Could not stat " << path);
}
} else {
if (!S_ISDIR(stat_data.st_mode)) {
return Status::Fail(path + " exists and is not a directory.");
}
}
// Need to manually call chmod because mkdir will create a folder with
// permissions mode & ~umask.
if (chmod(path.c_str(), mode) != 0) {
return Status::Fail(PStringLog() << "Could not chmod " << path);
}
return Status::Success();
}
inline Status DeleteDirContent(const std::string& path) {
auto files = ReadDir(path, [](auto _) { return true; });
if (!files.Ok()) {
return Status::Fail(StringLog() << "Failed to delete " << path << " : "
<< files.ErrorMessage());
}
for (const std::string& file : *files) {
if (unlink(file.c_str()) != 0) {
return Status::Fail(PStringLog() << "Failed to delete " << file);
}
}
return Status::Success();
}
inline StatusOr<bool> PathExists(const std::string& path) {
namespace fs = std::filesystem;
using Status = StatusOr<bool>;
std::error_code ec;
if (!fs::exists(fs::path(path), ec)) {
if (ec) {
return Status::Fail(StringLog() << "Failed to access " << path << " : "
<< ec.message());
} else {
return Status(false);
}
}
return Status(true);
}
inline void Reboot() {
LOG(INFO) << "Rebooting device";
if (android_reboot(ANDROID_RB_RESTART2, 0, nullptr) != 0) {
LOG(ERROR) << "Failed to reboot device";
}
}
inline Status WaitForFile(const std::string& path,
std::chrono::nanoseconds timeout) {
android::base::Timer t;
bool has_slept = false;
while (t.duration() < timeout) {
struct stat sb;
if (stat(path.c_str(), &sb) != -1) {
if (has_slept) {
LOG(INFO) << "wait for '" << path << "' took " << t;
}
return Status::Success();
}
std::this_thread::sleep_for(5ms);
has_slept = true;
}
return Status::Fail(PStringLog()
<< "wait for '" << path << "' timed out and took " << t);
}
} // namespace apex
} // namespace android
#endif // ANDROID_APEXD_APEXD_UTILS_H_
|