| 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 |  | 
| Andreas Gampe | a016c42 | 2014-11-24 19:52:41 -0800 | [diff] [blame] | 28 | #define COLDBOOT_DONE "/dev/.coldboot_done" | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 29 |  | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 30 | using namespace std::chrono_literals; | 
|  | 31 |  | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 32 | int create_socket(const char *name, int type, mode_t perm, | 
| Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 33 | uid_t uid, gid_t gid, const char *socketcon); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 34 |  | 
|  | 35 | bool read_file(const char* path, std::string* content); | 
| Jorge Lucangeli Obes | 77f0e9f | 2016-12-28 14:07:02 -0500 | [diff] [blame] | 36 | bool write_file(const char* path, const char* content); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 37 |  | 
| James Hawkins | c8ac067 | 2017-02-14 19:20:20 +0000 | [diff] [blame] | 38 | // A std::chrono clock based on CLOCK_BOOTTIME. | 
|  | 39 | class boot_clock { | 
|  | 40 | public: | 
|  | 41 | typedef std::chrono::nanoseconds duration; | 
|  | 42 | typedef std::chrono::time_point<boot_clock, duration> time_point; | 
|  | 43 | static constexpr bool is_steady = true; | 
|  | 44 |  | 
|  | 45 | static time_point now(); | 
|  | 46 | }; | 
|  | 47 |  | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 48 | class Timer { | 
|  | 49 | public: | 
| James Hawkins | c8ac067 | 2017-02-14 19:20:20 +0000 | [diff] [blame] | 50 | Timer() : start_(boot_clock::now()) { | 
|  | 51 | } | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 52 |  | 
| James Hawkins | c8ac067 | 2017-02-14 19:20:20 +0000 | [diff] [blame] | 53 | double duration_s() const { | 
|  | 54 | typedef std::chrono::duration<double> double_duration; | 
|  | 55 | return std::chrono::duration_cast<double_duration>(boot_clock::now() - start_).count(); | 
|  | 56 | } | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 57 |  | 
| James Hawkins | c8ac067 | 2017-02-14 19:20:20 +0000 | [diff] [blame] | 58 | int64_t duration_ms() const { | 
|  | 59 | return std::chrono::duration_cast<std::chrono::milliseconds>(boot_clock::now() - start_).count(); | 
|  | 60 | } | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 61 |  | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 62 | private: | 
| James Hawkins | c8ac067 | 2017-02-14 19:20:20 +0000 | [diff] [blame] | 63 | boot_clock::time_point start_; | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 64 | }; | 
|  | 65 |  | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 66 | std::ostream& operator<<(std::ostream& os, const Timer& t); | 
|  | 67 |  | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 68 | unsigned int decode_uid(const char *s); | 
|  | 69 |  | 
| Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 70 | int mkdir_recursive(const char *pathname, mode_t mode); | 
|  | 71 | void sanitize(char *p); | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 72 | int wait_for_file(const char *filename, std::chrono::nanoseconds timeout); | 
| Elliott Hughes | e5ce30f | 2015-05-06 19:19:24 -0700 | [diff] [blame] | 73 | void import_kernel_cmdline(bool in_qemu, | 
| Chih-Hung Hsieh | 8f7b9e3 | 2016-07-27 16:25:51 -0700 | [diff] [blame] | 74 | const std::function<void(const std::string&, const std::string&, bool)>&); | 
| Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 75 | int make_dir(const char *path, mode_t mode); | 
| Paul Lawrence | a8d8434 | 2016-11-14 15:40:18 -0800 | [diff] [blame] | 76 | int restorecon(const char *pathname, int flags = 0); | 
| Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 77 | std::string bytes_to_hex(const uint8_t *bytes, size_t bytes_len); | 
| Lee Campbell | f13b1b3 | 2015-07-24 16:57:14 -0700 | [diff] [blame] | 78 | bool is_dir(const char* pathname); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 79 | bool expand_props(const std::string& src, std::string* dst); | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 80 |  | 
|  | 81 | void reboot(const char* destination) __attribute__((__noreturn__)); | 
|  | 82 | void panic() __attribute__((__noreturn__)); | 
|  | 83 |  | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 84 | #endif |