Rafael Espindola | f1fc382 | 2013-06-26 19:33:03 +0000 | [diff] [blame] | 1 | //===- llvm/Support/Unix/Path.inc - Unix Path Implementation ----*- C++ -*-===// |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Rafael Espindola | f1fc382 | 2013-06-26 19:33:03 +0000 | [diff] [blame] | 10 | // This file implements the Unix specific implementation of the Path API. |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | //=== WARNING: Implementation here must contain only generic UNIX code that |
| 16 | //=== is guaranteed to work on *all* UNIX variants. |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
| 19 | #include "Unix.h" |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 20 | #include <limits.h> |
| 21 | #include <stdio.h> |
Michael J. Spencer | 9fc1d9d | 2010-12-01 19:32:01 +0000 | [diff] [blame] | 22 | #if HAVE_SYS_STAT_H |
| 23 | #include <sys/stat.h> |
| 24 | #endif |
| 25 | #if HAVE_FCNTL_H |
| 26 | #include <fcntl.h> |
| 27 | #endif |
Taewook Oh | d915327 | 2016-06-13 15:54:56 +0000 | [diff] [blame] | 28 | #ifdef HAVE_UNISTD_H |
| 29 | #include <unistd.h> |
| 30 | #endif |
Nick Kledzik | 18497e9 | 2012-06-20 00:28:54 +0000 | [diff] [blame] | 31 | #ifdef HAVE_SYS_MMAN_H |
| 32 | #include <sys/mman.h> |
| 33 | #endif |
Michael J. Spencer | 9fc1d9d | 2010-12-01 19:32:01 +0000 | [diff] [blame] | 34 | |
Nico Weber | f3db8e3 | 2018-04-02 17:17:29 +0000 | [diff] [blame] | 35 | #include <dirent.h> |
Zachary Turner | e48ace6 | 2017-03-10 17:39:21 +0000 | [diff] [blame] | 36 | #include <pwd.h> |
| 37 | |
Rafael Espindola | 4601c46 | 2013-06-26 05:25:44 +0000 | [diff] [blame] | 38 | #ifdef __APPLE__ |
| 39 | #include <mach-o/dyld.h> |
Taewook Oh | d915327 | 2016-06-13 15:54:56 +0000 | [diff] [blame] | 40 | #include <sys/attr.h> |
Rafael Espindola | 4601c46 | 2013-06-26 05:25:44 +0000 | [diff] [blame] | 41 | #endif |
| 42 | |
Simon Pilgrim | f2fbf43 | 2016-11-20 13:47:59 +0000 | [diff] [blame] | 43 | // Both stdio.h and cstdio are included via different paths and |
Joerg Sonnenberger | c069730 | 2012-08-10 10:56:09 +0000 | [diff] [blame] | 44 | // stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros |
| 45 | // either. |
| 46 | #undef ferror |
| 47 | #undef feof |
| 48 | |
Sylvestre Ledru | 14ada94 | 2012-04-11 15:35:36 +0000 | [diff] [blame] | 49 | // For GNU Hurd |
| 50 | #if defined(__GNU__) && !defined(PATH_MAX) |
| 51 | # define PATH_MAX 4096 |
| 52 | #endif |
| 53 | |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 54 | #include <sys/types.h> |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 55 | #if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && \ |
| 56 | !defined(__linux__) |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 57 | #include <sys/statvfs.h> |
| 58 | #define STATVFS statvfs |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 59 | #define FSTATVFS fstatvfs |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 60 | #define STATVFS_F_FRSIZE(vfs) vfs.f_frsize |
| 61 | #else |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 62 | #if defined(__OpenBSD__) || defined(__FreeBSD__) |
Mehdi Amini | 3ba84ca | 2016-04-08 16:45:05 +0000 | [diff] [blame] | 63 | #include <sys/mount.h> |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 64 | #include <sys/param.h> |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 65 | #elif defined(__linux__) |
Michal Gorny | 5ddd2a5 | 2017-02-22 18:09:15 +0000 | [diff] [blame] | 66 | #if defined(HAVE_LINUX_MAGIC_H) |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 67 | #include <linux/magic.h> |
Michal Gorny | 5ddd2a5 | 2017-02-22 18:09:15 +0000 | [diff] [blame] | 68 | #else |
| 69 | #if defined(HAVE_LINUX_NFS_FS_H) |
| 70 | #include <linux/nfs_fs.h> |
| 71 | #endif |
| 72 | #if defined(HAVE_LINUX_SMB_H) |
| 73 | #include <linux/smb.h> |
| 74 | #endif |
| 75 | #endif |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 76 | #include <sys/vfs.h> |
| 77 | #else |
| 78 | #include <sys/mount.h> |
| 79 | #endif |
| 80 | #define STATVFS statfs |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 81 | #define FSTATVFS fstatfs |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 82 | #define STATVFS_F_FRSIZE(vfs) static_cast<uint64_t>(vfs.f_bsize) |
| 83 | #endif |
| 84 | |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 85 | #if defined(__NetBSD__) |
| 86 | #define STATVFS_F_FLAG(vfs) (vfs).f_flag |
| 87 | #else |
| 88 | #define STATVFS_F_FLAG(vfs) (vfs).f_flags |
| 89 | #endif |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 90 | |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 91 | using namespace llvm; |
| 92 | |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 93 | namespace llvm { |
| 94 | namespace sys { |
Michael J. Spencer | 20daa28 | 2010-12-07 01:22:31 +0000 | [diff] [blame] | 95 | namespace fs { |
Zachary Turner | 63db25b | 2018-06-04 19:38:11 +0000 | [diff] [blame] | 96 | |
| 97 | const file_t kInvalidFile = -1; |
| 98 | |
Erich Keane | d8f61f8 | 2017-07-21 22:48:47 +0000 | [diff] [blame] | 99 | #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \ |
| 100 | defined(__minix) || defined(__FreeBSD_kernel__) || defined(__linux__) || \ |
| 101 | defined(__CYGWIN__) || defined(__DragonFly__) || defined(_AIX) |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 102 | static int |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 103 | test_dir(char ret[PATH_MAX], const char *dir, const char *bin) |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 104 | { |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 105 | struct stat sb; |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 106 | char fullpath[PATH_MAX]; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 107 | |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 108 | snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin); |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 109 | if (!realpath(fullpath, ret)) |
| 110 | return 1; |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 111 | if (stat(fullpath, &sb) != 0) |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 112 | return 1; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 113 | |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 114 | return 0; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 117 | static char * |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 118 | getprogpath(char ret[PATH_MAX], const char *bin) |
| 119 | { |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 120 | char *pv, *s, *t; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 121 | |
| 122 | /* First approach: absolute path. */ |
| 123 | if (bin[0] == '/') { |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 124 | if (test_dir(ret, "/", bin) == 0) |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 125 | return ret; |
| 126 | return nullptr; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | /* Second approach: relative path. */ |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 130 | if (strchr(bin, '/')) { |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 131 | char cwd[PATH_MAX]; |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 132 | if (!getcwd(cwd, PATH_MAX)) |
| 133 | return nullptr; |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 134 | if (test_dir(ret, cwd, bin) == 0) |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 135 | return ret; |
| 136 | return nullptr; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | /* Third approach: $PATH */ |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 140 | if ((pv = getenv("PATH")) == nullptr) |
| 141 | return nullptr; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 142 | s = pv = strdup(pv); |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 143 | if (!pv) |
| 144 | return nullptr; |
| 145 | while ((t = strsep(&s, ":")) != nullptr) { |
Sylvestre Ledru | 21e67472 | 2013-12-09 16:27:00 +0000 | [diff] [blame] | 146 | if (test_dir(ret, t, bin) == 0) { |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 147 | free(pv); |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 148 | return ret; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | free(pv); |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 152 | return nullptr; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 153 | } |
Dimitry Andric | ebc8779 | 2017-05-17 19:33:10 +0000 | [diff] [blame] | 154 | #endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__ |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 155 | |
| 156 | /// GetMainExecutable - Return the path to the main executable, given the |
| 157 | /// value of argv[0] from program startup. |
| 158 | std::string getMainExecutable(const char *argv0, void *MainAddr) { |
| 159 | #if defined(__APPLE__) |
| 160 | // On OS X the executable path is saved to the stack by dyld. Reading it |
| 161 | // from there is much faster than calling dladdr, especially for large |
| 162 | // binaries with symbols. |
| 163 | char exe_path[MAXPATHLEN]; |
| 164 | uint32_t size = sizeof(exe_path); |
| 165 | if (_NSGetExecutablePath(exe_path, &size) == 0) { |
| 166 | char link_path[MAXPATHLEN]; |
| 167 | if (realpath(exe_path, link_path)) |
Rafael Espindola | 4601c46 | 2013-06-26 05:25:44 +0000 | [diff] [blame] | 168 | return link_path; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 169 | } |
Erich Keane | d8f61f8 | 2017-07-21 22:48:47 +0000 | [diff] [blame] | 170 | #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \ |
| 171 | defined(__minix) || defined(__DragonFly__) || \ |
| 172 | defined(__FreeBSD_kernel__) || defined(_AIX) |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 173 | char exe_path[PATH_MAX]; |
| 174 | |
| 175 | if (getprogpath(exe_path, argv0) != NULL) |
Rafael Espindola | 2c6f4fe | 2013-06-26 06:10:32 +0000 | [diff] [blame] | 176 | return exe_path; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 177 | #elif defined(__linux__) || defined(__CYGWIN__) |
| 178 | char exe_path[MAXPATHLEN]; |
| 179 | StringRef aPath("/proc/self/exe"); |
| 180 | if (sys::fs::exists(aPath)) { |
| 181 | // /proc is not always mounted under Linux (chroot for example). |
| 182 | ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path)); |
| 183 | if (len >= 0) |
Alexey Samsonov | 4c79845 | 2014-12-29 20:59:02 +0000 | [diff] [blame] | 184 | return std::string(exe_path, len); |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 185 | } else { |
| 186 | // Fall back to the classical detection. |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 187 | if (getprogpath(exe_path, argv0)) |
| 188 | return exe_path; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 189 | } |
Omair Javaid | f5d560bc84 | 2017-02-02 01:17:49 +0000 | [diff] [blame] | 190 | #elif defined(HAVE_DLFCN_H) && defined(HAVE_DLADDR) |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 191 | // Use dladdr to get executable path if available. |
| 192 | Dl_info DLInfo; |
| 193 | int err = dladdr(MainAddr, &DLInfo); |
| 194 | if (err == 0) |
Rafael Espindola | 2c6f4fe | 2013-06-26 06:10:32 +0000 | [diff] [blame] | 195 | return ""; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 196 | |
| 197 | // If the filename is a symlink, we need to resolve and return the location of |
| 198 | // the actual executable. |
| 199 | char link_path[MAXPATHLEN]; |
| 200 | if (realpath(DLInfo.dli_fname, link_path)) |
Rafael Espindola | 2c6f4fe | 2013-06-26 06:10:32 +0000 | [diff] [blame] | 201 | return link_path; |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 202 | #else |
| 203 | #error GetMainExecutable is not implemented on this host yet. |
| 204 | #endif |
| 205 | return ""; |
| 206 | } |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 207 | |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 208 | TimePoint<> basic_file_status::getLastAccessedTime() const { |
Pavel Labath | 757ca88 | 2016-10-24 10:59:17 +0000 | [diff] [blame] | 209 | return toTimePoint(fs_st_atime); |
Mehdi Amini | 1e39ef3 | 2016-03-25 07:30:21 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 212 | TimePoint<> basic_file_status::getLastModificationTime() const { |
Pavel Labath | 757ca88 | 2016-10-24 10:59:17 +0000 | [diff] [blame] | 213 | return toTimePoint(fs_st_mtime); |
Rafael Espindola | db5d8fe | 2013-06-20 18:42:04 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Rafael Espindola | d123099 | 2013-07-29 21:55:38 +0000 | [diff] [blame] | 216 | UniqueID file_status::getUniqueID() const { |
Rafael Espindola | 7f822a9 | 2013-07-29 21:26:49 +0000 | [diff] [blame] | 217 | return UniqueID(fs_st_dev, fs_st_ino); |
| 218 | } |
| 219 | |
Zachary Turner | 5821a3b | 2017-03-20 23:55:20 +0000 | [diff] [blame] | 220 | uint32_t file_status::getLinkCount() const { |
| 221 | return fs_st_nlinks; |
| 222 | } |
| 223 | |
Mehdi Amini | e2d8f1b | 2016-04-01 00:18:08 +0000 | [diff] [blame] | 224 | ErrorOr<space_info> disk_space(const Twine &Path) { |
| 225 | struct STATVFS Vfs; |
| 226 | if (::STATVFS(Path.str().c_str(), &Vfs)) |
| 227 | return std::error_code(errno, std::generic_category()); |
| 228 | auto FrSize = STATVFS_F_FRSIZE(Vfs); |
| 229 | space_info SpaceInfo; |
| 230 | SpaceInfo.capacity = static_cast<uint64_t>(Vfs.f_blocks) * FrSize; |
| 231 | SpaceInfo.free = static_cast<uint64_t>(Vfs.f_bfree) * FrSize; |
| 232 | SpaceInfo.available = static_cast<uint64_t>(Vfs.f_bavail) * FrSize; |
| 233 | return SpaceInfo; |
| 234 | } |
| 235 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 236 | std::error_code current_path(SmallVectorImpl<char> &result) { |
Rafael Espindola | 6ee1638 | 2013-08-10 00:50:57 +0000 | [diff] [blame] | 237 | result.clear(); |
| 238 | |
| 239 | const char *pwd = ::getenv("PWD"); |
| 240 | llvm::sys::fs::file_status PWDStatus, DotStatus; |
| 241 | if (pwd && llvm::sys::path::is_absolute(pwd) && |
| 242 | !llvm::sys::fs::status(pwd, PWDStatus) && |
| 243 | !llvm::sys::fs::status(".", DotStatus) && |
| 244 | PWDStatus.getUniqueID() == DotStatus.getUniqueID()) { |
| 245 | result.append(pwd, pwd + strlen(pwd)); |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 246 | return std::error_code(); |
Rafael Espindola | 6ee1638 | 2013-08-10 00:50:57 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Sylvestre Ledru | 14ada94 | 2012-04-11 15:35:36 +0000 | [diff] [blame] | 249 | #ifdef MAXPATHLEN |
Andrew Trick | a4ec5b2 | 2011-03-24 16:43:37 +0000 | [diff] [blame] | 250 | result.reserve(MAXPATHLEN); |
Sylvestre Ledru | 14ada94 | 2012-04-11 15:35:36 +0000 | [diff] [blame] | 251 | #else |
| 252 | // For GNU Hurd |
| 253 | result.reserve(1024); |
| 254 | #endif |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 255 | |
Michael J. Spencer | 20daa28 | 2010-12-07 01:22:31 +0000 | [diff] [blame] | 256 | while (true) { |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 257 | if (::getcwd(result.data(), result.capacity()) == nullptr) { |
Michael J. Spencer | 20daa28 | 2010-12-07 01:22:31 +0000 | [diff] [blame] | 258 | // See if there was a real error. |
Rafael Espindola | 882ce87b | 2014-05-31 02:29:28 +0000 | [diff] [blame] | 259 | if (errno != ENOMEM) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 260 | return std::error_code(errno, std::generic_category()); |
Michael J. Spencer | 20daa28 | 2010-12-07 01:22:31 +0000 | [diff] [blame] | 261 | // Otherwise there just wasn't enough space. |
| 262 | result.reserve(result.capacity() * 2); |
| 263 | } else |
| 264 | break; |
| 265 | } |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 266 | |
| 267 | result.set_size(strlen(result.data())); |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 268 | return std::error_code(); |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Pavel Labath | 2f09609 | 2017-01-24 10:32:03 +0000 | [diff] [blame] | 271 | std::error_code set_current_path(const Twine &path) { |
| 272 | SmallString<128> path_storage; |
| 273 | StringRef p = path.toNullTerminatedStringRef(path_storage); |
| 274 | |
| 275 | if (::chdir(p.begin()) == -1) |
| 276 | return std::error_code(errno, std::generic_category()); |
| 277 | |
| 278 | return std::error_code(); |
| 279 | } |
| 280 | |
Frederic Riss | 6b9396c | 2015-08-06 21:04:55 +0000 | [diff] [blame] | 281 | std::error_code create_directory(const Twine &path, bool IgnoreExisting, |
| 282 | perms Perms) { |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 283 | SmallString<128> path_storage; |
| 284 | StringRef p = path.toNullTerminatedStringRef(path_storage); |
| 285 | |
Frederic Riss | 6b9396c | 2015-08-06 21:04:55 +0000 | [diff] [blame] | 286 | if (::mkdir(p.begin(), Perms) == -1) { |
Rafael Espindola | 882ce87b | 2014-05-31 02:29:28 +0000 | [diff] [blame] | 287 | if (errno != EEXIST || !IgnoreExisting) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 288 | return std::error_code(errno, std::generic_category()); |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 289 | } |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 290 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 291 | return std::error_code(); |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Rafael Espindola | 83f858e | 2014-03-11 18:40:24 +0000 | [diff] [blame] | 294 | // Note that we are using symbolic link because hard links are not supported by |
| 295 | // all filesystems (SMB doesn't). |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 296 | std::error_code create_link(const Twine &to, const Twine &from) { |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 297 | // Get arguments. |
| 298 | SmallString<128> from_storage; |
| 299 | SmallString<128> to_storage; |
| 300 | StringRef f = from.toNullTerminatedStringRef(from_storage); |
| 301 | StringRef t = to.toNullTerminatedStringRef(to_storage); |
| 302 | |
Rafael Espindola | 83f858e | 2014-03-11 18:40:24 +0000 | [diff] [blame] | 303 | if (::symlink(t.begin(), f.begin()) == -1) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 304 | return std::error_code(errno, std::generic_category()); |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 305 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 306 | return std::error_code(); |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Mehdi Amini | 8e13bc4 | 2016-12-14 04:56:42 +0000 | [diff] [blame] | 309 | std::error_code create_hard_link(const Twine &to, const Twine &from) { |
| 310 | // Get arguments. |
| 311 | SmallString<128> from_storage; |
| 312 | SmallString<128> to_storage; |
| 313 | StringRef f = from.toNullTerminatedStringRef(from_storage); |
| 314 | StringRef t = to.toNullTerminatedStringRef(to_storage); |
| 315 | |
| 316 | if (::link(t.begin(), f.begin()) == -1) |
| 317 | return std::error_code(errno, std::generic_category()); |
| 318 | |
| 319 | return std::error_code(); |
| 320 | } |
| 321 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 322 | std::error_code remove(const Twine &path, bool IgnoreNonExisting) { |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 323 | SmallString<128> path_storage; |
| 324 | StringRef p = path.toNullTerminatedStringRef(path_storage); |
| 325 | |
Rafael Espindola | 8cd62b0 | 2013-06-17 20:35:51 +0000 | [diff] [blame] | 326 | struct stat buf; |
Argyrios Kyrtzidis | 3757569 | 2014-03-21 01:25:37 +0000 | [diff] [blame] | 327 | if (lstat(p.begin(), &buf) != 0) { |
Rafael Espindola | 882ce87b | 2014-05-31 02:29:28 +0000 | [diff] [blame] | 328 | if (errno != ENOENT || !IgnoreNonExisting) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 329 | return std::error_code(errno, std::generic_category()); |
| 330 | return std::error_code(); |
Rafael Espindola | 8cd62b0 | 2013-06-17 20:35:51 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | // Note: this check catches strange situations. In all cases, LLVM should |
| 334 | // only be involved in the creation and deletion of regular files. This |
| 335 | // check ensures that what we're trying to erase is a regular file. It |
| 336 | // effectively prevents LLVM from erasing things like /dev/null, any block |
| 337 | // special file, or other things that aren't "regular" files. |
Argyrios Kyrtzidis | 3757569 | 2014-03-21 01:25:37 +0000 | [diff] [blame] | 338 | if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode)) |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 339 | return make_error_code(errc::operation_not_permitted); |
Rafael Espindola | 8cd62b0 | 2013-06-17 20:35:51 +0000 | [diff] [blame] | 340 | |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 341 | if (::remove(p.begin()) == -1) { |
Rafael Espindola | 882ce87b | 2014-05-31 02:29:28 +0000 | [diff] [blame] | 342 | if (errno != ENOENT || !IgnoreNonExisting) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 343 | return std::error_code(errno, std::generic_category()); |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 344 | } |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 345 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 346 | return std::error_code(); |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 349 | static bool is_local_impl(struct STATVFS &Vfs) { |
| 350 | #if defined(__linux__) |
Michal Gorny | 5ddd2a5 | 2017-02-22 18:09:15 +0000 | [diff] [blame] | 351 | #ifndef NFS_SUPER_MAGIC |
| 352 | #define NFS_SUPER_MAGIC 0x6969 |
| 353 | #endif |
| 354 | #ifndef SMB_SUPER_MAGIC |
| 355 | #define SMB_SUPER_MAGIC 0x517B |
| 356 | #endif |
Zachary Turner | 6bc2dac | 2017-02-21 21:13:10 +0000 | [diff] [blame] | 357 | #ifndef CIFS_MAGIC_NUMBER |
| 358 | #define CIFS_MAGIC_NUMBER 0xFF534D42 |
| 359 | #endif |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 360 | switch ((uint32_t)Vfs.f_type) { |
| 361 | case NFS_SUPER_MAGIC: |
| 362 | case SMB_SUPER_MAGIC: |
| 363 | case CIFS_MAGIC_NUMBER: |
| 364 | return false; |
| 365 | default: |
| 366 | return true; |
| 367 | } |
Nuno Lopes | 7a1bbd4 | 2017-03-09 13:43:31 +0000 | [diff] [blame] | 368 | #elif defined(__CYGWIN__) |
| 369 | // Cygwin doesn't expose this information; would need to use Win32 API. |
| 370 | return false; |
Petr Hosek | 87f1343 | 2018-05-03 01:38:49 +0000 | [diff] [blame] | 371 | #elif defined(__Fuchsia__) |
| 372 | // Fuchsia doesn't yet support remote filesystem mounts. |
| 373 | return true; |
Kamil Rytarowski | 07c81b1 | 2017-06-01 12:57:00 +0000 | [diff] [blame] | 374 | #elif defined(__sun) |
| 375 | // statvfs::f_basetype contains a null-terminated FSType name of the mounted target |
| 376 | StringRef fstype(Vfs.f_basetype); |
| 377 | // NFS is the only non-local fstype?? |
| 378 | return !fstype.equals("nfs"); |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 379 | #else |
| 380 | return !!(STATVFS_F_FLAG(Vfs) & MNT_LOCAL); |
| 381 | #endif |
| 382 | } |
| 383 | |
| 384 | std::error_code is_local(const Twine &Path, bool &Result) { |
| 385 | struct STATVFS Vfs; |
| 386 | if (::STATVFS(Path.str().c_str(), &Vfs)) |
| 387 | return std::error_code(errno, std::generic_category()); |
| 388 | |
| 389 | Result = is_local_impl(Vfs); |
| 390 | return std::error_code(); |
| 391 | } |
| 392 | |
| 393 | std::error_code is_local(int FD, bool &Result) { |
| 394 | struct STATVFS Vfs; |
| 395 | if (::FSTATVFS(FD, &Vfs)) |
| 396 | return std::error_code(errno, std::generic_category()); |
| 397 | |
| 398 | Result = is_local_impl(Vfs); |
| 399 | return std::error_code(); |
| 400 | } |
| 401 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 402 | std::error_code rename(const Twine &from, const Twine &to) { |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 403 | // Get arguments. |
| 404 | SmallString<128> from_storage; |
| 405 | SmallString<128> to_storage; |
| 406 | StringRef f = from.toNullTerminatedStringRef(from_storage); |
| 407 | StringRef t = to.toNullTerminatedStringRef(to_storage); |
| 408 | |
Rafael Espindola | b6fea4c | 2013-07-17 03:33:41 +0000 | [diff] [blame] | 409 | if (::rename(f.begin(), t.begin()) == -1) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 410 | return std::error_code(errno, std::generic_category()); |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 411 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 412 | return std::error_code(); |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Rafael Espindola | 59aaa6c | 2014-12-12 17:55:12 +0000 | [diff] [blame] | 415 | std::error_code resize_file(int FD, uint64_t Size) { |
Rafael Espindola | 3816c53 | 2016-07-19 20:19:56 +0000 | [diff] [blame] | 416 | #if defined(HAVE_POSIX_FALLOCATE) |
| 417 | // If we have posix_fallocate use it. Unlike ftruncate it always allocates |
| 418 | // space, so we get an error if the disk is full. |
Joerg Sonnenberger | ecfb876 | 2017-05-05 17:55:58 +0000 | [diff] [blame] | 419 | if (int Err = ::posix_fallocate(FD, 0, Size)) { |
Davide Italiano | 1f465aa | 2017-11-07 00:47:04 +0000 | [diff] [blame] | 420 | if (Err != EINVAL && Err != EOPNOTSUPP) |
Joerg Sonnenberger | ecfb876 | 2017-05-05 17:55:58 +0000 | [diff] [blame] | 421 | return std::error_code(Err, std::generic_category()); |
| 422 | } |
| 423 | #endif |
Rafael Espindola | 3816c53 | 2016-07-19 20:19:56 +0000 | [diff] [blame] | 424 | // Use ftruncate as a fallback. It may or may not allocate space. At least on |
| 425 | // OS X with HFS+ it does. |
Rafael Espindola | 59aaa6c | 2014-12-12 17:55:12 +0000 | [diff] [blame] | 426 | if (::ftruncate(FD, Size) == -1) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 427 | return std::error_code(errno, std::generic_category()); |
Michael J. Spencer | c20a032 | 2010-12-03 17:54:07 +0000 | [diff] [blame] | 428 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 429 | return std::error_code(); |
Michael J. Spencer | c20a032 | 2010-12-03 17:54:07 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 432 | static int convertAccessMode(AccessMode Mode) { |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 433 | switch (Mode) { |
| 434 | case AccessMode::Exist: |
| 435 | return F_OK; |
| 436 | case AccessMode::Write: |
| 437 | return W_OK; |
| 438 | case AccessMode::Execute: |
| 439 | return R_OK | X_OK; // scripts also need R_OK. |
| 440 | } |
| 441 | llvm_unreachable("invalid enum"); |
| 442 | } |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 443 | |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 444 | std::error_code access(const Twine &Path, AccessMode Mode) { |
| 445 | SmallString<128> PathStorage; |
| 446 | StringRef P = Path.toNullTerminatedStringRef(PathStorage); |
| 447 | |
| 448 | if (::access(P.begin(), convertAccessMode(Mode)) == -1) |
| 449 | return std::error_code(errno, std::generic_category()); |
| 450 | |
| 451 | if (Mode == AccessMode::Execute) { |
| 452 | // Don't say that directories are executable. |
| 453 | struct stat buf; |
| 454 | if (0 != stat(P.begin(), &buf)) |
| 455 | return errc::permission_denied; |
| 456 | if (!S_ISREG(buf.st_mode)) |
| 457 | return errc::permission_denied; |
| 458 | } |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 459 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 460 | return std::error_code(); |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 461 | } |
| 462 | |
Reid Kleckner | 89d4b1a | 2015-09-10 23:28:06 +0000 | [diff] [blame] | 463 | bool can_execute(const Twine &Path) { |
| 464 | return !access(Path, AccessMode::Execute); |
| 465 | } |
| 466 | |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 467 | bool equivalent(file_status A, file_status B) { |
| 468 | assert(status_known(A) && status_known(B)); |
Sylvestre Ledru | 3099f4bd | 2012-04-23 16:37:23 +0000 | [diff] [blame] | 469 | return A.fs_st_dev == B.fs_st_dev && |
| 470 | A.fs_st_ino == B.fs_st_ino; |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 473 | std::error_code equivalent(const Twine &A, const Twine &B, bool &result) { |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 474 | file_status fsA, fsB; |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 475 | if (std::error_code ec = status(A, fsA)) |
| 476 | return ec; |
| 477 | if (std::error_code ec = status(B, fsB)) |
| 478 | return ec; |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 479 | result = equivalent(fsA, fsB); |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 480 | return std::error_code(); |
Michael J. Spencer | 376d387 | 2010-12-03 18:49:13 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Zachary Turner | e48ace6 | 2017-03-10 17:39:21 +0000 | [diff] [blame] | 483 | static void expandTildeExpr(SmallVectorImpl<char> &Path) { |
| 484 | StringRef PathStr(Path.begin(), Path.size()); |
| 485 | if (PathStr.empty() || !PathStr.startswith("~")) |
| 486 | return; |
| 487 | |
| 488 | PathStr = PathStr.drop_front(); |
Zachary Turner | 1875334 | 2017-03-16 22:34:18 +0000 | [diff] [blame] | 489 | StringRef Expr = |
| 490 | PathStr.take_until([](char c) { return path::is_separator(c); }); |
Zachary Turner | e48ace6 | 2017-03-10 17:39:21 +0000 | [diff] [blame] | 491 | StringRef Remainder = PathStr.substr(Expr.size() + 1); |
| 492 | SmallString<128> Storage; |
| 493 | if (Expr.empty()) { |
| 494 | // This is just ~/..., resolve it to the current user's home dir. |
| 495 | if (!path::home_directory(Storage)) { |
| 496 | // For some reason we couldn't get the home directory. Just exit. |
| 497 | return; |
| 498 | } |
| 499 | |
| 500 | // Overwrite the first character and insert the rest. |
| 501 | Path[0] = Storage[0]; |
| 502 | Path.insert(Path.begin() + 1, Storage.begin() + 1, Storage.end()); |
| 503 | return; |
| 504 | } |
| 505 | |
| 506 | // This is a string of the form ~username/, look up this user's entry in the |
| 507 | // password database. |
| 508 | struct passwd *Entry = nullptr; |
| 509 | std::string User = Expr.str(); |
| 510 | Entry = ::getpwnam(User.c_str()); |
| 511 | |
| 512 | if (!Entry) { |
| 513 | // Unable to look up the entry, just return back the original path. |
| 514 | return; |
| 515 | } |
| 516 | |
| 517 | Storage = Remainder; |
| 518 | Path.clear(); |
| 519 | Path.append(Entry->pw_dir, Entry->pw_dir + strlen(Entry->pw_dir)); |
| 520 | llvm::sys::path::append(Path, Storage); |
| 521 | } |
| 522 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 523 | static std::error_code fillStatus(int StatRet, const struct stat &Status, |
| 524 | file_status &Result) { |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 525 | if (StatRet != 0) { |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 526 | std::error_code ec(errno, std::generic_category()); |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 527 | if (ec == errc::no_such_file_or_directory) |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 528 | Result = file_status(file_type::file_not_found); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 529 | else |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 530 | Result = file_status(file_type::status_error); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 531 | return ec; |
| 532 | } |
| 533 | |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 534 | file_type Type = file_type::type_unknown; |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 535 | |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 536 | if (S_ISDIR(Status.st_mode)) |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 537 | Type = file_type::directory_file; |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 538 | else if (S_ISREG(Status.st_mode)) |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 539 | Type = file_type::regular_file; |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 540 | else if (S_ISBLK(Status.st_mode)) |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 541 | Type = file_type::block_file; |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 542 | else if (S_ISCHR(Status.st_mode)) |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 543 | Type = file_type::character_file; |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 544 | else if (S_ISFIFO(Status.st_mode)) |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 545 | Type = file_type::fifo_file; |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 546 | else if (S_ISSOCK(Status.st_mode)) |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 547 | Type = file_type::socket_file; |
Zachary Turner | 3b9fb88 | 2017-03-07 17:48:47 +0000 | [diff] [blame] | 548 | else if (S_ISLNK(Status.st_mode)) |
| 549 | Type = file_type::symlink_file; |
Rafael Espindola | 9da91a0 | 2013-07-16 02:55:33 +0000 | [diff] [blame] | 550 | |
James Henderson | 566fdf4 | 2017-03-16 11:22:09 +0000 | [diff] [blame] | 551 | perms Perms = static_cast<perms>(Status.st_mode) & all_perms; |
Zachary Turner | 5821a3b | 2017-03-20 23:55:20 +0000 | [diff] [blame] | 552 | Result = file_status(Type, Perms, Status.st_dev, Status.st_nlink, |
| 553 | Status.st_ino, Status.st_atime, Status.st_mtime, |
| 554 | Status.st_uid, Status.st_gid, Status.st_size); |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 555 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 556 | return std::error_code(); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Zachary Turner | 82dd542 | 2017-03-07 16:10:10 +0000 | [diff] [blame] | 559 | std::error_code status(const Twine &Path, file_status &Result, bool Follow) { |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 560 | SmallString<128> PathStorage; |
| 561 | StringRef P = Path.toNullTerminatedStringRef(PathStorage); |
| 562 | |
| 563 | struct stat Status; |
Zachary Turner | 82dd542 | 2017-03-07 16:10:10 +0000 | [diff] [blame] | 564 | int StatRet = (Follow ? ::stat : ::lstat)(P.begin(), &Status); |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 565 | return fillStatus(StatRet, Status, Result); |
| 566 | } |
| 567 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 568 | std::error_code status(int FD, file_status &Result) { |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 569 | struct stat Status; |
| 570 | int StatRet = ::fstat(FD, &Status); |
Aaron Ballman | 345012d | 2017-03-13 12:24:51 +0000 | [diff] [blame] | 571 | return fillStatus(StatRet, Status, Result); |
| 572 | } |
| 573 | |
James Henderson | 566fdf4 | 2017-03-16 11:22:09 +0000 | [diff] [blame] | 574 | std::error_code setPermissions(const Twine &Path, perms Permissions) { |
| 575 | SmallString<128> PathStorage; |
| 576 | StringRef P = Path.toNullTerminatedStringRef(PathStorage); |
| 577 | |
| 578 | if (::chmod(P.begin(), Permissions)) |
| 579 | return std::error_code(errno, std::generic_category()); |
| 580 | return std::error_code(); |
| 581 | } |
| 582 | |
Aaron Ballman | 345012d | 2017-03-13 12:24:51 +0000 | [diff] [blame] | 583 | std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) { |
| 584 | #if defined(HAVE_FUTIMENS) |
| 585 | timespec Times[2]; |
Pavel Labath | 757ca88 | 2016-10-24 10:59:17 +0000 | [diff] [blame] | 586 | Times[0] = Times[1] = sys::toTimeSpec(Time); |
Eric Christopher | a24dc7f | 2013-07-04 01:10:38 +0000 | [diff] [blame] | 587 | if (::futimens(FD, Times)) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 588 | return std::error_code(errno, std::generic_category()); |
| 589 | return std::error_code(); |
Eric Christopher | a24dc7f | 2013-07-04 01:10:38 +0000 | [diff] [blame] | 590 | #elif defined(HAVE_FUTIMES) |
Rafael Espindola | 4a3365c | 2013-06-20 20:56:14 +0000 | [diff] [blame] | 591 | timeval Times[2]; |
Pavel Labath | 676a875 | 2016-10-24 14:19:28 +0000 | [diff] [blame] | 592 | Times[0] = Times[1] = sys::toTimeVal( |
| 593 | std::chrono::time_point_cast<std::chrono::microseconds>(Time)); |
Rafael Espindola | 4a3365c | 2013-06-20 20:56:14 +0000 | [diff] [blame] | 594 | if (::futimes(FD, Times)) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 595 | return std::error_code(errno, std::generic_category()); |
| 596 | return std::error_code(); |
Alp Toker | b30f01e | 2013-12-11 15:42:33 +0000 | [diff] [blame] | 597 | #else |
| 598 | #warning Missing futimes() and futimens() |
Alp Toker | b792a01 | 2014-06-30 18:57:04 +0000 | [diff] [blame] | 599 | return make_error_code(errc::function_not_supported); |
Alp Toker | b30f01e | 2013-12-11 15:42:33 +0000 | [diff] [blame] | 600 | #endif |
Rafael Espindola | 4a3365c | 2013-06-20 20:56:14 +0000 | [diff] [blame] | 601 | } |
| 602 | |
Rafael Espindola | 7eb1f18 | 2014-12-11 20:12:55 +0000 | [diff] [blame] | 603 | std::error_code mapped_file_region::init(int FD, uint64_t Offset, |
| 604 | mapmode Mode) { |
Rafael Espindola | c69f13b | 2014-12-12 18:13:23 +0000 | [diff] [blame] | 605 | assert(Size != 0); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 606 | |
| 607 | int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE; |
| 608 | int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE); |
Zachary Turner | 842972b | 2017-02-22 21:24:06 +0000 | [diff] [blame] | 609 | #if defined(__APPLE__) |
| 610 | //---------------------------------------------------------------------- |
| 611 | // Newer versions of MacOSX have a flag that will allow us to read from |
| 612 | // binaries whose code signature is invalid without crashing by using |
| 613 | // the MAP_RESILIENT_CODESIGN flag. Also if a file from removable media |
| 614 | // is mapped we can avoid crashing and return zeroes to any pages we try |
| 615 | // to read if the media becomes unavailable by using the |
| 616 | // MAP_RESILIENT_MEDIA flag. These flags are only usable when mapping |
| 617 | // with PROT_READ, so take care not to specify them otherwise. |
| 618 | //---------------------------------------------------------------------- |
| 619 | if (Mode == readonly) { |
| 620 | #if defined(MAP_RESILIENT_CODESIGN) |
| 621 | flags |= MAP_RESILIENT_CODESIGN; |
| 622 | #endif |
| 623 | #if defined(MAP_RESILIENT_MEDIA) |
| 624 | flags |= MAP_RESILIENT_MEDIA; |
| 625 | #endif |
| 626 | } |
| 627 | #endif // #if defined (__APPLE__) |
Zachary Turner | 392ed9d | 2017-02-21 20:55:47 +0000 | [diff] [blame] | 628 | |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 629 | Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 630 | if (Mapping == MAP_FAILED) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 631 | return std::error_code(errno, std::generic_category()); |
| 632 | return std::error_code(); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Roman Lebedev | 7c98367 | 2017-09-27 15:59:16 +0000 | [diff] [blame] | 635 | mapped_file_region::mapped_file_region(int fd, mapmode mode, size_t length, |
Rafael Espindola | 7eb1f18 | 2014-12-11 20:12:55 +0000 | [diff] [blame] | 636 | uint64_t offset, std::error_code &ec) |
Zachary Turner | 2061ad2 | 2018-02-15 18:46:59 +0000 | [diff] [blame] | 637 | : Size(length), Mapping(), FD(fd), Mode(mode) { |
| 638 | (void)FD; |
| 639 | (void)Mode; |
Rafael Espindola | 7eb1f18 | 2014-12-11 20:12:55 +0000 | [diff] [blame] | 640 | ec = init(fd, offset, mode); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 641 | if (ec) |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 642 | Mapping = nullptr; |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | mapped_file_region::~mapped_file_region() { |
| 646 | if (Mapping) |
| 647 | ::munmap(Mapping, Size); |
| 648 | } |
| 649 | |
Roman Lebedev | 21b013e | 2017-09-27 16:08:33 +0000 | [diff] [blame] | 650 | size_t mapped_file_region::size() const { |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 651 | assert(Mapping && "Mapping failed but used anyway!"); |
| 652 | return Size; |
| 653 | } |
| 654 | |
| 655 | char *mapped_file_region::data() const { |
| 656 | assert(Mapping && "Mapping failed but used anyway!"); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 657 | return reinterpret_cast<char*>(Mapping); |
| 658 | } |
| 659 | |
| 660 | const char *mapped_file_region::const_data() const { |
| 661 | assert(Mapping && "Mapping failed but used anyway!"); |
| 662 | return reinterpret_cast<const char*>(Mapping); |
| 663 | } |
| 664 | |
| 665 | int mapped_file_region::alignment() { |
Rafael Espindola | c0610bf | 2014-12-04 16:59:36 +0000 | [diff] [blame] | 666 | return Process::getPageSize(); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 669 | std::error_code detail::directory_iterator_construct(detail::DirIterState &it, |
Zachary Turner | 260bda3 | 2017-03-08 22:49:32 +0000 | [diff] [blame] | 670 | StringRef path, |
| 671 | bool follow_symlinks) { |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 672 | SmallString<128> path_null(path); |
| 673 | DIR *directory = ::opendir(path_null.c_str()); |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 674 | if (!directory) |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 675 | return std::error_code(errno, std::generic_category()); |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 676 | |
| 677 | it.IterationHandle = reinterpret_cast<intptr_t>(directory); |
| 678 | // Add something for replace_filename to replace. |
| 679 | path::append(path_null, "."); |
Zachary Turner | 260bda3 | 2017-03-08 22:49:32 +0000 | [diff] [blame] | 680 | it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks); |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 681 | return directory_iterator_increment(it); |
| 682 | } |
| 683 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 684 | std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) { |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 685 | if (it.IterationHandle) |
| 686 | ::closedir(reinterpret_cast<DIR *>(it.IterationHandle)); |
| 687 | it.IterationHandle = 0; |
| 688 | it.CurrentEntry = directory_entry(); |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 689 | return std::error_code(); |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 690 | } |
| 691 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 692 | std::error_code detail::directory_iterator_increment(detail::DirIterState &it) { |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 693 | errno = 0; |
| 694 | dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle)); |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 695 | if (cur_dir == nullptr && errno != 0) { |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 696 | return std::error_code(errno, std::generic_category()); |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 697 | } else if (cur_dir != nullptr) { |
Nico Weber | f3db8e3 | 2018-04-02 17:17:29 +0000 | [diff] [blame] | 698 | StringRef name(cur_dir->d_name); |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 699 | if ((name.size() == 1 && name[0] == '.') || |
| 700 | (name.size() == 2 && name[0] == '.' && name[1] == '.')) |
| 701 | return directory_iterator_increment(it); |
| 702 | it.CurrentEntry.replace_filename(name); |
| 703 | } else |
| 704 | return directory_iterator_destruct(it); |
| 705 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 706 | return std::error_code(); |
Michael J. Spencer | 5271486 | 2011-01-05 16:38:57 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 709 | ErrorOr<basic_file_status> directory_entry::status() const { |
| 710 | file_status s; |
| 711 | if (auto EC = fs::status(Path, s, FollowSymlinks)) |
| 712 | return EC; |
| 713 | return s; |
| 714 | } |
| 715 | |
Taewook Oh | d915327 | 2016-06-13 15:54:56 +0000 | [diff] [blame] | 716 | #if !defined(F_GETPATH) |
| 717 | static bool hasProcSelfFD() { |
| 718 | // If we have a /proc filesystem mounted, we can quickly establish the |
| 719 | // real name of the file with readlink |
| 720 | static const bool Result = (::access("/proc/self/fd", R_OK) == 0); |
| 721 | return Result; |
| 722 | } |
| 723 | #endif |
| 724 | |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 725 | static int nativeOpenFlags(CreationDisposition Disp, OpenFlags Flags, |
| 726 | FileAccess Access) { |
| 727 | int Result = 0; |
| 728 | if (Access == FA_Read) |
| 729 | Result |= O_RDONLY; |
| 730 | else if (Access == FA_Write) |
| 731 | Result |= O_WRONLY; |
| 732 | else if (Access == (FA_Read | FA_Write)) |
| 733 | Result |= O_RDWR; |
| 734 | |
| 735 | // This is for compatibility with old code that assumed F_Append implied |
| 736 | // would open an existing file. See Windows/Path.inc for a longer comment. |
| 737 | if (Flags & F_Append) |
| 738 | Disp = CD_OpenAlways; |
| 739 | |
| 740 | if (Disp == CD_CreateNew) { |
| 741 | Result |= O_CREAT; // Create if it doesn't exist. |
| 742 | Result |= O_EXCL; // Fail if it does. |
| 743 | } else if (Disp == CD_CreateAlways) { |
| 744 | Result |= O_CREAT; // Create if it doesn't exist. |
| 745 | Result |= O_TRUNC; // Truncate if it does. |
| 746 | } else if (Disp == CD_OpenAlways) { |
| 747 | Result |= O_CREAT; // Create if it doesn't exist. |
| 748 | } else if (Disp == CD_OpenExisting) { |
| 749 | // Nothing special, just don't add O_CREAT and we get these semantics. |
| 750 | } |
| 751 | |
| 752 | if (Flags & F_Append) |
| 753 | Result |= O_APPEND; |
| 754 | |
| 755 | #ifdef O_CLOEXEC |
| 756 | Result |= O_CLOEXEC; |
| 757 | #endif |
| 758 | |
| 759 | return Result; |
| 760 | } |
| 761 | |
| 762 | static std::error_code openFile(const Twine &Name, int &ResultFD, |
| 763 | CreationDisposition Disp, FileAccess Access, |
| 764 | OpenFlags Flags, unsigned Mode) { |
| 765 | int OpenFlags = nativeOpenFlags(Disp, Flags, Access); |
| 766 | |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 767 | SmallString<128> Storage; |
| 768 | StringRef P = Name.toNullTerminatedStringRef(Storage); |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 769 | if ((ResultFD = sys::RetryAfterSignal(-1, open, P.begin(), OpenFlags, Mode)) < |
| 770 | 0) |
Pavel Labath | fe09f50 | 2017-06-29 13:15:31 +0000 | [diff] [blame] | 771 | return std::error_code(errno, std::generic_category()); |
Pavel Labath | f726dfa | 2017-01-24 10:57:01 +0000 | [diff] [blame] | 772 | #ifndef O_CLOEXEC |
| 773 | int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC); |
| 774 | (void)r; |
| 775 | assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed"); |
| 776 | #endif |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 777 | return std::error_code(); |
| 778 | } |
| 779 | |
| 780 | std::error_code openFileForRead(const Twine &Name, int &ResultFD, |
| 781 | OpenFlags Flags, |
| 782 | SmallVectorImpl<char> *RealPath) { |
| 783 | std::error_code EC = |
| 784 | openFile(Name, ResultFD, CD_OpenExisting, FA_Read, Flags, 0666); |
| 785 | if (EC) |
| 786 | return EC; |
| 787 | |
Taewook Oh | d915327 | 2016-06-13 15:54:56 +0000 | [diff] [blame] | 788 | // Attempt to get the real name of the file, if the user asked |
| 789 | if(!RealPath) |
| 790 | return std::error_code(); |
| 791 | RealPath->clear(); |
| 792 | #if defined(F_GETPATH) |
| 793 | // When F_GETPATH is availble, it is the quickest way to get |
| 794 | // the real path name. |
| 795 | char Buffer[MAXPATHLEN]; |
| 796 | if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1) |
| 797 | RealPath->append(Buffer, Buffer + strlen(Buffer)); |
| 798 | #else |
| 799 | char Buffer[PATH_MAX]; |
| 800 | if (hasProcSelfFD()) { |
| 801 | char ProcPath[64]; |
| 802 | snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", ResultFD); |
| 803 | ssize_t CharCount = ::readlink(ProcPath, Buffer, sizeof(Buffer)); |
| 804 | if (CharCount > 0) |
| 805 | RealPath->append(Buffer, Buffer + CharCount); |
| 806 | } else { |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 807 | SmallString<128> Storage; |
| 808 | StringRef P = Name.toNullTerminatedStringRef(Storage); |
| 809 | |
Taewook Oh | d915327 | 2016-06-13 15:54:56 +0000 | [diff] [blame] | 810 | // Use ::realpath to get the real path name |
| 811 | if (::realpath(P.begin(), Buffer) != nullptr) |
| 812 | RealPath->append(Buffer, Buffer + strlen(Buffer)); |
| 813 | } |
| 814 | #endif |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 815 | return std::error_code(); |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 816 | } |
Nick Kledzik | 18497e9 | 2012-06-20 00:28:54 +0000 | [diff] [blame] | 817 | |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 818 | Expected<file_t> openNativeFileForRead(const Twine &Name, OpenFlags Flags, |
Zachary Turner | 63db25b | 2018-06-04 19:38:11 +0000 | [diff] [blame] | 819 | SmallVectorImpl<char> *RealPath) { |
| 820 | file_t ResultFD; |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 821 | std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath); |
Zachary Turner | 63db25b | 2018-06-04 19:38:11 +0000 | [diff] [blame] | 822 | if (EC) |
| 823 | return errorCodeToError(EC); |
| 824 | return ResultFD; |
| 825 | } |
| 826 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 827 | std::error_code openFileForWrite(const Twine &Name, int &ResultFD, |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 828 | CreationDisposition Disp, OpenFlags Flags, |
| 829 | unsigned Mode) { |
| 830 | return openFile(Name, ResultFD, Disp, FA_Write, Flags, Mode); |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 831 | } |
| 832 | |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 833 | Expected<file_t> openNativeFileForWrite(const Twine &Name, |
| 834 | CreationDisposition Disp, |
| 835 | OpenFlags Flags, unsigned Mode) { |
Zachary Turner | 63db25b | 2018-06-04 19:38:11 +0000 | [diff] [blame] | 836 | file_t ResultFD; |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 837 | std::error_code EC = openFileForWrite(Name, ResultFD, Disp, Flags, Mode); |
| 838 | if (EC) |
| 839 | return errorCodeToError(EC); |
| 840 | return ResultFD; |
| 841 | } |
| 842 | |
| 843 | std::error_code openFileForReadWrite(const Twine &Name, int &ResultFD, |
| 844 | CreationDisposition Disp, OpenFlags Flags, |
| 845 | unsigned Mode) { |
| 846 | return openFile(Name, ResultFD, Disp, FA_Read | FA_Write, Flags, Mode); |
| 847 | } |
| 848 | |
| 849 | Expected<file_t> openNativeFileForReadWrite(const Twine &Name, |
| 850 | CreationDisposition Disp, |
| 851 | OpenFlags Flags, unsigned Mode) { |
| 852 | file_t ResultFD; |
| 853 | std::error_code EC = openFileForReadWrite(Name, ResultFD, Disp, Flags, Mode); |
Zachary Turner | 63db25b | 2018-06-04 19:38:11 +0000 | [diff] [blame] | 854 | if (EC) |
| 855 | return errorCodeToError(EC); |
| 856 | return ResultFD; |
| 857 | } |
| 858 | |
| 859 | void closeFile(file_t &F) { |
| 860 | ::close(F); |
| 861 | F = kInvalidFile; |
| 862 | } |
| 863 | |
Zachary Turner | 260bda3 | 2017-03-08 22:49:32 +0000 | [diff] [blame] | 864 | template <typename T> |
| 865 | static std::error_code remove_directories_impl(const T &Entry, |
| 866 | bool IgnoreErrors) { |
| 867 | std::error_code EC; |
| 868 | directory_iterator Begin(Entry, EC, false); |
| 869 | directory_iterator End; |
| 870 | while (Begin != End) { |
| 871 | auto &Item = *Begin; |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 872 | ErrorOr<basic_file_status> st = Item.status(); |
| 873 | if (!st && !IgnoreErrors) |
| 874 | return st.getError(); |
Zachary Turner | 260bda3 | 2017-03-08 22:49:32 +0000 | [diff] [blame] | 875 | |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 876 | if (is_directory(*st)) { |
Zachary Turner | 260bda3 | 2017-03-08 22:49:32 +0000 | [diff] [blame] | 877 | EC = remove_directories_impl(Item, IgnoreErrors); |
| 878 | if (EC && !IgnoreErrors) |
| 879 | return EC; |
| 880 | } |
| 881 | |
| 882 | EC = fs::remove(Item.path(), true); |
| 883 | if (EC && !IgnoreErrors) |
| 884 | return EC; |
| 885 | |
| 886 | Begin.increment(EC); |
| 887 | if (EC && !IgnoreErrors) |
| 888 | return EC; |
| 889 | } |
| 890 | return std::error_code(); |
| 891 | } |
| 892 | |
| 893 | std::error_code remove_directories(const Twine &path, bool IgnoreErrors) { |
| 894 | auto EC = remove_directories_impl(path, IgnoreErrors); |
| 895 | if (EC && !IgnoreErrors) |
| 896 | return EC; |
| 897 | EC = fs::remove(path, true); |
| 898 | if (EC && !IgnoreErrors) |
| 899 | return EC; |
| 900 | return std::error_code(); |
| 901 | } |
| 902 | |
Zachary Turner | e48ace6 | 2017-03-10 17:39:21 +0000 | [diff] [blame] | 903 | std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest, |
| 904 | bool expand_tilde) { |
| 905 | dest.clear(); |
| 906 | if (path.isTriviallyEmpty()) |
| 907 | return std::error_code(); |
| 908 | |
| 909 | if (expand_tilde) { |
| 910 | SmallString<128> Storage; |
| 911 | path.toVector(Storage); |
| 912 | expandTildeExpr(Storage); |
| 913 | return real_path(Storage, dest, false); |
| 914 | } |
| 915 | |
Davide Italiano | 4762c06 | 2018-01-09 17:27:45 +0000 | [diff] [blame] | 916 | SmallString<128> Storage; |
| 917 | StringRef P = path.toNullTerminatedStringRef(Storage); |
| 918 | char Buffer[PATH_MAX]; |
| 919 | if (::realpath(P.begin(), Buffer) == nullptr) |
| 920 | return std::error_code(errno, std::generic_category()); |
| 921 | dest.append(Buffer, Buffer + strlen(Buffer)); |
Zachary Turner | e48ace6 | 2017-03-10 17:39:21 +0000 | [diff] [blame] | 922 | return std::error_code(); |
| 923 | } |
| 924 | |
Michael J. Spencer | 9fc1d9d | 2010-12-01 19:32:01 +0000 | [diff] [blame] | 925 | } // end namespace fs |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 926 | |
| 927 | namespace path { |
| 928 | |
| 929 | bool home_directory(SmallVectorImpl<char> &result) { |
Zachary Turner | a3cf70b | 2017-03-22 15:24:59 +0000 | [diff] [blame] | 930 | char *RequestedDir = getenv("HOME"); |
| 931 | if (!RequestedDir) { |
| 932 | struct passwd *pw = getpwuid(getuid()); |
| 933 | if (pw && pw->pw_dir) |
| 934 | RequestedDir = pw->pw_dir; |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 935 | } |
Zachary Turner | a3cf70b | 2017-03-22 15:24:59 +0000 | [diff] [blame] | 936 | if (!RequestedDir) |
| 937 | return false; |
| 938 | |
| 939 | result.clear(); |
| 940 | result.append(RequestedDir, RequestedDir + strlen(RequestedDir)); |
| 941 | return true; |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 942 | } |
| 943 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 944 | static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) { |
Pawel Bylica | 0e97e5c | 2015-11-02 09:49:17 +0000 | [diff] [blame] | 945 | #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR) |
| 946 | // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR. |
| 947 | // macros defined in <unistd.h> on darwin >= 9 |
| 948 | int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR |
| 949 | : _CS_DARWIN_USER_CACHE_DIR; |
| 950 | size_t ConfLen = confstr(ConfName, nullptr, 0); |
| 951 | if (ConfLen > 0) { |
| 952 | do { |
| 953 | Result.resize(ConfLen); |
| 954 | ConfLen = confstr(ConfName, Result.data(), Result.size()); |
| 955 | } while (ConfLen > 0 && ConfLen != Result.size()); |
| 956 | |
| 957 | if (ConfLen > 0) { |
| 958 | assert(Result.back() == 0); |
| 959 | Result.pop_back(); |
| 960 | return true; |
| 961 | } |
| 962 | |
| 963 | Result.clear(); |
| 964 | } |
| 965 | #endif |
| 966 | return false; |
| 967 | } |
| 968 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 969 | static bool getUserCacheDir(SmallVectorImpl<char> &Result) { |
Sean Silva | a915a16 | 2016-03-24 22:27:27 +0000 | [diff] [blame] | 970 | // First try using XDG_CACHE_HOME env variable, |
Pawel Bylica | 0e97e5c | 2015-11-02 09:49:17 +0000 | [diff] [blame] | 971 | // as specified in XDG Base Directory Specification at |
| 972 | // http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html |
Sean Silva | a915a16 | 2016-03-24 22:27:27 +0000 | [diff] [blame] | 973 | if (const char *XdgCacheDir = std::getenv("XDG_CACHE_HOME")) { |
Pawel Bylica | 0e97e5c | 2015-11-02 09:49:17 +0000 | [diff] [blame] | 974 | Result.clear(); |
Sean Silva | a915a16 | 2016-03-24 22:27:27 +0000 | [diff] [blame] | 975 | Result.append(XdgCacheDir, XdgCacheDir + strlen(XdgCacheDir)); |
Pawel Bylica | 0e97e5c | 2015-11-02 09:49:17 +0000 | [diff] [blame] | 976 | return true; |
| 977 | } |
| 978 | |
| 979 | // Try Darwin configuration query |
| 980 | if (getDarwinConfDir(false, Result)) |
| 981 | return true; |
| 982 | |
| 983 | // Use "$HOME/.cache" if $HOME is available |
| 984 | if (home_directory(Result)) { |
| 985 | append(Result, ".cache"); |
| 986 | return true; |
| 987 | } |
| 988 | |
| 989 | return false; |
| 990 | } |
Pawel Bylica | 0e97e5c | 2015-11-02 09:49:17 +0000 | [diff] [blame] | 991 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 992 | static const char *getEnvTempDir() { |
Rafael Espindola | 016a6d5 | 2014-08-26 14:47:52 +0000 | [diff] [blame] | 993 | // Check whether the temporary directory is specified by an environment |
| 994 | // variable. |
| 995 | const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"}; |
| 996 | for (const char *Env : EnvironmentVariables) { |
| 997 | if (const char *Dir = std::getenv(Env)) |
| 998 | return Dir; |
| 999 | } |
| 1000 | |
| 1001 | return nullptr; |
| 1002 | } |
| 1003 | |
Duncan P. N. Exon Smith | 91d3cfe | 2016-04-05 20:45:04 +0000 | [diff] [blame] | 1004 | static const char *getDefaultTempDir(bool ErasedOnReboot) { |
Rafael Espindola | 016a6d5 | 2014-08-26 14:47:52 +0000 | [diff] [blame] | 1005 | #ifdef P_tmpdir |
Benjamin Kramer | 870d951 | 2014-08-27 11:47:52 +0000 | [diff] [blame] | 1006 | if ((bool)P_tmpdir) |
Rafael Espindola | 016a6d5 | 2014-08-26 14:47:52 +0000 | [diff] [blame] | 1007 | return P_tmpdir; |
| 1008 | #endif |
| 1009 | |
| 1010 | if (ErasedOnReboot) |
| 1011 | return "/tmp"; |
| 1012 | return "/var/tmp"; |
| 1013 | } |
| 1014 | |
| 1015 | void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) { |
| 1016 | Result.clear(); |
| 1017 | |
| 1018 | if (ErasedOnReboot) { |
| 1019 | // There is no env variable for the cache directory. |
| 1020 | if (const char *RequestedDir = getEnvTempDir()) { |
| 1021 | Result.append(RequestedDir, RequestedDir + strlen(RequestedDir)); |
| 1022 | return; |
| 1023 | } |
| 1024 | } |
| 1025 | |
Pawel Bylica | 0e97e5c | 2015-11-02 09:49:17 +0000 | [diff] [blame] | 1026 | if (getDarwinConfDir(ErasedOnReboot, Result)) |
| 1027 | return; |
Rafael Espindola | 016a6d5 | 2014-08-26 14:47:52 +0000 | [diff] [blame] | 1028 | |
| 1029 | const char *RequestedDir = getDefaultTempDir(ErasedOnReboot); |
| 1030 | Result.append(RequestedDir, RequestedDir + strlen(RequestedDir)); |
| 1031 | } |
| 1032 | |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 1033 | } // end namespace path |
| 1034 | |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 1035 | } // end namespace sys |
| 1036 | } // end namespace llvm |