blob: 228727a32ec1bc255cc3423e8d204ea5180af20a [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 Sharkey95c87cc2015-04-01 11:54:32 -070021#include <selinux/selinux.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080022
Jeff Sharkey9c484982015-03-31 10:35:33 -070023#include <vector>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080024#include <string>
25
26// DISALLOW_COPY_AND_ASSIGN disallows the copy and operator= functions. It goes in the private:
27// declarations in a class.
28#if !defined(DISALLOW_COPY_AND_ASSIGN)
29#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
30 TypeName(const TypeName&) = delete; \
31 void operator=(const TypeName&) = delete
32#endif
33
34namespace android {
35namespace vold {
36
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070037/* SELinux contexts used depending on the block device type */
38extern security_context_t sBlkidContext;
39extern security_context_t sBlkidUntrustedContext;
40extern security_context_t sFsckContext;
41extern security_context_t sFsckUntrustedContext;
42
Jeff Sharkeydeb24052015-03-02 21:01:40 -080043status_t CreateDeviceNode(const std::string& path, dev_t dev);
44status_t DestroyDeviceNode(const std::string& path);
45
Jeff Sharkeyf0121c52015-04-06 14:08:45 -070046/* fs_prepare_dir wrapper that creates with SELinux context */
47status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid);
48
Jeff Sharkeydeb24052015-03-02 21:01:40 -080049/* Really unmounts the path, killing active processes along the way */
50status_t ForceUnmount(const std::string& path);
51
Jeff Sharkey89f74fb2015-10-21 12:16:12 -070052/* Kills any processes using given path */
53status_t KillProcessesUsingPath(const std::string& path);
54
Jeff Sharkey36801cc2015-03-13 16:09:20 -070055/* Creates bind mount from source to target */
56status_t BindMount(const std::string& source, const std::string& target);
57
Jeff Sharkey9c484982015-03-31 10:35:33 -070058/* Reads filesystem metadata from device at path */
59status_t ReadMetadata(const std::string& path, std::string& fsType,
60 std::string& fsUuid, std::string& fsLabel);
61
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070062/* Reads filesystem metadata from untrusted device at path */
63status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
64 std::string& fsUuid, std::string& fsLabel);
65
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070066/* Returns either WEXITSTATUS() status, or a negative errno */
67status_t ForkExecvp(const std::vector<std::string>& args);
68status_t ForkExecvp(const std::vector<std::string>& args, security_context_t context);
69
70status_t ForkExecvp(const std::vector<std::string>& args,
71 std::vector<std::string>& output);
72status_t ForkExecvp(const std::vector<std::string>& args,
73 std::vector<std::string>& output, security_context_t context);
Jeff Sharkey9c484982015-03-31 10:35:33 -070074
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070075pid_t ForkExecvpAsync(const std::vector<std::string>& args);
76
Jeff Sharkey9c484982015-03-31 10:35:33 -070077status_t ReadRandomBytes(size_t bytes, std::string& out);
78
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070079/* Converts hex string to raw bytes, ignoring [ :-] */
Jeff Sharkey9c484982015-03-31 10:35:33 -070080status_t HexToStr(const std::string& hex, std::string& str);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070081/* Converts raw bytes to hex string */
Jeff Sharkey9c484982015-03-31 10:35:33 -070082status_t StrToHex(const std::string& str, std::string& hex);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070083/* Normalize given hex string into consistent format */
84status_t NormalizeHex(const std::string& in, std::string& out);
Jeff Sharkey9c484982015-03-31 10:35:33 -070085
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070086uint64_t GetFreeBytes(const std::string& path);
87uint64_t GetTreeBytes(const std::string& path);
88
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070089bool IsFilesystemSupported(const std::string& fsType);
90
91/* Wipes contents of block device at given path */
92status_t WipeBlockDevice(const std::string& path);
93
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070094std::string BuildKeyPath(const std::string& partGuid);
95
Jeff Sharkey66270a22015-06-24 11:49:24 -070096dev_t GetDevice(const std::string& path);
97
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070098std::string DefaultFstabPath();
99
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800100} // namespace vold
101} // namespace android
102
103#endif