blob: 574bcd40f1230061359adb41a2f05420735e8e5a [file] [log] [blame]
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001/*
2 * Copyright (C) 2015 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 ANDROID_VOLD_UTILS_H
18#define ANDROID_VOLD_UTILS_H
19
Pavel Grafove2e2d302017-08-01 17:15:53 +010020#include "KeyBuffer.h"
21
Jeff Sharkey814e9d32017-09-13 11:49:44 -060022#include <android-base/macros.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080023#include <cutils/multiuser.h>
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070024#include <selinux/selinux.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070025#include <utils/Errors.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080026
Paul Crowley298fa322018-10-30 15:59:24 -070027#include <chrono>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080028#include <string>
Paul Crowley14c8c072018-09-18 13:30:21 -070029#include <vector>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080030
Daichi Hirono10d34882016-01-29 14:33:51 +090031struct DIR;
32
Jeff Sharkeydeb24052015-03-02 21:01:40 -080033namespace android {
34namespace vold {
35
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070036/* SELinux contexts used depending on the block device type */
37extern security_context_t sBlkidContext;
38extern security_context_t sBlkidUntrustedContext;
39extern security_context_t sFsckContext;
40extern security_context_t sFsckUntrustedContext;
41
Paul Crowley56292ef2017-10-20 08:07:53 -070042// TODO remove this with better solution, b/64143519
43extern bool sSleepOnUnmount;
44
Jeff Sharkeydeb24052015-03-02 21:01:40 -080045status_t CreateDeviceNode(const std::string& path, dev_t dev);
46status_t DestroyDeviceNode(const std::string& path);
47
Jeff Sharkeyf0121c52015-04-06 14:08:45 -070048/* fs_prepare_dir wrapper that creates with SELinux context */
49status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid);
50
Jeff Sharkeydeb24052015-03-02 21:01:40 -080051/* Really unmounts the path, killing active processes along the way */
52status_t ForceUnmount(const std::string& path);
53
Jeff Sharkey89f74fb2015-10-21 12:16:12 -070054/* Kills any processes using given path */
55status_t KillProcessesUsingPath(const std::string& path);
56
Jeff Sharkey36801cc2015-03-13 16:09:20 -070057/* Creates bind mount from source to target */
58status_t BindMount(const std::string& source, const std::string& target);
59
Sudheer Shanka023b5392019-02-06 12:39:19 -080060/** Creates a symbolic link to target */
61status_t Symlink(const std::string& target, const std::string& linkpath);
62
63/** Calls unlink(2) at linkpath */
64status_t Unlink(const std::string& linkpath);
65
Jeff Sharkey3472e522017-10-06 18:02:53 -060066bool FindValue(const std::string& raw, const std::string& key, std::string* value);
67
Jeff Sharkey9c484982015-03-31 10:35:33 -070068/* Reads filesystem metadata from device at path */
Paul Crowley14c8c072018-09-18 13:30:21 -070069status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
70 std::string* fsLabel);
Jeff Sharkey9c484982015-03-31 10:35:33 -070071
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070072/* Reads filesystem metadata from untrusted device at path */
Paul Crowley14c8c072018-09-18 13:30:21 -070073status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid,
74 std::string* fsLabel);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070075
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070076/* Returns either WEXITSTATUS() status, or a negative errno */
Paul Crowleyde2d6202018-11-30 11:43:47 -080077status_t ForkExecvp(const std::vector<std::string>& args, std::vector<std::string>* output = nullptr,
78 security_context_t context = nullptr);
Jeff Sharkey9c484982015-03-31 10:35:33 -070079
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070080pid_t ForkExecvpAsync(const std::vector<std::string>& args);
81
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +020082/* Gets block device size in bytes */
83status_t GetBlockDevSize(int fd, uint64_t* size);
84status_t GetBlockDevSize(const std::string& path, uint64_t* size);
85/* Gets block device size in 512 byte sectors */
86status_t GetBlockDev512Sectors(const std::string& path, uint64_t* nr_sec);
87
Jeff Sharkey9c484982015-03-31 10:35:33 -070088status_t ReadRandomBytes(size_t bytes, std::string& out);
Pavel Grafove2e2d302017-08-01 17:15:53 +010089status_t ReadRandomBytes(size_t bytes, char* buffer);
Jeff Sharkey46bb69f2017-06-21 13:52:23 -060090status_t GenerateRandomUuid(std::string& out);
Jeff Sharkey9c484982015-03-31 10:35:33 -070091
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070092/* Converts hex string to raw bytes, ignoring [ :-] */
Jeff Sharkey9c484982015-03-31 10:35:33 -070093status_t HexToStr(const std::string& hex, std::string& str);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070094/* Converts raw bytes to hex string */
Jeff Sharkey9c484982015-03-31 10:35:33 -070095status_t StrToHex(const std::string& str, std::string& hex);
Pavel Grafove2e2d302017-08-01 17:15:53 +010096/* Converts raw key bytes to hex string */
97status_t StrToHex(const KeyBuffer& str, KeyBuffer& hex);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070098/* Normalize given hex string into consistent format */
99status_t NormalizeHex(const std::string& in, std::string& out);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700100
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700101uint64_t GetFreeBytes(const std::string& path);
102uint64_t GetTreeBytes(const std::string& path);
103
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700104bool IsFilesystemSupported(const std::string& fsType);
105
106/* Wipes contents of block device at given path */
107status_t WipeBlockDevice(const std::string& path);
108
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700109std::string BuildKeyPath(const std::string& partGuid);
110
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600111std::string BuildDataSystemLegacyPath(userid_t userid);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800112std::string BuildDataSystemCePath(userid_t userid);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700113std::string BuildDataSystemDePath(userid_t userid);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600114std::string BuildDataMiscLegacyPath(userid_t userid);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700115std::string BuildDataMiscCePath(userid_t userid);
116std::string BuildDataMiscDePath(userid_t userid);
Calin Juravle79f55a42016-02-17 20:14:46 +0000117std::string BuildDataProfilesDePath(userid_t userid);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800118std::string BuildDataVendorCePath(userid_t userid);
119std::string BuildDataVendorDePath(userid_t userid);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800120
Paul Crowley3b71fc52017-10-09 10:55:21 -0700121std::string BuildDataPath(const std::string& volumeUuid);
122std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userid);
123std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userid);
124std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userid);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800125
Jeff Sharkey66270a22015-06-24 11:49:24 -0700126dev_t GetDevice(const std::string& path);
127
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600128status_t RestoreconRecursive(const std::string& path);
129
Jeff Sharkey3472e522017-10-06 18:02:53 -0600130// TODO: promote to android::base
131bool Readlinkat(int dirfd, const std::string& path, std::string* result);
Daichi Hirono10d34882016-01-29 14:33:51 +0900132
Yu Ning942d4e82016-01-08 17:36:47 +0800133/* Checks if Android is running in QEMU */
134bool IsRunningInEmulator();
135
Sudheer Shanka295fb242019-01-16 23:04:07 -0800136status_t UnmountTreeWithPrefix(const std::string& prefix);
137status_t UnmountTree(const std::string& mountPoint);
Sudheer Shanka89ddf992018-09-25 14:22:07 -0700138
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700139status_t DeleteDirContentsAndDir(const std::string& pathname);
140
Paul Crowley298fa322018-10-30 15:59:24 -0700141status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout);
142
Paul Crowley621d9b92018-12-07 15:36:09 -0800143bool FsyncDirectory(const std::string& dirname);
144
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800145} // namespace vold
146} // namespace android
147
148#endif