test_utils.cc 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. //
  2. // Copyright (C) 2012 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. #include "update_engine/common/test_utils.h"
  17. #include <dirent.h>
  18. #include <errno.h>
  19. #include <fcntl.h>
  20. #include <linux/loop.h>
  21. #include <linux/major.h>
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <sys/ioctl.h>
  25. #include <sys/mount.h>
  26. #include <sys/stat.h>
  27. #include <sys/sysmacros.h>
  28. #include <sys/types.h>
  29. #include <unistd.h>
  30. #include <set>
  31. #include <string>
  32. #include <vector>
  33. #include <base/files/file_util.h>
  34. #include <base/logging.h>
  35. #include "update_engine/common/error_code_utils.h"
  36. #include "update_engine/common/utils.h"
  37. #include "update_engine/payload_consumer/file_writer.h"
  38. using std::set;
  39. using std::string;
  40. using std::vector;
  41. namespace {
  42. #ifdef __ANDROID__
  43. #define kLoopDevicePrefix "/dev/block/loop"
  44. #else
  45. #define kLoopDevicePrefix "/dev/loop"
  46. #endif // __ANDROID__
  47. } // namespace
  48. namespace chromeos_update_engine {
  49. void PrintTo(const Extent& extent, ::std::ostream* os) {
  50. *os << "(" << extent.start_block() << ", " << extent.num_blocks() << ")";
  51. }
  52. void PrintTo(const ErrorCode& error_code, ::std::ostream* os) {
  53. *os << utils::ErrorCodeToString(error_code);
  54. }
  55. namespace test_utils {
  56. const uint8_t kRandomString[] = {
  57. 0xf2, 0xb7, 0x55, 0x92, 0xea, 0xa6, 0xc9, 0x57, 0xe0, 0xf8, 0xeb, 0x34,
  58. 0x93, 0xd9, 0xc4, 0x8f, 0xcb, 0x20, 0xfa, 0x37, 0x4b, 0x40, 0xcf, 0xdc,
  59. 0xa5, 0x08, 0x70, 0x89, 0x79, 0x35, 0xe2, 0x3d, 0x56, 0xa4, 0x75, 0x73,
  60. 0xa3, 0x6d, 0xd1, 0xd5, 0x26, 0xbb, 0x9c, 0x60, 0xbd, 0x2f, 0x5a, 0xfa,
  61. 0xb7, 0xd4, 0x3a, 0x50, 0xa7, 0x6b, 0x3e, 0xfd, 0x61, 0x2b, 0x3a, 0x31,
  62. 0x30, 0x13, 0x33, 0x53, 0xdb, 0xd0, 0x32, 0x71, 0x5c, 0x39, 0xed, 0xda,
  63. 0xb4, 0x84, 0xca, 0xbc, 0xbd, 0x78, 0x1c, 0x0c, 0xd8, 0x0b, 0x41, 0xe8,
  64. 0xe1, 0xe0, 0x41, 0xad, 0x03, 0x12, 0xd3, 0x3d, 0xb8, 0x75, 0x9b, 0xe6,
  65. 0xd9, 0x01, 0xd0, 0x87, 0xf4, 0x36, 0xfa, 0xa7, 0x0a, 0xfa, 0xc5, 0x87,
  66. 0x65, 0xab, 0x9a, 0x7b, 0xeb, 0x58, 0x23, 0xf0, 0xa8, 0x0a, 0xf2, 0x33,
  67. 0x3a, 0xe2, 0xe3, 0x35, 0x74, 0x95, 0xdd, 0x3c, 0x59, 0x5a, 0xd9, 0x52,
  68. 0x3a, 0x3c, 0xac, 0xe5, 0x15, 0x87, 0x6d, 0x82, 0xbc, 0xf8, 0x7d, 0xbe,
  69. 0xca, 0xd3, 0x2c, 0xd6, 0xec, 0x38, 0xeb, 0xe4, 0x53, 0xb0, 0x4c, 0x3f,
  70. 0x39, 0x29, 0xf7, 0xa4, 0x73, 0xa8, 0xcb, 0x32, 0x50, 0x05, 0x8c, 0x1c,
  71. 0x1c, 0xca, 0xc9, 0x76, 0x0b, 0x8f, 0x6b, 0x57, 0x1f, 0x24, 0x2b, 0xba,
  72. 0x82, 0xba, 0xed, 0x58, 0xd8, 0xbf, 0xec, 0x06, 0x64, 0x52, 0x6a, 0x3f,
  73. 0xe4, 0xad, 0xce, 0x84, 0xb4, 0x27, 0x55, 0x14, 0xe3, 0x75, 0x59, 0x73,
  74. 0x71, 0x51, 0xea, 0xe8, 0xcc, 0xda, 0x4f, 0x09, 0xaf, 0xa4, 0xbc, 0x0e,
  75. 0xa6, 0x1f, 0xe2, 0x3a, 0xf8, 0x96, 0x7d, 0x30, 0x23, 0xc5, 0x12, 0xb5,
  76. 0xd8, 0x73, 0x6b, 0x71, 0xab, 0xf1, 0xd7, 0x43, 0x58, 0xa7, 0xc9, 0xf0,
  77. 0xe4, 0x85, 0x1c, 0xd6, 0x92, 0x50, 0x2c, 0x98, 0x36, 0xfe, 0x87, 0xaf,
  78. 0x43, 0x8f, 0x8f, 0xf5, 0x88, 0x48, 0x18, 0x42, 0xcf, 0x42, 0xc1, 0xa8,
  79. 0xe8, 0x05, 0x08, 0xa1, 0x45, 0x70, 0x5b, 0x8c, 0x39, 0x28, 0xab, 0xe9,
  80. 0x6b, 0x51, 0xd2, 0xcb, 0x30, 0x04, 0xea, 0x7d, 0x2f, 0x6e, 0x6c, 0x3b,
  81. 0x5f, 0x82, 0xd9, 0x5b, 0x89, 0x37, 0x65, 0x65, 0xbe, 0x9f, 0xa3, 0x5d,
  82. };
  83. string Readlink(const string& path) {
  84. vector<char> buf(PATH_MAX + 1);
  85. ssize_t r = readlink(path.c_str(), buf.data(), buf.size());
  86. if (r < 0)
  87. return "";
  88. CHECK_LT(r, static_cast<ssize_t>(buf.size()));
  89. return string(buf.begin(), buf.begin() + r);
  90. }
  91. bool WriteFileVector(const string& path, const brillo::Blob& data) {
  92. return utils::WriteFile(path.c_str(), data.data(), data.size());
  93. }
  94. bool WriteFileString(const string& path, const string& data) {
  95. return utils::WriteFile(path.c_str(), data.data(), data.size());
  96. }
  97. bool BindToUnusedLoopDevice(const string& filename,
  98. bool writable,
  99. string* out_lo_dev_name) {
  100. CHECK(out_lo_dev_name);
  101. // Get the next available loop-device.
  102. int control_fd =
  103. HANDLE_EINTR(open("/dev/loop-control", O_RDWR | O_LARGEFILE));
  104. TEST_AND_RETURN_FALSE_ERRNO(control_fd >= 0);
  105. int loop_number = ioctl(control_fd, LOOP_CTL_GET_FREE);
  106. IGNORE_EINTR(close(control_fd));
  107. *out_lo_dev_name = kLoopDevicePrefix + std::to_string(loop_number);
  108. // Double check that the loop exists and is free.
  109. int loop_device_fd =
  110. HANDLE_EINTR(open(out_lo_dev_name->c_str(), O_RDWR | O_LARGEFILE));
  111. if (loop_device_fd == -1 && errno == ENOENT) {
  112. // Workaround the case when the loop device doesn't exist.
  113. TEST_AND_RETURN_FALSE_ERRNO(mknod(out_lo_dev_name->c_str(),
  114. S_IFBLK | 0660,
  115. makedev(LOOP_MAJOR, loop_number)) == 0);
  116. loop_device_fd =
  117. HANDLE_EINTR(open(out_lo_dev_name->c_str(), O_RDWR | O_LARGEFILE));
  118. }
  119. TEST_AND_RETURN_FALSE_ERRNO(loop_device_fd != -1);
  120. ScopedFdCloser loop_device_fd_closer(&loop_device_fd);
  121. struct loop_info64 device_info;
  122. if (ioctl(loop_device_fd, LOOP_GET_STATUS64, &device_info) != -1 ||
  123. errno != ENXIO) {
  124. PLOG(ERROR) << "Loop device " << out_lo_dev_name->c_str()
  125. << " already in use";
  126. return false;
  127. }
  128. // Open our data file and assign it to the loop device.
  129. int data_fd = open(filename.c_str(),
  130. (writable ? O_RDWR : O_RDONLY) | O_LARGEFILE | O_CLOEXEC);
  131. TEST_AND_RETURN_FALSE_ERRNO(data_fd >= 0);
  132. ScopedFdCloser data_fd_closer(&data_fd);
  133. TEST_AND_RETURN_FALSE_ERRNO(ioctl(loop_device_fd, LOOP_SET_FD, data_fd) == 0);
  134. memset(&device_info, 0, sizeof(device_info));
  135. device_info.lo_offset = 0;
  136. device_info.lo_sizelimit = 0; // 0 means whole file.
  137. device_info.lo_flags = (writable ? 0 : LO_FLAGS_READ_ONLY);
  138. device_info.lo_number = loop_number;
  139. strncpy(reinterpret_cast<char*>(device_info.lo_file_name),
  140. base::FilePath(filename).BaseName().value().c_str(),
  141. LO_NAME_SIZE - 1);
  142. device_info.lo_file_name[LO_NAME_SIZE - 1] = '\0';
  143. TEST_AND_RETURN_FALSE_ERRNO(
  144. ioctl(loop_device_fd, LOOP_SET_STATUS64, &device_info) == 0);
  145. if (writable) {
  146. // Make sure loop device isn't read only.
  147. int ro = 0;
  148. if (ioctl(loop_device_fd, BLKROSET, &ro) != 0) {
  149. PLOG(WARNING) << "Failed to mark loop device writable.";
  150. }
  151. }
  152. return true;
  153. }
  154. bool UnbindLoopDevice(const string& lo_dev_name) {
  155. int loop_device_fd =
  156. HANDLE_EINTR(open(lo_dev_name.c_str(), O_RDWR | O_LARGEFILE));
  157. if (loop_device_fd == -1 && errno == ENOENT)
  158. return true;
  159. TEST_AND_RETURN_FALSE_ERRNO(loop_device_fd != -1);
  160. ScopedFdCloser loop_device_fd_closer(&loop_device_fd);
  161. struct loop_info64 device_info;
  162. // Check if the device is bound before trying to unbind it.
  163. int get_stat_err = ioctl(loop_device_fd, LOOP_GET_STATUS64, &device_info);
  164. if (get_stat_err == -1 && errno == ENXIO)
  165. return true;
  166. TEST_AND_RETURN_FALSE_ERRNO(ioctl(loop_device_fd, LOOP_CLR_FD) == 0);
  167. return true;
  168. }
  169. bool ExpectVectorsEq(const brillo::Blob& expected, const brillo::Blob& actual) {
  170. EXPECT_EQ(expected.size(), actual.size());
  171. if (expected.size() != actual.size())
  172. return false;
  173. bool is_all_eq = true;
  174. for (unsigned int i = 0; i < expected.size(); i++) {
  175. EXPECT_EQ(expected[i], actual[i]) << "offset: " << i;
  176. is_all_eq = is_all_eq && (expected[i] == actual[i]);
  177. }
  178. return is_all_eq;
  179. }
  180. void FillWithData(brillo::Blob* buffer) {
  181. size_t input_counter = 0;
  182. for (uint8_t& b : *buffer) {
  183. b = kRandomString[input_counter];
  184. input_counter++;
  185. input_counter %= sizeof(kRandomString);
  186. }
  187. }
  188. ScopedLoopMounter::ScopedLoopMounter(const string& file_path,
  189. string* mnt_path,
  190. unsigned long flags) { // NOLINT - long
  191. EXPECT_TRUE(temp_dir_.CreateUniqueTempDir());
  192. *mnt_path = temp_dir_.GetPath().value();
  193. string loop_dev;
  194. loop_binder_.reset(
  195. new ScopedLoopbackDeviceBinder(file_path, true, &loop_dev));
  196. EXPECT_TRUE(utils::MountFilesystem(loop_dev, *mnt_path, flags, "", ""));
  197. unmounter_.reset(new ScopedFilesystemUnmounter(*mnt_path));
  198. }
  199. base::FilePath GetBuildArtifactsPath() {
  200. base::FilePath exe_path;
  201. base::ReadSymbolicLink(base::FilePath("/proc/self/exe"), &exe_path);
  202. return exe_path.DirName();
  203. }
  204. string GetBuildArtifactsPath(const string& relative_path) {
  205. return GetBuildArtifactsPath().Append(relative_path).value();
  206. }
  207. } // namespace test_utils
  208. } // namespace chromeos_update_engine