Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 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 | |
Elliott Hughes | b635162 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 17 | #include "android-base/file.h" |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 18 | |
| 19 | #include <errno.h> |
| 20 | #include <fcntl.h> |
Mark Salyzyn | f2e7615 | 2018-11-13 13:38:33 -0800 | [diff] [blame] | 21 | #include <ftw.h> |
Colin Cross | 2e732e2 | 2017-02-23 21:23:05 -0800 | [diff] [blame] | 22 | #include <libgen.h> |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
Florian Mayer | c08f3d4 | 2018-10-23 15:56:28 +0100 | [diff] [blame] | 25 | #include <string.h> |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 26 | #include <sys/stat.h> |
| 27 | #include <sys/types.h> |
Elliott Hughes | a634a9a | 2016-08-23 15:53:45 -0700 | [diff] [blame] | 28 | #include <unistd.h> |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 29 | |
Josh Gao | 58668ac | 2016-09-01 12:31:42 -0700 | [diff] [blame] | 30 | #include <memory> |
Colin Cross | 2e732e2 | 2017-02-23 21:23:05 -0800 | [diff] [blame] | 31 | #include <mutex> |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 32 | #include <string> |
Elliott Hughes | a634a9a | 2016-08-23 15:53:45 -0700 | [diff] [blame] | 33 | #include <vector> |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 34 | |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 35 | #if defined(__APPLE__) |
Josh Gao | 58668ac | 2016-09-01 12:31:42 -0700 | [diff] [blame] | 36 | #include <mach-o/dyld.h> |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 37 | #endif |
| 38 | #if defined(_WIN32) |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 39 | #include <direct.h> |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 40 | #include <windows.h> |
Elliott Hughes | 62ecbaa | 2017-05-15 17:31:15 -0700 | [diff] [blame] | 41 | #define O_NOFOLLOW 0 |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 42 | #define OS_PATH_SEPARATOR '\\' |
| 43 | #else |
| 44 | #define OS_PATH_SEPARATOR '/' |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 45 | #endif |
| 46 | |
Mark Salyzyn | f2e7615 | 2018-11-13 13:38:33 -0800 | [diff] [blame] | 47 | #include "android-base/logging.h" // and must be after windows.h for ERROR |
| 48 | #include "android-base/macros.h" // For TEMP_FAILURE_RETRY on Darwin. |
| 49 | #include "android-base/unique_fd.h" |
| 50 | #include "android-base/utf8.h" |
| 51 | |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 52 | #ifdef _WIN32 |
| 53 | int mkstemp(char* template_name) { |
| 54 | if (_mktemp(template_name) == nullptr) { |
| 55 | return -1; |
| 56 | } |
| 57 | // Use open() to match the close() that TemporaryFile's destructor does. |
| 58 | // Use O_BINARY to match base file APIs. |
| 59 | return open(template_name, O_CREAT | O_EXCL | O_RDWR | O_BINARY, S_IRUSR | S_IWUSR); |
| 60 | } |
| 61 | |
| 62 | char* mkdtemp(char* template_name) { |
| 63 | if (_mktemp(template_name) == nullptr) { |
| 64 | return nullptr; |
| 65 | } |
| 66 | if (_mkdir(template_name) == -1) { |
| 67 | return nullptr; |
| 68 | } |
| 69 | return template_name; |
| 70 | } |
| 71 | #endif |
| 72 | |
| 73 | namespace { |
| 74 | |
| 75 | std::string GetSystemTempDir() { |
| 76 | #if defined(__ANDROID__) |
Mark Salyzyn | 00a6803 | 2018-11-13 15:34:38 -0800 | [diff] [blame] | 77 | const auto* tmpdir = getenv("TMPDIR"); |
| 78 | if (tmpdir == nullptr) tmpdir = "/data/local/tmp"; |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 79 | if (access(tmpdir, R_OK | W_OK | X_OK) == 0) { |
| 80 | return tmpdir; |
| 81 | } |
| 82 | // Tests running in app context can't access /data/local/tmp, |
| 83 | // so try current directory if /data/local/tmp is not accessible. |
| 84 | return "."; |
| 85 | #elif defined(_WIN32) |
| 86 | char tmp_dir[MAX_PATH]; |
Mark Salyzyn | 00a6803 | 2018-11-13 15:34:38 -0800 | [diff] [blame] | 87 | DWORD result = GetTempPathA(sizeof(tmp_dir), tmp_dir); // checks TMP env |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 88 | CHECK_NE(result, 0ul) << "GetTempPathA failed, error: " << GetLastError(); |
| 89 | CHECK_LT(result, sizeof(tmp_dir)) << "path truncated to: " << result; |
| 90 | |
| 91 | // GetTempPath() returns a path with a trailing slash, but init() |
| 92 | // does not expect that, so remove it. |
| 93 | CHECK_EQ(tmp_dir[result - 1], '\\'); |
| 94 | tmp_dir[result - 1] = '\0'; |
| 95 | return tmp_dir; |
| 96 | #else |
Mark Salyzyn | 00a6803 | 2018-11-13 15:34:38 -0800 | [diff] [blame] | 97 | const auto* tmpdir = getenv("TMPDIR"); |
| 98 | if (tmpdir == nullptr) tmpdir = "/tmp"; |
| 99 | return tmpdir; |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 100 | #endif |
| 101 | } |
| 102 | |
| 103 | } // namespace |
| 104 | |
| 105 | TemporaryFile::TemporaryFile() { |
| 106 | init(GetSystemTempDir()); |
| 107 | } |
| 108 | |
| 109 | TemporaryFile::TemporaryFile(const std::string& tmp_dir) { |
| 110 | init(tmp_dir); |
| 111 | } |
| 112 | |
| 113 | TemporaryFile::~TemporaryFile() { |
| 114 | if (fd != -1) { |
| 115 | close(fd); |
| 116 | } |
| 117 | if (remove_file_) { |
| 118 | unlink(path); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | int TemporaryFile::release() { |
| 123 | int result = fd; |
| 124 | fd = -1; |
| 125 | return result; |
| 126 | } |
| 127 | |
| 128 | void TemporaryFile::init(const std::string& tmp_dir) { |
| 129 | snprintf(path, sizeof(path), "%s%cTemporaryFile-XXXXXX", tmp_dir.c_str(), OS_PATH_SEPARATOR); |
| 130 | fd = mkstemp(path); |
| 131 | } |
| 132 | |
| 133 | TemporaryDir::TemporaryDir() { |
| 134 | init(GetSystemTempDir()); |
| 135 | } |
| 136 | |
| 137 | TemporaryDir::~TemporaryDir() { |
Mark Salyzyn | b6f6a20 | 2018-11-13 13:38:33 -0800 | [diff] [blame] | 138 | if (!remove_dir_and_contents_) return; |
| 139 | |
Mark Salyzyn | f2e7615 | 2018-11-13 13:38:33 -0800 | [diff] [blame] | 140 | auto callback = [](const char* child, const struct stat*, int file_type, struct FTW*) -> int { |
| 141 | switch (file_type) { |
| 142 | case FTW_D: |
| 143 | case FTW_DP: |
| 144 | case FTW_DNR: |
| 145 | if (rmdir(child) == -1) { |
| 146 | PLOG(ERROR) << "rmdir " << child; |
| 147 | } |
| 148 | break; |
| 149 | case FTW_NS: |
| 150 | default: |
| 151 | if (rmdir(child) != -1) break; |
| 152 | // FALLTHRU (for gcc, lint, pcc, etc; and following for clang) |
| 153 | FALLTHROUGH_INTENDED; |
| 154 | case FTW_F: |
| 155 | case FTW_SL: |
| 156 | case FTW_SLN: |
| 157 | if (unlink(child) == -1) { |
| 158 | PLOG(ERROR) << "unlink " << child; |
| 159 | } |
| 160 | break; |
| 161 | } |
| 162 | return 0; |
| 163 | }; |
| 164 | |
| 165 | nftw(path, callback, 128, FTW_DEPTH | FTW_MOUNT | FTW_PHYS); |
Mark Salyzyn | 40a4cb4 | 2018-11-12 12:29:14 -0800 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | bool TemporaryDir::init(const std::string& tmp_dir) { |
| 169 | snprintf(path, sizeof(path), "%s%cTemporaryDir-XXXXXX", tmp_dir.c_str(), OS_PATH_SEPARATOR); |
| 170 | return (mkdtemp(path) != nullptr); |
| 171 | } |
| 172 | |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 173 | namespace android { |
| 174 | namespace base { |
| 175 | |
Elliott Hughes | 774d7f6 | 2015-11-11 18:02:29 +0000 | [diff] [blame] | 176 | // Versions of standard library APIs that support UTF-8 strings. |
| 177 | using namespace android::base::utf8; |
| 178 | |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 179 | bool ReadFdToString(borrowed_fd fd, std::string* content) { |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 180 | content->clear(); |
| 181 | |
Elliott Hughes | e9ab7ad | 2017-03-20 19:16:18 -0700 | [diff] [blame] | 182 | // Although original we had small files in mind, this code gets used for |
| 183 | // very large files too, where the std::string growth heuristics might not |
| 184 | // be suitable. https://code.google.com/p/android/issues/detail?id=258500. |
| 185 | struct stat sb; |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 186 | if (fstat(fd.get(), &sb) != -1 && sb.st_size > 0) { |
Elliott Hughes | e9ab7ad | 2017-03-20 19:16:18 -0700 | [diff] [blame] | 187 | content->reserve(sb.st_size); |
| 188 | } |
| 189 | |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 190 | char buf[BUFSIZ]; |
| 191 | ssize_t n; |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 192 | while ((n = TEMP_FAILURE_RETRY(read(fd.get(), &buf[0], sizeof(buf)))) > 0) { |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 193 | content->append(buf, n); |
| 194 | } |
| 195 | return (n == 0) ? true : false; |
| 196 | } |
| 197 | |
Josh Gao | 8e1f0d8 | 2016-09-14 16:11:45 -0700 | [diff] [blame] | 198 | bool ReadFileToString(const std::string& path, std::string* content, bool follow_symlinks) { |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 199 | content->clear(); |
| 200 | |
Josh Gao | 8e1f0d8 | 2016-09-14 16:11:45 -0700 | [diff] [blame] | 201 | int flags = O_RDONLY | O_CLOEXEC | O_BINARY | (follow_symlinks ? 0 : O_NOFOLLOW); |
Christopher Ferris | bf0929f | 2017-04-05 12:09:17 -0700 | [diff] [blame] | 202 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), flags))); |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 203 | if (fd == -1) { |
| 204 | return false; |
| 205 | } |
Christopher Ferris | bf0929f | 2017-04-05 12:09:17 -0700 | [diff] [blame] | 206 | return ReadFdToString(fd, content); |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 209 | bool WriteStringToFd(const std::string& content, borrowed_fd fd) { |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 210 | const char* p = content.data(); |
| 211 | size_t left = content.size(); |
| 212 | while (left > 0) { |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 213 | ssize_t n = TEMP_FAILURE_RETRY(write(fd.get(), p, left)); |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 214 | if (n == -1) { |
| 215 | return false; |
| 216 | } |
| 217 | p += n; |
| 218 | left -= n; |
| 219 | } |
| 220 | return true; |
| 221 | } |
| 222 | |
| 223 | static bool CleanUpAfterFailedWrite(const std::string& path) { |
| 224 | // Something went wrong. Let's not leave a corrupt file lying around. |
| 225 | int saved_errno = errno; |
| 226 | unlink(path.c_str()); |
| 227 | errno = saved_errno; |
| 228 | return false; |
| 229 | } |
| 230 | |
| 231 | #if !defined(_WIN32) |
| 232 | bool WriteStringToFile(const std::string& content, const std::string& path, |
Josh Gao | 8e1f0d8 | 2016-09-14 16:11:45 -0700 | [diff] [blame] | 233 | mode_t mode, uid_t owner, gid_t group, |
| 234 | bool follow_symlinks) { |
| 235 | int flags = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY | |
| 236 | (follow_symlinks ? 0 : O_NOFOLLOW); |
Christopher Ferris | bf0929f | 2017-04-05 12:09:17 -0700 | [diff] [blame] | 237 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode))); |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 238 | if (fd == -1) { |
Elliott Hughes | 7d9a479 | 2016-07-28 15:15:28 -0700 | [diff] [blame] | 239 | PLOG(ERROR) << "android::WriteStringToFile open failed"; |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 240 | return false; |
| 241 | } |
| 242 | |
| 243 | // We do an explicit fchmod here because we assume that the caller really |
| 244 | // meant what they said and doesn't want the umask-influenced mode. |
| 245 | if (fchmod(fd, mode) == -1) { |
Elliott Hughes | 7d9a479 | 2016-07-28 15:15:28 -0700 | [diff] [blame] | 246 | PLOG(ERROR) << "android::WriteStringToFile fchmod failed"; |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 247 | return CleanUpAfterFailedWrite(path); |
| 248 | } |
| 249 | if (fchown(fd, owner, group) == -1) { |
Elliott Hughes | 7d9a479 | 2016-07-28 15:15:28 -0700 | [diff] [blame] | 250 | PLOG(ERROR) << "android::WriteStringToFile fchown failed"; |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 251 | return CleanUpAfterFailedWrite(path); |
| 252 | } |
| 253 | if (!WriteStringToFd(content, fd)) { |
Elliott Hughes | 7d9a479 | 2016-07-28 15:15:28 -0700 | [diff] [blame] | 254 | PLOG(ERROR) << "android::WriteStringToFile write failed"; |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 255 | return CleanUpAfterFailedWrite(path); |
| 256 | } |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 257 | return true; |
| 258 | } |
| 259 | #endif |
| 260 | |
Josh Gao | 8e1f0d8 | 2016-09-14 16:11:45 -0700 | [diff] [blame] | 261 | bool WriteStringToFile(const std::string& content, const std::string& path, |
| 262 | bool follow_symlinks) { |
| 263 | int flags = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY | |
| 264 | (follow_symlinks ? 0 : O_NOFOLLOW); |
Elliott Hughes | 62ecbaa | 2017-05-15 17:31:15 -0700 | [diff] [blame] | 265 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), flags, 0666))); |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 266 | if (fd == -1) { |
| 267 | return false; |
| 268 | } |
Christopher Ferris | bf0929f | 2017-04-05 12:09:17 -0700 | [diff] [blame] | 269 | return WriteStringToFd(content, fd) || CleanUpAfterFailedWrite(path); |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 272 | bool ReadFully(borrowed_fd fd, void* data, size_t byte_count) { |
Elliott Hughes | 20abc87 | 2015-04-24 21:57:16 -0700 | [diff] [blame] | 273 | uint8_t* p = reinterpret_cast<uint8_t*>(data); |
| 274 | size_t remaining = byte_count; |
| 275 | while (remaining > 0) { |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 276 | ssize_t n = TEMP_FAILURE_RETRY(read(fd.get(), p, remaining)); |
Elliott Hughes | 20abc87 | 2015-04-24 21:57:16 -0700 | [diff] [blame] | 277 | if (n <= 0) return false; |
| 278 | p += n; |
| 279 | remaining -= n; |
| 280 | } |
| 281 | return true; |
| 282 | } |
| 283 | |
Adam Lesinski | 6d6f9b3 | 2017-06-19 10:27:38 -0700 | [diff] [blame] | 284 | #if defined(_WIN32) |
| 285 | // Windows implementation of pread. Note that this DOES move the file descriptors read position, |
| 286 | // but it does so atomically. |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 287 | static ssize_t pread(borrowed_fd fd, void* data, size_t byte_count, off64_t offset) { |
Adam Lesinski | 6d6f9b3 | 2017-06-19 10:27:38 -0700 | [diff] [blame] | 288 | DWORD bytes_read; |
| 289 | OVERLAPPED overlapped; |
| 290 | memset(&overlapped, 0, sizeof(OVERLAPPED)); |
| 291 | overlapped.Offset = static_cast<DWORD>(offset); |
| 292 | overlapped.OffsetHigh = static_cast<DWORD>(offset >> 32); |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 293 | if (!ReadFile(reinterpret_cast<HANDLE>(_get_osfhandle(fd.get())), data, |
| 294 | static_cast<DWORD>(byte_count), &bytes_read, &overlapped)) { |
Adam Lesinski | 6d6f9b3 | 2017-06-19 10:27:38 -0700 | [diff] [blame] | 295 | // In case someone tries to read errno (since this is masquerading as a POSIX call) |
| 296 | errno = EIO; |
| 297 | return -1; |
| 298 | } |
| 299 | return static_cast<ssize_t>(bytes_read); |
| 300 | } |
| 301 | #endif |
| 302 | |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 303 | bool ReadFullyAtOffset(borrowed_fd fd, void* data, size_t byte_count, off64_t offset) { |
Adam Lesinski | 6d6f9b3 | 2017-06-19 10:27:38 -0700 | [diff] [blame] | 304 | uint8_t* p = reinterpret_cast<uint8_t*>(data); |
| 305 | while (byte_count > 0) { |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 306 | ssize_t n = TEMP_FAILURE_RETRY(pread(fd.get(), p, byte_count, offset)); |
Adam Lesinski | 6d6f9b3 | 2017-06-19 10:27:38 -0700 | [diff] [blame] | 307 | if (n <= 0) return false; |
| 308 | p += n; |
| 309 | byte_count -= n; |
| 310 | offset += n; |
| 311 | } |
| 312 | return true; |
| 313 | } |
| 314 | |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 315 | bool WriteFully(borrowed_fd fd, const void* data, size_t byte_count) { |
Elliott Hughes | 20abc87 | 2015-04-24 21:57:16 -0700 | [diff] [blame] | 316 | const uint8_t* p = reinterpret_cast<const uint8_t*>(data); |
| 317 | size_t remaining = byte_count; |
| 318 | while (remaining > 0) { |
Josh Gao | e440199 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 319 | ssize_t n = TEMP_FAILURE_RETRY(write(fd.get(), p, remaining)); |
Elliott Hughes | 20abc87 | 2015-04-24 21:57:16 -0700 | [diff] [blame] | 320 | if (n == -1) return false; |
| 321 | p += n; |
| 322 | remaining -= n; |
| 323 | } |
| 324 | return true; |
| 325 | } |
| 326 | |
Yabin Cui | 8f6a5a0 | 2016-01-29 17:25:54 -0800 | [diff] [blame] | 327 | bool RemoveFileIfExists(const std::string& path, std::string* err) { |
| 328 | struct stat st; |
| 329 | #if defined(_WIN32) |
liwugang | 78cea68 | 2018-07-11 13:24:49 +0800 | [diff] [blame] | 330 | // TODO: Windows version can't handle symbolic links correctly. |
Yabin Cui | 8f6a5a0 | 2016-01-29 17:25:54 -0800 | [diff] [blame] | 331 | int result = stat(path.c_str(), &st); |
| 332 | bool file_type_removable = (result == 0 && S_ISREG(st.st_mode)); |
| 333 | #else |
| 334 | int result = lstat(path.c_str(), &st); |
| 335 | bool file_type_removable = (result == 0 && (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))); |
| 336 | #endif |
liwugang | 78cea68 | 2018-07-11 13:24:49 +0800 | [diff] [blame] | 337 | if (result == -1) { |
| 338 | if (errno == ENOENT || errno == ENOTDIR) return true; |
| 339 | if (err != nullptr) *err = strerror(errno); |
| 340 | return false; |
| 341 | } |
| 342 | |
Yabin Cui | 8f6a5a0 | 2016-01-29 17:25:54 -0800 | [diff] [blame] | 343 | if (result == 0) { |
| 344 | if (!file_type_removable) { |
| 345 | if (err != nullptr) { |
liwugang | 78cea68 | 2018-07-11 13:24:49 +0800 | [diff] [blame] | 346 | *err = "is not a regular file or symbolic link"; |
Yabin Cui | 8f6a5a0 | 2016-01-29 17:25:54 -0800 | [diff] [blame] | 347 | } |
| 348 | return false; |
| 349 | } |
| 350 | if (unlink(path.c_str()) == -1) { |
| 351 | if (err != nullptr) { |
| 352 | *err = strerror(errno); |
| 353 | } |
| 354 | return false; |
| 355 | } |
| 356 | } |
| 357 | return true; |
| 358 | } |
| 359 | |
Elliott Hughes | a634a9a | 2016-08-23 15:53:45 -0700 | [diff] [blame] | 360 | #if !defined(_WIN32) |
| 361 | bool Readlink(const std::string& path, std::string* result) { |
| 362 | result->clear(); |
| 363 | |
| 364 | // Most Linux file systems (ext2 and ext4, say) limit symbolic links to |
| 365 | // 4095 bytes. Since we'll copy out into the string anyway, it doesn't |
| 366 | // waste memory to just start there. We add 1 so that we can recognize |
| 367 | // whether it actually fit (rather than being truncated to 4095). |
| 368 | std::vector<char> buf(4095 + 1); |
| 369 | while (true) { |
| 370 | ssize_t size = readlink(path.c_str(), &buf[0], buf.size()); |
| 371 | // Unrecoverable error? |
| 372 | if (size == -1) return false; |
| 373 | // It fit! (If size == buf.size(), it may have been truncated.) |
| 374 | if (static_cast<size_t>(size) < buf.size()) { |
| 375 | result->assign(&buf[0], size); |
| 376 | return true; |
| 377 | } |
| 378 | // Double our buffer and try again. |
| 379 | buf.resize(buf.size() * 2); |
| 380 | } |
| 381 | } |
| 382 | #endif |
| 383 | |
Dimitry Ivanov | 4edc04f | 2016-09-09 10:49:21 -0700 | [diff] [blame] | 384 | #if !defined(_WIN32) |
| 385 | bool Realpath(const std::string& path, std::string* result) { |
| 386 | result->clear(); |
| 387 | |
Yifan Hong | 26fd234 | 2019-03-21 15:20:53 -0700 | [diff] [blame] | 388 | // realpath may exit with EINTR. Retry if so. |
| 389 | char* realpath_buf = nullptr; |
| 390 | do { |
| 391 | realpath_buf = realpath(path.c_str(), nullptr); |
| 392 | } while (realpath_buf == nullptr && errno == EINTR); |
| 393 | |
Dimitry Ivanov | 4edc04f | 2016-09-09 10:49:21 -0700 | [diff] [blame] | 394 | if (realpath_buf == nullptr) { |
| 395 | return false; |
| 396 | } |
| 397 | result->assign(realpath_buf); |
| 398 | free(realpath_buf); |
| 399 | return true; |
| 400 | } |
| 401 | #endif |
| 402 | |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 403 | std::string GetExecutablePath() { |
| 404 | #if defined(__linux__) |
| 405 | std::string path; |
| 406 | android::base::Readlink("/proc/self/exe", &path); |
| 407 | return path; |
| 408 | #elif defined(__APPLE__) |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 409 | char path[PATH_MAX + 1]; |
Josh Gao | 58668ac | 2016-09-01 12:31:42 -0700 | [diff] [blame] | 410 | uint32_t path_len = sizeof(path); |
| 411 | int rc = _NSGetExecutablePath(path, &path_len); |
| 412 | if (rc < 0) { |
| 413 | std::unique_ptr<char> path_buf(new char[path_len]); |
| 414 | _NSGetExecutablePath(path_buf.get(), &path_len); |
| 415 | return path_buf.get(); |
| 416 | } |
Elliott Hughes | 48f0eb5 | 2016-08-31 15:07:18 -0700 | [diff] [blame] | 417 | return path; |
| 418 | #elif defined(_WIN32) |
| 419 | char path[PATH_MAX + 1]; |
| 420 | DWORD result = GetModuleFileName(NULL, path, sizeof(path) - 1); |
| 421 | if (result == 0 || result == sizeof(path) - 1) return ""; |
| 422 | path[PATH_MAX - 1] = 0; |
| 423 | return path; |
| 424 | #else |
| 425 | #error unknown OS |
| 426 | #endif |
| 427 | } |
| 428 | |
Colin Cross | 2909be0 | 2017-02-23 17:41:56 -0800 | [diff] [blame] | 429 | std::string GetExecutableDirectory() { |
| 430 | return Dirname(GetExecutablePath()); |
| 431 | } |
Colin Cross | 2e732e2 | 2017-02-23 21:23:05 -0800 | [diff] [blame] | 432 | |
Colin Cross | 2909be0 | 2017-02-23 17:41:56 -0800 | [diff] [blame] | 433 | std::string Basename(const std::string& path) { |
Colin Cross | 2e732e2 | 2017-02-23 21:23:05 -0800 | [diff] [blame] | 434 | // Copy path because basename may modify the string passed in. |
| 435 | std::string result(path); |
| 436 | |
| 437 | #if !defined(__BIONIC__) |
| 438 | // Use lock because basename() may write to a process global and return a |
| 439 | // pointer to that. Note that this locking strategy only works if all other |
| 440 | // callers to basename in the process also grab this same lock, but its |
| 441 | // better than nothing. Bionic's basename returns a thread-local buffer. |
| 442 | static std::mutex& basename_lock = *new std::mutex(); |
| 443 | std::lock_guard<std::mutex> lock(basename_lock); |
| 444 | #endif |
| 445 | |
| 446 | // Note that if std::string uses copy-on-write strings, &str[0] will cause |
| 447 | // the copy to be made, so there is no chance of us accidentally writing to |
| 448 | // the storage for 'path'. |
| 449 | char* name = basename(&result[0]); |
| 450 | |
| 451 | // In case basename returned a pointer to a process global, copy that string |
| 452 | // before leaving the lock. |
| 453 | result.assign(name); |
| 454 | |
| 455 | return result; |
| 456 | } |
| 457 | |
| 458 | std::string Dirname(const std::string& path) { |
| 459 | // Copy path because dirname may modify the string passed in. |
| 460 | std::string result(path); |
| 461 | |
| 462 | #if !defined(__BIONIC__) |
| 463 | // Use lock because dirname() may write to a process global and return a |
| 464 | // pointer to that. Note that this locking strategy only works if all other |
| 465 | // callers to dirname in the process also grab this same lock, but its |
| 466 | // better than nothing. Bionic's dirname returns a thread-local buffer. |
| 467 | static std::mutex& dirname_lock = *new std::mutex(); |
| 468 | std::lock_guard<std::mutex> lock(dirname_lock); |
| 469 | #endif |
| 470 | |
| 471 | // Note that if std::string uses copy-on-write strings, &str[0] will cause |
| 472 | // the copy to be made, so there is no chance of us accidentally writing to |
| 473 | // the storage for 'path'. |
| 474 | char* parent = dirname(&result[0]); |
| 475 | |
| 476 | // In case dirname returned a pointer to a process global, copy that string |
| 477 | // before leaving the lock. |
| 478 | result.assign(parent); |
| 479 | |
| 480 | return result; |
| 481 | } |
| 482 | |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 483 | } // namespace base |
| 484 | } // namespace android |