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