blob: 32e9ef64201fe3b411ef32a99edb8e411f50e937 [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
Elliott Hughesdb3f2672015-03-20 09:45:18 -070048#include <fs_mgr.h>
Mark Salyzyna98cc9c2016-04-05 13:43:40 -070049#include <android-base/file.h>
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -080050#include <android-base/parseint.h>
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +080051#include <android-base/strings.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080052#include <android-base/stringprintf.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/partition_utils.h>
55#include <cutils/android_reboot.h>
Tao Bao6d881d62016-10-05 17:53:30 -070056#include <ext4_utils/ext4_crypt.h>
57#include <ext4_utils/ext4_crypt_init_extensions.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
Tom Cherryb7349902015-08-26 11:43:36 -0700151static int do_domainname(const std::vector<std::string>& args) {
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500152 return write_file("/proc/sys/kernel/domainname", args[1].c_str()) ? 0 : 1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700153}
154
Tom Cherryb7349902015-08-26 11:43:36 -0700155static int do_enable(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700156 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
157 if (!svc) {
JP Abgrall3beec7e2014-05-02 21:14:29 -0700158 return -1;
159 }
Tom Cherrybac32992015-07-31 12:45:25 -0700160 return svc->Enable();
JP Abgrall3beec7e2014-05-02 21:14:29 -0700161}
162
Tom Cherryb7349902015-08-26 11:43:36 -0700163static int do_exec(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700164 Service* svc = ServiceManager::GetInstance().MakeExecOneshotService(args);
165 if (!svc) {
Elliott Hughes8d82ea02015-02-06 20:15:18 -0800166 return -1;
167 }
Wei Wang2d0fdaa2017-02-02 10:52:39 -0800168 if (!start_waiting_for_exec()) {
Tom Cherrybac32992015-07-31 12:45:25 -0700169 return -1;
170 }
Wei Wang2d0fdaa2017-02-02 10:52:39 -0800171 if (!svc->Start()) {
172 stop_waiting_for_exec();
173 ServiceManager::GetInstance().RemoveService(*svc);
174 return -1;
175 }
Elliott Hughes8d82ea02015-02-06 20:15:18 -0800176 return 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700177}
178
Tom Cherryb7349902015-08-26 11:43:36 -0700179static int do_export(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700180 return add_environment(args[1].c_str(), args[2].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700181}
182
Tom Cherryb7349902015-08-26 11:43:36 -0700183static int do_hostname(const std::vector<std::string>& args) {
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500184 return write_file("/proc/sys/kernel/hostname", args[1].c_str()) ? 0 : 1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700185}
186
Tom Cherryb7349902015-08-26 11:43:36 -0700187static int do_ifup(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700188 return __ifupdown(args[1].c_str(), 1);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700189}
190
Tom Cherryb7349902015-08-26 11:43:36 -0700191static int do_insmod(const std::vector<std::string>& args) {
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800192 int flags = 0;
193 auto it = args.begin() + 1;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800194
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800195 if (!(*it).compare("-f")) {
196 flags = MODULE_INIT_IGNORE_VERMAGIC | MODULE_INIT_IGNORE_MODVERSIONS;
197 it++;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800198 }
199
Hung-ying Tyanbfa6d752016-05-17 18:49:10 +0800200 std::string filename = *it++;
201 std::string options = android::base::Join(std::vector<std::string>(it, args.end()), ' ');
202 return insmod(filename.c_str(), options.c_str(), flags);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800203}
204
Tom Cherryb7349902015-08-26 11:43:36 -0700205static int do_mkdir(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700206 mode_t mode = 0755;
Chia-chi Yeh27164dc2011-07-08 12:57:36 -0700207 int ret;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700208
209 /* mkdir <path> [mode] [owner] [group] */
210
Tom Cherry96f67312015-07-30 13:52:55 -0700211 if (args.size() >= 3) {
Elliott Hughesda46b392016-10-11 17:09:00 -0700212 mode = std::strtoul(args[2].c_str(), 0, 8);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700213 }
214
Tom Cherry96f67312015-07-30 13:52:55 -0700215 ret = make_dir(args[1].c_str(), mode);
Chia-chi Yeh27164dc2011-07-08 12:57:36 -0700216 /* chmod in case the directory already exists */
217 if (ret == -1 && errno == EEXIST) {
Tom Cherry96f67312015-07-30 13:52:55 -0700218 ret = fchmodat(AT_FDCWD, args[1].c_str(), mode, AT_SYMLINK_NOFOLLOW);
Chia-chi Yeh27164dc2011-07-08 12:57:36 -0700219 }
220 if (ret == -1) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700221 return -errno;
222 }
223
Tom Cherry96f67312015-07-30 13:52:55 -0700224 if (args.size() >= 4) {
225 uid_t uid = decode_uid(args[3].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700226 gid_t gid = -1;
227
Tom Cherry96f67312015-07-30 13:52:55 -0700228 if (args.size() == 5) {
229 gid = decode_uid(args[4].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700230 }
231
Tom Cherry96f67312015-07-30 13:52:55 -0700232 if (lchown(args[1].c_str(), uid, gid) == -1) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700233 return -errno;
234 }
Benoit Goby5c8574b2012-08-14 15:43:46 -0700235
236 /* chown may have cleared S_ISUID and S_ISGID, chmod again */
237 if (mode & (S_ISUID | S_ISGID)) {
Tom Cherry96f67312015-07-30 13:52:55 -0700238 ret = fchmodat(AT_FDCWD, args[1].c_str(), mode, AT_SYMLINK_NOFOLLOW);
Benoit Goby5c8574b2012-08-14 15:43:46 -0700239 if (ret == -1) {
240 return -errno;
241 }
242 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700243 }
244
Paul Crowleyaf8be582016-05-10 08:52:06 -0700245 if (e4crypt_is_native()) {
246 if (e4crypt_set_directory_policy(args[1].c_str())) {
Paul Crowley0b8b2302016-12-19 13:03:47 -0800247 const std::vector<std::string> options = {
248 "--prompt_and_wipe_data",
249 "--reason=set_policy_failed:"s + args[1]};
250 reboot_into_recovery(options);
Paul Crowleyaf8be582016-05-10 08:52:06 -0700251 return -1;
252 }
253 }
254 return 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700255}
256
Alex Light68ab20f2016-06-23 11:11:39 -0700257/* umount <path> */
258static int do_umount(const std::vector<std::string>& args) {
259 return umount(args[1].c_str());
260}
261
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700262static struct {
263 const char *name;
264 unsigned flag;
265} mount_flags[] = {
266 { "noatime", MS_NOATIME },
Lars Svenssonb6ee25e2011-07-14 13:39:09 +0200267 { "noexec", MS_NOEXEC },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700268 { "nosuid", MS_NOSUID },
269 { "nodev", MS_NODEV },
270 { "nodiratime", MS_NODIRATIME },
271 { "ro", MS_RDONLY },
272 { "rw", 0 },
273 { "remount", MS_REMOUNT },
Jeff Sharkeye50ac5f2012-08-14 11:34:34 -0700274 { "bind", MS_BIND },
275 { "rec", MS_REC },
276 { "unbindable", MS_UNBINDABLE },
277 { "private", MS_PRIVATE },
278 { "slave", MS_SLAVE },
279 { "shared", MS_SHARED },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700280 { "defaults", 0 },
281 { 0, 0 },
282};
283
Ken Sumrall752923c2010-12-03 16:33:31 -0800284#define DATA_MNT_POINT "/data"
285
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700286/* mount <type> <device> <path> <flags ...> <options> */
Tom Cherryb7349902015-08-26 11:43:36 -0700287static int do_mount(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700288 char tmp[64];
Tom Cherry96f67312015-07-30 13:52:55 -0700289 const char *source, *target, *system;
290 const char *options = NULL;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700291 unsigned flags = 0;
Tom Cherry96f67312015-07-30 13:52:55 -0700292 std::size_t na = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700293 int n, i;
Colin Crosscd0f1732010-04-19 17:10:24 -0700294 int wait = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700295
Tom Cherry96f67312015-07-30 13:52:55 -0700296 for (na = 4; na < args.size(); na++) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700297 for (i = 0; mount_flags[i].name; i++) {
Tom Cherry96f67312015-07-30 13:52:55 -0700298 if (!args[na].compare(mount_flags[i].name)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700299 flags |= mount_flags[i].flag;
300 break;
301 }
302 }
303
Colin Crosscd0f1732010-04-19 17:10:24 -0700304 if (!mount_flags[i].name) {
Tom Cherry96f67312015-07-30 13:52:55 -0700305 if (!args[na].compare("wait"))
Colin Crosscd0f1732010-04-19 17:10:24 -0700306 wait = 1;
307 /* if our last argument isn't a flag, wolf it up as an option string */
Tom Cherry96f67312015-07-30 13:52:55 -0700308 else if (na + 1 == args.size())
309 options = args[na].c_str();
Colin Crosscd0f1732010-04-19 17:10:24 -0700310 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700311 }
312
Tom Cherry96f67312015-07-30 13:52:55 -0700313 system = args[1].c_str();
314 source = args[2].c_str();
315 target = args[3].c_str();
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000316
Elliott Hughes31951162016-06-24 15:15:03 -0700317 if (!strncmp(source, "loop@", 5)) {
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000318 int mode, loop, fd;
319 struct loop_info info;
320
321 mode = (flags & MS_RDONLY) ? O_RDONLY : O_RDWR;
Nick Kralevich45a884f2015-02-02 14:37:22 -0800322 fd = open(source + 5, mode | O_CLOEXEC);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000323 if (fd < 0) {
324 return -1;
325 }
326
327 for (n = 0; ; n++) {
Yabin Cuie2d63af2015-02-17 19:27:51 -0800328 snprintf(tmp, sizeof(tmp), "/dev/block/loop%d", n);
Nick Kralevich45a884f2015-02-02 14:37:22 -0800329 loop = open(tmp, mode | O_CLOEXEC);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000330 if (loop < 0) {
Tomasz Kondelbfdcc402014-02-06 08:57:27 +0100331 close(fd);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000332 return -1;
333 }
334
335 /* if it is a blank loop device */
336 if (ioctl(loop, LOOP_GET_STATUS, &info) < 0 && errno == ENXIO) {
337 /* if it becomes our loop device */
338 if (ioctl(loop, LOOP_SET_FD, fd) >= 0) {
339 close(fd);
340
341 if (mount(tmp, target, system, flags, options) < 0) {
342 ioctl(loop, LOOP_CLR_FD, 0);
343 close(loop);
344 return -1;
345 }
346
347 close(loop);
Ken Sumralldd4d7862011-02-17 18:09:47 -0800348 goto exit_success;
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000349 }
350 }
351
352 close(loop);
353 }
354
355 close(fd);
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700356 LOG(ERROR) << "out of loopback devices";
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000357 return -1;
358 } else {
Colin Crosscd0f1732010-04-19 17:10:24 -0700359 if (wait)
Elliott Hughes9605a942016-11-10 17:43:47 -0800360 wait_for_file(source, kCommandRetryTimeout);
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000361 if (mount(source, target, system, flags, options) < 0) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700362 return -1;
Jay Freeman (saurik)e520d032008-11-20 03:37:30 +0000363 }
364
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700365 }
Ken Sumralldd4d7862011-02-17 18:09:47 -0800366
367exit_success:
Ken Sumralldd4d7862011-02-17 18:09:47 -0800368 return 0;
369
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700370}
371
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800372/* Imports .rc files from the specified paths. Default ones are applied if none is given.
373 *
374 * start_index: index of the first path in the args list
375 */
Wei Wangd61a7e22016-08-23 11:58:09 -0700376static void import_late(const std::vector<std::string>& args, size_t start_index, size_t end_index) {
Tom Cherryb7349902015-08-26 11:43:36 -0700377 Parser& parser = Parser::GetInstance();
Wei Wangd61a7e22016-08-23 11:58:09 -0700378 if (end_index <= start_index) {
Jaekyun Seok4ec72cc2017-02-22 20:37:57 +0900379 // Fallbacks for partitions on which early mount isn't enabled.
380 if (!parser.is_system_etc_init_loaded()) {
381 parser.ParseConfig("/system/etc/init");
382 parser.set_is_system_etc_init_loaded(true);
383 }
384 if (!parser.is_vendor_etc_init_loaded()) {
385 parser.ParseConfig("/vendor/etc/init");
386 parser.set_is_vendor_etc_init_loaded(true);
387 }
388 if (!parser.is_odm_etc_init_loaded()) {
389 parser.ParseConfig("/odm/etc/init");
390 parser.set_is_odm_etc_init_loaded(true);
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800391 }
392 } else {
Wei Wangd61a7e22016-08-23 11:58:09 -0700393 for (size_t i = start_index; i < end_index; ++i) {
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800394 parser.ParseConfig(args[i]);
395 }
Tom Cherryb8dd0272015-07-22 14:23:33 -0700396 }
Tom Cherryd8a72572017-03-13 12:24:49 -0700397
398 // Turning this on and letting the INFO logging be discarded adds 0.2s to
399 // Nexus 9 boot time, so it's disabled by default.
400 if (false) parser.DumpState();
Tom Cherryb8dd0272015-07-22 14:23:33 -0700401}
402
Wei Wangd61a7e22016-08-23 11:58:09 -0700403/* mount_fstab
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800404 *
Wei Wangd61a7e22016-08-23 11:58:09 -0700405 * Call fs_mgr_mount_all() to mount the given fstab
JP Abgrallcee20682014-07-02 14:26:54 -0700406 */
Wei Wangd61a7e22016-08-23 11:58:09 -0700407static int mount_fstab(const char* fstabfile, int mount_mode) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700408 int ret = -1;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700409
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700410 /*
411 * Call fs_mgr_mount_all() to mount all filesystems. We fork(2) and
412 * do the call in the child to provide protection to the main init
413 * process if anything goes wrong (crash or memory leak), and wait for
414 * the child to finish in the parent.
415 */
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700416 pid_t pid = fork();
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700417 if (pid > 0) {
418 /* Parent. Wait for the child to return */
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700419 int status;
Paul Lawrence40af0922014-09-16 14:31:23 -0700420 int wp_ret = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700421 if (wp_ret == -1) {
422 // Unexpected error code. We will continue anyway.
423 PLOG(WARNING) << "waitpid failed";
Paul Lawrence40af0922014-09-16 14:31:23 -0700424 }
425
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700426 if (WIFEXITED(status)) {
427 ret = WEXITSTATUS(status);
428 } else {
429 ret = -1;
430 }
431 } else if (pid == 0) {
432 /* child, call fs_mgr_mount_all() */
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700433
434 // So we can always see what fs_mgr_mount_all() does.
435 // Only needed if someone explicitly changes the default log level in their init.rc.
436 android::base::ScopedLogSeverity info(android::base::INFO);
437
438 struct fstab* fstab = fs_mgr_read_fstab(fstabfile);
Wei Wangd61a7e22016-08-23 11:58:09 -0700439 int child_ret = fs_mgr_mount_all(fstab, mount_mode);
Ken Sumrallab6b8522013-02-13 12:58:40 -0800440 fs_mgr_free_fstab(fstab);
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700441 if (child_ret == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700442 PLOG(ERROR) << "fs_mgr_mount_all returned an error";
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700443 }
JP Abgrallf22b7452014-07-02 13:16:04 -0700444 _exit(child_ret);
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700445 } else {
446 /* fork failed, return an error */
447 return -1;
448 }
Wei Wangd61a7e22016-08-23 11:58:09 -0700449 return ret;
450}
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700451
Wei Wangd61a7e22016-08-23 11:58:09 -0700452/* Queue event based on fs_mgr return code.
453 *
454 * code: return code of fs_mgr_mount_all
455 *
456 * This function might request a reboot, in which case it will
457 * not return.
458 *
459 * return code is processed based on input code
460 */
461static int queue_fs_event(int code) {
462 int ret = code;
463 if (code == FS_MGR_MNTALL_DEV_NEEDS_ENCRYPTION) {
Paul Lawrence1f992182016-04-18 15:37:31 -0700464 ActionManager::GetInstance().QueueEventTrigger("encrypt");
Wei Wangd61a7e22016-08-23 11:58:09 -0700465 } else if (code == FS_MGR_MNTALL_DEV_MIGHT_BE_ENCRYPTED) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700466 property_set("ro.crypto.state", "encrypted");
Paul Lawrence806d10b2015-04-28 22:07:10 +0000467 property_set("ro.crypto.type", "block");
Paul Lawrence1f992182016-04-18 15:37:31 -0700468 ActionManager::GetInstance().QueueEventTrigger("defaultcrypto");
Wei Wangd61a7e22016-08-23 11:58:09 -0700469 } else if (code == FS_MGR_MNTALL_DEV_NOT_ENCRYPTED) {
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700470 property_set("ro.crypto.state", "unencrypted");
Paul Lawrence1098aac2016-03-04 15:52:33 -0800471 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Wei Wangd61a7e22016-08-23 11:58:09 -0700472 } else if (code == FS_MGR_MNTALL_DEV_NOT_ENCRYPTABLE) {
Paul Lawrence1098aac2016-03-04 15:52:33 -0800473 property_set("ro.crypto.state", "unsupported");
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700474 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Wei Wangd61a7e22016-08-23 11:58:09 -0700475 } else if (code == FS_MGR_MNTALL_DEV_NEEDS_RECOVERY) {
JP Abgrallcee20682014-07-02 14:26:54 -0700476 /* Setup a wipe via recovery, and reboot into recovery */
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700477 PLOG(ERROR) << "fs_mgr_mount_all suggested recovery, so wiping data via recovery.";
Paul Crowley0b8b2302016-12-19 13:03:47 -0800478 const std::vector<std::string> options = {"--wipe_data", "--reason=fs_mgr_mount_all" };
479 ret = reboot_into_recovery(options);
JP Abgrallcee20682014-07-02 14:26:54 -0700480 /* If reboot worked, there is no return. */
Wei Wangd61a7e22016-08-23 11:58:09 -0700481 } else if (code == FS_MGR_MNTALL_DEV_FILE_ENCRYPTED) {
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000482 if (e4crypt_install_keyring()) {
483 return -1;
484 }
485 property_set("ro.crypto.state", "encrypted");
Paul Lawrence806d10b2015-04-28 22:07:10 +0000486 property_set("ro.crypto.type", "file");
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000487
488 // Although encrypted, we have device key, so we do not need to
489 // do anything different from the nonencrypted case.
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700490 ActionManager::GetInstance().QueueEventTrigger("nonencrypted");
Wei Wangd61a7e22016-08-23 11:58:09 -0700491 } else if (code > 0) {
492 PLOG(ERROR) << "fs_mgr_mount_all returned unexpected error " << code;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700493 }
JP Abgrallf22b7452014-07-02 13:16:04 -0700494 /* else ... < 0: error */
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700495
496 return ret;
497}
498
Wei Wangd61a7e22016-08-23 11:58:09 -0700499/* mount_all <fstab> [ <path> ]* [--<options>]*
500 *
501 * This function might request a reboot, in which case it will
502 * not return.
503 */
504static int do_mount_all(const std::vector<std::string>& args) {
505 std::size_t na = 0;
506 bool import_rc = true;
507 bool queue_event = true;
508 int mount_mode = MOUNT_MODE_DEFAULT;
509 const char* fstabfile = args[1].c_str();
510 std::size_t path_arg_end = args.size();
Keun-young Park69fae7b2017-03-03 18:57:09 -0800511 const char* prop_post_fix = "default";
Wei Wangd61a7e22016-08-23 11:58:09 -0700512
513 for (na = args.size() - 1; na > 1; --na) {
514 if (args[na] == "--early") {
Wei Wangd67a4ab2016-11-16 12:08:30 -0800515 path_arg_end = na;
516 queue_event = false;
517 mount_mode = MOUNT_MODE_EARLY;
Keun-young Park69fae7b2017-03-03 18:57:09 -0800518 prop_post_fix = "early";
Wei Wangd61a7e22016-08-23 11:58:09 -0700519 } else if (args[na] == "--late") {
520 path_arg_end = na;
521 import_rc = false;
522 mount_mode = MOUNT_MODE_LATE;
Keun-young Park69fae7b2017-03-03 18:57:09 -0800523 prop_post_fix = "late";
Wei Wangd61a7e22016-08-23 11:58:09 -0700524 }
525 }
526
Keun-young Park69fae7b2017-03-03 18:57:09 -0800527 std::string prop_name = android::base::StringPrintf("ro.boottime.init.mount_all.%s",
528 prop_post_fix);
529 Timer t;
Wei Wangd61a7e22016-08-23 11:58:09 -0700530 int ret = mount_fstab(fstabfile, mount_mode);
Keun-young Park69fae7b2017-03-03 18:57:09 -0800531 property_set(prop_name.c_str(), std::to_string(t.duration_ms()).c_str());
Wei Wangd61a7e22016-08-23 11:58:09 -0700532
533 if (import_rc) {
534 /* Paths of .rc files are specified at the 2nd argument and beyond */
535 import_late(args, 2, path_arg_end);
536 }
537
538 if (queue_event) {
539 /* queue_fs_event will queue event based on mount_fstab return code
540 * and return processed return code*/
541 ret = queue_fs_event(ret);
542 }
543
544 return ret;
545}
546
Tom Cherryb7349902015-08-26 11:43:36 -0700547static int do_swapon_all(const std::vector<std::string>& args) {
Ken Sumralla76baaa2013-07-09 18:42:09 -0700548 struct fstab *fstab;
549 int ret;
550
Tom Cherry96f67312015-07-30 13:52:55 -0700551 fstab = fs_mgr_read_fstab(args[1].c_str());
Ken Sumralla76baaa2013-07-09 18:42:09 -0700552 ret = fs_mgr_swapon_all(fstab);
553 fs_mgr_free_fstab(fstab);
554
555 return ret;
556}
557
Tom Cherryb7349902015-08-26 11:43:36 -0700558static int do_setprop(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700559 const char* name = args[1].c_str();
560 const char* value = args[2].c_str();
Yabin Cui00ede7d2015-07-24 13:26:04 -0700561 property_set(name, value);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700562 return 0;
563}
564
Tom Cherryb7349902015-08-26 11:43:36 -0700565static int do_setrlimit(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700566 struct rlimit limit;
567 int resource;
Elliott Hughesda46b392016-10-11 17:09:00 -0700568 if (android::base::ParseInt(args[1], &resource) &&
569 android::base::ParseUint(args[2], &limit.rlim_cur) &&
570 android::base::ParseUint(args[3], &limit.rlim_max)) {
571 return setrlimit(resource, &limit);
572 }
573 LOG(WARNING) << "ignoring setrlimit " << args[1] << " " << args[2] << " " << args[3];
574 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700575}
576
Tom Cherryb7349902015-08-26 11:43:36 -0700577static int do_start(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700578 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
579 if (!svc) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700580 LOG(ERROR) << "do_start: Service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700581 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700582 }
Tom Cherrybac32992015-07-31 12:45:25 -0700583 if (!svc->Start())
584 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700585 return 0;
586}
587
Tom Cherryb7349902015-08-26 11:43:36 -0700588static int do_stop(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700589 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
590 if (!svc) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700591 LOG(ERROR) << "do_stop: Service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700592 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700593 }
Tom Cherrybac32992015-07-31 12:45:25 -0700594 svc->Stop();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700595 return 0;
596}
597
Tom Cherryb7349902015-08-26 11:43:36 -0700598static int do_restart(const std::vector<std::string>& args) {
Tom Cherrybac32992015-07-31 12:45:25 -0700599 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]);
600 if (!svc) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700601 LOG(ERROR) << "do_restart: Service " << args[1] << " not found";
Tom Cherrybac32992015-07-31 12:45:25 -0700602 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700603 }
Tom Cherrybac32992015-07-31 12:45:25 -0700604 svc->Restart();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700605 return 0;
606}
607
Tom Cherryb7349902015-08-26 11:43:36 -0700608static int do_powerctl(const std::vector<std::string>& args) {
Keun-young Park8d01f632017-03-13 11:54:47 -0700609 const std::string& command = args[1];
Yusuke Satof93d4292015-07-21 15:50:59 -0700610 unsigned int cmd = 0;
Keun-young Park8d01f632017-03-13 11:54:47 -0700611 std::vector<std::string> cmd_params = android::base::Split(command, ",");
612 std::string reason_string = cmd_params[0];
613 std::string reboot_target = "";
614 bool runFsck = false;
615 bool commandInvalid = false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700616
Keun-young Park8d01f632017-03-13 11:54:47 -0700617 if (cmd_params.size() > 2) {
618 commandInvalid = true;
619 } else if (cmd_params[0] == "shutdown") {
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700620 cmd = ANDROID_RB_POWEROFF;
Keun-young Park8d01f632017-03-13 11:54:47 -0700621 if (cmd_params.size() == 2 && cmd_params[1] == "userrequested") {
622 // The shutdown reason is PowerManager.SHUTDOWN_USER_REQUESTED.
623 // Run fsck once the file system is remounted in read-only mode.
624 runFsck = true;
625 reason_string = cmd_params[1];
626 }
627 } else if (cmd_params[0] == "reboot") {
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700628 cmd = ANDROID_RB_RESTART2;
Keun-young Park8d01f632017-03-13 11:54:47 -0700629 if (cmd_params.size() == 2) {
630 reboot_target = cmd_params[1];
631 // When rebooting to the bootloader notify the bootloader writing
632 // also the BCB.
633 if (reboot_target == "bootloader") {
634 std::string err;
635 if (!write_reboot_bootloader(&err)) {
636 LOG(ERROR) << "reboot-bootloader: Error writing "
637 "bootloader_message: "
638 << err;
639 }
640 }
641 }
642 } else if (command == "thermal-shutdown") { // no additional parameter allowed
Todd Poynor16663a22017-01-31 14:15:20 -0800643 cmd = ANDROID_RB_THERMOFF;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700644 } else {
Keun-young Park8d01f632017-03-13 11:54:47 -0700645 commandInvalid = true;
646 }
647 if (commandInvalid) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700648 LOG(ERROR) << "powerctl: unrecognized command '" << command << "'";
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700649 return -EINVAL;
650 }
651
Keun-young Park8d01f632017-03-13 11:54:47 -0700652 DoReboot(cmd, reason_string, reboot_target, runFsck);
653 return 0;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700654}
655
Tom Cherryb7349902015-08-26 11:43:36 -0700656static int do_trigger(const std::vector<std::string>& args) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700657 ActionManager::GetInstance().QueueEventTrigger(args[1]);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700658 return 0;
659}
660
Tom Cherryb7349902015-08-26 11:43:36 -0700661static int do_symlink(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700662 return symlink(args[1].c_str(), args[2].c_str());
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700663}
664
Tom Cherryb7349902015-08-26 11:43:36 -0700665static int do_rm(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700666 return unlink(args[1].c_str());
Ken Sumrall203bad52011-01-18 17:37:41 -0800667}
668
Tom Cherryb7349902015-08-26 11:43:36 -0700669static int do_rmdir(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700670 return rmdir(args[1].c_str());
Ken Sumrall203bad52011-01-18 17:37:41 -0800671}
672
Tom Cherryb7349902015-08-26 11:43:36 -0700673static int do_sysclktz(const std::vector<std::string>& args) {
Elliott Hughesda46b392016-10-11 17:09:00 -0700674 struct timezone tz = {};
675 if (android::base::ParseInt(args[1], &tz.tz_minuteswest) && settimeofday(NULL, &tz) != -1) {
676 return 0;
677 }
678 return -1;
The Android Open Source Project35237d12008-12-17 18:08:08 -0800679}
680
Tom Cherryb7349902015-08-26 11:43:36 -0700681static int do_verity_load_state(const std::vector<std::string>& args) {
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700682 int mode = -1;
683 int rc = fs_mgr_load_verity_state(&mode);
Sami Tolvanen90f52df2015-12-02 14:23:09 +0000684 if (rc == 0 && mode != VERITY_MODE_DEFAULT) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700685 ActionManager::GetInstance().QueueEventTrigger("verity-logging");
Sami Tolvanen8ff01902015-02-16 11:03:34 +0000686 }
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700687 return rc;
Sami Tolvanen8ff01902015-02-16 11:03:34 +0000688}
689
Tom Cherryb7349902015-08-26 11:43:36 -0700690static void verity_update_property(fstab_rec *fstab, const char *mount_point,
691 int mode, int status) {
Sami Tolvanen45474232015-03-30 11:38:38 +0100692 property_set(android::base::StringPrintf("partition.%s.verified", mount_point).c_str(),
693 android::base::StringPrintf("%d", mode).c_str());
Sami Tolvanenacbf9be2015-03-19 10:00:34 +0000694}
695
Tom Cherryb7349902015-08-26 11:43:36 -0700696static int do_verity_update_state(const std::vector<std::string>& args) {
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700697 return fs_mgr_update_verity_state(verity_update_property);
Sami Tolvanenacbf9be2015-03-19 10:00:34 +0000698}
699
Tom Cherryb7349902015-08-26 11:43:36 -0700700static int do_write(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700701 const char* path = args[1].c_str();
702 const char* value = args[2].c_str();
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500703 return write_file(path, value) ? 0 : 1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700704}
705
Tom Cherryb7349902015-08-26 11:43:36 -0700706static int do_copy(const std::vector<std::string>& args) {
Yongqin Liu82bac0d2016-12-28 16:06:19 +0800707 std::string data;
708 if (read_file(args[1].c_str(), &data)) {
709 return write_file(args[2].c_str(), data.data()) ? 0 : 1;
San Mehat7c44fe52009-08-26 16:39:25 -0700710 }
Yongqin Liu82bac0d2016-12-28 16:06:19 +0800711 return 1;
San Mehat7c44fe52009-08-26 16:39:25 -0700712}
713
Tom Cherryb7349902015-08-26 11:43:36 -0700714static int do_chown(const std::vector<std::string>& args) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700715 /* GID is optional. */
Tom Cherry96f67312015-07-30 13:52:55 -0700716 if (args.size() == 3) {
717 if (lchown(args[2].c_str(), decode_uid(args[1].c_str()), -1) == -1)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700718 return -errno;
Tom Cherry96f67312015-07-30 13:52:55 -0700719 } else if (args.size() == 4) {
720 if (lchown(args[3].c_str(), decode_uid(args[1].c_str()),
721 decode_uid(args[2].c_str())) == -1)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700722 return -errno;
723 } else {
724 return -1;
725 }
726 return 0;
727}
728
729static mode_t get_mode(const char *s) {
730 mode_t mode = 0;
731 while (*s) {
732 if (*s >= '0' && *s <= '7') {
733 mode = (mode<<3) | (*s-'0');
734 } else {
735 return -1;
736 }
737 s++;
738 }
739 return mode;
740}
741
Tom Cherryb7349902015-08-26 11:43:36 -0700742static int do_chmod(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700743 mode_t mode = get_mode(args[1].c_str());
744 if (fchmodat(AT_FDCWD, args[2].c_str(), mode, AT_SYMLINK_NOFOLLOW) < 0) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700745 return -errno;
746 }
747 return 0;
748}
749
Tom Cherryb7349902015-08-26 11:43:36 -0700750static int do_restorecon(const std::vector<std::string>& args) {
Stephen Smalley726e8f72013-10-09 16:02:09 -0400751 int ret = 0;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500752
Paul Lawrencea8d84342016-11-14 15:40:18 -0800753 struct flag_type {const char* name; int value;};
754 static const flag_type flags[] = {
755 {"--recursive", SELINUX_ANDROID_RESTORECON_RECURSE},
756 {"--skip-ce", SELINUX_ANDROID_RESTORECON_SKIPCE},
757 {"--cross-filesystems", SELINUX_ANDROID_RESTORECON_CROSS_FILESYSTEMS},
758 {0, 0}
759 };
760
761 int flag = 0;
762
763 bool in_flags = true;
764 for (size_t i = 1; i < args.size(); ++i) {
765 if (android::base::StartsWith(args[i], "--")) {
766 if (!in_flags) {
767 LOG(ERROR) << "restorecon - flags must precede paths";
768 return -1;
769 }
770 bool found = false;
771 for (size_t j = 0; flags[j].name; ++j) {
772 if (args[i] == flags[j].name) {
773 flag |= flags[j].value;
774 found = true;
775 break;
776 }
777 }
778 if (!found) {
779 LOG(ERROR) << "restorecon - bad flag " << args[i];
780 return -1;
781 }
782 } else {
783 in_flags = false;
784 if (restorecon(args[i].c_str(), flag) < 0) {
785 ret = -errno;
786 }
787 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500788 }
Stephen Smalley726e8f72013-10-09 16:02:09 -0400789 return ret;
790}
791
Tom Cherryb7349902015-08-26 11:43:36 -0700792static int do_restorecon_recursive(const std::vector<std::string>& args) {
Paul Lawrencea8d84342016-11-14 15:40:18 -0800793 std::vector<std::string> non_const_args(args);
794 non_const_args.insert(std::next(non_const_args.begin()), "--recursive");
795 return do_restorecon(non_const_args);
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500796}
797
Tom Cherryb7349902015-08-26 11:43:36 -0700798static int do_loglevel(const std::vector<std::string>& args) {
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700799 // TODO: support names instead/as well?
Elliott Hughesda46b392016-10-11 17:09:00 -0700800 int log_level = -1;
801 android::base::ParseInt(args[1], &log_level);
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700802 android::base::LogSeverity severity;
803 switch (log_level) {
804 case 7: severity = android::base::DEBUG; break;
805 case 6: severity = android::base::INFO; break;
806 case 5:
807 case 4: severity = android::base::WARNING; break;
808 case 3: severity = android::base::ERROR; break;
809 case 2:
810 case 1:
811 case 0: severity = android::base::FATAL; break;
812 default:
813 LOG(ERROR) << "loglevel: invalid log level " << log_level;
814 return -EINVAL;
Riley Andrews1bbef882014-06-26 13:55:03 -0700815 }
Elliott Hughes7bc87a52016-08-04 16:09:39 -0700816 android::base::SetMinimumLogSeverity(severity);
Riley Andrews1bbef882014-06-26 13:55:03 -0700817 return 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700818}
819
Tom Cherryaf20a7c2015-09-01 15:05:34 -0700820static int do_load_persist_props(const std::vector<std::string>& args) {
Tom Cherryb7349902015-08-26 11:43:36 -0700821 load_persist_props();
822 return 0;
Ken Sumrallc5c51032011-03-08 17:01:29 -0800823}
824
Tom Cherryaf20a7c2015-09-01 15:05:34 -0700825static int do_load_system_props(const std::vector<std::string>& args) {
826 load_system_props();
Tom Cherryb7349902015-08-26 11:43:36 -0700827 return 0;
Riley Andrewse4b7b292014-06-16 15:06:21 -0700828}
829
Tom Cherryb7349902015-08-26 11:43:36 -0700830static int do_wait(const std::vector<std::string>& args) {
Tom Cherry96f67312015-07-30 13:52:55 -0700831 if (args.size() == 2) {
Elliott Hughes9605a942016-11-10 17:43:47 -0800832 return wait_for_file(args[1].c_str(), kCommandRetryTimeout);
Tom Cherry96f67312015-07-30 13:52:55 -0700833 } else if (args.size() == 3) {
Elliott Hughesda46b392016-10-11 17:09:00 -0700834 int timeout;
835 if (android::base::ParseInt(args[2], &timeout)) {
Elliott Hughes9605a942016-11-10 17:43:47 -0800836 return wait_for_file(args[1].c_str(), std::chrono::seconds(timeout));
Elliott Hughesda46b392016-10-11 17:09:00 -0700837 }
838 }
839 return -1;
Colin Crosscd0f1732010-04-19 17:10:24 -0700840}
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000841
Wei Wang132ac312017-01-25 16:27:03 -0800842static int do_wait_for_prop(const std::vector<std::string>& args) {
843 const char* name = args[1].c_str();
844 const char* value = args[2].c_str();
845 size_t value_len = strlen(value);
846
847 if (!is_legal_property_name(name)) {
848 LOG(ERROR) << "do_wait_for_prop(\"" << name << "\", \"" << value
849 << "\") failed: bad name";
850 return -1;
851 }
852 if (value_len >= PROP_VALUE_MAX) {
853 LOG(ERROR) << "do_wait_for_prop(\"" << name << "\", \"" << value
854 << "\") failed: value too long";
855 return -1;
856 }
Wei Wang2d0fdaa2017-02-02 10:52:39 -0800857 if (!start_waiting_for_property(name, value)) {
Wei Wang132ac312017-01-25 16:27:03 -0800858 LOG(ERROR) << "do_wait_for_prop(\"" << name << "\", \"" << value
859 << "\") failed: init already in waiting";
860 return -1;
861 }
862 return 0;
863}
864
Paul Lawrence806d10b2015-04-28 22:07:10 +0000865/*
866 * Callback to make a directory from the ext4 code
867 */
Tom Cherryb7349902015-08-26 11:43:36 -0700868static int do_installkeys_ensure_dir_exists(const char* dir) {
Paul Lawrence806d10b2015-04-28 22:07:10 +0000869 if (make_dir(dir, 0700) && errno != EEXIST) {
870 return -1;
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000871 }
872
Paul Lawrence806d10b2015-04-28 22:07:10 +0000873 return 0;
874}
875
Paul Crowley749af8c2015-05-28 17:35:06 +0100876static bool is_file_crypto() {
Yabin Cui0ff85902015-07-24 13:58:03 -0700877 std::string value = property_get("ro.crypto.type");
878 return value == "file";
Paul Crowley749af8c2015-05-28 17:35:06 +0100879}
880
Tom Cherryb7349902015-08-26 11:43:36 -0700881static int do_installkey(const std::vector<std::string>& args) {
Paul Crowley749af8c2015-05-28 17:35:06 +0100882 if (!is_file_crypto()) {
Paul Lawrence806d10b2015-04-28 22:07:10 +0000883 return 0;
884 }
Tom Cherry96f67312015-07-30 13:52:55 -0700885 return e4crypt_create_device_key(args[1].c_str(),
Paul Lawrence806d10b2015-04-28 22:07:10 +0000886 do_installkeys_ensure_dir_exists);
Paul Lawrenceb8c9d272015-03-26 15:49:42 +0000887}
Paul Crowley749af8c2015-05-28 17:35:06 +0100888
Paul Crowley59497452016-02-01 16:37:13 +0000889static int do_init_user0(const std::vector<std::string>& args) {
Paul Crowley59497452016-02-01 16:37:13 +0000890 return e4crypt_do_init_user0();
891}
892
Tom Cherryb7349902015-08-26 11:43:36 -0700893BuiltinFunctionMap::Map& BuiltinFunctionMap::map() const {
894 constexpr std::size_t kMax = std::numeric_limits<std::size_t>::max();
895 static const Map builtin_functions = {
Elliott Hughesa3641af2016-11-10 17:43:47 -0800896 {"bootchart", {1, 1, do_bootchart}},
Tom Cherryb7349902015-08-26 11:43:36 -0700897 {"chmod", {2, 2, do_chmod}},
898 {"chown", {2, 3, do_chown}},
899 {"class_reset", {1, 1, do_class_reset}},
900 {"class_start", {1, 1, do_class_start}},
901 {"class_stop", {1, 1, do_class_stop}},
902 {"copy", {2, 2, do_copy}},
903 {"domainname", {1, 1, do_domainname}},
904 {"enable", {1, 1, do_enable}},
905 {"exec", {1, kMax, do_exec}},
906 {"export", {2, 2, do_export}},
907 {"hostname", {1, 1, do_hostname}},
908 {"ifup", {1, 1, do_ifup}},
Paul Crowley59497452016-02-01 16:37:13 +0000909 {"init_user0", {0, 0, do_init_user0}},
Tom Cherryb7349902015-08-26 11:43:36 -0700910 {"insmod", {1, kMax, do_insmod}},
911 {"installkey", {1, 1, do_installkey}},
Tom Cherryb7349902015-08-26 11:43:36 -0700912 {"load_persist_props", {0, 0, do_load_persist_props}},
Tom Cherryaf20a7c2015-09-01 15:05:34 -0700913 {"load_system_props", {0, 0, do_load_system_props}},
Tom Cherryb7349902015-08-26 11:43:36 -0700914 {"loglevel", {1, 1, do_loglevel}},
915 {"mkdir", {1, 4, do_mkdir}},
Hung-ying Tyandc738ea2016-01-14 11:18:21 +0800916 {"mount_all", {1, kMax, do_mount_all}},
Tom Cherryb7349902015-08-26 11:43:36 -0700917 {"mount", {3, kMax, do_mount}},
Alex Light68ab20f2016-06-23 11:11:39 -0700918 {"umount", {1, 1, do_umount}},
Tom Cherryb7349902015-08-26 11:43:36 -0700919 {"powerctl", {1, 1, do_powerctl}},
920 {"restart", {1, 1, do_restart}},
921 {"restorecon", {1, kMax, do_restorecon}},
922 {"restorecon_recursive", {1, kMax, do_restorecon_recursive}},
923 {"rm", {1, 1, do_rm}},
924 {"rmdir", {1, 1, do_rmdir}},
925 {"setprop", {2, 2, do_setprop}},
926 {"setrlimit", {3, 3, do_setrlimit}},
927 {"start", {1, 1, do_start}},
928 {"stop", {1, 1, do_stop}},
929 {"swapon_all", {1, 1, do_swapon_all}},
930 {"symlink", {2, 2, do_symlink}},
931 {"sysclktz", {1, 1, do_sysclktz}},
932 {"trigger", {1, 1, do_trigger}},
933 {"verity_load_state", {0, 0, do_verity_load_state}},
934 {"verity_update_state", {0, 0, do_verity_update_state}},
935 {"wait", {1, 2, do_wait}},
Wei Wang132ac312017-01-25 16:27:03 -0800936 {"wait_for_prop", {2, 2, do_wait_for_prop}},
Tom Cherryb7349902015-08-26 11:43:36 -0700937 {"write", {2, 2, do_write}},
938 };
939 return builtin_functions;
940}