| 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 | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 23 | #include <string> | 
| Nick Kralevich | f667a32 | 2015-04-25 17:42:52 -0700 | [diff] [blame] | 24 | #include <functional> | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 25 |  | 
| Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 26 | #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) | 
|  | 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 |  | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 30 | int mtd_name_to_number(const char *name); | 
|  | 31 | int create_socket(const char *name, int type, mode_t perm, | 
| Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 32 | uid_t uid, gid_t gid, const char *socketcon); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 33 |  | 
|  | 34 | bool read_file(const char* path, std::string* content); | 
|  | 35 | int write_file(const char* path, const char* content); | 
|  | 36 |  | 
| Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 37 | time_t gettime(); | 
|  | 38 | uint64_t gettime_ns(); | 
|  | 39 |  | 
|  | 40 | class Timer { | 
|  | 41 | public: | 
|  | 42 | Timer() : t0(gettime_ns()) { | 
|  | 43 | } | 
|  | 44 |  | 
|  | 45 | double duration() { | 
|  | 46 | return static_cast<double>(gettime_ns() - t0) / 1000000000.0; | 
|  | 47 | } | 
|  | 48 |  | 
|  | 49 | private: | 
|  | 50 | uint64_t t0; | 
|  | 51 | }; | 
|  | 52 |  | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 53 | unsigned int decode_uid(const char *s); | 
|  | 54 |  | 
| Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 55 | int mkdir_recursive(const char *pathname, mode_t mode); | 
|  | 56 | void sanitize(char *p); | 
|  | 57 | void make_link(const char *oldpath, const char *newpath); | 
|  | 58 | void remove_link(const char *oldpath, const char *newpath); | 
| Colin Cross | cd0f173 | 2010-04-19 17:10:24 -0700 | [diff] [blame] | 59 | int wait_for_file(const char *filename, int timeout); | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 60 | void open_devnull_stdio(void); | 
| Elliott Hughes | e5ce30f | 2015-05-06 19:19:24 -0700 | [diff] [blame] | 61 | void import_kernel_cmdline(bool in_qemu, | 
|  | 62 | std::function<void(const std::string&, const std::string&, bool)>); | 
| Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 63 | int make_dir(const char *path, mode_t mode); | 
|  | 64 | int restorecon(const char *pathname); | 
| Nick Kralevich | ae76f6d | 2013-07-11 15:38:26 -0700 | [diff] [blame] | 65 | int restorecon_recursive(const char *pathname); | 
| Andres Morales | cb3fce8 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 66 | 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] | 67 | bool is_dir(const char* pathname); | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 68 | #endif |