blob: 9d89ed7b2ae329d620e0d70782cda008cec9d388 [file] [log] [blame]
Colin Cross3899e9f2010-04-13 20:35:46 -07001/*
2 * Copyright (C) 2010 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 Cherry4772f1d2019-07-30 09:34:41 -070017#pragma once
Colin Cross3899e9f2010-04-13 20:35:46 -070018
Colin Crossf83d0b92010-04-21 12:04:20 -070019#include <sys/stat.h>
20#include <sys/types.h>
21
Elliott Hughes9605a942016-11-10 17:43:47 -080022#include <chrono>
Nick Kralevichf667a322015-04-25 17:42:52 -070023#include <functional>
Elliott Hughes331cf2f2016-11-29 19:20:58 +000024#include <string>
Elliott Hughesf682b472015-02-06 12:19:48 -080025
James Hawkinse78ea772017-03-24 11:43:02 -070026#include <android-base/chrono_utils.h>
27
Paul Crowley68258e82019-10-28 07:55:03 -070028#include "fscrypt_init_extensions.h"
Tom Cherry11a3aee2017-08-03 12:54:07 -070029#include "result.h"
30
James Hawkinse78ea772017-03-24 11:43:02 -070031using android::base::boot_clock;
Elliott Hughes9605a942016-11-10 17:43:47 -080032
Tom Cherry81f5d3e2017-06-22 12:53:17 -070033namespace android {
34namespace init {
35
Tom Cherry39fafed2019-06-10 17:49:59 -070036static const char kColdBootDoneProp[] = "ro.cold_boot_done";
37
Tom Cherry18278d22019-11-12 16:21:20 -080038extern void (*trigger_shutdown)(const std::string& command);
39
Tom Cherry2e4c85f2019-07-09 13:33:36 -070040Result<int> CreateSocket(const std::string& name, int type, bool passcred, mode_t perm, uid_t uid,
41 gid_t gid, const std::string& socketcon);
Elliott Hughesf682b472015-02-06 12:19:48 -080042
Tom Cherry11a3aee2017-08-03 12:54:07 -070043Result<std::string> ReadFile(const std::string& path);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070044Result<void> WriteFile(const std::string& path, const std::string& content);
Elliott Hughesf682b472015-02-06 12:19:48 -080045
Tom Cherry11a3aee2017-08-03 12:54:07 -070046Result<uid_t> DecodeUid(const std::string& name);
Colin Cross3899e9f2010-04-13 20:35:46 -070047
Tom Cherry0c8d6d22017-08-10 12:22:44 -070048bool mkdir_recursive(const std::string& pathname, mode_t mode);
Elliott Hughes9605a942016-11-10 17:43:47 -080049int wait_for_file(const char *filename, std::chrono::nanoseconds timeout);
Elliott Hughese5ce30f2015-05-06 19:19:24 -070050void import_kernel_cmdline(bool in_qemu,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -070051 const std::function<void(const std::string&, const std::string&, bool)>&);
Tom Cherry0c8d6d22017-08-10 12:22:44 -070052bool make_dir(const std::string& path, mode_t mode);
Lee Campbellf13b1b32015-07-24 16:57:14 -070053bool is_dir(const char* pathname);
Tom Cherryc5cf85d2019-07-31 13:59:15 -070054Result<std::string> ExpandProps(const std::string& src);
Elliott Hughes331cf2f2016-11-29 19:20:58 +000055
Yu Ningc01022a2017-07-26 17:54:08 +080056// Returns the platform's Android DT directory as specified in the kernel cmdline.
57// If the platform does not configure a custom DT path, returns the standard one (based in procfs).
58const std::string& get_android_dt_dir();
59// Reads or compares the content of device tree file under the platform's Android DT directory.
Bowgo Tsaid2620172017-04-17 22:17:09 +080060bool read_android_dt_file(const std::string& sub_path, std::string* dt_content);
61bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content);
62
Tom Cherryde6bd502018-02-13 16:50:08 -080063bool IsLegalPropertyName(const std::string& name);
Tom Cherry4772f1d2019-07-30 09:34:41 -070064Result<void> IsLegalPropertyValue(const std::string& name, const std::string& value);
65
Paul Crowley68258e82019-10-28 07:55:03 -070066struct MkdirOptions {
67 std::string target;
68 mode_t mode;
69 uid_t uid;
70 gid_t gid;
71 FscryptAction fscrypt_action;
72 std::string ref_option;
73};
74
75Result<MkdirOptions> ParseMkdir(const std::vector<std::string>& args);
76
Tom Cherry4772f1d2019-07-30 09:34:41 -070077Result<std::pair<int, std::vector<std::string>>> ParseRestorecon(
78 const std::vector<std::string>& args);
Tom Cherryde6bd502018-02-13 16:50:08 -080079
Tom Cherry59656fb2019-05-28 10:19:44 -070080void SetStdioToDevNull(char** argv);
81void InitKernelLogging(char** argv);
Jiyong Park68660412019-01-16 23:00:59 +090082bool IsRecoveryMode();
Tom Cherry81f5d3e2017-06-22 12:53:17 -070083} // namespace init
84} // namespace android