| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 |  | 
|  | 17 | #ifndef _INIT_UTIL_H_ | 
|  | 18 | #define _INIT_UTIL_H_ | 
|  | 19 |  | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 20 | #include <sys/stat.h> | 
|  | 21 | #include <sys/types.h> | 
|  | 22 |  | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 23 | #include <chrono> | 
| Nick Kralevich | f667a32 | 2015-04-25 17:42:52 -0700 | [diff] [blame] | 24 | #include <functional> | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 25 | #include <ostream> | 
|  | 26 | #include <string> | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 27 |  | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 28 | #include <android-base/chrono_utils.h> | 
| Tom Cherry | e7656b7 | 2017-05-01 17:10:09 -0700 | [diff] [blame] | 29 | #include <selinux/label.h> | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 30 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 31 | #include "result.h" | 
|  | 32 |  | 
| Andreas Gampe | a016c42 | 2014-11-24 19:52:41 -0800 | [diff] [blame] | 33 | #define COLDBOOT_DONE "/dev/.coldboot_done" | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 34 |  | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 35 | using android::base::boot_clock; | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 36 | using namespace std::chrono_literals; | 
|  | 37 |  | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 38 | namespace android { | 
|  | 39 | namespace init { | 
|  | 40 |  | 
| Mark Salyzyn | b066fcc | 2017-05-05 14:44:35 -0700 | [diff] [blame] | 41 | int CreateSocket(const char* name, int type, bool passcred, mode_t perm, uid_t uid, gid_t gid, | 
| Tom Cherry | 0c8d6d2 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 42 | const char* socketcon); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 43 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 44 | Result<std::string> ReadFile(const std::string& path); | 
|  | 45 | Result<Success> WriteFile(const std::string& path, const std::string& content); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 46 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 47 | Result<uid_t> DecodeUid(const std::string& name); | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 48 |  | 
| Tom Cherry | 0c8d6d2 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 49 | bool mkdir_recursive(const std::string& pathname, mode_t mode); | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 50 | int wait_for_file(const char *filename, std::chrono::nanoseconds timeout); | 
| Elliott Hughes | e5ce30f | 2015-05-06 19:19:24 -0700 | [diff] [blame] | 51 | void import_kernel_cmdline(bool in_qemu, | 
| Chih-Hung Hsieh | 8f7b9e3 | 2016-07-27 16:25:51 -0700 | [diff] [blame] | 52 | const std::function<void(const std::string&, const std::string&, bool)>&); | 
| Tom Cherry | 0c8d6d2 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 53 | bool make_dir(const std::string& path, mode_t mode); | 
| Lee Campbell | f13b1b3 | 2015-07-24 16:57:14 -0700 | [diff] [blame] | 54 | bool is_dir(const char* pathname); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 55 | bool expand_props(const std::string& src, std::string* dst); | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 56 |  | 
| Yu Ning | c01022a | 2017-07-26 17:54:08 +0800 | [diff] [blame] | 57 | // Returns the platform's Android DT directory as specified in the kernel cmdline. | 
|  | 58 | // If the platform does not configure a custom DT path, returns the standard one (based in procfs). | 
|  | 59 | const std::string& get_android_dt_dir(); | 
|  | 60 | // Reads or compares the content of device tree file under the platform's Android DT directory. | 
| Bowgo Tsai | d262017 | 2017-04-17 22:17:09 +0800 | [diff] [blame] | 61 | bool read_android_dt_file(const std::string& sub_path, std::string* dt_content); | 
|  | 62 | bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content); | 
|  | 63 |  | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 64 | bool IsLegalPropertyName(const std::string& name); | 
|  | 65 |  | 
| Tom Cherry | 48e83e6 | 2018-10-04 13:14:14 -0700 | [diff] [blame] | 66 | void InitKernelLogging(char** argv, std::function<void(const char*)> abort_function); | 
| Jiyong Park | 6866041 | 2019-01-16 23:00:59 +0900 | [diff] [blame] | 67 | bool IsRecoveryMode(); | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 68 | }  // namespace init | 
|  | 69 | }  // namespace android | 
|  | 70 |  | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 71 | #endif |