blob: 75b3c610477c4d9f4068b7f9a5bf184a40e670b3 [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
Mark Salyzyna98cc9c2016-04-05 13:43:40 -070019#include <dirent.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070020#include <errno.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070021#include <fcntl.h>
Yusuke Sato0df08272015-07-08 14:57:07 -070022#include <mntent.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070023#include <net/if.h>
Yusuke Sato0df08272015-07-08 14:57:07 -070024#include <signal.h>
Mark Salyzynad575e02016-04-05 08:10:25 -070025#include <sched.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070026#include <stdio.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070027#include <stdlib.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070028#include <string.h>
29#include <sys/socket.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070030#include <sys/mount.h>
31#include <sys/resource.h>
Nick Kralevich124a9c92016-03-27 16:55:59 -070032#include <sys/syscall.h>
Elliott Hughes3d74d7a2015-01-29 21:31:23 -080033#include <sys/time.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070034#include <sys/types.h>
35#include <sys/stat.h>
Ken Sumrall0e9dd902012-04-17 17:20:16 -070036#include <sys/wait.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070037#include <unistd.h>
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +000038#include <linux/loop.h>
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +080039#include <linux/module.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070040
Paul Crowley0b8b2302016-12-19 13:03:47 -080041#include <string>
Elliott Hughes290a2282016-11-14 17:08:47 -080042#include <thread>
43
Paul Lawrencea8d84342016-11-14 15:40:18 -080044#include <selinux/android.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050045#include <selinux/selinux.h>
46#include <selinux/label.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050047
Mark Salyzyna98cc9c2016-04-05 13:43:40 -070048#include <android-base/file.h>
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -080049#include <android-base/parseint.h>
Tom Cherrye2490972017-03-28 16:40:41 -070050#include <android-base/properties.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080051#include <android-base/stringprintf.h>
Tom Cherrye2490972017-03-28 16:40:41 -070052#include <android-base/strings.h>
Yabin Cui0b1252c2016-06-24 18:28:03 -070053#include <bootloader_message/bootloader_message.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070054#include <cutils/android_reboot.h>
Tao Bao6d881d62016-10-05 17:53:30 -070055#include <ext4_utils/ext4_crypt.h>
56#include <ext4_utils/ext4_crypt_init_extensions.h>
Tom Cherrye2490972017-03-28 16:40:41 -070057#include <fs_mgr.h>
Yusuke Sato0df08272015-07-08 14:57:07 -070058#include <logwrap/logwrap.h>
Elliott Hughesdb3f2672015-03-20 09:45:18 -070059
Tom Cherryfa0c21c2015-07-23 17:53:11 -070060#include "action.h"
Tom Cherryb7349902015-08-26 11:43:36 -070061#include "bootchart.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070062#include "devices.h"
Tom Cherrybac32992015-07-31 12:45:25 -070063#include "init.h"
Colin Cross6310a822010-04-20 14:29:05 -070064#include "init_parser.h"
Colin Crossed8a7d82010-04-19 17:05:34 -070065#include "log.h"
Tom Cherrybac32992015-07-31 12:45:25 -070066#include "property_service.h"
Keun-young Park8d01f632017-03-13 11:54:47 -070067#include "reboot.h"
Tom Cherrybac32992015-07-31 12:45:25 -070068#include "service.h"
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -080069#include "signal_handler.h"
Tom Cherrybac32992015-07-31 12:45:25 -070070#include "util.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070071
Paul Crowley0b8b2302016-12-19 13:03:47 -080072using namespace std::literals::string_literals;
73
Nick Kralevichbc609542015-01-31 21:39:46 -080074#define chmod DO_NOT_USE_CHMOD_USE_FCHMODAT_SYMLINK_NOFOLLOW
75
Elliott Hughes9605a942016-11-10 17:43:47 -080076static constexpr std::chrono::nanoseconds kCommandRetryTimeout = 5s;
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -080077
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +080078static int insmod(const char *filename, const char *options, int flags) {
Nick Kralevich124a9c92016-03-27 16:55:59 -070079 int fd = open(filename, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
80 if (fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070081 PLOG(ERROR) << "insmod: open(\"" << filename << "\") failed";
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070082 return -1;
Elliott Hughesf682b472015-02-06 12:19:48 -080083 }
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +080084 int rc = syscall(__NR_finit_module, fd, options, flags);
Nick Kralevich124a9c92016-03-27 16:55:59 -070085 if (rc == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070086 PLOG(ERROR) << "finit_module for \"" << filename << "\" failed";
Nick Kralevich124a9c92016-03-27 16:55:59 -070087 }
88 close(fd);
89 return rc;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070090}
91
Tom Cherryb7349902015-08-26 11:43:36 -070092static int __ifupdown(const char *interface, int up) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070093 struct ifreq ifr;
94 int s, ret;
95
96 strlcpy(ifr.ifr_name, interface, IFNAMSIZ);
97
98 s = socket(AF_INET, SOCK_DGRAM, 0);
99 if (s < 0)
100 return -1;
101
102 ret = ioctl(s, SIOCGIFFLAGS, &ifr);
103 if (ret < 0) {
104 goto done;
105 }
106
107 if (up)
108 ifr.ifr_flags |= IFF_UP;
109 else
110 ifr.ifr_flags &= ~IFF_UP;
111
112 ret = ioctl(s, SIOCSIFFLAGS, &ifr);
Elliott Hughes24627902015-02-04 10:25:09 -0800113
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700114done:
115 close(s);
116 return ret;
117}
118
Paul Crowley0b8b2302016-12-19 13:03:47 -0800119static int reboot_into_recovery(const std::vector<std::string>& options) {
Paul Crowleyaf8be582016-05-10 08:52:06 -0700120 std::string err;
121 if (!write_bootloader_message(options, &err)) {
Elliott Hughes7f5b29f2016-06-27 09:54:25 -0700122 LOG(ERROR) << "failed to set bootloader message: " << err;
Paul Crowleyaf8be582016-05-10 08:52:06 -0700123 return -1;
124 }
Keun-young Park8d01f632017-03-13 11:54:47 -0700125 DoReboot(ANDROID_RB_RESTART2, "reboot", "recovery", false);
126 return 0;
Yusuke Sato0df08272015-07-08 14:57:07 -0700127}
128
Tom Cherryb7349902015-08-26 11:43:36 -0700129static int do_class_start(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700130 /* Starting a class does not start services
131 * which are explicitly disabled. They must
132 * be started individually.
133 */
Tom Cherrybac32992015-07-31 12:45:25 -0700134 ServiceManager::GetInstance().
135 ForEachServiceInClass(args[1], [] (Service* s) { s->StartIfNotDisabled(); });
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700136 return 0;
137}
138
Tom Cherryb7349902015-08-26 11:43:36 -0700139static int do_class_stop(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700140 ServiceManager::GetInstance().
141 ForEachServiceInClass(args[1], [] (Service* s) { s->Stop(); });
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700142 return 0;
143}
144
Tom Cherryb7349902015-08-26 11:43:36 -0700145static int do_class_reset(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700146 ServiceManager::GetInstance().
147 ForEachServiceInClass(args[1], [] (Service* s) { s->Reset(); });
Ken Sumrall752923c2010-12-03 16:33:31 -0800148 return 0;
149}
150
Steven Moreland2b63d542017-03-10 14:04:37 -0800151static int do_class_restart(const std::vector<std::string>& args) {
152 ServiceManager::GetInstance().
153 ForEachServiceInClass(args[1], [] (Service* s) { s->Restart(); });
154 return 0;
155}
156
Tom Cherryb7349902015-08-26 11:43:36 -0700157static int do_domainname(const std::vector<std::string>& args) {
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500158 return write_file("/proc/sys/kernel/domainname", args[1].c_str()) ? 0 : 1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700159}
160
Tom Cherryb7349902015-08-26 11:43:36 -0700161static int do_enable(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700162 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
163 if (!svc) {
JP Abgrall3beec7e2014-05-02 21:14:29 -0700164 return -1;
165 }
Tom Cherrybac32992015-07-31 12:45:25 -0700166 return svc->Enable();
JP Abgrall3beec7e2014-05-02 21:14:29 -0700167}
168
Tom Cherryb7349902015-08-26 11:43:36 -0700169static int do_exec(const std::vector<std::string>& args) {
Tom Cherry2d804672017-03-27 16:27:30 -0700170 return ServiceManager::GetInstance().Exec(args) ? 0 : -1;
171}
172
173static int do_exec_start(const std::vector<std::string>& args) {
174 return ServiceManager::GetInstance().ExecStart(args[1]) ? 0 : -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700175}
176
Tom Cherryb7349902015-08-26 11:43:36 -0700177static int do_export(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700178 return add_environment(args[1].c_str(), args[2].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700179}
180
Tom Cherryb7349902015-08-26 11:43:36 -0700181static int do_hostname(const std::vector<std::string>& args) {
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500182 return write_file("/proc/sys/kernel/hostname", args[1].c_str()) ? 0 : 1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700183}
184
Tom Cherryb7349902015-08-26 11:43:36 -0700185static int do_ifup(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700186 return __ifupdown(args[1].c_str(), 1);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700187}
188
Tom Cherryb7349902015-08-26 11:43:36 -0700189static int do_insmod(const std::vector<std::string>& args) {
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800190 int flags = 0;
191 auto it = args.begin() + 1;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800192
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800193 if (!(*it).compare("-f")) {
194 flags = MODULE_INIT_IGNORE_VERMAGIC | MODULE_INIT_IGNORE_MODVERSIONS;
195 it++;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800196 }
197
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800198 std::string filename = *it++;
199 std::string options = android::base::Join(std::vector<std::string>(it, args.end()), ' ');
200 return insmod(filename.c_str(), options.c_str(), flags);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800201}
202
Tom Cherryb7349902015-08-26 11:43:36 -0700203static int do_mkdir(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700204 mode_t mode = 0755;
Chia-chi Yeh27164dc2011-07-08 12:57:36 -0700205 int ret;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700206
207 /* mkdir <path> [mode] [owner] [group] */
208
Tom Cherry96f67312015-07-30 13:52:55 -0700209 if (args.size() >= 3) {
Elliott Hughesda46b392016-10-11 17:09:00 -0700210 mode = std::strtoul(args[2].c_str(), 0, 8);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700211 }
212
Tom Cherry96f67312015-07-30 13:52:55 -0700213 ret = make_dir(args[1].c_str(), mode);
Chia-chi Yeh27164dc2011-07-08 12:57:36 -0700214 /* chmod in case the directory already exists */
215 if (ret == -1 && errno == EEXIST) {
Tom Cherry96f67312015-07-30 13:52:55 -0700216 ret = fchmodat(AT_FDCWD, args[1].c_str(), mode, AT_SYMLINK_NOFOLLOW);
Chia-chi Yeh27164dc2011-07-08 12:57:36 -0700217 }
218 if (ret == -1) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700219 return -errno;
220 }
221
Tom Cherry96f67312015-07-30 13:52:55 -0700222 if (args.size() >= 4) {
223 uid_t uid = decode_uid(args[3].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700224 gid_t gid = -1;
225
Tom Cherry96f67312015-07-30 13:52:55 -0700226 if (args.size() == 5) {
227 gid = decode_uid(args[4].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700228 }
229
Tom Cherry96f67312015-07-30 13:52:55 -0700230 if (lchown(args[1].c_str(), uid, gid) == -1) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700231 return -errno;
232 }
Benoit Goby5c8574b2012-08-14 15:43:46 -0700233
234 /* chown may have cleared S_ISUID and S_ISGID, chmod again */
235 if (mode & (S_ISUID | S_ISGID)) {
Tom Cherry96f67312015-07-30 13:52:55 -0700236 ret = fchmodat(AT_FDCWD, args[1].c_str(), mode, AT_SYMLINK_NOFOLLOW);
Benoit Goby5c8574b2012-08-14 15:43:46 -0700237 if (ret == -1) {
238 return -errno;
239 }
240 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700241 }
242
Paul Crowleyaf8be582016-05-10 08:52:06 -0700243 if (e4crypt_is_native()) {
244 if (e4crypt_set_directory_policy(args[1].c_str())) {
Paul Crowley0b8b2302016-12-19 13:03:47 -0800245 const std::vector<std::string> options = {
246 "--prompt_and_wipe_data",
247 "--reason=set_policy_failed:"s + args[1]};
248 reboot_into_recovery(options);
Paul Crowleyaf8be582016-05-10 08:52:06 -0700249 return -1;
250 }
251 }
252 return 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700253}
254
Alex Light68ab20f2016-06-23 11:11:39 -0700255/* umount <path> */
256static int do_umount(const std::vector<std::string>& args) {
257 return umount(args[1].c_str());
258}
259
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700260static struct {
261 const char *name;
262 unsigned flag;
263} mount_flags[] = {
264 { "noatime", MS_NOATIME },
Lars Svenssonb6ee25e2011-07-14 13:39:09 +0200265 { "noexec", MS_NOEXEC },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700266 { "nosuid", MS_NOSUID },
267 { "nodev", MS_NODEV },
268 { "nodiratime", MS_NODIRATIME },
269 { "ro", MS_RDONLY },
270 { "rw", 0 },
271 { "remount", MS_REMOUNT },
Jeff Sharkeye50ac5f2012-08-14 11:34:34 -0700272 { "bind", MS_BIND },
273 { "rec", MS_REC },
274 { "unbindable", MS_UNBINDABLE },
275 { "private", MS_PRIVATE },
276 { "slave", MS_SLAVE },
277 { "shared", MS_SHARED },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700278 { "defaults", 0 },
279 { 0, 0 },
280};
281
Ken Sumrall752923c2010-12-03 16:33:31 -0800282#define DATA_MNT_POINT "/data"
283
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700284/* mount <type> <device> <path> <flags ...> <options> */
Tom Cherryb7349902015-08-26 11:43:36 -0700285static int do_mount(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700286 char tmp[64];
Tom Cherry96f67312015-07-30 13:52:55 -0700287 const char *source, *target, *system;
288 const char *options = NULL;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700289 unsigned flags = 0;
Tom Cherry96f67312015-07-30 13:52:55 -0700290 std::size_t na = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700291 int n, i;
Colin Crosscd0f1732010-04-19 17:10:24 -0700292 int wait = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700293
Tom Cherry96f67312015-07-30 13:52:55 -0700294 for (na = 4; na < args.size(); na++) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700295 for (i = 0; mount_flags[i].name; i++) {
Tom Cherry96f67312015-07-30 13:52:55 -0700296 if (!args[na].compare(mount_flags[i].name)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700297 flags |= mount_flags[i].flag;
298 break;
299 }
300 }
301
Colin Crosscd0f1732010-04-19 17:10:24 -0700302 if (!mount_flags[i].name) {
Tom Cherry96f67312015-07-30 13:52:55 -0700303 if (!args[na].compare("wait"))
Colin Crosscd0f1732010-04-19 17:10:24 -0700304 wait = 1;
305 /* if our last argument isn't a flag, wolf it up as an option string */
Tom Cherry96f67312015-07-30 13:52:55 -0700306 else if (na + 1 == args.size())
307 options = args[na].c_str();
Colin Crosscd0f1732010-04-19 17:10:24 -0700308 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700309 }
310
Tom Cherry96f67312015-07-30 13:52:55 -0700311 system = args[1].c_str();
312 source = args[2].c_str();
313 target = args[3].c_str();
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000314
Elliott Hughes31951162016-06-24 15:15:03 -0700315 if (!strncmp(source, "loop@", 5)) {
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000316 int mode, loop, fd;
317 struct loop_info info;
318
319 mode = (flags & MS_RDONLY) ? O_RDONLY : O_RDWR;
Nick Kralevich45a884f2015-02-02 14:37:22 -0800320 fd = open(source + 5, mode | O_CLOEXEC);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000321 if (fd < 0) {
322 return -1;
323 }
324
325 for (n = 0; ; n++) {
Yabin Cuie2d63af2015-02-17 19:27:51 -0800326 snprintf(tmp, sizeof(tmp), "/dev/block/loop%d", n);
Nick Kralevich45a884f2015-02-02 14:37:22 -0800327 loop = open(tmp, mode | O_CLOEXEC);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000328 if (loop < 0) {
Tomasz Kondelbfdcc402014-02-06 08:57:27 +0100329 close(fd);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000330 return -1;
331 }
332
333 /* if it is a blank loop device */
334 if (ioctl(loop, LOOP_GET_STATUS, &info) < 0 && errno == ENXIO) {
335 /* if it becomes our loop device */
336 if (ioctl(loop, LOOP_SET_FD, fd) >= 0) {
337 close(fd);
338
339 if (mount(tmp, target, system, flags, options) < 0) {
340 ioctl(loop, LOOP_CLR_FD, 0);
341 close(loop);
342 return -1;
343 }
344
345 close(loop);
Ken Sumralldd4d7862011-02-17 18:09:47 -0800346 goto exit_success;
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000347 }
348 }
349
350 close(loop);
351 }
352
353 close(fd);
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700354 LOG(ERROR) << "out of loopback devices";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000355 return -1;
356 } else {
Colin Crosscd0f1732010-04-19 17:10:24 -0700357 if (wait)
Elliott Hughes9605a942016-11-10 17:43:47 -0800358 wait_for_file(source, kCommandRetryTimeout);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000359 if (mount(source, target, system, flags, options) < 0) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700360 return -1;
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000361 }
362
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700363 }
Ken Sumralldd4d7862011-02-17 18:09:47 -0800364
365exit_success:
Ken Sumralldd4d7862011-02-17 18:09:47 -0800366 return 0;
367
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700368}
369
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800370/* Imports .rc files from the specified paths. Default ones are applied if none is given.
371 *
372 * start_index: index of the first path in the args list
373 */
Wei Wangd61a7e22016-08-23 11:58:09 -0700374static void import_late(const std::vector<std::string>& args, size_t start_index, size_t end_index) {
Tom Cherryb7349902015-08-26 11:43:36 -0700375 Parser& parser = Parser::GetInstance();
Wei Wangd61a7e22016-08-23 11:58:09 -0700376 if (end_index <= start_index) {
Jaekyun Seok4ec72cc2017-02-22 20:37:57 +0900377 // Fallbacks for partitions on which early mount isn't enabled.
378 if (!parser.is_system_etc_init_loaded()) {
379 parser.ParseConfig("/system/etc/init");
380 parser.set_is_system_etc_init_loaded(true);
381 }
382 if (!parser.is_vendor_etc_init_loaded()) {
383 parser.ParseConfig("/vendor/etc/init");
384 parser.set_is_vendor_etc_init_loaded(true);
385 }
386 if (!parser.is_odm_etc_init_loaded()) {
387 parser.ParseConfig("/odm/etc/init");
388 parser.set_is_odm_etc_init_loaded(true);
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800389 }
390 } else {
Wei Wangd61a7e22016-08-23 11:58:09 -0700391 for (size_t i = start_index; i < end_index; ++i) {
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800392 parser.ParseConfig(args[i]);
393 }
Tom Cherryb8dd0272015-07-22 14:23:33 -0700394 }
Tom Cherryd8a72572017-03-13 12:24:49 -0700395
396 // Turning this on and letting the INFO logging be discarded adds 0.2s to
397 // Nexus 9 boot time, so it's disabled by default.
398 if (false) parser.DumpState();
Tom Cherryb8dd0272015-07-22 14:23:33 -0700399}
400
Wei Wangd61a7e22016-08-23 11:58:09 -0700401/* mount_fstab
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800402 *
Wei Wangd61a7e22016-08-23 11:58:09 -0700403 * Call fs_mgr_mount_all() to mount the given fstab
JP Abgrallcee20682014-07-02 14:26:54 -0700404 */
Wei Wangd61a7e22016-08-23 11:58:09 -0700405static int mount_fstab(const char* fstabfile, int mount_mode) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700406 int ret = -1;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700407
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700408 /*
409 * Call fs_mgr_mount_all() to mount all filesystems. We fork(2) and
410 * do the call in the child to provide protection to the main init
411 * process if anything goes wrong (crash or memory leak), and wait for
412 * the child to finish in the parent.
413 */
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700414 pid_t pid = fork();
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700415 if (pid > 0) {
416 /* Parent. Wait for the child to return */
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700417 int status;
Paul Lawrence40af0922014-09-16 14:31:23 -0700418 int wp_ret = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700419 if (wp_ret == -1) {
420 // Unexpected error code. We will continue anyway.
421 PLOG(WARNING) << "waitpid failed";
Paul Lawrence40af0922014-09-16 14:31:23 -0700422 }
423
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700424 if (WIFEXITED(status)) {
425 ret = WEXITSTATUS(status);
426 } else {
427 ret = -1;
428 }
429 } else if (pid == 0) {
430 /* child, call fs_mgr_mount_all() */
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700431
432 // So we can always see what fs_mgr_mount_all() does.
433 // Only needed if someone explicitly changes the default log level in their init.rc.
434 android::base::ScopedLogSeverity info(android::base::INFO);
435
436 struct fstab* fstab = fs_mgr_read_fstab(fstabfile);
Wei Wangd61a7e22016-08-23 11:58:09 -0700437 int child_ret = fs_mgr_mount_all(fstab, mount_mode);
Ken Sumrallab6b8522013-02-13 12:58:40 -0800438 fs_mgr_free_fstab(fstab);
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700439 if (child_ret == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700440 PLOG(ERROR) << "fs_mgr_mount_all returned an error";
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700441 }
JP Abgrallf22b7452014-07-02 13:16:04 -0700442 _exit(child_ret);
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700443 } else {
444 /* fork failed, return an error */
445 return -1;
446 }
Wei Wangd61a7e22016-08-23 11:58:09 -0700447 return ret;
448}
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700449
Wei Wangd61a7e22016-08-23 11:58:09 -0700450/* Queue event based on fs_mgr return code.
451 *
452 * code: return code of fs_mgr_mount_all
453 *
454 * This function might request a reboot, in which case it will
455 * not return.
456 *
457 * return code is processed based on input code
458 */
459static int queue_fs_event(int code) {
460 int ret = code;
461 if (code == FS_MGR_MNTALL_DEV_NEEDS_ENCRYPTION) {
Paul Lawrence1f992182016-04-18 15:37:31 -0700462 ActionManager::GetInstance().QueueEventTrigger("encrypt");
Wei Wangd61a7e22016-08-23 11:58:09 -0700463 } else if (code == FS_MGR_MNTALL_DEV_MIGHT_BE_ENCRYPTED) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700464 property_set("ro.crypto.state", "encrypted");
Paul Lawrence806d10b2015-04-28 22:07:10 +0000465 property_set("ro.crypto.type", "block");
Paul Lawrence1f992182016-04-18 15:37:31 -0700466 ActionManager::GetInstance().QueueEventTrigger("defaultcrypto");
Wei Wangd61a7e22016-08-23 11:58:09 -0700467 } else if (code == FS_MGR_MNTALL_DEV_NOT_ENCRYPTED) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700468 property_set("ro.crypto.state", "unencrypted");
Paul Lawrence1098aac2016-03-04 15:52:33 -0800469 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Wei Wangd61a7e22016-08-23 11:58:09 -0700470 } else if (code == FS_MGR_MNTALL_DEV_NOT_ENCRYPTABLE) {
Paul Lawrence1098aac2016-03-04 15:52:33 -0800471 property_set("ro.crypto.state", "unsupported");
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700472 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Wei Wangd61a7e22016-08-23 11:58:09 -0700473 } else if (code == FS_MGR_MNTALL_DEV_NEEDS_RECOVERY) {
JP Abgrallcee20682014-07-02 14:26:54 -0700474 /* Setup a wipe via recovery, and reboot into recovery */
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700475 PLOG(ERROR) << "fs_mgr_mount_all suggested recovery, so wiping data via recovery.";
Paul Crowley0b8b2302016-12-19 13:03:47 -0800476 const std::vector<std::string> options = {"--wipe_data", "--reason=fs_mgr_mount_all" };
477 ret = reboot_into_recovery(options);
JP Abgrallcee20682014-07-02 14:26:54 -0700478 /* If reboot worked, there is no return. */
Wei Wangd61a7e22016-08-23 11:58:09 -0700479 } else if (code == FS_MGR_MNTALL_DEV_FILE_ENCRYPTED) {
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000480 if (e4crypt_install_keyring()) {
481 return -1;
482 }
483 property_set("ro.crypto.state", "encrypted");
Paul Lawrence806d10b2015-04-28 22:07:10 +0000484 property_set("ro.crypto.type", "file");
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000485
486 // Although encrypted, we have device key, so we do not need to
487 // do anything different from the nonencrypted case.
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700488 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Wei Wangd61a7e22016-08-23 11:58:09 -0700489 } else if (code > 0) {
490 PLOG(ERROR) << "fs_mgr_mount_all returned unexpected error " << code;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700491 }
JP Abgrallf22b7452014-07-02 13:16:04 -0700492 /* else ... < 0: error */
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700493
494 return ret;
495}
496
Wei Wangd61a7e22016-08-23 11:58:09 -0700497/* mount_all <fstab> [ <path> ]* [--<options>]*
498 *
499 * This function might request a reboot, in which case it will
500 * not return.
501 */
502static int do_mount_all(const std::vector<std::string>& args) {
503 std::size_t na = 0;
504 bool import_rc = true;
505 bool queue_event = true;
506 int mount_mode = MOUNT_MODE_DEFAULT;
507 const char* fstabfile = args[1].c_str();
508 std::size_t path_arg_end = args.size();
Keun-young Park69fae7b2017-03-03 18:57:09 -0800509 const char* prop_post_fix = "default";
Wei Wangd61a7e22016-08-23 11:58:09 -0700510
511 for (na = args.size() - 1; na > 1; --na) {
512 if (args[na] == "--early") {
Wei Wangd67a4ab2016-11-16 12:08:30 -0800513 path_arg_end = na;
514 queue_event = false;
515 mount_mode = MOUNT_MODE_EARLY;
Keun-young Park69fae7b2017-03-03 18:57:09 -0800516 prop_post_fix = "early";
Wei Wangd61a7e22016-08-23 11:58:09 -0700517 } else if (args[na] == "--late") {
518 path_arg_end = na;
519 import_rc = false;
520 mount_mode = MOUNT_MODE_LATE;
Keun-young Park69fae7b2017-03-03 18:57:09 -0800521 prop_post_fix = "late";
Wei Wangd61a7e22016-08-23 11:58:09 -0700522 }
523 }
524
Keun-young Park69fae7b2017-03-03 18:57:09 -0800525 std::string prop_name = android::base::StringPrintf("ro.boottime.init.mount_all.%s",
526 prop_post_fix);
527 Timer t;
Wei Wangd61a7e22016-08-23 11:58:09 -0700528 int ret = mount_fstab(fstabfile, mount_mode);
Keun-young Park69fae7b2017-03-03 18:57:09 -0800529 property_set(prop_name.c_str(), std::to_string(t.duration_ms()).c_str());
Wei Wangd61a7e22016-08-23 11:58:09 -0700530
531 if (import_rc) {
532 /* Paths of .rc files are specified at the 2nd argument and beyond */
533 import_late(args, 2, path_arg_end);
534 }
535
536 if (queue_event) {
537 /* queue_fs_event will queue event based on mount_fstab return code
538 * and return processed return code*/
539 ret = queue_fs_event(ret);
540 }
541
542 return ret;
543}
544
Tom Cherryb7349902015-08-26 11:43:36 -0700545static int do_swapon_all(const std::vector<std::string>& args) {
Ken Sumralla76baaa2013-07-09 18:42:09 -0700546 struct fstab *fstab;
547 int ret;
548
Tom Cherry96f67312015-07-30 13:52:55 -0700549 fstab = fs_mgr_read_fstab(args[1].c_str());
Ken Sumralla76baaa2013-07-09 18:42:09 -0700550 ret = fs_mgr_swapon_all(fstab);
551 fs_mgr_free_fstab(fstab);
552
553 return ret;
554}
555
Tom Cherryb7349902015-08-26 11:43:36 -0700556static int do_setprop(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700557 const char* name = args[1].c_str();
558 const char* value = args[2].c_str();
Yabin Cui00ede7d2015-07-24 13:26:04 -0700559 property_set(name, value);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700560 return 0;
561}
562
Tom Cherryb7349902015-08-26 11:43:36 -0700563static int do_setrlimit(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700564 struct rlimit limit;
565 int resource;
Elliott Hughesda46b392016-10-11 17:09:00 -0700566 if (android::base::ParseInt(args[1], &resource) &&
567 android::base::ParseUint(args[2], &limit.rlim_cur) &&
568 android::base::ParseUint(args[3], &limit.rlim_max)) {
569 return setrlimit(resource, &limit);
570 }
571 LOG(WARNING) << "ignoring setrlimit " << args[1] << " " << args[2] << " " << args[3];
572 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700573}
574
Tom Cherryb7349902015-08-26 11:43:36 -0700575static int do_start(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700576 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
577 if (!svc) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700578 LOG(ERROR) << "do_start: Service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700579 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700580 }
Tom Cherrybac32992015-07-31 12:45:25 -0700581 if (!svc->Start())
582 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700583 return 0;
584}
585
Tom Cherryb7349902015-08-26 11:43:36 -0700586static int do_stop(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700587 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
588 if (!svc) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700589 LOG(ERROR) << "do_stop: Service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700590 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700591 }
Tom Cherrybac32992015-07-31 12:45:25 -0700592 svc->Stop();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700593 return 0;
594}
595
Tom Cherryb7349902015-08-26 11:43:36 -0700596static int do_restart(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700597 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
598 if (!svc) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700599 LOG(ERROR) << "do_restart: Service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700600 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700601 }
Tom Cherrybac32992015-07-31 12:45:25 -0700602 svc->Restart();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700603 return 0;
604}
605
Tom Cherryb7349902015-08-26 11:43:36 -0700606static int do_powerctl(const std::vector<std::string>& args) {
Keun-young Park8d01f632017-03-13 11:54:47 -0700607 const std::string& command = args[1];
Yusuke Satof93d4292015-07-21 15:50:59 -0700608 unsigned int cmd = 0;
Keun-young Park8d01f632017-03-13 11:54:47 -0700609 std::vector<std::string> cmd_params = android::base::Split(command, ",");
610 std::string reason_string = cmd_params[0];
611 std::string reboot_target = "";
612 bool runFsck = false;
613 bool commandInvalid = false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700614
Keun-young Park8d01f632017-03-13 11:54:47 -0700615 if (cmd_params.size() > 2) {
616 commandInvalid = true;
617 } else if (cmd_params[0] == "shutdown") {
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700618 cmd = ANDROID_RB_POWEROFF;
Keun-young Park8d01f632017-03-13 11:54:47 -0700619 if (cmd_params.size() == 2 && cmd_params[1] == "userrequested") {
620 // The shutdown reason is PowerManager.SHUTDOWN_USER_REQUESTED.
621 // Run fsck once the file system is remounted in read-only mode.
622 runFsck = true;
623 reason_string = cmd_params[1];
624 }
625 } else if (cmd_params[0] == "reboot") {
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700626 cmd = ANDROID_RB_RESTART2;
Keun-young Park8d01f632017-03-13 11:54:47 -0700627 if (cmd_params.size() == 2) {
628 reboot_target = cmd_params[1];
629 // When rebooting to the bootloader notify the bootloader writing
630 // also the BCB.
631 if (reboot_target == "bootloader") {
632 std::string err;
633 if (!write_reboot_bootloader(&err)) {
634 LOG(ERROR) << "reboot-bootloader: Error writing "
635 "bootloader_message: "
636 << err;
637 }
638 }
639 }
640 } else if (command == "thermal-shutdown") { // no additional parameter allowed
Todd Poynor16663a22017-01-31 14:15:20 -0800641 cmd = ANDROID_RB_THERMOFF;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700642 } else {
Keun-young Park8d01f632017-03-13 11:54:47 -0700643 commandInvalid = true;
644 }
645 if (commandInvalid) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700646 LOG(ERROR) << "powerctl: unrecognized command '" << command << "'";
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700647 return -EINVAL;
648 }
649
Keun-young Park8d01f632017-03-13 11:54:47 -0700650 DoReboot(cmd, reason_string, reboot_target, runFsck);
651 return 0;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700652}
653
Tom Cherryb7349902015-08-26 11:43:36 -0700654static int do_trigger(const std::vector<std::string>& args) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700655 ActionManager::GetInstance().QueueEventTrigger(args[1]);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700656 return 0;
657}
658
Tom Cherryb7349902015-08-26 11:43:36 -0700659static int do_symlink(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700660 return symlink(args[1].c_str(), args[2].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700661}
662
Tom Cherryb7349902015-08-26 11:43:36 -0700663static int do_rm(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700664 return unlink(args[1].c_str());
Ken Sumrall203bad52011-01-18 17:37:41 -0800665}
666
Tom Cherryb7349902015-08-26 11:43:36 -0700667static int do_rmdir(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700668 return rmdir(args[1].c_str());
Ken Sumrall203bad52011-01-18 17:37:41 -0800669}
670
Tom Cherryb7349902015-08-26 11:43:36 -0700671static int do_sysclktz(const std::vector<std::string>& args) {
Elliott Hughesda46b392016-10-11 17:09:00 -0700672 struct timezone tz = {};
673 if (android::base::ParseInt(args[1], &tz.tz_minuteswest) && settimeofday(NULL, &tz) != -1) {
674 return 0;
675 }
676 return -1;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800677}
678
Tom Cherryb7349902015-08-26 11:43:36 -0700679static int do_verity_load_state(const std::vector<std::string>& args) {
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700680 int mode = -1;
681 int rc = fs_mgr_load_verity_state(&mode);
Sami Tolvanen90f52df2015-12-02 14:23:09 +0000682 if (rc == 0 && mode != VERITY_MODE_DEFAULT) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700683 ActionManager::GetInstance().QueueEventTrigger("verity-logging");
Sami Tolvanen8ff01902015-02-16 11:03:34 +0000684 }
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700685 return rc;
Sami Tolvanen8ff01902015-02-16 11:03:34 +0000686}
687
Tom Cherryb7349902015-08-26 11:43:36 -0700688static void verity_update_property(fstab_rec *fstab, const char *mount_point,
689 int mode, int status) {
Sami Tolvanen45474232015-03-30 11:38:38 +0100690 property_set(android::base::StringPrintf("partition.%s.verified", mount_point).c_str(),
691 android::base::StringPrintf("%d", mode).c_str());
Sami Tolvanenacbf9be2015-03-19 10:00:34 +0000692}
693
Tom Cherryb7349902015-08-26 11:43:36 -0700694static int do_verity_update_state(const std::vector<std::string>& args) {
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700695 return fs_mgr_update_verity_state(verity_update_property);
Sami Tolvanenacbf9be2015-03-19 10:00:34 +0000696}
697
Tom Cherryb7349902015-08-26 11:43:36 -0700698static int do_write(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700699 const char* path = args[1].c_str();
700 const char* value = args[2].c_str();
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500701 return write_file(path, value) ? 0 : 1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700702}
703
Tom Cherryb7349902015-08-26 11:43:36 -0700704static int do_copy(const std::vector<std::string>& args) {
Wonsik Kim281531b2017-03-30 16:38:22 -0700705 char* buffer = NULL;
706 int rc = 0;
707 int fd1 = -1, fd2 = -1;
708 struct stat info;
709 int brtw, brtr;
710 char* p;
711
712 if (stat(args[1].c_str(), &info) < 0) return -1;
713
714 if ((fd1 = open(args[1].c_str(), O_RDONLY | O_CLOEXEC)) < 0) goto out_err;
715
716 if ((fd2 = open(args[2].c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, 0660)) < 0)
717 goto out_err;
718
719 if (!(buffer = (char*)malloc(info.st_size))) goto out_err;
720
721 p = buffer;
722 brtr = info.st_size;
723 while (brtr) {
724 rc = read(fd1, p, brtr);
725 if (rc < 0) goto out_err;
726 if (rc == 0) break;
727 p += rc;
728 brtr -= rc;
San Mehat7c44fe52009-08-26 16:39:25 -0700729 }
Wonsik Kim281531b2017-03-30 16:38:22 -0700730
731 p = buffer;
732 brtw = info.st_size;
733 while (brtw) {
734 rc = write(fd2, p, brtw);
735 if (rc < 0) goto out_err;
736 if (rc == 0) break;
737 p += rc;
738 brtw -= rc;
739 }
740
741 rc = 0;
742 goto out;
743out_err:
744 rc = -1;
745out:
746 if (buffer) free(buffer);
747 if (fd1 >= 0) close(fd1);
748 if (fd2 >= 0) close(fd2);
749 return rc;
San Mehat7c44fe52009-08-26 16:39:25 -0700750}
751
Tom Cherryb7349902015-08-26 11:43:36 -0700752static int do_chown(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700753 /* GID is optional. */
Tom Cherry96f67312015-07-30 13:52:55 -0700754 if (args.size() == 3) {
755 if (lchown(args[2].c_str(), decode_uid(args[1].c_str()), -1) == -1)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700756 return -errno;
Tom Cherry96f67312015-07-30 13:52:55 -0700757 } else if (args.size() == 4) {
758 if (lchown(args[3].c_str(), decode_uid(args[1].c_str()),
759 decode_uid(args[2].c_str())) == -1)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700760 return -errno;
761 } else {
762 return -1;
763 }
764 return 0;
765}
766
767static mode_t get_mode(const char *s) {
768 mode_t mode = 0;
769 while (*s) {
770 if (*s >= '0' && *s <= '7') {
771 mode = (mode<<3) | (*s-'0');
772 } else {
773 return -1;
774 }
775 s++;
776 }
777 return mode;
778}
779
Tom Cherryb7349902015-08-26 11:43:36 -0700780static int do_chmod(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700781 mode_t mode = get_mode(args[1].c_str());
782 if (fchmodat(AT_FDCWD, args[2].c_str(), mode, AT_SYMLINK_NOFOLLOW) < 0) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700783 return -errno;
784 }
785 return 0;
786}
787
Tom Cherryb7349902015-08-26 11:43:36 -0700788static int do_restorecon(const std::vector<std::string>& args) {
Stephen Smalley726e8f72013-10-09 16:02:09 -0400789 int ret = 0;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500790
Paul Lawrencea8d84342016-11-14 15:40:18 -0800791 struct flag_type {const char* name; int value;};
792 static const flag_type flags[] = {
793 {"--recursive", SELINUX_ANDROID_RESTORECON_RECURSE},
794 {"--skip-ce", SELINUX_ANDROID_RESTORECON_SKIPCE},
795 {"--cross-filesystems", SELINUX_ANDROID_RESTORECON_CROSS_FILESYSTEMS},
796 {0, 0}
797 };
798
799 int flag = 0;
800
801 bool in_flags = true;
802 for (size_t i = 1; i < args.size(); ++i) {
803 if (android::base::StartsWith(args[i], "--")) {
804 if (!in_flags) {
805 LOG(ERROR) << "restorecon - flags must precede paths";
806 return -1;
807 }
808 bool found = false;
809 for (size_t j = 0; flags[j].name; ++j) {
810 if (args[i] == flags[j].name) {
811 flag |= flags[j].value;
812 found = true;
813 break;
814 }
815 }
816 if (!found) {
817 LOG(ERROR) << "restorecon - bad flag " << args[i];
818 return -1;
819 }
820 } else {
821 in_flags = false;
822 if (restorecon(args[i].c_str(), flag) < 0) {
823 ret = -errno;
824 }
825 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500826 }
Stephen Smalley726e8f72013-10-09 16:02:09 -0400827 return ret;
828}
829
Tom Cherryb7349902015-08-26 11:43:36 -0700830static int do_restorecon_recursive(const std::vector<std::string>& args) {
Paul Lawrencea8d84342016-11-14 15:40:18 -0800831 std::vector<std::string> non_const_args(args);
832 non_const_args.insert(std::next(non_const_args.begin()), "--recursive");
833 return do_restorecon(non_const_args);
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500834}
835
Tom Cherryb7349902015-08-26 11:43:36 -0700836static int do_loglevel(const std::vector<std::string>& args) {
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700837 // TODO: support names instead/as well?
Elliott Hughesda46b392016-10-11 17:09:00 -0700838 int log_level = -1;
839 android::base::ParseInt(args[1], &log_level);
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700840 android::base::LogSeverity severity;
841 switch (log_level) {
842 case 7: severity = android::base::DEBUG; break;
843 case 6: severity = android::base::INFO; break;
844 case 5:
845 case 4: severity = android::base::WARNING; break;
846 case 3: severity = android::base::ERROR; break;
847 case 2:
848 case 1:
849 case 0: severity = android::base::FATAL; break;
850 default:
851 LOG(ERROR) << "loglevel: invalid log level " << log_level;
852 return -EINVAL;
Riley Andrews1bbef882014-06-26 13:55:03 -0700853 }
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700854 android::base::SetMinimumLogSeverity(severity);
Riley Andrews1bbef882014-06-26 13:55:03 -0700855 return 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700856}
857
Tom Cherryaf20a7c2015-09-01 15:05:34 -0700858static int do_load_persist_props(const std::vector<std::string>& args) {
Tom Cherryb7349902015-08-26 11:43:36 -0700859 load_persist_props();
860 return 0;
Ken Sumrallc5c51032011-03-08 17:01:29 -0800861}
862
Tom Cherryaf20a7c2015-09-01 15:05:34 -0700863static int do_load_system_props(const std::vector<std::string>& args) {
864 load_system_props();
Tom Cherryb7349902015-08-26 11:43:36 -0700865 return 0;
Riley Andrewse4b7b292014-06-16 15:06:21 -0700866}
867
Tom Cherryb7349902015-08-26 11:43:36 -0700868static int do_wait(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700869 if (args.size() == 2) {
Elliott Hughes9605a942016-11-10 17:43:47 -0800870 return wait_for_file(args[1].c_str(), kCommandRetryTimeout);
Tom Cherry96f67312015-07-30 13:52:55 -0700871 } else if (args.size() == 3) {
Elliott Hughesda46b392016-10-11 17:09:00 -0700872 int timeout;
873 if (android::base::ParseInt(args[2], &timeout)) {
Elliott Hughes9605a942016-11-10 17:43:47 -0800874 return wait_for_file(args[1].c_str(), std::chrono::seconds(timeout));
Elliott Hughesda46b392016-10-11 17:09:00 -0700875 }
876 }
877 return -1;
Colin Crosscd0f1732010-04-19 17:10:24 -0700878}
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000879
Wei Wang132ac312017-01-25 16:27:03 -0800880static int do_wait_for_prop(const std::vector<std::string>& args) {
881 const char* name = args[1].c_str();
882 const char* value = args[2].c_str();
883 size_t value_len = strlen(value);
884
885 if (!is_legal_property_name(name)) {
886 LOG(ERROR) << "do_wait_for_prop(\"" << name << "\", \"" << value
887 << "\") failed: bad name";
888 return -1;
889 }
890 if (value_len >= PROP_VALUE_MAX) {
891 LOG(ERROR) << "do_wait_for_prop(\"" << name << "\", \"" << value
892 << "\") failed: value too long";
893 return -1;
894 }
Wei Wang2d0fdaa2017-02-02 10:52:39 -0800895 if (!start_waiting_for_property(name, value)) {
Wei Wang132ac312017-01-25 16:27:03 -0800896 LOG(ERROR) << "do_wait_for_prop(\"" << name << "\", \"" << value
897 << "\") failed: init already in waiting";
898 return -1;
899 }
900 return 0;
901}
902
Paul Lawrence806d10b2015-04-28 22:07:10 +0000903/*
904 * Callback to make a directory from the ext4 code
905 */
Tom Cherryb7349902015-08-26 11:43:36 -0700906static int do_installkeys_ensure_dir_exists(const char* dir) {
Paul Lawrence806d10b2015-04-28 22:07:10 +0000907 if (make_dir(dir, 0700) && errno != EEXIST) {
908 return -1;
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000909 }
910
Paul Lawrence806d10b2015-04-28 22:07:10 +0000911 return 0;
912}
913
Paul Crowley749af8c2015-05-28 17:35:06 +0100914static bool is_file_crypto() {
Tom Cherrye2490972017-03-28 16:40:41 -0700915 return android::base::GetProperty("ro.crypto.type", "") == "file";
Paul Crowley749af8c2015-05-28 17:35:06 +0100916}
917
Tom Cherryb7349902015-08-26 11:43:36 -0700918static int do_installkey(const std::vector<std::string>& args) {
Paul Crowley749af8c2015-05-28 17:35:06 +0100919 if (!is_file_crypto()) {
Paul Lawrence806d10b2015-04-28 22:07:10 +0000920 return 0;
921 }
Janis Danisevskis650d22b2017-03-29 14:50:01 -0700922 auto unencrypted_dir = args[1] + e4crypt_unencrypted_folder;
923 if (do_installkeys_ensure_dir_exists(unencrypted_dir.c_str())) {
924 PLOG(ERROR) << "Failed to create " << unencrypted_dir;
925 return -1;
926 }
927 std::vector<std::string> exec_args = {"exec", "/system/bin/vdc", "--wait", "cryptfs",
928 "enablefilecrypto"};
929 return do_exec(exec_args);
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000930}
Paul Crowley749af8c2015-05-28 17:35:06 +0100931
Paul Crowley59497452016-02-01 16:37:13 +0000932static int do_init_user0(const std::vector<std::string>& args) {
Paul Crowley59497452016-02-01 16:37:13 +0000933 return e4crypt_do_init_user0();
934}
935
Tom Cherryb7349902015-08-26 11:43:36 -0700936BuiltinFunctionMap::Map& BuiltinFunctionMap::map() const {
937 constexpr std::size_t kMax = std::numeric_limits<std::size_t>::max();
Tom Cherry2d804672017-03-27 16:27:30 -0700938 // clang-format off
Tom Cherryb7349902015-08-26 11:43:36 -0700939 static const Map builtin_functions = {
Elliott Hughesa3641af2016-11-10 17:43:47 -0800940 {"bootchart", {1, 1, do_bootchart}},
Tom Cherryb7349902015-08-26 11:43:36 -0700941 {"chmod", {2, 2, do_chmod}},
942 {"chown", {2, 3, do_chown}},
943 {"class_reset", {1, 1, do_class_reset}},
Steven Moreland2b63d542017-03-10 14:04:37 -0800944 {"class_restart", {1, 1, do_class_restart}},
Tom Cherryb7349902015-08-26 11:43:36 -0700945 {"class_start", {1, 1, do_class_start}},
946 {"class_stop", {1, 1, do_class_stop}},
947 {"copy", {2, 2, do_copy}},
948 {"domainname", {1, 1, do_domainname}},
949 {"enable", {1, 1, do_enable}},
950 {"exec", {1, kMax, do_exec}},
Tom Cherry2d804672017-03-27 16:27:30 -0700951 {"exec_start", {1, 1, do_exec_start}},
Tom Cherryb7349902015-08-26 11:43:36 -0700952 {"export", {2, 2, do_export}},
953 {"hostname", {1, 1, do_hostname}},
954 {"ifup", {1, 1, do_ifup}},
Paul Crowley59497452016-02-01 16:37:13 +0000955 {"init_user0", {0, 0, do_init_user0}},
Tom Cherryb7349902015-08-26 11:43:36 -0700956 {"insmod", {1, kMax, do_insmod}},
957 {"installkey", {1, 1, do_installkey}},
Tom Cherryb7349902015-08-26 11:43:36 -0700958 {"load_persist_props", {0, 0, do_load_persist_props}},
Tom Cherryaf20a7c2015-09-01 15:05:34 -0700959 {"load_system_props", {0, 0, do_load_system_props}},
Tom Cherryb7349902015-08-26 11:43:36 -0700960 {"loglevel", {1, 1, do_loglevel}},
961 {"mkdir", {1, 4, do_mkdir}},
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800962 {"mount_all", {1, kMax, do_mount_all}},
Tom Cherryb7349902015-08-26 11:43:36 -0700963 {"mount", {3, kMax, do_mount}},
Alex Light68ab20f2016-06-23 11:11:39 -0700964 {"umount", {1, 1, do_umount}},
Tom Cherryb7349902015-08-26 11:43:36 -0700965 {"powerctl", {1, 1, do_powerctl}},
966 {"restart", {1, 1, do_restart}},
967 {"restorecon", {1, kMax, do_restorecon}},
968 {"restorecon_recursive", {1, kMax, do_restorecon_recursive}},
969 {"rm", {1, 1, do_rm}},
970 {"rmdir", {1, 1, do_rmdir}},
971 {"setprop", {2, 2, do_setprop}},
972 {"setrlimit", {3, 3, do_setrlimit}},
973 {"start", {1, 1, do_start}},
974 {"stop", {1, 1, do_stop}},
975 {"swapon_all", {1, 1, do_swapon_all}},
976 {"symlink", {2, 2, do_symlink}},
977 {"sysclktz", {1, 1, do_sysclktz}},
978 {"trigger", {1, 1, do_trigger}},
979 {"verity_load_state", {0, 0, do_verity_load_state}},
980 {"verity_update_state", {0, 0, do_verity_update_state}},
981 {"wait", {1, 2, do_wait}},
Wei Wang132ac312017-01-25 16:27:03 -0800982 {"wait_for_prop", {2, 2, do_wait_for_prop}},
Tom Cherryb7349902015-08-26 11:43:36 -0700983 {"write", {2, 2, do_write}},
984 };
Tom Cherry2d804672017-03-27 16:27:30 -0700985 // clang-format on
Tom Cherryb7349902015-08-26 11:43:36 -0700986 return builtin_functions;
987}