blob: 4444427ea89b6b649c6fd35df8bc4f9faa1de0d5 [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 Hawkins7c92e482017-02-13 15:47:21 -080028#include <android-base/chrono_utils.h>
29
Andreas Gampea016c422014-11-24 19:52:41 -080030#define COLDBOOT_DONE "/dev/.coldboot_done"
Colin Crossf83d0b92010-04-21 12:04:20 -070031
Elliott Hughes9605a942016-11-10 17:43:47 -080032using namespace std::chrono_literals;
33
Colin Cross3899e9f2010-04-13 20:35:46 -070034int create_socket(const char *name, int type, mode_t perm,
Stephen Smalley8348d272013-05-13 12:37:04 -040035 uid_t uid, gid_t gid, const char *socketcon);
Elliott Hughesf682b472015-02-06 12:19:48 -080036
37bool read_file(const char* path, std::string* content);
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -050038bool write_file(const char* path, const char* content);
Elliott Hughesf682b472015-02-06 12:19:48 -080039
Elliott Hughesda40c002015-03-27 23:20:44 -070040class Timer {
41 public:
James Hawkins7c92e482017-02-13 15:47:21 -080042 Timer();
Elliott Hughesda40c002015-03-27 23:20:44 -070043
James Hawkins7c92e482017-02-13 15:47:21 -080044 double duration_s() const;
Elliott Hughesda40c002015-03-27 23:20:44 -070045
James Hawkins7c92e482017-02-13 15:47:21 -080046 int64_t duration_ms() const;
Elliott Hughes331cf2f2016-11-29 19:20:58 +000047
Elliott Hughesda40c002015-03-27 23:20:44 -070048 private:
James Hawkins7c92e482017-02-13 15:47:21 -080049 android::base::boot_clock::time_point start_;
Elliott Hughesda40c002015-03-27 23:20:44 -070050};
51
Elliott Hughes331cf2f2016-11-29 19:20:58 +000052std::ostream& operator<<(std::ostream& os, const Timer& t);
53
Colin Cross3899e9f2010-04-13 20:35:46 -070054unsigned int decode_uid(const char *s);
55
Colin Crossb0ab94b2010-04-08 16:16:20 -070056int mkdir_recursive(const char *pathname, mode_t mode);
57void sanitize(char *p);
Elliott Hughes9605a942016-11-10 17:43:47 -080058int wait_for_file(const char *filename, std::chrono::nanoseconds timeout);
Elliott Hughese5ce30f2015-05-06 19:19:24 -070059void import_kernel_cmdline(bool in_qemu,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -070060 const std::function<void(const std::string&, const std::string&, bool)>&);
Stephen Smalleye096e362012-06-11 13:37:39 -040061int make_dir(const char *path, mode_t mode);
Paul Lawrencea8d84342016-11-14 15:40:18 -080062int restorecon(const char *pathname, int flags = 0);
Andres Moralesdb5f5d42015-05-08 08:30:33 -070063std::string bytes_to_hex(const uint8_t *bytes, size_t bytes_len);
Lee Campbellf13b1b32015-07-24 16:57:14 -070064bool is_dir(const char* pathname);
Tom Cherryb7349902015-08-26 11:43:36 -070065bool expand_props(const std::string& src, std::string* dst);
Elliott Hughes331cf2f2016-11-29 19:20:58 +000066
67void reboot(const char* destination) __attribute__((__noreturn__));
68void panic() __attribute__((__noreturn__));
69
Colin Cross3899e9f2010-04-13 20:35:46 -070070#endif