blob: c88325a748f2129008c7f5c3c1eb6fa0807602a1 [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
20#include <utils/Errors.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include <cutils/multiuser.h>
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070022#include <selinux/selinux.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080023
Jeff Sharkey9c484982015-03-31 10:35:33 -070024#include <vector>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080025#include <string>
26
27// DISALLOW_COPY_AND_ASSIGN disallows the copy and operator= functions. It goes in the private:
28// declarations in a class.
29#if !defined(DISALLOW_COPY_AND_ASSIGN)
30#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
31 TypeName(const TypeName&) = delete; \
32 void operator=(const TypeName&) = delete
33#endif
34
35namespace android {
36namespace vold {
37
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070038/* SELinux contexts used depending on the block device type */
39extern security_context_t sBlkidContext;
40extern security_context_t sBlkidUntrustedContext;
41extern security_context_t sFsckContext;
42extern security_context_t sFsckUntrustedContext;
43
Jeff Sharkeydeb24052015-03-02 21:01:40 -080044status_t CreateDeviceNode(const std::string& path, dev_t dev);
45status_t DestroyDeviceNode(const std::string& path);
46
Jeff Sharkeyf0121c52015-04-06 14:08:45 -070047/* fs_prepare_dir wrapper that creates with SELinux context */
48status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid);
49
Jeff Sharkeydeb24052015-03-02 21:01:40 -080050/* Really unmounts the path, killing active processes along the way */
51status_t ForceUnmount(const std::string& path);
52
Jeff Sharkey89f74fb2015-10-21 12:16:12 -070053/* Kills any processes using given path */
54status_t KillProcessesUsingPath(const std::string& path);
55
Jeff Sharkey36801cc2015-03-13 16:09:20 -070056/* Creates bind mount from source to target */
57status_t BindMount(const std::string& source, const std::string& target);
58
Jeff Sharkey9c484982015-03-31 10:35:33 -070059/* Reads filesystem metadata from device at path */
60status_t ReadMetadata(const std::string& path, std::string& fsType,
61 std::string& fsUuid, std::string& fsLabel);
62
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070063/* Reads filesystem metadata from untrusted device at path */
64status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
65 std::string& fsUuid, std::string& fsLabel);
66
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070067/* Returns either WEXITSTATUS() status, or a negative errno */
68status_t ForkExecvp(const std::vector<std::string>& args);
69status_t ForkExecvp(const std::vector<std::string>& args, security_context_t context);
70
71status_t ForkExecvp(const std::vector<std::string>& args,
72 std::vector<std::string>& output);
73status_t ForkExecvp(const std::vector<std::string>& args,
74 std::vector<std::string>& output, security_context_t context);
Jeff Sharkey9c484982015-03-31 10:35:33 -070075
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070076pid_t ForkExecvpAsync(const std::vector<std::string>& args);
77
Jeff Sharkey9c484982015-03-31 10:35:33 -070078status_t ReadRandomBytes(size_t bytes, std::string& out);
79
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070080/* Converts hex string to raw bytes, ignoring [ :-] */
Jeff Sharkey9c484982015-03-31 10:35:33 -070081status_t HexToStr(const std::string& hex, std::string& str);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070082/* Converts raw bytes to hex string */
Jeff Sharkey9c484982015-03-31 10:35:33 -070083status_t StrToHex(const std::string& str, std::string& hex);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070084/* Normalize given hex string into consistent format */
85status_t NormalizeHex(const std::string& in, std::string& out);
Jeff Sharkey9c484982015-03-31 10:35:33 -070086
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070087uint64_t GetFreeBytes(const std::string& path);
88uint64_t GetTreeBytes(const std::string& path);
89
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070090bool IsFilesystemSupported(const std::string& fsType);
91
92/* Wipes contents of block device at given path */
93status_t WipeBlockDevice(const std::string& path);
94
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070095std::string BuildKeyPath(const std::string& partGuid);
96
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080097std::string BuildDataSystemCePath(userid_t userid);
98
99std::string BuildDataPath(const char* volumeUuid);
100std::string BuildDataUserPath(const char* volumeUuid, userid_t userid);
101std::string BuildDataUserDePath(const char* volumeUuid, userid_t userid);
102
Jeff Sharkey66270a22015-06-24 11:49:24 -0700103dev_t GetDevice(const std::string& path);
104
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700105std::string DefaultFstabPath();
106
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800107} // namespace vold
108} // namespace android
109
110#endif