blob: 8045c7179ac46f0b05c79e674723cf046950eeeb [file] [log] [blame]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2008 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
Tom Cherryb7349902015-08-26 11:43:36 -070017#include "builtins.h"
18
Tom Cherry3041a512019-05-21 17:48:33 -070019#include <android/api-level.h>
Mark Salyzyna98cc9c2016-04-05 13:43:40 -070020#include <dirent.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070021#include <errno.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070022#include <fcntl.h>
Wei Wang542aae42017-08-04 13:22:36 -070023#include <fts.h>
Jiyong Parkc2404402018-11-08 17:14:35 +090024#include <glob.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070025#include <linux/loop.h>
26#include <linux/module.h>
Yusuke Sato0df08272015-07-08 14:57:07 -070027#include <mntent.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070028#include <net/if.h>
Mark Salyzynad575e02016-04-05 08:10:25 -070029#include <sched.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070030#include <signal.h>
Ray Essick35ffd692021-10-07 15:48:11 -070031#include <stdint.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070032#include <stdio.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070033#include <stdlib.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070034#include <string.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070035#include <sys/mount.h>
36#include <sys/resource.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070037#include <sys/socket.h>
38#include <sys/stat.h>
Nick Kralevich124a9c92016-03-27 16:55:59 -070039#include <sys/syscall.h>
Tom Cherryf57c0bf2017-04-07 13:46:21 -070040#include <sys/system_properties.h>
Elliott Hughes3d74d7a2015-01-29 21:31:23 -080041#include <sys/time.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070042#include <sys/types.h>
Ken Sumrall0e9dd902012-04-17 17:20:16 -070043#include <sys/wait.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070044#include <unistd.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050045
Ray Essick35ffd692021-10-07 15:48:11 -070046#include <map>
Nikita Ioffe12a36072019-10-23 20:11:32 +010047#include <memory>
48
Nikita Ioffe23dbd6d2019-11-14 01:21:24 +000049#include <InitProperties.sysprop.h>
Tom Cherryede0d532017-07-06 14:20:11 -070050#include <android-base/chrono_utils.h>
Mark Salyzyna98cc9c2016-04-05 13:43:40 -070051#include <android-base/file.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070052#include <android-base/logging.h>
Mark Salyzynffa52e92020-05-14 09:20:30 -070053#include <android-base/parsedouble.h>
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -080054#include <android-base/parseint.h>
Tom Cherryccf23532017-03-28 16:40:41 -070055#include <android-base/properties.h>
Tom Cherry70379912017-08-01 14:10:11 -070056#include <android-base/stringprintf.h>
Tom Cherryccf23532017-03-28 16:40:41 -070057#include <android-base/strings.h>
Tom Cherry70379912017-08-01 14:10:11 -070058#include <android-base/unique_fd.h>
Yabin Cui0b1252c2016-06-24 18:28:03 -070059#include <bootloader_message/bootloader_message.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070060#include <cutils/android_reboot.h>
Tom Cherryccf23532017-03-28 16:40:41 -070061#include <fs_mgr.h>
Eric Biggersf05da4a2018-10-23 13:10:33 -070062#include <fscrypt/fscrypt.h>
David Anderson0e330f12019-01-03 18:16:56 -080063#include <libgsi/libgsi.h>
Kiyoung Kime4d3f212019-12-16 14:31:04 +090064#include <logwrap/logwrap.h>
Oli Landc516722020-01-03 10:04:31 +000065#include <private/android_filesystem_config.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070066#include <selinux/android.h>
67#include <selinux/label.h>
68#include <selinux/selinux.h>
Wei Wang02628f32017-08-16 11:34:50 -070069#include <system/thread_defs.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070070
Tom Cherry7fd3bc22018-02-13 15:36:14 -080071#include "action_manager.h"
Tom Cherryb7349902015-08-26 11:43:36 -070072#include "bootchart.h"
Nikita Ioffec0df1872019-11-13 21:47:06 +000073#include "builtin_arguments.h"
Paul Crowley052f31c2019-08-26 10:33:17 -070074#include "fscrypt_init_extensions.h"
Tom Cherrybac32992015-07-31 12:45:25 -070075#include "init.h"
Jiyong Park68660412019-01-16 23:00:59 +090076#include "mount_namespace.h"
Tom Cherry67dee622017-07-27 12:54:48 -070077#include "parser.h"
Tom Cherrybac32992015-07-31 12:45:25 -070078#include "property_service.h"
Keun-young Park8d01f632017-03-13 11:54:47 -070079#include "reboot.h"
Tom Cherry7ac013d2017-08-25 10:39:25 -070080#include "rlimit_parser.h"
Vic Yang92c236e2019-05-28 15:58:35 -070081#include "selabel.h"
Joel Galenson4b591f12017-11-27 14:45:26 -080082#include "selinux.h"
Tom Cherrybac32992015-07-31 12:45:25 -070083#include "service.h"
Tom Cherry2aeb1ad2019-06-26 10:46:20 -070084#include "service_list.h"
Tom Cherrycb0f9bb2017-09-12 15:58:47 -070085#include "subcontext.h"
Tom Cherrybac32992015-07-31 12:45:25 -070086#include "util.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070087
Paul Crowley0b8b2302016-12-19 13:03:47 -080088using namespace std::literals::string_literals;
89
Tom Cherrycf80b6d2019-01-07 14:25:31 -080090using android::base::Basename;
Tom Cherryc88d8f92019-08-19 15:21:25 -070091using android::base::SetProperty;
Wei Wang49d25982020-11-18 15:56:14 -080092using android::base::Split;
Tom Cherry1ab3dfc2019-04-22 17:46:37 -070093using android::base::StartsWith;
Tom Cherry7896e7a2019-09-04 15:26:52 -070094using android::base::StringPrintf;
Tom Cherry70379912017-08-01 14:10:11 -070095using android::base::unique_fd;
Tom Cherrya3530e62019-01-30 13:25:35 -080096using android::fs_mgr::Fstab;
97using android::fs_mgr::ReadFstabFromFile;
Tom Cherry70379912017-08-01 14:10:11 -070098
Nick Kralevichbc609542015-01-31 21:39:46 -080099#define chmod DO_NOT_USE_CHMOD_USE_FCHMODAT_SYMLINK_NOFOLLOW
100
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700101namespace android {
102namespace init {
103
Tom Cherryd17c3792019-07-30 10:51:59 -0700104// There are many legacy paths in rootdir/init.rc that will virtually never exist on a new
105// device, such as '/sys/class/leds/jogball-backlight/brightness'. As of this writing, there
106// are 81 such failures on cuttlefish. Instead of spamming the log reporting them, we do not
107// report such failures unless we're running at the DEBUG log level.
108class ErrorIgnoreEnoent {
109 public:
110 ErrorIgnoreEnoent()
111 : ignore_error_(errno == ENOENT &&
112 android::base::GetMinimumLogSeverity() > android::base::DEBUG) {}
113 explicit ErrorIgnoreEnoent(int errno_to_append)
114 : error_(errno_to_append),
115 ignore_error_(errno_to_append == ENOENT &&
116 android::base::GetMinimumLogSeverity() > android::base::DEBUG) {}
117
118 template <typename T>
119 operator android::base::expected<T, ResultError>() {
120 if (ignore_error_) {
121 return {};
122 }
123 return error_;
124 }
125
126 template <typename T>
127 ErrorIgnoreEnoent& operator<<(T&& t) {
128 error_ << t;
129 return *this;
130 }
131
132 private:
133 Error error_;
134 bool ignore_error_;
135};
136
137inline ErrorIgnoreEnoent ErrnoErrorIgnoreEnoent() {
138 return ErrorIgnoreEnoent(errno);
139}
140
Tom Cherry172c83f2019-06-26 14:44:37 -0700141std::vector<std::string> late_import_paths;
142
Elliott Hughes9605a942016-11-10 17:43:47 -0800143static constexpr std::chrono::nanoseconds kCommandRetryTimeout = 5s;
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -0800144
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700145static Result<void> reboot_into_recovery(const std::vector<std::string>& options) {
Paul Crowleyc73b2152018-04-13 17:38:57 +0000146 LOG(ERROR) << "Rebooting into recovery";
Paul Crowleyaf8be582016-05-10 08:52:06 -0700147 std::string err;
148 if (!write_bootloader_message(options, &err)) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700149 return Error() << "Failed to set bootloader message: " << err;
Paul Crowleyaf8be582016-05-10 08:52:06 -0700150 }
Tom Cherry18278d22019-11-12 16:21:20 -0800151 trigger_shutdown("reboot,recovery");
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700152 return {};
Yusuke Sato0df08272015-07-08 14:57:07 -0700153}
154
Tom Cherry911b9b12017-07-27 16:20:58 -0700155template <typename F>
156static void ForEachServiceInClass(const std::string& classname, F function) {
157 for (const auto& service : ServiceList::GetInstance()) {
158 if (service->classnames().count(classname)) std::invoke(function, service);
159 }
160}
161
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700162static Result<void> do_class_start(const BuiltinArguments& args) {
Daniel Rosenbergca00b0e2018-11-27 22:08:02 -0800163 // Do not start a class if it has a property persist.dont_start_class.CLASS set to 1.
Martijn Coenenacc45aa2019-05-15 22:04:13 +0200164 if (android::base::GetBoolProperty("persist.init.dont_start_class." + args[1], false))
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700165 return {};
Tom Cherry911b9b12017-07-27 16:20:58 -0700166 // Starting a class does not start services which are explicitly disabled.
167 // They must be started individually.
Tom Cherry20acdef2017-10-03 13:15:03 -0700168 for (const auto& service : ServiceList::GetInstance()) {
Martijn Coenenacc45aa2019-05-15 22:04:13 +0200169 if (service->classnames().count(args[1])) {
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900170 if (auto result = service->StartIfNotDisabled(); !result.ok()) {
Tom Cherry20acdef2017-10-03 13:15:03 -0700171 LOG(ERROR) << "Could not start service '" << service->name()
Martijn Coenenacc45aa2019-05-15 22:04:13 +0200172 << "' as part of class '" << args[1] << "': " << result.error();
Tom Cherry20acdef2017-10-03 13:15:03 -0700173 }
174 }
175 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700176 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700177}
178
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700179static Result<void> do_class_stop(const BuiltinArguments& args) {
Tom Cherry911b9b12017-07-27 16:20:58 -0700180 ForEachServiceInClass(args[1], &Service::Stop);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700181 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700182}
183
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700184static Result<void> do_class_reset(const BuiltinArguments& args) {
Tom Cherry911b9b12017-07-27 16:20:58 -0700185 ForEachServiceInClass(args[1], &Service::Reset);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700186 return {};
Ken Sumrall752923c2010-12-03 16:33:31 -0800187}
188
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700189static Result<void> do_class_restart(const BuiltinArguments& args) {
Daniel Rosenbergca00b0e2018-11-27 22:08:02 -0800190 // Do not restart a class if it has a property persist.dont_start_class.CLASS set to 1.
191 if (android::base::GetBoolProperty("persist.init.dont_start_class." + args[1], false))
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700192 return {};
David Anderson2285b522021-11-09 18:26:39 -0800193
194 std::string classname;
195
196 CHECK(args.size() == 2 || args.size() == 3);
197
198 bool only_enabled = false;
199 if (args.size() == 3) {
200 if (args[1] != "--only-enabled") {
201 return Error() << "Unexpected argument: " << args[1];
202 }
203 only_enabled = true;
204 classname = args[2];
205 } else if (args.size() == 2) {
206 classname = args[1];
207 }
208
209 for (const auto& service : ServiceList::GetInstance()) {
210 if (!service->classnames().count(classname)) {
211 continue;
212 }
213 if (only_enabled && !service->IsEnabled()) {
214 continue;
215 }
216 service->Restart();
217 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700218 return {};
Steven Moreland2b63d542017-03-10 14:04:37 -0800219}
220
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700221static Result<void> do_domainname(const BuiltinArguments& args) {
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900222 if (auto result = WriteFile("/proc/sys/kernel/domainname", args[1]); !result.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700223 return Error() << "Unable to write to /proc/sys/kernel/domainname: " << result.error();
Tom Cherry2cbbe9f2017-05-04 18:17:33 -0700224 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700225 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700226}
227
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700228static Result<void> do_enable(const BuiltinArguments& args) {
Tom Cherry911b9b12017-07-27 16:20:58 -0700229 Service* svc = ServiceList::GetInstance().FindService(args[1]);
Tom Cherry7fa62c52017-08-01 13:50:23 -0700230 if (!svc) return Error() << "Could not find service";
231
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900232 if (auto result = svc->Enable(); !result.ok()) {
Tom Cherry76af7e62017-08-22 16:13:59 -0700233 return Error() << "Could not enable service: " << result.error();
234 }
Tom Cherry7fa62c52017-08-01 13:50:23 -0700235
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700236 return {};
JP Abgrall3beec7e2014-05-02 21:14:29 -0700237}
238
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700239static Result<void> do_exec(const BuiltinArguments& args) {
Tom Cherrycb0f9bb2017-09-12 15:58:47 -0700240 auto service = Service::MakeTemporaryOneshotService(args.args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900241 if (!service.ok()) {
Tom Cherry4772f1d2019-07-30 09:34:41 -0700242 return Error() << "Could not create exec service: " << service.error();
Tom Cherry3b81f2d2017-07-28 14:48:41 -0700243 }
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900244 if (auto result = (*service)->ExecStart(); !result.ok()) {
Tom Cherry76af7e62017-08-22 16:13:59 -0700245 return Error() << "Could not start exec service: " << result.error();
Tom Cherry3b81f2d2017-07-28 14:48:41 -0700246 }
Tom Cherry7fa62c52017-08-01 13:50:23 -0700247
Tom Cherry4772f1d2019-07-30 09:34:41 -0700248 ServiceList::GetInstance().AddService(std::move(*service));
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700249 return {};
Tom Cherryb27004a2017-03-27 16:27:30 -0700250}
251
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700252static Result<void> do_exec_background(const BuiltinArguments& args) {
Tom Cherrycb0f9bb2017-09-12 15:58:47 -0700253 auto service = Service::MakeTemporaryOneshotService(args.args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900254 if (!service.ok()) {
Tom Cherry4772f1d2019-07-30 09:34:41 -0700255 return Error() << "Could not create exec background service: " << service.error();
Tom Cherry3631c542017-09-18 12:16:27 -0700256 }
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900257 if (auto result = (*service)->Start(); !result.ok()) {
Tom Cherry3631c542017-09-18 12:16:27 -0700258 return Error() << "Could not start exec background service: " << result.error();
259 }
260
Tom Cherry4772f1d2019-07-30 09:34:41 -0700261 ServiceList::GetInstance().AddService(std::move(*service));
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700262 return {};
Tom Cherry3631c542017-09-18 12:16:27 -0700263}
264
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700265static Result<void> do_exec_start(const BuiltinArguments& args) {
Tom Cherry911b9b12017-07-27 16:20:58 -0700266 Service* service = ServiceList::GetInstance().FindService(args[1]);
Tom Cherry3b81f2d2017-07-28 14:48:41 -0700267 if (!service) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700268 return Error() << "Service not found";
Tom Cherry3b81f2d2017-07-28 14:48:41 -0700269 }
Tom Cherry7fa62c52017-08-01 13:50:23 -0700270
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900271 if (auto result = service->ExecStart(); !result.ok()) {
Tom Cherry76af7e62017-08-22 16:13:59 -0700272 return Error() << "Could not start exec service: " << result.error();
Tom Cherry3b81f2d2017-07-28 14:48:41 -0700273 }
Tom Cherry7fa62c52017-08-01 13:50:23 -0700274
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700275 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700276}
277
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700278static Result<void> do_export(const BuiltinArguments& args) {
Tom Cherry6de21f12017-08-22 15:41:03 -0700279 if (setenv(args[1].c_str(), args[2].c_str(), 1) == -1) {
280 return ErrnoError() << "setenv() failed";
Tom Cherry7fa62c52017-08-01 13:50:23 -0700281 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700282 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700283}
284
Artur Satayev500946b2021-02-15 20:48:49 +0000285static Result<void> do_load_exports(const BuiltinArguments& args) {
286 auto file_contents = ReadFile(args[1]);
287 if (!file_contents.ok()) {
288 return Error() << "Could not read input file '" << args[1]
289 << "': " << file_contents.error();
290 }
291
292 auto lines = Split(*file_contents, "\n");
293 for (const auto& line : lines) {
294 if (line.empty()) {
295 continue;
296 }
297
298 auto env = Split(line, " ");
299
300 if (env.size() != 3) {
301 return ErrnoError() << "Expected a line as `export <name> <value>`, found: `" << line
302 << "`";
303 }
304
305 if (env[0] != "export") {
306 return ErrnoError() << "Unknown action: '" << env[0] << "', expected 'export'";
307 }
308
309 if (setenv(env[1].c_str(), env[2].c_str(), 1) == -1) {
310 return ErrnoError() << "Failed to export '" << line << "' from " << args[1];
311 }
312 }
313
314 return {};
315}
316
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700317static Result<void> do_hostname(const BuiltinArguments& args) {
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900318 if (auto result = WriteFile("/proc/sys/kernel/hostname", args[1]); !result.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700319 return Error() << "Unable to write to /proc/sys/kernel/hostname: " << result.error();
Tom Cherry2cbbe9f2017-05-04 18:17:33 -0700320 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700321 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700322}
323
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700324static Result<void> do_ifup(const BuiltinArguments& args) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700325 struct ifreq ifr;
326
327 strlcpy(ifr.ifr_name, args[1].c_str(), IFNAMSIZ);
328
Tom Cherry247ffbf2019-07-08 15:09:36 -0700329 unique_fd s(TEMP_FAILURE_RETRY(socket(AF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0)));
Tom Cherry7fa62c52017-08-01 13:50:23 -0700330 if (s < 0) return ErrnoError() << "opening socket failed";
331
332 if (ioctl(s, SIOCGIFFLAGS, &ifr) < 0) {
333 return ErrnoError() << "ioctl(..., SIOCGIFFLAGS, ...) failed";
334 }
335
336 ifr.ifr_flags |= IFF_UP;
337
338 if (ioctl(s, SIOCSIFFLAGS, &ifr) < 0) {
339 return ErrnoError() << "ioctl(..., SIOCSIFFLAGS, ...) failed";
340 }
341
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700342 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700343}
344
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700345static Result<void> do_insmod(const BuiltinArguments& args) {
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800346 int flags = 0;
347 auto it = args.begin() + 1;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800348
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800349 if (!(*it).compare("-f")) {
350 flags = MODULE_INIT_IGNORE_VERMAGIC | MODULE_INIT_IGNORE_MODVERSIONS;
351 it++;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800352 }
353
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800354 std::string filename = *it++;
355 std::string options = android::base::Join(std::vector<std::string>(it, args.end()), ' ');
Tom Cherry7fa62c52017-08-01 13:50:23 -0700356
357 unique_fd fd(TEMP_FAILURE_RETRY(open(filename.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC)));
358 if (fd == -1) return ErrnoError() << "open(\"" << filename << "\") failed";
359
360 int rc = syscall(__NR_finit_module, fd.get(), options.c_str(), flags);
361 if (rc == -1) return ErrnoError() << "finit_module for \"" << filename << "\" failed";
362
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700363 return {};
The Android Open Source Project35237d12008-12-17 18:08:08 -0800364}
365
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700366static Result<void> do_interface_restart(const BuiltinArguments& args) {
Steven Moreland612d7a42018-05-08 11:21:37 -0700367 Service* svc = ServiceList::GetInstance().FindInterface(args[1]);
368 if (!svc) return Error() << "interface " << args[1] << " not found";
369 svc->Restart();
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700370 return {};
Steven Moreland612d7a42018-05-08 11:21:37 -0700371}
372
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700373static Result<void> do_interface_start(const BuiltinArguments& args) {
Steven Moreland612d7a42018-05-08 11:21:37 -0700374 Service* svc = ServiceList::GetInstance().FindInterface(args[1]);
375 if (!svc) return Error() << "interface " << args[1] << " not found";
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900376 if (auto result = svc->Start(); !result.ok()) {
Steven Moreland612d7a42018-05-08 11:21:37 -0700377 return Error() << "Could not start interface: " << result.error();
378 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700379 return {};
Steven Moreland612d7a42018-05-08 11:21:37 -0700380}
381
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700382static Result<void> do_interface_stop(const BuiltinArguments& args) {
Steven Moreland612d7a42018-05-08 11:21:37 -0700383 Service* svc = ServiceList::GetInstance().FindInterface(args[1]);
384 if (!svc) return Error() << "interface " << args[1] << " not found";
385 svc->Stop();
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700386 return {};
Steven Moreland612d7a42018-05-08 11:21:37 -0700387}
388
Oli Lan13e51e72019-11-19 18:08:45 +0000389static Result<void> make_dir_with_options(const MkdirOptions& options) {
Paul Crowley68258e82019-10-28 07:55:03 -0700390 std::string ref_basename;
Oli Lan13e51e72019-11-19 18:08:45 +0000391 if (options.ref_option == "ref") {
Paul Crowley68258e82019-10-28 07:55:03 -0700392 ref_basename = fscrypt_key_ref;
Oli Lan13e51e72019-11-19 18:08:45 +0000393 } else if (options.ref_option == "per_boot_ref") {
Paul Crowley68258e82019-10-28 07:55:03 -0700394 ref_basename = fscrypt_key_per_boot_ref;
395 } else {
Oli Lan13e51e72019-11-19 18:08:45 +0000396 return Error() << "Unknown key option: '" << options.ref_option << "'";
Paul Crowley1b4e7322019-08-25 12:18:43 -0700397 }
Paul Crowley68258e82019-10-28 07:55:03 -0700398
Paul Crowley1b4e7322019-08-25 12:18:43 -0700399 struct stat mstat;
Oli Lan13e51e72019-11-19 18:08:45 +0000400 if (lstat(options.target.c_str(), &mstat) != 0) {
Paul Crowley1b4e7322019-08-25 12:18:43 -0700401 if (errno != ENOENT) {
Oli Lan13e51e72019-11-19 18:08:45 +0000402 return ErrnoError() << "lstat() failed on " << options.target;
Paul Crowley1b4e7322019-08-25 12:18:43 -0700403 }
Oli Lan13e51e72019-11-19 18:08:45 +0000404 if (!make_dir(options.target, options.mode)) {
405 return ErrnoErrorIgnoreEnoent() << "mkdir() failed on " << options.target;
Paul Crowley1b4e7322019-08-25 12:18:43 -0700406 }
Oli Lan13e51e72019-11-19 18:08:45 +0000407 if (lstat(options.target.c_str(), &mstat) != 0) {
408 return ErrnoError() << "lstat() failed on new " << options.target;
Benoit Goby5c8574b2012-08-14 15:43:46 -0700409 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700410 }
Paul Crowley1b4e7322019-08-25 12:18:43 -0700411 if (!S_ISDIR(mstat.st_mode)) {
Oli Lan13e51e72019-11-19 18:08:45 +0000412 return Error() << "Not a directory on " << options.target;
Paul Crowley1b4e7322019-08-25 12:18:43 -0700413 }
Oli Lan13e51e72019-11-19 18:08:45 +0000414 bool needs_chmod = (mstat.st_mode & ~S_IFMT) != options.mode;
415 if ((options.uid != static_cast<uid_t>(-1) && options.uid != mstat.st_uid) ||
416 (options.gid != static_cast<gid_t>(-1) && options.gid != mstat.st_gid)) {
417 if (lchown(options.target.c_str(), options.uid, options.gid) == -1) {
418 return ErrnoError() << "lchown failed on " << options.target;
Paul Crowley1b4e7322019-08-25 12:18:43 -0700419 }
420 // chown may have cleared S_ISUID and S_ISGID, chmod again
421 needs_chmod = true;
422 }
423 if (needs_chmod) {
Oli Lan13e51e72019-11-19 18:08:45 +0000424 if (fchmodat(AT_FDCWD, options.target.c_str(), options.mode, AT_SYMLINK_NOFOLLOW) == -1) {
425 return ErrnoError() << "fchmodat() failed on " << options.target;
Paul Crowley1b4e7322019-08-25 12:18:43 -0700426 }
427 }
Eric Biggersf05da4a2018-10-23 13:10:33 -0700428 if (fscrypt_is_native()) {
Oli Lan13e51e72019-11-19 18:08:45 +0000429 if (!FscryptSetDirectoryPolicy(ref_basename, options.fscrypt_action, options.target)) {
Paul Crowleyc73b2152018-04-13 17:38:57 +0000430 return reboot_into_recovery(
Oli Lan13e51e72019-11-19 18:08:45 +0000431 {"--prompt_and_wipe_data", "--reason=set_policy_failed:"s + options.target});
Paul Crowleyaf8be582016-05-10 08:52:06 -0700432 }
433 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700434 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700435}
436
Oli Lan13e51e72019-11-19 18:08:45 +0000437// mkdir <path> [mode] [owner] [group] [<option> ...]
438static Result<void> do_mkdir(const BuiltinArguments& args) {
439 auto options = ParseMkdir(args.args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900440 if (!options.ok()) return options.error();
Oli Lan13e51e72019-11-19 18:08:45 +0000441 return make_dir_with_options(*options);
442}
443
Alex Light68ab20f2016-06-23 11:11:39 -0700444/* umount <path> */
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700445static Result<void> do_umount(const BuiltinArguments& args) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700446 if (umount(args[1].c_str()) < 0) {
447 return ErrnoError() << "umount() failed";
448 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700449 return {};
Alex Light68ab20f2016-06-23 11:11:39 -0700450}
451
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700452static struct {
453 const char *name;
454 unsigned flag;
455} mount_flags[] = {
456 { "noatime", MS_NOATIME },
Lars Svenssonb6ee25e2011-07-14 13:39:09 +0200457 { "noexec", MS_NOEXEC },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700458 { "nosuid", MS_NOSUID },
459 { "nodev", MS_NODEV },
460 { "nodiratime", MS_NODIRATIME },
461 { "ro", MS_RDONLY },
462 { "rw", 0 },
463 { "remount", MS_REMOUNT },
Jeff Sharkeye50ac5f2012-08-14 11:34:34 -0700464 { "bind", MS_BIND },
465 { "rec", MS_REC },
466 { "unbindable", MS_UNBINDABLE },
467 { "private", MS_PRIVATE },
468 { "slave", MS_SLAVE },
469 { "shared", MS_SHARED },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700470 { "defaults", 0 },
471 { 0, 0 },
472};
473
Ken Sumrall752923c2010-12-03 16:33:31 -0800474#define DATA_MNT_POINT "/data"
475
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700476/* mount <type> <device> <path> <flags ...> <options> */
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700477static Result<void> do_mount(const BuiltinArguments& args) {
Tom Cherry70379912017-08-01 14:10:11 -0700478 const char* options = nullptr;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700479 unsigned flags = 0;
Tom Cherry70379912017-08-01 14:10:11 -0700480 bool wait = false;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700481
Tom Cherry70379912017-08-01 14:10:11 -0700482 for (size_t na = 4; na < args.size(); na++) {
483 size_t i;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700484 for (i = 0; mount_flags[i].name; i++) {
Tom Cherry96f67312015-07-30 13:52:55 -0700485 if (!args[na].compare(mount_flags[i].name)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700486 flags |= mount_flags[i].flag;
487 break;
488 }
489 }
490
Colin Crosscd0f1732010-04-19 17:10:24 -0700491 if (!mount_flags[i].name) {
Tom Cherry70379912017-08-01 14:10:11 -0700492 if (!args[na].compare("wait")) {
493 wait = true;
494 // If our last argument isn't a flag, wolf it up as an option string.
495 } else if (na + 1 == args.size()) {
Tom Cherry96f67312015-07-30 13:52:55 -0700496 options = args[na].c_str();
Tom Cherry70379912017-08-01 14:10:11 -0700497 }
Colin Crosscd0f1732010-04-19 17:10:24 -0700498 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700499 }
500
Tom Cherry70379912017-08-01 14:10:11 -0700501 const char* system = args[1].c_str();
502 const char* source = args[2].c_str();
503 const char* target = args[3].c_str();
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000504
Tom Cherry70379912017-08-01 14:10:11 -0700505 if (android::base::StartsWith(source, "loop@")) {
506 int mode = (flags & MS_RDONLY) ? O_RDONLY : O_RDWR;
507 unique_fd fd(TEMP_FAILURE_RETRY(open(source + 5, mode | O_CLOEXEC)));
Tom Cherry7fa62c52017-08-01 13:50:23 -0700508 if (fd < 0) return ErrnoError() << "open(" << source + 5 << ", " << mode << ") failed";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000509
Tom Cherry70379912017-08-01 14:10:11 -0700510 for (size_t n = 0;; n++) {
511 std::string tmp = android::base::StringPrintf("/dev/block/loop%zu", n);
512 unique_fd loop(TEMP_FAILURE_RETRY(open(tmp.c_str(), mode | O_CLOEXEC)));
Tom Cherry7fa62c52017-08-01 13:50:23 -0700513 if (loop < 0) return ErrnoError() << "open(" << tmp << ", " << mode << ") failed";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000514
Tom Cherry70379912017-08-01 14:10:11 -0700515 loop_info info;
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000516 /* if it is a blank loop device */
517 if (ioctl(loop, LOOP_GET_STATUS, &info) < 0 && errno == ENXIO) {
518 /* if it becomes our loop device */
Tom Cherry70379912017-08-01 14:10:11 -0700519 if (ioctl(loop, LOOP_SET_FD, fd.get()) >= 0) {
520 if (mount(tmp.c_str(), target, system, flags, options) < 0) {
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000521 ioctl(loop, LOOP_CLR_FD, 0);
Tom Cherry7fa62c52017-08-01 13:50:23 -0700522 return ErrnoError() << "mount() failed";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000523 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700524 return {};
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000525 }
526 }
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000527 }
528
Tom Cherry7fa62c52017-08-01 13:50:23 -0700529 return Error() << "out of loopback devices";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000530 } else {
Colin Crosscd0f1732010-04-19 17:10:24 -0700531 if (wait)
Elliott Hughes9605a942016-11-10 17:43:47 -0800532 wait_for_file(source, kCommandRetryTimeout);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000533 if (mount(source, target, system, flags, options) < 0) {
Tom Cherryd17c3792019-07-30 10:51:59 -0700534 return ErrnoErrorIgnoreEnoent() << "mount() failed";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000535 }
536
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700537 }
Ken Sumralldd4d7862011-02-17 18:09:47 -0800538
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700539 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700540}
541
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800542/* Imports .rc files from the specified paths. Default ones are applied if none is given.
543 *
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700544 * rc_paths: list of paths to rc files to import
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800545 */
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700546static void import_late(const std::vector<std::string>& rc_paths) {
Tom Cherry67dee622017-07-27 12:54:48 -0700547 auto& action_manager = ActionManager::GetInstance();
Tom Cherry911b9b12017-07-27 16:20:58 -0700548 auto& service_list = ServiceList::GetInstance();
549 Parser parser = CreateParser(action_manager, service_list);
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700550 if (rc_paths.empty()) {
Jaekyun Seok4ec72cc2017-02-22 20:37:57 +0900551 // Fallbacks for partitions on which early mount isn't enabled.
Tom Cherry67dee622017-07-27 12:54:48 -0700552 for (const auto& path : late_import_paths) {
553 parser.ParseConfig(path);
Jaekyun Seok4ec72cc2017-02-22 20:37:57 +0900554 }
Tom Cherry67dee622017-07-27 12:54:48 -0700555 late_import_paths.clear();
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800556 } else {
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700557 for (const auto& rc_path : rc_paths) {
558 parser.ParseConfig(rc_path);
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800559 }
Tom Cherryb8dd0272015-07-22 14:23:33 -0700560 }
Tom Cherryd8a72572017-03-13 12:24:49 -0700561
562 // Turning this on and letting the INFO logging be discarded adds 0.2s to
563 // Nexus 9 boot time, so it's disabled by default.
Tom Cherry30a6f272017-04-19 15:31:58 -0700564 if (false) DumpState();
Tom Cherryb8dd0272015-07-22 14:23:33 -0700565}
566
Wei Wangd61a7e22016-08-23 11:58:09 -0700567/* Queue event based on fs_mgr return code.
568 *
569 * code: return code of fs_mgr_mount_all
570 *
571 * This function might request a reboot, in which case it will
572 * not return.
573 *
574 * return code is processed based on input code
575 */
Nikita Ioffe63898aa2019-11-08 12:24:02 +0000576static Result<void> queue_fs_event(int code, bool userdata_remount) {
Eric Biggerse5b5e372021-11-08 16:38:54 -0800577 if (code == FS_MGR_MNTALL_DEV_NOT_ENCRYPTABLE) {
Tom Cherryc88d8f92019-08-19 15:21:25 -0700578 SetProperty("ro.crypto.state", "unsupported");
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700579 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700580 return {};
Wei Wangd61a7e22016-08-23 11:58:09 -0700581 } else if (code == FS_MGR_MNTALL_DEV_NEEDS_RECOVERY) {
JP Abgrallcee20682014-07-02 14:26:54 -0700582 /* Setup a wipe via recovery, and reboot into recovery */
David Anderson0e330f12019-01-03 18:16:56 -0800583 if (android::gsi::IsGsiRunning()) {
584 return Error() << "cannot wipe within GSI";
585 }
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700586 PLOG(ERROR) << "fs_mgr_mount_all suggested recovery, so wiping data via recovery.";
Paul Crowley0b8b2302016-12-19 13:03:47 -0800587 const std::vector<std::string> options = {"--wipe_data", "--reason=fs_mgr_mount_all" };
Paul Crowleyc73b2152018-04-13 17:38:57 +0000588 return reboot_into_recovery(options);
JP Abgrallcee20682014-07-02 14:26:54 -0700589 /* If reboot worked, there is no return. */
Wei Wangd61a7e22016-08-23 11:58:09 -0700590 } else if (code == FS_MGR_MNTALL_DEV_FILE_ENCRYPTED) {
Nikita Ioffe1f40c942019-12-04 17:47:37 +0000591 if (!FscryptInstallKeyring()) {
Paul Crowley68258e82019-10-28 07:55:03 -0700592 return Error() << "FscryptInstallKeyring() failed";
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000593 }
Tom Cherryc88d8f92019-08-19 15:21:25 -0700594 SetProperty("ro.crypto.state", "encrypted");
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000595
596 // Although encrypted, we have device key, so we do not need to
597 // do anything different from the nonencrypted case.
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700598 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700599 return {};
Paul Lawrence9dbe97b2017-04-21 12:41:48 -0700600 } else if (code == FS_MGR_MNTALL_DEV_IS_METADATA_ENCRYPTED) {
Nikita Ioffe1f40c942019-12-04 17:47:37 +0000601 if (!FscryptInstallKeyring()) {
Paul Crowley68258e82019-10-28 07:55:03 -0700602 return Error() << "FscryptInstallKeyring() failed";
Paul Lawrence9dbe97b2017-04-21 12:41:48 -0700603 }
Tom Cherryc88d8f92019-08-19 15:21:25 -0700604 SetProperty("ro.crypto.state", "encrypted");
Paul Lawrence9dbe97b2017-04-21 12:41:48 -0700605
Paul Crowleyc6846962018-01-30 09:56:03 -0800606 // Although encrypted, vold has already set the device up, so we do not need to
607 // do anything different from the nonencrypted case.
608 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700609 return {};
Paul Lawrence9dbe97b2017-04-21 12:41:48 -0700610 } else if (code == FS_MGR_MNTALL_DEV_NEEDS_METADATA_ENCRYPTION) {
Nikita Ioffe1f40c942019-12-04 17:47:37 +0000611 if (!FscryptInstallKeyring()) {
Paul Crowley68258e82019-10-28 07:55:03 -0700612 return Error() << "FscryptInstallKeyring() failed";
Paul Lawrence9dbe97b2017-04-21 12:41:48 -0700613 }
Tom Cherryc88d8f92019-08-19 15:21:25 -0700614 SetProperty("ro.crypto.state", "encrypted");
Paul Lawrence9dbe97b2017-04-21 12:41:48 -0700615
Paul Crowleyc6846962018-01-30 09:56:03 -0800616 // Although encrypted, vold has already set the device up, so we do not need to
617 // do anything different from the nonencrypted case.
618 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700619 return {};
Wei Wangd61a7e22016-08-23 11:58:09 -0700620 } else if (code > 0) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700621 Error() << "fs_mgr_mount_all() returned unexpected error " << code;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700622 }
JP Abgrallf22b7452014-07-02 13:16:04 -0700623 /* else ... < 0: error */
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700624
Tom Cherry7fa62c52017-08-01 13:50:23 -0700625 return Error() << "Invalid code: " << code;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700626}
627
Nikita Ioffe12a36072019-10-23 20:11:32 +0100628static int initial_mount_fstab_return_code = -1;
629
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700630/* <= Q: mount_all <fstab> [ <path> ]* [--<options>]*
631 * >= R: mount_all [ <fstab> ] [--<options>]*
Wei Wangd61a7e22016-08-23 11:58:09 -0700632 *
633 * This function might request a reboot, in which case it will
634 * not return.
635 */
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700636static Result<void> do_mount_all(const BuiltinArguments& args) {
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700637 auto mount_all = ParseMountAll(args.args);
638 if (!mount_all.ok()) return mount_all.error();
Wei Wangd61a7e22016-08-23 11:58:09 -0700639
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700640 const char* prop_post_fix = "default";
641 bool queue_event = true;
642 if (mount_all->mode == MOUNT_MODE_EARLY) {
643 prop_post_fix = "early";
644 queue_event = false;
645 } else if (mount_all->mode == MOUNT_MODE_LATE) {
646 prop_post_fix = "late";
Wei Wangd61a7e22016-08-23 11:58:09 -0700647 }
648
Tom Cherry1c3a53f2017-06-22 16:50:31 -0700649 std::string prop_name = "ro.boottime.init.mount_all."s + prop_post_fix;
Tom Cherryede0d532017-07-06 14:20:11 -0700650 android::base::Timer t;
Tom Cherry990483d2019-04-17 12:55:50 -0700651
652 Fstab fstab;
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700653 if (mount_all->fstab_path.empty()) {
654 if (!ReadDefaultFstab(&fstab)) {
655 return Error() << "Could not read default fstab";
656 }
657 } else {
658 if (!ReadFstabFromFile(mount_all->fstab_path, &fstab)) {
659 return Error() << "Could not read fstab";
660 }
Tom Cherry7fa62c52017-08-01 13:50:23 -0700661 }
Nikita Ioffe12a36072019-10-23 20:11:32 +0100662
Nikita Ioffe9ede7ec2020-09-07 10:27:25 +0100663 auto mount_fstab_result = fs_mgr_mount_all(&fstab, mount_all->mode);
Tom Cherryc88d8f92019-08-19 15:21:25 -0700664 SetProperty(prop_name, std::to_string(t.duration().count()));
Wei Wangd61a7e22016-08-23 11:58:09 -0700665
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700666 if (mount_all->import_rc) {
667 import_late(mount_all->rc_paths);
Wei Wangd61a7e22016-08-23 11:58:09 -0700668 }
669
Nikita Ioffe9ede7ec2020-09-07 10:27:25 +0100670 if (mount_fstab_result.userdata_mounted) {
671 // This call to fs_mgr_mount_all mounted userdata. Keep the result in
672 // order for userspace reboot to correctly remount userdata.
673 LOG(INFO) << "Userdata mounted using "
674 << (mount_all->fstab_path.empty() ? "(default fstab)" : mount_all->fstab_path)
675 << " result : " << mount_fstab_result.code;
676 initial_mount_fstab_return_code = mount_fstab_result.code;
677 }
678
Wei Wangd61a7e22016-08-23 11:58:09 -0700679 if (queue_event) {
680 /* queue_fs_event will queue event based on mount_fstab return code
681 * and return processed return code*/
Nikita Ioffe9ede7ec2020-09-07 10:27:25 +0100682 auto queue_fs_result = queue_fs_event(mount_fstab_result.code, false);
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900683 if (!queue_fs_result.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700684 return Error() << "queue_fs_event() failed: " << queue_fs_result.error();
685 }
Wei Wangd61a7e22016-08-23 11:58:09 -0700686 }
687
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700688 return {};
Wei Wangd61a7e22016-08-23 11:58:09 -0700689}
690
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700691/* umount_all [ <fstab> ] */
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700692static Result<void> do_umount_all(const BuiltinArguments& args) {
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700693 auto umount_all = ParseUmountAll(args.args);
694 if (!umount_all.ok()) return umount_all.error();
695
Tom Cherry990483d2019-04-17 12:55:50 -0700696 Fstab fstab;
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -0700697 if (umount_all->empty()) {
698 if (!ReadDefaultFstab(&fstab)) {
699 return Error() << "Could not read default fstab";
700 }
701 } else {
702 if (!ReadFstabFromFile(*umount_all, &fstab)) {
703 return Error() << "Could not read fstab";
704 }
Tom Cherry990483d2019-04-17 12:55:50 -0700705 }
706
Tom Cherry3707d322019-08-15 13:07:24 -0700707 if (auto result = fs_mgr_umount_all(&fstab); result != 0) {
708 return Error() << "umount_fstab() failed " << result;
Yifan Hong402633d2019-04-09 10:11:34 -0700709 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700710 return {};
Yifan Hong402633d2019-04-09 10:11:34 -0700711}
712
Alistair Delvade28a862020-06-08 11:04:53 -0700713/* swapon_all [ <fstab> ] */
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700714static Result<void> do_swapon_all(const BuiltinArguments& args) {
Alistair Delvade28a862020-06-08 11:04:53 -0700715 auto swapon_all = ParseSwaponAll(args.args);
716 if (!swapon_all.ok()) return swapon_all.error();
717
Tom Cherry30554572018-11-30 15:21:04 -0800718 Fstab fstab;
Alistair Delvade28a862020-06-08 11:04:53 -0700719 if (swapon_all->empty()) {
720 if (!ReadDefaultFstab(&fstab)) {
721 return Error() << "Could not read default fstab";
722 }
723 } else {
724 if (!ReadFstabFromFile(*swapon_all, &fstab)) {
725 return Error() << "Could not read fstab '" << *swapon_all << "'";
726 }
Tom Cherry30554572018-11-30 15:21:04 -0800727 }
Ken Sumralla76baaa2013-07-09 18:42:09 -0700728
Tom Cherry3707d322019-08-15 13:07:24 -0700729 if (!fs_mgr_swapon_all(fstab)) {
730 return Error() << "fs_mgr_swapon_all() failed";
Tom Cherry30554572018-11-30 15:21:04 -0800731 }
Ken Sumralla76baaa2013-07-09 18:42:09 -0700732
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700733 return {};
Ken Sumralla76baaa2013-07-09 18:42:09 -0700734}
735
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700736static Result<void> do_setprop(const BuiltinArguments& args) {
Tom Cherry1ab3dfc2019-04-22 17:46:37 -0700737 if (StartsWith(args[1], "ctl.")) {
738 return Error()
739 << "Cannot set ctl. properties from init; call the Service functions directly";
740 }
741 if (args[1] == kRestoreconProperty) {
742 return Error() << "Cannot set '" << kRestoreconProperty
743 << "' from init; use the restorecon builtin directly";
744 }
745
Tom Cherryc88d8f92019-08-19 15:21:25 -0700746 SetProperty(args[1], args[2]);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700747 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700748}
749
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700750static Result<void> do_setrlimit(const BuiltinArguments& args) {
Tom Cherrycb0f9bb2017-09-12 15:58:47 -0700751 auto rlimit = ParseRlimit(args.args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900752 if (!rlimit.ok()) return rlimit.error();
Tom Cherry7fa62c52017-08-01 13:50:23 -0700753
Tom Cherry7ac013d2017-08-25 10:39:25 -0700754 if (setrlimit(rlimit->first, &rlimit->second) == -1) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700755 return ErrnoError() << "setrlimit failed";
756 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700757 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700758}
759
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700760static Result<void> do_start(const BuiltinArguments& args) {
Tom Cherry911b9b12017-07-27 16:20:58 -0700761 Service* svc = ServiceList::GetInstance().FindService(args[1]);
Tom Cherry7fa62c52017-08-01 13:50:23 -0700762 if (!svc) return Error() << "service " << args[1] << " not found";
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900763 if (auto result = svc->Start(); !result.ok()) {
Tom Cherryd17c3792019-07-30 10:51:59 -0700764 return ErrorIgnoreEnoent() << "Could not start service: " << result.error();
Tom Cherry76af7e62017-08-22 16:13:59 -0700765 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700766 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700767}
768
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700769static Result<void> do_stop(const BuiltinArguments& args) {
Tom Cherry911b9b12017-07-27 16:20:58 -0700770 Service* svc = ServiceList::GetInstance().FindService(args[1]);
Tom Cherry7fa62c52017-08-01 13:50:23 -0700771 if (!svc) return Error() << "service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700772 svc->Stop();
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700773 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700774}
775
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700776static Result<void> do_restart(const BuiltinArguments& args) {
David Anderson6d7c7a22021-12-03 15:48:16 -0800777 bool only_if_running = false;
778 if (args.size() == 3) {
779 if (args[1] == "--only-if-running") {
780 only_if_running = true;
781 } else {
782 return Error() << "Unknown argument to restart: " << args[1];
783 }
784 }
785
786 const auto& classname = args[args.size() - 1];
787 Service* svc = ServiceList::GetInstance().FindService(classname);
788 if (!svc) return Error() << "service " << classname << " not found";
789 if (only_if_running && !svc->IsRunning()) {
790 return {};
791 }
Tom Cherrybac32992015-07-31 12:45:25 -0700792 svc->Restart();
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700793 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700794}
795
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700796static Result<void> do_trigger(const BuiltinArguments& args) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700797 ActionManager::GetInstance().QueueEventTrigger(args[1]);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700798 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700799}
800
Joel Galenson4b591f12017-11-27 14:45:26 -0800801static int MakeSymlink(const std::string& target, const std::string& linkpath) {
802 std::string secontext;
803 // Passing 0 for mode should work.
804 if (SelabelLookupFileContext(linkpath, 0, &secontext) && !secontext.empty()) {
805 setfscreatecon(secontext.c_str());
806 }
807
808 int rc = symlink(target.c_str(), linkpath.c_str());
809
810 if (!secontext.empty()) {
811 int save_errno = errno;
812 setfscreatecon(nullptr);
813 errno = save_errno;
814 }
815
816 return rc;
817}
818
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700819static Result<void> do_symlink(const BuiltinArguments& args) {
Joel Galenson4b591f12017-11-27 14:45:26 -0800820 if (MakeSymlink(args[1], args[2]) < 0) {
Tom Cherry68f2a462017-08-22 16:15:26 -0700821 // The symlink builtin is often used to create symlinks for older devices to be backwards
822 // compatible with new paths, therefore we skip reporting this error.
Tom Cherryd17c3792019-07-30 10:51:59 -0700823 return ErrnoErrorIgnoreEnoent() << "symlink() failed";
Elliott Hughesda46b392016-10-11 17:09:00 -0700824 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700825 return {};
The Android Open Source Project35237d12008-12-17 18:08:08 -0800826}
827
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700828static Result<void> do_rm(const BuiltinArguments& args) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700829 if (unlink(args[1].c_str()) < 0) {
830 return ErrnoError() << "unlink() failed";
831 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700832 return {};
Tom Cherry7fa62c52017-08-01 13:50:23 -0700833}
834
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700835static Result<void> do_rmdir(const BuiltinArguments& args) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700836 if (rmdir(args[1].c_str()) < 0) {
837 return ErrnoError() << "rmdir() failed";
838 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700839 return {};
Tom Cherry7fa62c52017-08-01 13:50:23 -0700840}
841
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700842static Result<void> do_sysclktz(const BuiltinArguments& args) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700843 struct timezone tz = {};
844 if (!android::base::ParseInt(args[1], &tz.tz_minuteswest)) {
845 return Error() << "Unable to parse mins_west_of_gmt";
846 }
847
848 if (settimeofday(nullptr, &tz) == -1) {
849 return ErrnoError() << "settimeofday() failed";
850 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700851 return {};
Tom Cherry7fa62c52017-08-01 13:50:23 -0700852}
853
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700854static Result<void> do_verity_update_state(const BuiltinArguments& args) {
Tom Cherrycf80b6d2019-01-07 14:25:31 -0800855 int mode;
856 if (!fs_mgr_load_verity_state(&mode)) {
857 return Error() << "fs_mgr_load_verity_state() failed";
Tom Cherry2cbbe9f2017-05-04 18:17:33 -0700858 }
Tom Cherrycf80b6d2019-01-07 14:25:31 -0800859
860 Fstab fstab;
861 if (!ReadDefaultFstab(&fstab)) {
862 return Error() << "Failed to read default fstab";
863 }
864
865 for (const auto& entry : fstab) {
866 if (!fs_mgr_is_verity_enabled(entry)) {
867 continue;
868 }
869
870 // To be consistent in vboot 1.0 and vboot 2.0 (AVB), use "system" for the partition even
871 // for system as root, so it has property [partition.system.verified].
872 std::string partition = entry.mount_point == "/" ? "system" : Basename(entry.mount_point);
Tom Cherryc88d8f92019-08-19 15:21:25 -0700873 SetProperty("partition." + partition + ".verified", std::to_string(mode));
Tianjie327237d2021-01-20 19:02:34 -0800874
Tianjie10bec652021-08-30 16:10:09 -0700875 auto hashtree_info = fs_mgr_get_hashtree_info(entry);
876 if (hashtree_info) {
877 SetProperty("partition." + partition + ".verified.hash_alg", hashtree_info->algorithm);
878 SetProperty("partition." + partition + ".verified.root_digest",
879 hashtree_info->root_digest);
Tianjie327237d2021-01-20 19:02:34 -0800880 }
Tom Cherrycf80b6d2019-01-07 14:25:31 -0800881 }
882
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700883 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700884}
885
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700886static Result<void> do_write(const BuiltinArguments& args) {
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900887 if (auto result = WriteFile(args[1], args[2]); !result.ok()) {
Tom Cherryd17c3792019-07-30 10:51:59 -0700888 return ErrorIgnoreEnoent()
889 << "Unable to write to file '" << args[1] << "': " << result.error();
Tom Cherry7fa62c52017-08-01 13:50:23 -0700890 }
891
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700892 return {};
Tom Cherry7fa62c52017-08-01 13:50:23 -0700893}
894
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700895static Result<void> readahead_file(const std::string& filename, bool fully) {
Tom Cherry247ffbf2019-07-08 15:09:36 -0700896 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(filename.c_str(), O_RDONLY | O_CLOEXEC)));
Wei Wang02628f32017-08-16 11:34:50 -0700897 if (fd == -1) {
898 return ErrnoError() << "Error opening file";
899 }
900 if (posix_fadvise(fd, 0, 0, POSIX_FADV_WILLNEED)) {
901 return ErrnoError() << "Error posix_fadvise file";
902 }
903 if (readahead(fd, 0, std::numeric_limits<size_t>::max())) {
904 return ErrnoError() << "Error readahead file";
905 }
906 if (fully) {
907 char buf[BUFSIZ];
908 ssize_t n;
909 while ((n = TEMP_FAILURE_RETRY(read(fd, &buf[0], sizeof(buf)))) > 0) {
910 }
911 if (n != 0) {
912 return ErrnoError() << "Error reading file";
913 }
914 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700915 return {};
Wei Wang02628f32017-08-16 11:34:50 -0700916}
917
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700918static Result<void> do_readahead(const BuiltinArguments& args) {
Wei Wang542aae42017-08-04 13:22:36 -0700919 struct stat sb;
920
921 if (stat(args[1].c_str(), &sb)) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700922 return ErrnoError() << "Error opening " << args[1];
Wei Wang542aae42017-08-04 13:22:36 -0700923 }
924
Wei Wang02628f32017-08-16 11:34:50 -0700925 bool readfully = false;
926 if (args.size() == 3 && args[2] == "--fully") {
927 readfully = true;
928 }
Wei Wang542aae42017-08-04 13:22:36 -0700929 // We will do readahead in a forked process in order not to block init
930 // since it may block while it reads the
931 // filesystem metadata needed to locate the requested blocks. This
932 // occurs frequently with ext[234] on large files using indirect blocks
933 // instead of extents, giving the appearance that the call blocks until
934 // the requested data has been read.
935 pid_t pid = fork();
936 if (pid == 0) {
Wei Wang02628f32017-08-16 11:34:50 -0700937 if (setpriority(PRIO_PROCESS, 0, static_cast<int>(ANDROID_PRIORITY_LOWEST)) != 0) {
938 PLOG(WARNING) << "setpriority failed";
939 }
940 if (android_set_ioprio(0, IoSchedClass_IDLE, 7)) {
941 PLOG(WARNING) << "ioprio_get failed";
942 }
Wei Wang542aae42017-08-04 13:22:36 -0700943 android::base::Timer t;
944 if (S_ISREG(sb.st_mode)) {
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900945 if (auto result = readahead_file(args[1], readfully); !result.ok()) {
Wei Wang02628f32017-08-16 11:34:50 -0700946 LOG(WARNING) << "Unable to readahead '" << args[1] << "': " << result.error();
Wei Wang542aae42017-08-04 13:22:36 -0700947 _exit(EXIT_FAILURE);
948 }
949 } else if (S_ISDIR(sb.st_mode)) {
950 char* paths[] = {const_cast<char*>(args[1].data()), nullptr};
951 std::unique_ptr<FTS, decltype(&fts_close)> fts(
952 fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, nullptr), fts_close);
953 if (!fts) {
954 PLOG(ERROR) << "Error opening directory: " << args[1];
955 _exit(EXIT_FAILURE);
956 }
957 // Traverse the entire hierarchy and do readahead
958 for (FTSENT* ftsent = fts_read(fts.get()); ftsent != nullptr;
959 ftsent = fts_read(fts.get())) {
960 if (ftsent->fts_info & FTS_F) {
Wei Wang02628f32017-08-16 11:34:50 -0700961 const std::string filename = ftsent->fts_accpath;
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900962 if (auto result = readahead_file(filename, readfully); !result.ok()) {
Wei Wang02628f32017-08-16 11:34:50 -0700963 LOG(WARNING)
964 << "Unable to readahead '" << filename << "': " << result.error();
Wei Wang542aae42017-08-04 13:22:36 -0700965 }
966 }
967 }
968 }
Wei Wang02628f32017-08-16 11:34:50 -0700969 LOG(INFO) << "Readahead " << args[1] << " took " << t << " asynchronously";
Wei Wang542aae42017-08-04 13:22:36 -0700970 _exit(0);
971 } else if (pid < 0) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700972 return ErrnoError() << "Fork failed";
Wei Wang542aae42017-08-04 13:22:36 -0700973 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700974 return {};
Wei Wang542aae42017-08-04 13:22:36 -0700975}
976
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700977static Result<void> do_copy(const BuiltinArguments& args) {
Tom Cherry62ca6632017-08-03 12:54:07 -0700978 auto file_contents = ReadFile(args[1]);
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900979 if (!file_contents.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700980 return Error() << "Could not read input file '" << args[1] << "': " << file_contents.error();
San Mehat7c44fe52009-08-26 16:39:25 -0700981 }
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900982 if (auto result = WriteFile(args[2], *file_contents); !result.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -0700983 return Error() << "Could not write to output file '" << args[2] << "': " << result.error();
Tom Cherry2cbbe9f2017-05-04 18:17:33 -0700984 }
Tom Cherry7fa62c52017-08-01 13:50:23 -0700985
Tom Cherrybbcbc2f2019-06-10 11:08:01 -0700986 return {};
San Mehat7c44fe52009-08-26 16:39:25 -0700987}
988
Wei Wang49d25982020-11-18 15:56:14 -0800989static Result<void> do_copy_per_line(const BuiltinArguments& args) {
990 std::string file_contents;
991 if (!android::base::ReadFileToString(args[1], &file_contents, true)) {
992 return Error() << "Could not read input file '" << args[1] << "'";
993 }
994 auto lines = Split(file_contents, "\n");
995 for (const auto& line : lines) {
996 auto result = WriteFile(args[2], line);
997 if (!result.ok()) {
998 LOG(VERBOSE) << "Could not write to output file '" << args[2] << "' with '" << line
999 << "' : " << result.error();
1000 }
1001 }
1002
1003 return {};
1004}
1005
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001006static Result<void> do_chown(const BuiltinArguments& args) {
Tom Cherry62ca6632017-08-03 12:54:07 -07001007 auto uid = DecodeUid(args[1]);
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001008 if (!uid.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001009 return Error() << "Unable to decode UID for '" << args[1] << "': " << uid.error();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001010 }
Tom Cherry517e1f12017-05-04 17:40:33 -07001011
1012 // GID is optional and pushes the index of path out by one if specified.
1013 const std::string& path = (args.size() == 4) ? args[3] : args[2];
Tom Cherry62ca6632017-08-03 12:54:07 -07001014 Result<gid_t> gid = -1;
Tom Cherry517e1f12017-05-04 17:40:33 -07001015
1016 if (args.size() == 4) {
Tom Cherry62ca6632017-08-03 12:54:07 -07001017 gid = DecodeUid(args[2]);
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001018 if (!gid.ok()) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001019 return Error() << "Unable to decode GID for '" << args[2] << "': " << gid.error();
Tom Cherry517e1f12017-05-04 17:40:33 -07001020 }
1021 }
1022
Tom Cherry7fa62c52017-08-01 13:50:23 -07001023 if (lchown(path.c_str(), *uid, *gid) == -1) {
Tom Cherryd17c3792019-07-30 10:51:59 -07001024 return ErrnoErrorIgnoreEnoent() << "lchown() failed";
Tom Cherry7fa62c52017-08-01 13:50:23 -07001025 }
Tom Cherry517e1f12017-05-04 17:40:33 -07001026
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001027 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001028}
1029
1030static mode_t get_mode(const char *s) {
1031 mode_t mode = 0;
1032 while (*s) {
1033 if (*s >= '0' && *s <= '7') {
1034 mode = (mode<<3) | (*s-'0');
1035 } else {
1036 return -1;
1037 }
1038 s++;
1039 }
1040 return mode;
1041}
1042
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001043static Result<void> do_chmod(const BuiltinArguments& args) {
Tom Cherry96f67312015-07-30 13:52:55 -07001044 mode_t mode = get_mode(args[1].c_str());
1045 if (fchmodat(AT_FDCWD, args[2].c_str(), mode, AT_SYMLINK_NOFOLLOW) < 0) {
Tom Cherryd17c3792019-07-30 10:51:59 -07001046 return ErrnoErrorIgnoreEnoent() << "fchmodat() failed";
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001047 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001048 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001049}
1050
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001051static Result<void> do_restorecon(const BuiltinArguments& args) {
Tom Cherry4772f1d2019-07-30 09:34:41 -07001052 auto restorecon_info = ParseRestorecon(args.args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001053 if (!restorecon_info.ok()) {
Tom Cherry4772f1d2019-07-30 09:34:41 -07001054 return restorecon_info.error();
1055 }
1056
1057 const auto& [flag, paths] = *restorecon_info;
1058
Stephen Smalley726e8f72013-10-09 16:02:09 -04001059 int ret = 0;
Tom Cherry4772f1d2019-07-30 09:34:41 -07001060 for (const auto& path : paths) {
1061 if (selinux_android_restorecon(path.c_str(), flag) < 0) {
1062 ret = errno;
Paul Lawrencea8d84342016-11-14 15:40:18 -08001063 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -05001064 }
Tom Cherry7fa62c52017-08-01 13:50:23 -07001065
Tom Cherryd17c3792019-07-30 10:51:59 -07001066 if (ret) return ErrnoErrorIgnoreEnoent() << "selinux_android_restorecon() failed";
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001067 return {};
Stephen Smalley726e8f72013-10-09 16:02:09 -04001068}
1069
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001070static Result<void> do_restorecon_recursive(const BuiltinArguments& args) {
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001071 std::vector<std::string> non_const_args(args.args);
Paul Lawrencea8d84342016-11-14 15:40:18 -08001072 non_const_args.insert(std::next(non_const_args.begin()), "--recursive");
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001073 return do_restorecon({std::move(non_const_args), args.context});
Stephen Smalleye46f9d52012-01-13 08:48:47 -05001074}
1075
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001076static Result<void> do_loglevel(const BuiltinArguments& args) {
Elliott Hughes7bc87a52016-08-04 16:09:39 -07001077 // TODO: support names instead/as well?
Elliott Hughesda46b392016-10-11 17:09:00 -07001078 int log_level = -1;
1079 android::base::ParseInt(args[1], &log_level);
Elliott Hughes7bc87a52016-08-04 16:09:39 -07001080 android::base::LogSeverity severity;
1081 switch (log_level) {
1082 case 7: severity = android::base::DEBUG; break;
1083 case 6: severity = android::base::INFO; break;
1084 case 5:
1085 case 4: severity = android::base::WARNING; break;
1086 case 3: severity = android::base::ERROR; break;
1087 case 2:
1088 case 1:
1089 case 0: severity = android::base::FATAL; break;
1090 default:
Tom Cherry7fa62c52017-08-01 13:50:23 -07001091 return Error() << "invalid log level " << log_level;
Riley Andrews1bbef882014-06-26 13:55:03 -07001092 }
Elliott Hughes7bc87a52016-08-04 16:09:39 -07001093 android::base::SetMinimumLogSeverity(severity);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001094 return {};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001095}
1096
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001097static Result<void> do_load_persist_props(const BuiltinArguments& args) {
Tom Cherry1ab3dfc2019-04-22 17:46:37 -07001098 SendLoadPersistentPropertiesMessage();
1099
1100 start_waiting_for_property("ro.persistent_properties.ready", "true");
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001101 return {};
Ken Sumrallc5c51032011-03-08 17:01:29 -08001102}
1103
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001104static Result<void> do_load_system_props(const BuiltinArguments& args) {
Jiyong Park3b316ee2019-01-13 02:42:31 +09001105 LOG(INFO) << "deprecated action `load_system_props` called.";
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001106 return {};
Riley Andrewse4b7b292014-06-16 15:06:21 -07001107}
1108
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001109static Result<void> do_wait(const BuiltinArguments& args) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001110 auto timeout = kCommandRetryTimeout;
1111 if (args.size() == 3) {
Mark Salyzynffa52e92020-05-14 09:20:30 -07001112 double timeout_double;
1113 if (!android::base::ParseDouble(args[2], &timeout_double, 0)) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001114 return Error() << "failed to parse timeout";
Elliott Hughesda46b392016-10-11 17:09:00 -07001115 }
Mark Salyzynffa52e92020-05-14 09:20:30 -07001116 timeout = std::chrono::duration_cast<std::chrono::nanoseconds>(
1117 std::chrono::duration<double>(timeout_double));
Elliott Hughesda46b392016-10-11 17:09:00 -07001118 }
Tom Cherry7fa62c52017-08-01 13:50:23 -07001119
1120 if (wait_for_file(args[1].c_str(), timeout) != 0) {
1121 return Error() << "wait_for_file() failed";
1122 }
1123
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001124 return {};
Colin Crosscd0f1732010-04-19 17:10:24 -07001125}
Paul Lawrenceb8c9d272015-03-26 15:49:42 +00001126
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001127static Result<void> do_wait_for_prop(const BuiltinArguments& args) {
Wei Wang132ac312017-01-25 16:27:03 -08001128 const char* name = args[1].c_str();
1129 const char* value = args[2].c_str();
1130 size_t value_len = strlen(value);
1131
Tom Cherryde6bd502018-02-13 16:50:08 -08001132 if (!IsLegalPropertyName(name)) {
1133 return Error() << "IsLegalPropertyName(" << name << ") failed";
Wei Wang132ac312017-01-25 16:27:03 -08001134 }
1135 if (value_len >= PROP_VALUE_MAX) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001136 return Error() << "value too long";
Wei Wang132ac312017-01-25 16:27:03 -08001137 }
Wei Wang2d0fdaa2017-02-02 10:52:39 -08001138 if (!start_waiting_for_property(name, value)) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001139 return Error() << "already waiting for a property";
Wei Wang132ac312017-01-25 16:27:03 -08001140 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001141 return {};
Wei Wang132ac312017-01-25 16:27:03 -08001142}
1143
Paul Crowley749af8c2015-05-28 17:35:06 +01001144static bool is_file_crypto() {
Tom Cherryccf23532017-03-28 16:40:41 -07001145 return android::base::GetProperty("ro.crypto.type", "") == "file";
Paul Crowley749af8c2015-05-28 17:35:06 +01001146}
1147
Tom Cherry7896e7a2019-09-04 15:26:52 -07001148static Result<void> ExecWithFunctionOnFailure(const std::vector<std::string>& args,
1149 std::function<void(const std::string&)> function) {
1150 auto service = Service::MakeTemporaryOneshotService(args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001151 if (!service.ok()) {
Tom Cherry7896e7a2019-09-04 15:26:52 -07001152 function("MakeTemporaryOneshotService failed: " + service.error().message());
Paul Crowleyc73b2152018-04-13 17:38:57 +00001153 }
Tom Cherry7896e7a2019-09-04 15:26:52 -07001154 (*service)->AddReapCallback([function](const siginfo_t& siginfo) {
Paul Crowleyc73b2152018-04-13 17:38:57 +00001155 if (siginfo.si_code != CLD_EXITED || siginfo.si_status != 0) {
Tom Cherry7896e7a2019-09-04 15:26:52 -07001156 function(StringPrintf("Exec service failed, status %d", siginfo.si_status));
Paul Crowleyc73b2152018-04-13 17:38:57 +00001157 }
1158 });
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001159 if (auto result = (*service)->ExecStart(); !result.ok()) {
Tom Cherry7896e7a2019-09-04 15:26:52 -07001160 function("ExecStart failed: " + result.error().message());
Paul Crowleyc73b2152018-04-13 17:38:57 +00001161 }
Tom Cherry4772f1d2019-07-30 09:34:41 -07001162 ServiceList::GetInstance().AddService(std::move(*service));
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001163 return {};
Paul Crowleyc73b2152018-04-13 17:38:57 +00001164}
1165
Tom Cherry7896e7a2019-09-04 15:26:52 -07001166static Result<void> ExecVdcRebootOnFailure(const std::string& vdc_arg) {
Nikita Ioffe05506f02020-01-15 14:43:55 +00001167 bool should_reboot_into_recovery = true;
Tom Cherry7896e7a2019-09-04 15:26:52 -07001168 auto reboot_reason = vdc_arg + "_failed";
Nikita Ioffe05506f02020-01-15 14:43:55 +00001169 if (android::sysprop::InitProperties::userspace_reboot_in_progress().value_or(false)) {
1170 should_reboot_into_recovery = false;
Nikita Ioffe4a787d92020-01-15 23:23:13 +00001171 reboot_reason = "userspace_failed," + vdc_arg;
Nikita Ioffe05506f02020-01-15 14:43:55 +00001172 }
Tom Cherry7896e7a2019-09-04 15:26:52 -07001173
Nikita Ioffe05506f02020-01-15 14:43:55 +00001174 auto reboot = [reboot_reason, should_reboot_into_recovery](const std::string& message) {
Tom Cherry7896e7a2019-09-04 15:26:52 -07001175 // TODO (b/122850122): support this in gsi
Nikita Ioffe05506f02020-01-15 14:43:55 +00001176 if (should_reboot_into_recovery) {
1177 if (fscrypt_is_native() && !android::gsi::IsGsiRunning()) {
1178 LOG(ERROR) << message << ": Rebooting into recovery, reason: " << reboot_reason;
1179 if (auto result = reboot_into_recovery(
1180 {"--prompt_and_wipe_data", "--reason="s + reboot_reason});
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001181 !result.ok()) {
Nikita Ioffe05506f02020-01-15 14:43:55 +00001182 LOG(FATAL) << "Could not reboot into recovery: " << result.error();
1183 }
1184 } else {
1185 LOG(ERROR) << "Failure (reboot suppressed): " << reboot_reason;
Tom Cherry7896e7a2019-09-04 15:26:52 -07001186 }
1187 } else {
Nikita Ioffe05506f02020-01-15 14:43:55 +00001188 LOG(ERROR) << message << ": rebooting, reason: " << reboot_reason;
1189 trigger_shutdown("reboot," + reboot_reason);
Tom Cherry7896e7a2019-09-04 15:26:52 -07001190 }
1191 };
1192
1193 std::vector<std::string> args = {"exec", "/system/bin/vdc", "--wait", "cryptfs", vdc_arg};
1194 return ExecWithFunctionOnFailure(args, reboot);
1195}
1196
Nikita Ioffe12a36072019-10-23 20:11:32 +01001197static Result<void> do_remount_userdata(const BuiltinArguments& args) {
1198 if (initial_mount_fstab_return_code == -1) {
1199 return Error() << "Calling remount_userdata too early";
1200 }
1201 Fstab fstab;
1202 if (!ReadDefaultFstab(&fstab)) {
1203 // TODO(b/135984674): should we reboot here?
1204 return Error() << "Failed to read fstab";
1205 }
1206 // TODO(b/135984674): check that fstab contains /data.
1207 if (auto rc = fs_mgr_remount_userdata_into_checkpointing(&fstab); rc < 0) {
Gavin Corkery8c922562020-05-11 14:10:09 +01001208 std::string proc_mounts_output;
1209 android::base::ReadFileToString("/proc/mounts", &proc_mounts_output, true);
1210 android::base::WriteStringToFile(proc_mounts_output,
1211 "/metadata/userspacereboot/mount_info.txt");
Nikita Ioffe4a787d92020-01-15 23:23:13 +00001212 trigger_shutdown("reboot,mount_userdata_failed");
Nikita Ioffe12a36072019-10-23 20:11:32 +01001213 }
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001214 if (auto result = queue_fs_event(initial_mount_fstab_return_code, true); !result.ok()) {
Nikita Ioffe12a36072019-10-23 20:11:32 +01001215 return Error() << "queue_fs_event() failed: " << result.error();
1216 }
1217 return {};
1218}
1219
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001220static Result<void> do_installkey(const BuiltinArguments& args) {
1221 if (!is_file_crypto()) return {};
Tom Cherry7fa62c52017-08-01 13:50:23 -07001222
Eric Biggersf05da4a2018-10-23 13:10:33 -07001223 auto unencrypted_dir = args[1] + fscrypt_unencrypted_folder;
Tom Cherryc3692b32017-08-10 12:22:44 -07001224 if (!make_dir(unencrypted_dir, 0700) && errno != EEXIST) {
Tom Cherry7fa62c52017-08-01 13:50:23 -07001225 return ErrnoError() << "Failed to create " << unencrypted_dir;
Janis Danisevskis9cc51722017-03-29 14:50:01 -07001226 }
Tom Cherry7896e7a2019-09-04 15:26:52 -07001227 return ExecVdcRebootOnFailure("enablefilecrypto");
Paul Lawrenceb8c9d272015-03-26 15:49:42 +00001228}
Paul Crowley749af8c2015-05-28 17:35:06 +01001229
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001230static Result<void> do_init_user0(const BuiltinArguments& args) {
Tom Cherry7896e7a2019-09-04 15:26:52 -07001231 return ExecVdcRebootOnFailure("init_user0");
Paul Crowley59497452016-02-01 16:37:13 +00001232}
1233
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001234static Result<void> do_mark_post_data(const BuiltinArguments& args) {
Martijn Coenen70788f92019-04-23 16:26:01 +02001235 ServiceList::GetInstance().MarkPostData();
1236
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001237 return {};
Martijn Coenen70788f92019-04-23 16:26:01 +02001238}
1239
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001240static Result<void> GenerateLinkerConfiguration() {
Kiyoung Kim03b9bca2020-11-30 14:49:36 +09001241 const char* linkerconfig_binary = "/apex/com.android.runtime/bin/linkerconfig";
Kiyoung Kim3b2dbe92019-12-30 18:44:41 +09001242 const char* linkerconfig_target = "/linkerconfig";
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001243 const char* arguments[] = {linkerconfig_binary, "--target", linkerconfig_target};
1244
1245 if (logwrap_fork_execvp(arraysize(arguments), arguments, nullptr, false, LOG_KLOG, false,
1246 nullptr) != 0) {
1247 return ErrnoError() << "failed to execute linkerconfig";
1248 }
1249
Kiyoung Kim0cbee0d2021-03-02 16:45:27 +09001250 auto current_mount_ns = GetCurrentMountNamespace();
1251 if (!current_mount_ns.ok()) {
1252 return current_mount_ns.error();
1253 }
1254 if (*current_mount_ns == NS_DEFAULT) {
1255 SetDefaultMountNamespaceReady();
1256 }
1257
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001258 LOG(INFO) << "linkerconfig generated " << linkerconfig_target
1259 << " with mounted APEX modules info";
1260
1261 return {};
1262}
1263
Jooyung Han4f23d5a2020-06-09 13:44:17 +09001264static Result<void> MountLinkerConfigForDefaultNamespace() {
1265 // No need to mount linkerconfig for default mount namespace if the path does not exist (which
1266 // would mean it is already mounted)
1267 if (access("/linkerconfig/default", 0) != 0) {
1268 return {};
1269 }
1270
1271 if (mount("/linkerconfig/default", "/linkerconfig", nullptr, MS_BIND | MS_REC, nullptr) != 0) {
1272 return ErrnoError() << "Failed to mount linker configuration for default mount namespace.";
1273 }
1274
1275 return {};
1276}
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001277static Result<void> do_update_linker_config(const BuiltinArguments&) {
Shikha Malhotra720694d2021-07-30 12:35:27 +00001278 return GenerateLinkerConfiguration();
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001279}
1280
Oli Lan13e51e72019-11-19 18:08:45 +00001281static Result<void> parse_apex_configs() {
Jiyong Parkc2404402018-11-08 17:14:35 +09001282 glob_t glob_result;
Ray Essick35ffd692021-10-07 15:48:11 -07001283 static constexpr char glob_pattern[] = "/apex/*/etc/*rc";
Jiyong Parkf169f722018-11-16 16:23:20 +09001284 const int ret = glob(glob_pattern, GLOB_MARK, nullptr, &glob_result);
1285 if (ret != 0 && ret != GLOB_NOMATCH) {
Jiyong Parkc2404402018-11-08 17:14:35 +09001286 globfree(&glob_result);
1287 return Error() << "glob pattern '" << glob_pattern << "' failed";
1288 }
1289 std::vector<std::string> configs;
Nikita Ioffe091c4d12019-12-05 12:35:19 +00001290 Parser parser = CreateServiceOnlyParser(ServiceList::GetInstance(), true);
Jiyong Parkc2404402018-11-08 17:14:35 +09001291 for (size_t i = 0; i < glob_result.gl_pathc; i++) {
Jiyong Parkd2217b52019-06-07 19:18:46 +09001292 std::string path = glob_result.gl_pathv[i];
1293 // Filter-out /apex/<name>@<ver> paths. The paths are bind-mounted to
1294 // /apex/<name> paths, so unless we filter them out, we will parse the
1295 // same file twice.
1296 std::vector<std::string> paths = android::base::Split(path, "/");
Jooyung Han9c4fa662019-07-05 11:22:18 +09001297 if (paths.size() >= 3 && paths[2].find('@') != std::string::npos) {
Jiyong Parkd2217b52019-06-07 19:18:46 +09001298 continue;
1299 }
Ray Essick35ffd692021-10-07 15:48:11 -07001300 // Filter directories
1301 if (path.back() == '/') {
1302 continue;
1303 }
Jiyong Parkd2217b52019-06-07 19:18:46 +09001304 configs.push_back(path);
Jiyong Parkc2404402018-11-08 17:14:35 +09001305 }
1306 globfree(&glob_result);
1307
Ray Essick35ffd692021-10-07 15:48:11 -07001308 // Compare all files /apex/path.#rc and /apex/path.rc with the same "/apex/path" prefix,
1309 // choosing the one with the highest # that doesn't exceed the system's SDK.
1310 // (.rc == .0rc for ranking purposes)
1311 //
1312 int active_sdk = android::base::GetIntProperty("ro.build.version.sdk", INT_MAX);
1313
1314 std::map<std::string, std::pair<std::string, int>> script_map;
1315
Jiyong Parkc2404402018-11-08 17:14:35 +09001316 for (const auto& c : configs) {
Ray Essick35ffd692021-10-07 15:48:11 -07001317 int sdk = 0;
1318 const std::vector<std::string> parts = android::base::Split(c, ".");
1319 std::string base;
1320 if (parts.size() < 2) {
Jiyong Parkc2404402018-11-08 17:14:35 +09001321 continue;
1322 }
Ray Essick35ffd692021-10-07 15:48:11 -07001323
1324 // parts[size()-1], aka the suffix, should be "rc" or "#rc"
1325 // any other pattern gets discarded
1326
1327 const auto& suffix = parts[parts.size() - 1];
1328 if (suffix == "rc") {
1329 sdk = 0;
1330 } else {
1331 char trailer[9] = {0};
1332 int r = sscanf(suffix.c_str(), "%d%8s", &sdk, trailer);
1333 if (r != 2) {
1334 continue;
1335 }
1336 if (strlen(trailer) > 2 || strcmp(trailer, "rc") != 0) {
1337 continue;
1338 }
1339 }
1340
1341 if (sdk < 0 || sdk > active_sdk) {
1342 continue;
1343 }
1344
1345 base = parts[0];
1346 for (unsigned int i = 1; i < parts.size() - 1; i++) {
1347 base = base + "." + parts[i];
1348 }
1349
1350 // is this preferred over what we already have
1351 auto it = script_map.find(base);
1352 if (it == script_map.end() || it->second.second < sdk) {
1353 script_map[base] = std::make_pair(c, sdk);
1354 }
1355 }
1356
1357 bool success = true;
1358 for (const auto& m : script_map) {
1359 success &= parser.ParseConfigFile(m.second.first);
Jiyong Parkc2404402018-11-08 17:14:35 +09001360 }
Jiyong Park80aa4472018-11-12 12:08:41 +09001361 ServiceList::GetInstance().MarkServicesUpdate();
Jiyong Parkc2404402018-11-08 17:14:35 +09001362 if (success) {
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001363 return {};
Jiyong Parkc2404402018-11-08 17:14:35 +09001364 } else {
1365 return Error() << "Could not parse apex configs";
1366 }
1367}
1368
Oli Lan13e51e72019-11-19 18:08:45 +00001369/*
1370 * Creates a directory under /data/misc/apexdata/ for each APEX.
1371 */
1372static Result<void> create_apex_data_dirs() {
1373 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir("/apex"), closedir);
1374 if (!dirp) {
1375 return ErrnoError() << "Unable to open apex directory";
1376 }
1377 struct dirent* entry;
1378 while ((entry = readdir(dirp.get())) != nullptr) {
1379 if (entry->d_type != DT_DIR) continue;
1380
1381 const char* name = entry->d_name;
1382 // skip any starting with "."
1383 if (name[0] == '.') continue;
1384
1385 if (strchr(name, '@') != nullptr) continue;
1386
1387 auto path = "/data/misc/apexdata/" + std::string(name);
Oli Lan90c523b2020-01-17 11:41:04 +00001388 auto options = MkdirOptions{path, 0771, AID_ROOT, AID_SYSTEM, FscryptAction::kNone, "ref"};
Oli Lan13e51e72019-11-19 18:08:45 +00001389 make_dir_with_options(options);
1390 }
1391 return {};
1392}
1393
1394static Result<void> do_perform_apex_config(const BuiltinArguments& args) {
1395 auto create_dirs = create_apex_data_dirs();
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001396 if (!create_dirs.ok()) {
Oli Lan13e51e72019-11-19 18:08:45 +00001397 return create_dirs.error();
1398 }
1399 auto parse_configs = parse_apex_configs();
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001400 if (!parse_configs.ok()) {
Oli Lan13e51e72019-11-19 18:08:45 +00001401 return parse_configs.error();
1402 }
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001403
1404 auto update_linker_config = do_update_linker_config(args);
Bernie Innocenticecebbb2020-02-06 03:49:33 +09001405 if (!update_linker_config.ok()) {
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001406 return update_linker_config.error();
1407 }
1408
Oli Lan13e51e72019-11-19 18:08:45 +00001409 return {};
1410}
1411
Tom Cherrybbcbc2f2019-06-10 11:08:01 -07001412static Result<void> do_enter_default_mount_ns(const BuiltinArguments& args) {
Jooyung Han4f23d5a2020-06-09 13:44:17 +09001413 if (auto result = SwitchToMountNamespaceIfNeeded(NS_DEFAULT); !result.ok()) {
1414 return result.error();
Jiyong Parkdcbaf9f2019-02-22 22:15:25 +09001415 }
Jooyung Han4f23d5a2020-06-09 13:44:17 +09001416 if (auto result = MountLinkerConfigForDefaultNamespace(); !result.ok()) {
1417 return result.error();
1418 }
1419 LOG(INFO) << "Switched to default mount namespace";
1420 return {};
Jiyong Parkdcbaf9f2019-02-22 22:15:25 +09001421}
1422
Tom Cherryde6bd502018-02-13 16:50:08 -08001423// Builtin-function-map start
Tom Cherryd52a5b32019-07-22 16:05:36 -07001424const BuiltinFunctionMap& GetBuiltinFunctionMap() {
Tom Cherryb7349902015-08-26 11:43:36 -07001425 constexpr std::size_t kMax = std::numeric_limits<std::size_t>::max();
Tom Cherryb27004a2017-03-27 16:27:30 -07001426 // clang-format off
Tom Cherryd52a5b32019-07-22 16:05:36 -07001427 static const BuiltinFunctionMap builtin_functions = {
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001428 {"bootchart", {1, 1, {false, do_bootchart}}},
1429 {"chmod", {2, 2, {true, do_chmod}}},
1430 {"chown", {2, 3, {true, do_chown}}},
1431 {"class_reset", {1, 1, {false, do_class_reset}}},
David Anderson2285b522021-11-09 18:26:39 -08001432 {"class_restart", {1, 2, {false, do_class_restart}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001433 {"class_start", {1, 1, {false, do_class_start}}},
1434 {"class_stop", {1, 1, {false, do_class_stop}}},
1435 {"copy", {2, 2, {true, do_copy}}},
Wei Wang49d25982020-11-18 15:56:14 -08001436 {"copy_per_line", {2, 2, {true, do_copy_per_line}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001437 {"domainname", {1, 1, {true, do_domainname}}},
1438 {"enable", {1, 1, {false, do_enable}}},
1439 {"exec", {1, kMax, {false, do_exec}}},
1440 {"exec_background", {1, kMax, {false, do_exec_background}}},
1441 {"exec_start", {1, 1, {false, do_exec_start}}},
1442 {"export", {2, 2, {false, do_export}}},
1443 {"hostname", {1, 1, {true, do_hostname}}},
1444 {"ifup", {1, 1, {true, do_ifup}}},
1445 {"init_user0", {0, 0, {false, do_init_user0}}},
1446 {"insmod", {1, kMax, {true, do_insmod}}},
1447 {"installkey", {1, 1, {false, do_installkey}}},
Steven Moreland612d7a42018-05-08 11:21:37 -07001448 {"interface_restart", {1, 1, {false, do_interface_restart}}},
1449 {"interface_start", {1, 1, {false, do_interface_start}}},
1450 {"interface_stop", {1, 1, {false, do_interface_stop}}},
Artur Satayev500946b2021-02-15 20:48:49 +00001451 {"load_exports", {1, 1, {false, do_load_exports}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001452 {"load_persist_props", {0, 0, {false, do_load_persist_props}}},
1453 {"load_system_props", {0, 0, {false, do_load_system_props}}},
1454 {"loglevel", {1, 1, {false, do_loglevel}}},
Martijn Coenen70788f92019-04-23 16:26:01 +02001455 {"mark_post_data", {0, 0, {false, do_mark_post_data}}},
Paul Crowley68258e82019-10-28 07:55:03 -07001456 {"mkdir", {1, 6, {true, do_mkdir}}},
Tom Cherry880d5662018-02-05 08:01:54 -08001457 // TODO: Do mount operations in vendor_init.
1458 // mount_all is currently too complex to run in vendor_init as it queues action triggers,
1459 // imports rc scripts, etc. It should be simplified and run in vendor_init context.
1460 // mount and umount are run in the same context as mount_all for symmetry.
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -07001461 {"mount_all", {0, kMax, {false, do_mount_all}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001462 {"mount", {3, kMax, {false, do_mount}}},
Oli Lan13e51e72019-11-19 18:08:45 +00001463 {"perform_apex_config", {0, 0, {false, do_perform_apex_config}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001464 {"umount", {1, 1, {false, do_umount}}},
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -07001465 {"umount_all", {0, 1, {false, do_umount_all}}},
Kiyoung Kime4d3f212019-12-16 14:31:04 +09001466 {"update_linker_config", {0, 0, {false, do_update_linker_config}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001467 {"readahead", {1, 2, {true, do_readahead}}},
Nikita Ioffe12a36072019-10-23 20:11:32 +01001468 {"remount_userdata", {0, 0, {false, do_remount_userdata}}},
David Anderson6d7c7a22021-12-03 15:48:16 -08001469 {"restart", {1, 2, {false, do_restart}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001470 {"restorecon", {1, kMax, {true, do_restorecon}}},
1471 {"restorecon_recursive", {1, kMax, {true, do_restorecon_recursive}}},
1472 {"rm", {1, 1, {true, do_rm}}},
1473 {"rmdir", {1, 1, {true, do_rmdir}}},
Tom Cherry32228482018-01-18 16:14:25 -08001474 {"setprop", {2, 2, {true, do_setprop}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001475 {"setrlimit", {3, 3, {false, do_setrlimit}}},
1476 {"start", {1, 1, {false, do_start}}},
1477 {"stop", {1, 1, {false, do_stop}}},
Alistair Delvade28a862020-06-08 11:04:53 -07001478 {"swapon_all", {0, 1, {false, do_swapon_all}}},
Jiyong Parkdcbaf9f2019-02-22 22:15:25 +09001479 {"enter_default_mount_ns", {0, 0, {false, do_enter_default_mount_ns}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001480 {"symlink", {2, 2, {true, do_symlink}}},
1481 {"sysclktz", {1, 1, {false, do_sysclktz}}},
1482 {"trigger", {1, 1, {false, do_trigger}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001483 {"verity_update_state", {0, 0, {false, do_verity_update_state}}},
1484 {"wait", {1, 2, {true, do_wait}}},
Tom Cherryfa3e52c2017-10-17 10:43:52 -07001485 {"wait_for_prop", {2, 2, {false, do_wait_for_prop}}},
Tom Cherrycb0f9bb2017-09-12 15:58:47 -07001486 {"write", {2, 2, {true, do_write}}},
Tom Cherryb7349902015-08-26 11:43:36 -07001487 };
Tom Cherryb27004a2017-03-27 16:27:30 -07001488 // clang-format on
Tom Cherryb7349902015-08-26 11:43:36 -07001489 return builtin_functions;
1490}
Tom Cherryde6bd502018-02-13 16:50:08 -08001491// Builtin-function-map end
Tom Cherry81f5d3e2017-06-22 12:53:17 -07001492
1493} // namespace init
1494} // namespace android