blob: f020da8c16d2fa16913744d030157ffd85613028 [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 Hughesf682b472015-02-06 12:19:48 -080023#include <string>
Nick Kralevichf667a322015-04-25 17:42:52 -070024#include <functional>
Elliott Hughesf682b472015-02-06 12:19:48 -080025
Andreas Gampea016c422014-11-24 19:52:41 -080026#define COLDBOOT_DONE "/dev/.coldboot_done"
Colin Crossf83d0b92010-04-21 12:04:20 -070027
Colin Cross3899e9f2010-04-13 20:35:46 -070028int create_socket(const char *name, int type, mode_t perm,
Stephen Smalley8348d272013-05-13 12:37:04 -040029 uid_t uid, gid_t gid, const char *socketcon);
Elliott Hughesf682b472015-02-06 12:19:48 -080030
31bool read_file(const char* path, std::string* content);
32int write_file(const char* path, const char* content);
33
Elliott Hughesda40c002015-03-27 23:20:44 -070034time_t gettime();
35uint64_t gettime_ns();
36
37class Timer {
38 public:
39 Timer() : t0(gettime_ns()) {
40 }
41
42 double duration() {
43 return static_cast<double>(gettime_ns() - t0) / 1000000000.0;
44 }
45
46 private:
47 uint64_t t0;
48};
49
Colin Cross3899e9f2010-04-13 20:35:46 -070050unsigned int decode_uid(const char *s);
51
Colin Crossb0ab94b2010-04-08 16:16:20 -070052int mkdir_recursive(const char *pathname, mode_t mode);
53void sanitize(char *p);
Chris Fries79f33842013-09-05 13:19:21 -050054void make_link_init(const char *oldpath, const char *newpath);
Colin Crossb0ab94b2010-04-08 16:16:20 -070055void remove_link(const char *oldpath, const char *newpath);
Colin Crosscd0f1732010-04-19 17:10:24 -070056int wait_for_file(const char *filename, int timeout);
Elliott Hughese5ce30f2015-05-06 19:19:24 -070057void import_kernel_cmdline(bool in_qemu,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -070058 const std::function<void(const std::string&, const std::string&, bool)>&);
Stephen Smalleye096e362012-06-11 13:37:39 -040059int make_dir(const char *path, mode_t mode);
60int restorecon(const char *pathname);
Nick Kralevichae76f6d2013-07-11 15:38:26 -070061int restorecon_recursive(const char *pathname);
Andres Moralesdb5f5d42015-05-08 08:30:33 -070062std::string bytes_to_hex(const uint8_t *bytes, size_t bytes_len);
Lee Campbellf13b1b32015-07-24 16:57:14 -070063bool is_dir(const char* pathname);
Tom Cherryb7349902015-08-26 11:43:36 -070064bool expand_props(const std::string& src, std::string* dst);
Colin Cross3899e9f2010-04-13 20:35:46 -070065#endif