blob: f3252c294f2277a3786b7d3b5c9cc5c342c5a219 [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
17#ifndef _INIT_UTIL_H_
18#define _INIT_UTIL_H_
19
Colin Crossf83d0b92010-04-21 12:04:20 -070020#include <sys/stat.h>
21#include <sys/types.h>
22
Elliott Hughes9605a942016-11-10 17:43:47 -080023#include <chrono>
Nick Kralevichf667a322015-04-25 17:42:52 -070024#include <functional>
Elliott Hughes331cf2f2016-11-29 19:20:58 +000025#include <ostream>
26#include <string>
Elliott Hughesf682b472015-02-06 12:19:48 -080027
James Hawkinse78ea772017-03-24 11:43:02 -070028#include <android-base/chrono_utils.h>
Tom Cherrye7656b72017-05-01 17:10:09 -070029#include <selinux/label.h>
James Hawkinse78ea772017-03-24 11:43:02 -070030
Andreas Gampea016c422014-11-24 19:52:41 -080031#define COLDBOOT_DONE "/dev/.coldboot_done"
Colin Crossf83d0b92010-04-21 12:04:20 -070032
Bowgo Tsaid2620172017-04-17 22:17:09 +080033const std::string kAndroidDtDir("/proc/device-tree/firmware/android/");
34
James Hawkinse78ea772017-03-24 11:43:02 -070035using android::base::boot_clock;
Elliott Hughes9605a942016-11-10 17:43:47 -080036using namespace std::chrono_literals;
37
Mark Salyzynb066fcc2017-05-05 14:44:35 -070038int CreateSocket(const char* name, int type, bool passcred, mode_t perm, uid_t uid, gid_t gid,
39 const char* socketcon, selabel_handle* sehandle);
Elliott Hughesf682b472015-02-06 12:19:48 -080040
Tom Cherry2cbbe9f2017-05-04 18:17:33 -070041bool ReadFile(const std::string& path, std::string* content, std::string* err);
42bool WriteFile(const std::string& path, const std::string& content, std::string* err);
Elliott Hughesf682b472015-02-06 12:19:48 -080043
Elliott Hughesda40c002015-03-27 23:20:44 -070044class Timer {
James Hawkinse78ea772017-03-24 11:43:02 -070045 public:
46 Timer() : start_(boot_clock::now()) {}
Elliott Hughesda40c002015-03-27 23:20:44 -070047
James Hawkinse78ea772017-03-24 11:43:02 -070048 double duration_s() const {
49 typedef std::chrono::duration<double> double_duration;
50 return std::chrono::duration_cast<double_duration>(boot_clock::now() - start_).count();
51 }
Elliott Hughesda40c002015-03-27 23:20:44 -070052
James Hawkinse78ea772017-03-24 11:43:02 -070053 int64_t duration_ms() const {
54 return std::chrono::duration_cast<std::chrono::milliseconds>(boot_clock::now() - start_)
55 .count();
56 }
Elliott Hughes331cf2f2016-11-29 19:20:58 +000057
James Hawkinse78ea772017-03-24 11:43:02 -070058 private:
59 android::base::boot_clock::time_point start_;
Elliott Hughesda40c002015-03-27 23:20:44 -070060};
61
Elliott Hughes331cf2f2016-11-29 19:20:58 +000062std::ostream& operator<<(std::ostream& os, const Timer& t);
63
Tom Cherry517e1f12017-05-04 17:40:33 -070064bool DecodeUid(const std::string& name, uid_t* uid, std::string* err);
Colin Cross3899e9f2010-04-13 20:35:46 -070065
Tom Cherrye7656b72017-05-01 17:10:09 -070066int mkdir_recursive(const std::string& pathname, mode_t mode, selabel_handle* sehandle);
Elliott Hughes9605a942016-11-10 17:43:47 -080067int wait_for_file(const char *filename, std::chrono::nanoseconds timeout);
Elliott Hughese5ce30f2015-05-06 19:19:24 -070068void import_kernel_cmdline(bool in_qemu,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -070069 const std::function<void(const std::string&, const std::string&, bool)>&);
Tom Cherrye7656b72017-05-01 17:10:09 -070070int make_dir(const char* path, mode_t mode, selabel_handle* sehandle);
Paul Lawrencea8d84342016-11-14 15:40:18 -080071int restorecon(const char *pathname, int flags = 0);
Andres Moralesdb5f5d42015-05-08 08:30:33 -070072std::string bytes_to_hex(const uint8_t *bytes, size_t bytes_len);
Lee Campbellf13b1b32015-07-24 16:57:14 -070073bool is_dir(const char* pathname);
Tom Cherryb7349902015-08-26 11:43:36 -070074bool expand_props(const std::string& src, std::string* dst);
Elliott Hughes331cf2f2016-11-29 19:20:58 +000075
Elliott Hughes331cf2f2016-11-29 19:20:58 +000076void panic() __attribute__((__noreturn__));
77
Bowgo Tsaid2620172017-04-17 22:17:09 +080078// Reads or compares the content of device tree file under kAndroidDtDir directory.
79bool read_android_dt_file(const std::string& sub_path, std::string* dt_content);
80bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content);
81
Colin Cross3899e9f2010-04-13 20:35:46 -070082#endif