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