Utils.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  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. #ifndef ANDROID_VOLD_UTILS_H
  17. #define ANDROID_VOLD_UTILS_H
  18. #include "KeyBuffer.h"
  19. #include <android-base/macros.h>
  20. #include <cutils/multiuser.h>
  21. #include <selinux/selinux.h>
  22. #include <utils/Errors.h>
  23. #include <chrono>
  24. #include <string>
  25. #include <vector>
  26. struct DIR;
  27. namespace android {
  28. namespace vold {
  29. /* SELinux contexts used depending on the block device type */
  30. extern security_context_t sBlkidContext;
  31. extern security_context_t sBlkidUntrustedContext;
  32. extern security_context_t sFsckContext;
  33. extern security_context_t sFsckUntrustedContext;
  34. // TODO remove this with better solution, b/64143519
  35. extern bool sSleepOnUnmount;
  36. status_t CreateDeviceNode(const std::string& path, dev_t dev);
  37. status_t DestroyDeviceNode(const std::string& path);
  38. /* fs_prepare_dir wrapper that creates with SELinux context */
  39. status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid);
  40. /* Really unmounts the path, killing active processes along the way */
  41. status_t ForceUnmount(const std::string& path);
  42. /* Kills any processes using given path */
  43. status_t KillProcessesUsingPath(const std::string& path);
  44. /* Creates bind mount from source to target */
  45. status_t BindMount(const std::string& source, const std::string& target);
  46. /** Creates a symbolic link to target */
  47. status_t Symlink(const std::string& target, const std::string& linkpath);
  48. /** Calls unlink(2) at linkpath */
  49. status_t Unlink(const std::string& linkpath);
  50. /** Creates the given directory if it is not already available */
  51. status_t CreateDir(const std::string& dir, mode_t mode);
  52. bool FindValue(const std::string& raw, const std::string& key, std::string* value);
  53. /* Reads filesystem metadata from device at path */
  54. status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
  55. std::string* fsLabel);
  56. /* Reads filesystem metadata from untrusted device at path */
  57. status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid,
  58. std::string* fsLabel);
  59. /* Returns either WEXITSTATUS() status, or a negative errno */
  60. status_t ForkExecvp(const std::vector<std::string>& args, std::vector<std::string>* output = nullptr,
  61. security_context_t context = nullptr);
  62. pid_t ForkExecvpAsync(const std::vector<std::string>& args);
  63. /* Gets block device size in bytes */
  64. status_t GetBlockDevSize(int fd, uint64_t* size);
  65. status_t GetBlockDevSize(const std::string& path, uint64_t* size);
  66. /* Gets block device size in 512 byte sectors */
  67. status_t GetBlockDev512Sectors(const std::string& path, uint64_t* nr_sec);
  68. status_t ReadRandomBytes(size_t bytes, std::string& out);
  69. status_t ReadRandomBytes(size_t bytes, char* buffer);
  70. status_t GenerateRandomUuid(std::string& out);
  71. /* Converts hex string to raw bytes, ignoring [ :-] */
  72. status_t HexToStr(const std::string& hex, std::string& str);
  73. /* Converts raw bytes to hex string */
  74. status_t StrToHex(const std::string& str, std::string& hex);
  75. /* Converts raw key bytes to hex string */
  76. status_t StrToHex(const KeyBuffer& str, KeyBuffer& hex);
  77. /* Normalize given hex string into consistent format */
  78. status_t NormalizeHex(const std::string& in, std::string& out);
  79. uint64_t GetFreeBytes(const std::string& path);
  80. uint64_t GetTreeBytes(const std::string& path);
  81. bool IsFilesystemSupported(const std::string& fsType);
  82. /* Wipes contents of block device at given path */
  83. status_t WipeBlockDevice(const std::string& path);
  84. std::string BuildKeyPath(const std::string& partGuid);
  85. std::string BuildDataSystemLegacyPath(userid_t userid);
  86. std::string BuildDataSystemCePath(userid_t userid);
  87. std::string BuildDataSystemDePath(userid_t userid);
  88. std::string BuildDataMiscLegacyPath(userid_t userid);
  89. std::string BuildDataMiscCePath(userid_t userid);
  90. std::string BuildDataMiscDePath(userid_t userid);
  91. std::string BuildDataProfilesDePath(userid_t userid);
  92. std::string BuildDataVendorCePath(userid_t userid);
  93. std::string BuildDataVendorDePath(userid_t userid);
  94. std::string BuildDataPath(const std::string& volumeUuid);
  95. std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userid);
  96. std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userid);
  97. std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userid);
  98. dev_t GetDevice(const std::string& path);
  99. status_t RestoreconRecursive(const std::string& path);
  100. // TODO: promote to android::base
  101. bool Readlinkat(int dirfd, const std::string& path, std::string* result);
  102. /* Checks if Android is running in QEMU */
  103. bool IsRunningInEmulator();
  104. status_t UnmountTreeWithPrefix(const std::string& prefix);
  105. status_t UnmountTree(const std::string& mountPoint);
  106. status_t DeleteDirContentsAndDir(const std::string& pathname);
  107. status_t DeleteDirContents(const std::string& pathname);
  108. status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout);
  109. bool FsyncDirectory(const std::string& dirname);
  110. bool writeStringToFile(const std::string& payload, const std::string& filename);
  111. } // namespace vold
  112. } // namespace android
  113. #endif