2010-04-14 05:35:46 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INIT_UTIL_H_
|
|
|
|
#define _INIT_UTIL_H_
|
|
|
|
|
2010-04-21 21:04:20 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2016-11-11 02:43:47 +01:00
|
|
|
#include <chrono>
|
2015-02-06 21:19:48 +01:00
|
|
|
#include <string>
|
2015-04-26 02:42:52 +02:00
|
|
|
#include <functional>
|
2015-02-06 21:19:48 +01:00
|
|
|
|
2014-11-25 04:52:41 +01:00
|
|
|
#define COLDBOOT_DONE "/dev/.coldboot_done"
|
2010-04-21 21:04:20 +02:00
|
|
|
|
2016-11-11 02:43:47 +01:00
|
|
|
using namespace std::chrono_literals;
|
|
|
|
|
2010-04-14 05:35:46 +02:00
|
|
|
int create_socket(const char *name, int type, mode_t perm,
|
2013-05-13 18:37:04 +02:00
|
|
|
uid_t uid, gid_t gid, const char *socketcon);
|
2016-10-27 16:45:34 +02:00
|
|
|
int create_file(const char *path, int mode, mode_t perm,
|
|
|
|
uid_t uid, gid_t gid, const char *filecon);
|
2015-02-06 21:19:48 +01:00
|
|
|
|
|
|
|
bool read_file(const char* path, std::string* content);
|
|
|
|
int write_file(const char* path, const char* content);
|
|
|
|
|
2016-11-11 02:43:47 +01:00
|
|
|
// A std::chrono clock based on CLOCK_BOOTTIME.
|
|
|
|
class boot_clock {
|
|
|
|
public:
|
|
|
|
typedef std::chrono::nanoseconds duration;
|
|
|
|
typedef std::chrono::time_point<boot_clock, duration> time_point;
|
|
|
|
static constexpr bool is_steady = true;
|
|
|
|
|
|
|
|
static time_point now();
|
|
|
|
};
|
2015-03-28 07:20:44 +01:00
|
|
|
|
|
|
|
class Timer {
|
|
|
|
public:
|
2016-11-11 02:43:47 +01:00
|
|
|
Timer() : start_(boot_clock::now()) {
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
double duration() {
|
2016-11-11 02:43:47 +01:00
|
|
|
typedef std::chrono::duration<double> double_duration;
|
|
|
|
return std::chrono::duration_cast<double_duration>(boot_clock::now() - start_).count();
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-11-11 02:43:47 +01:00
|
|
|
boot_clock::time_point start_;
|
2015-03-28 07:20:44 +01:00
|
|
|
};
|
|
|
|
|
2010-04-14 05:35:46 +02:00
|
|
|
unsigned int decode_uid(const char *s);
|
|
|
|
|
2010-04-09 01:16:20 +02:00
|
|
|
int mkdir_recursive(const char *pathname, mode_t mode);
|
|
|
|
void sanitize(char *p);
|
2016-11-11 02:43:47 +01:00
|
|
|
int wait_for_file(const char *filename, std::chrono::nanoseconds timeout);
|
2015-05-07 04:19:24 +02:00
|
|
|
void import_kernel_cmdline(bool in_qemu,
|
2016-07-28 01:25:51 +02:00
|
|
|
const std::function<void(const std::string&, const std::string&, bool)>&);
|
2012-06-11 19:37:39 +02:00
|
|
|
int make_dir(const char *path, mode_t mode);
|
|
|
|
int restorecon(const char *pathname);
|
2013-07-12 00:38:26 +02:00
|
|
|
int restorecon_recursive(const char *pathname);
|
2016-07-16 00:21:34 +02:00
|
|
|
int restorecon_recursive_skipce(const char *pathname);
|
2015-05-08 17:30:33 +02:00
|
|
|
std::string bytes_to_hex(const uint8_t *bytes, size_t bytes_len);
|
2015-07-25 01:57:14 +02:00
|
|
|
bool is_dir(const char* pathname);
|
2015-08-26 20:43:36 +02:00
|
|
|
bool expand_props(const std::string& src, std::string* dst);
|
2010-04-14 05:35:46 +02:00
|
|
|
#endif
|