blob: ecc9a2ea8e2156f38f87d55e05e610417520cc04 [file] [log] [blame]
Rafael Espindolaf1fc3822013-06-26 19:33:03 +00001//===- llvm/Support/Unix/Path.inc - Unix Path Implementation ----*- C++ -*-===//
Michael J. Spencerebad2f92010-11-29 22:28:51 +00002//
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 Espindolaf1fc3822013-06-26 19:33:03 +000010// This file implements the Unix specific implementation of the Path API.
Michael J. Spencerebad2f92010-11-29 22:28:51 +000011//
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 Smith91d3cfe2016-04-05 20:45:04 +000020#include <limits.h>
21#include <stdio.h>
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000022#if HAVE_SYS_STAT_H
23#include <sys/stat.h>
24#endif
25#if HAVE_FCNTL_H
26#include <fcntl.h>
27#endif
Taewook Ohd9153272016-06-13 15:54:56 +000028#ifdef HAVE_UNISTD_H
29#include <unistd.h>
30#endif
Nick Kledzik18497e92012-06-20 00:28:54 +000031#ifdef HAVE_SYS_MMAN_H
32#include <sys/mman.h>
33#endif
Michael J. Spencer52714862011-01-05 16:38:57 +000034#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. Spencer9fc1d9d2010-12-01 19:32:01 +000050
Rafael Espindola4601c462013-06-26 05:25:44 +000051#ifdef __APPLE__
52#include <mach-o/dyld.h>
Taewook Ohd9153272016-06-13 15:54:56 +000053#include <sys/attr.h>
Rafael Espindola4601c462013-06-26 05:25:44 +000054#endif
55
Simon Pilgrimf2fbf432016-11-20 13:47:59 +000056// Both stdio.h and cstdio are included via different paths and
Joerg Sonnenbergerc0697302012-08-10 10:56:09 +000057// stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros
58// either.
59#undef ferror
60#undef feof
61
Sylvestre Ledru14ada942012-04-11 15:35:36 +000062// For GNU Hurd
63#if defined(__GNU__) && !defined(PATH_MAX)
64# define PATH_MAX 4096
65#endif
66
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000067#include <sys/types.h>
68#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__ANDROID__)
69#include <sys/statvfs.h>
70#define STATVFS statvfs
71#define STATVFS_F_FRSIZE(vfs) vfs.f_frsize
72#else
73#ifdef __OpenBSD__
74#include <sys/param.h>
Mehdi Amini3ba84ca2016-04-08 16:45:05 +000075#include <sys/mount.h>
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000076#elif defined(__ANDROID__)
77#include <sys/vfs.h>
78#else
79#include <sys/mount.h>
80#endif
81#define STATVFS statfs
82#define STATVFS_F_FRSIZE(vfs) static_cast<uint64_t>(vfs.f_bsize)
83#endif
84
85
Michael J. Spencer45710402010-12-03 01:21:28 +000086using namespace llvm;
87
Michael J. Spencerebad2f92010-11-29 22:28:51 +000088namespace llvm {
89namespace sys {
Michael J. Spencer20daa282010-12-07 01:22:31 +000090namespace fs {
Rafael Espindolae03dfd92013-06-26 05:01:35 +000091#if defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
92 defined(__OpenBSD__) || defined(__minix) || defined(__FreeBSD_kernel__) || \
Chandler Carruth2aff7502016-07-19 22:46:39 +000093 defined(__linux__) || defined(__CYGWIN__) || defined(__DragonFly__) || \
94 defined(_AIX)
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +000095static int
Sylvestre Ledru21e674722013-12-09 16:27:00 +000096test_dir(char ret[PATH_MAX], const char *dir, const char *bin)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000097{
Rafael Espindolae03dfd92013-06-26 05:01:35 +000098 struct stat sb;
Sylvestre Ledru21e674722013-12-09 16:27:00 +000099 char fullpath[PATH_MAX];
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000100
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000101 snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000102 if (!realpath(fullpath, ret))
103 return 1;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000104 if (stat(fullpath, &sb) != 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000105 return 1;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000106
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000107 return 0;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000108}
109
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000110static char *
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000111getprogpath(char ret[PATH_MAX], const char *bin)
112{
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000113 char *pv, *s, *t;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000114
115 /* First approach: absolute path. */
116 if (bin[0] == '/') {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000117 if (test_dir(ret, "/", bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000118 return ret;
119 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000120 }
121
122 /* Second approach: relative path. */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000123 if (strchr(bin, '/')) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000124 char cwd[PATH_MAX];
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000125 if (!getcwd(cwd, PATH_MAX))
126 return nullptr;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000127 if (test_dir(ret, cwd, bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000128 return ret;
129 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000130 }
131
132 /* Third approach: $PATH */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000133 if ((pv = getenv("PATH")) == nullptr)
134 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000135 s = pv = strdup(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000136 if (!pv)
137 return nullptr;
138 while ((t = strsep(&s, ":")) != nullptr) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000139 if (test_dir(ret, t, bin) == 0) {
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000140 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000141 return ret;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000142 }
143 }
144 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000145 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000146}
147#endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__
148
149/// GetMainExecutable - Return the path to the main executable, given the
150/// value of argv[0] from program startup.
151std::string getMainExecutable(const char *argv0, void *MainAddr) {
152#if defined(__APPLE__)
153 // On OS X the executable path is saved to the stack by dyld. Reading it
154 // from there is much faster than calling dladdr, especially for large
155 // binaries with symbols.
156 char exe_path[MAXPATHLEN];
157 uint32_t size = sizeof(exe_path);
158 if (_NSGetExecutablePath(exe_path, &size) == 0) {
159 char link_path[MAXPATHLEN];
160 if (realpath(exe_path, link_path))
Rafael Espindola4601c462013-06-26 05:25:44 +0000161 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000162 }
163#elif defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
Rafael Espindolaaca97392013-10-31 14:35:00 +0000164 defined(__OpenBSD__) || defined(__minix) || defined(__DragonFly__) || \
Chandler Carruth2aff7502016-07-19 22:46:39 +0000165 defined(__FreeBSD_kernel__) || defined(_AIX)
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000166 char exe_path[PATH_MAX];
167
168 if (getprogpath(exe_path, argv0) != NULL)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000169 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000170#elif defined(__linux__) || defined(__CYGWIN__)
171 char exe_path[MAXPATHLEN];
172 StringRef aPath("/proc/self/exe");
173 if (sys::fs::exists(aPath)) {
174 // /proc is not always mounted under Linux (chroot for example).
175 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
176 if (len >= 0)
Alexey Samsonov4c798452014-12-29 20:59:02 +0000177 return std::string(exe_path, len);
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000178 } else {
179 // Fall back to the classical detection.
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000180 if (getprogpath(exe_path, argv0))
181 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000182 }
183#elif defined(HAVE_DLFCN_H)
184 // Use dladdr to get executable path if available.
185 Dl_info DLInfo;
186 int err = dladdr(MainAddr, &DLInfo);
187 if (err == 0)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000188 return "";
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000189
190 // If the filename is a symlink, we need to resolve and return the location of
191 // the actual executable.
192 char link_path[MAXPATHLEN];
193 if (realpath(DLInfo.dli_fname, link_path))
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000194 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000195#else
196#error GetMainExecutable is not implemented on this host yet.
197#endif
198 return "";
199}
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000200
Pavel Labath757ca882016-10-24 10:59:17 +0000201TimePoint<> file_status::getLastAccessedTime() const {
202 return toTimePoint(fs_st_atime);
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000203}
204
Pavel Labath757ca882016-10-24 10:59:17 +0000205TimePoint<> file_status::getLastModificationTime() const {
206 return toTimePoint(fs_st_mtime);
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000207}
208
Rafael Espindolad1230992013-07-29 21:55:38 +0000209UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000210 return UniqueID(fs_st_dev, fs_st_ino);
211}
212
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000213ErrorOr<space_info> disk_space(const Twine &Path) {
214 struct STATVFS Vfs;
215 if (::STATVFS(Path.str().c_str(), &Vfs))
216 return std::error_code(errno, std::generic_category());
217 auto FrSize = STATVFS_F_FRSIZE(Vfs);
218 space_info SpaceInfo;
219 SpaceInfo.capacity = static_cast<uint64_t>(Vfs.f_blocks) * FrSize;
220 SpaceInfo.free = static_cast<uint64_t>(Vfs.f_bfree) * FrSize;
221 SpaceInfo.available = static_cast<uint64_t>(Vfs.f_bavail) * FrSize;
222 return SpaceInfo;
223}
224
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000225std::error_code current_path(SmallVectorImpl<char> &result) {
Rafael Espindola6ee16382013-08-10 00:50:57 +0000226 result.clear();
227
228 const char *pwd = ::getenv("PWD");
229 llvm::sys::fs::file_status PWDStatus, DotStatus;
230 if (pwd && llvm::sys::path::is_absolute(pwd) &&
231 !llvm::sys::fs::status(pwd, PWDStatus) &&
232 !llvm::sys::fs::status(".", DotStatus) &&
233 PWDStatus.getUniqueID() == DotStatus.getUniqueID()) {
234 result.append(pwd, pwd + strlen(pwd));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000235 return std::error_code();
Rafael Espindola6ee16382013-08-10 00:50:57 +0000236 }
237
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000238#ifdef MAXPATHLEN
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000239 result.reserve(MAXPATHLEN);
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000240#else
241// For GNU Hurd
242 result.reserve(1024);
243#endif
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000244
Michael J. Spencer20daa282010-12-07 01:22:31 +0000245 while (true) {
Craig Toppere73658d2014-04-28 04:05:08 +0000246 if (::getcwd(result.data(), result.capacity()) == nullptr) {
Michael J. Spencer20daa282010-12-07 01:22:31 +0000247 // See if there was a real error.
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000248 if (errno != ENOMEM)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000249 return std::error_code(errno, std::generic_category());
Michael J. Spencer20daa282010-12-07 01:22:31 +0000250 // Otherwise there just wasn't enough space.
251 result.reserve(result.capacity() * 2);
252 } else
253 break;
254 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000255
256 result.set_size(strlen(result.data()));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000257 return std::error_code();
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000258}
259
Pavel Labath2f096092017-01-24 10:32:03 +0000260std::error_code set_current_path(const Twine &path) {
261 SmallString<128> path_storage;
262 StringRef p = path.toNullTerminatedStringRef(path_storage);
263
264 if (::chdir(p.begin()) == -1)
265 return std::error_code(errno, std::generic_category());
266
267 return std::error_code();
268}
269
Frederic Riss6b9396c2015-08-06 21:04:55 +0000270std::error_code create_directory(const Twine &path, bool IgnoreExisting,
271 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000272 SmallString<128> path_storage;
273 StringRef p = path.toNullTerminatedStringRef(path_storage);
274
Frederic Riss6b9396c2015-08-06 21:04:55 +0000275 if (::mkdir(p.begin(), Perms) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000276 if (errno != EEXIST || !IgnoreExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000277 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000278 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000279
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000280 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000281}
282
Rafael Espindola83f858e2014-03-11 18:40:24 +0000283// Note that we are using symbolic link because hard links are not supported by
284// all filesystems (SMB doesn't).
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000285std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000286 // Get arguments.
287 SmallString<128> from_storage;
288 SmallString<128> to_storage;
289 StringRef f = from.toNullTerminatedStringRef(from_storage);
290 StringRef t = to.toNullTerminatedStringRef(to_storage);
291
Rafael Espindola83f858e2014-03-11 18:40:24 +0000292 if (::symlink(t.begin(), f.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000293 return std::error_code(errno, std::generic_category());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000294
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000295 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000296}
297
Mehdi Amini8e13bc42016-12-14 04:56:42 +0000298std::error_code create_hard_link(const Twine &to, const Twine &from) {
299 // Get arguments.
300 SmallString<128> from_storage;
301 SmallString<128> to_storage;
302 StringRef f = from.toNullTerminatedStringRef(from_storage);
303 StringRef t = to.toNullTerminatedStringRef(to_storage);
304
305 if (::link(t.begin(), f.begin()) == -1)
306 return std::error_code(errno, std::generic_category());
307
308 return std::error_code();
309}
310
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000311std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000312 SmallString<128> path_storage;
313 StringRef p = path.toNullTerminatedStringRef(path_storage);
314
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000315 struct stat buf;
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000316 if (lstat(p.begin(), &buf) != 0) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000317 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000318 return std::error_code(errno, std::generic_category());
319 return std::error_code();
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000320 }
321
322 // Note: this check catches strange situations. In all cases, LLVM should
323 // only be involved in the creation and deletion of regular files. This
324 // check ensures that what we're trying to erase is a regular file. It
325 // effectively prevents LLVM from erasing things like /dev/null, any block
326 // special file, or other things that aren't "regular" files.
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000327 if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000328 return make_error_code(errc::operation_not_permitted);
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000329
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000330 if (::remove(p.begin()) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000331 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000332 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000333 }
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000334
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000335 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000336}
337
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000338std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000339 // Get arguments.
340 SmallString<128> from_storage;
341 SmallString<128> to_storage;
342 StringRef f = from.toNullTerminatedStringRef(from_storage);
343 StringRef t = to.toNullTerminatedStringRef(to_storage);
344
Rafael Espindolab6fea4c2013-07-17 03:33:41 +0000345 if (::rename(f.begin(), t.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000346 return std::error_code(errno, std::generic_category());
Michael J. Spencer409f5562010-12-03 17:53:55 +0000347
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000348 return std::error_code();
Michael J. Spencer409f5562010-12-03 17:53:55 +0000349}
350
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000351std::error_code resize_file(int FD, uint64_t Size) {
Rafael Espindola3816c532016-07-19 20:19:56 +0000352#if defined(HAVE_POSIX_FALLOCATE)
353 // If we have posix_fallocate use it. Unlike ftruncate it always allocates
354 // space, so we get an error if the disk is full.
355 if (int Err = ::posix_fallocate(FD, 0, Size))
356 return std::error_code(Err, std::generic_category());
357#else
358 // Use ftruncate as a fallback. It may or may not allocate space. At least on
359 // OS X with HFS+ it does.
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000360 if (::ftruncate(FD, Size) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000361 return std::error_code(errno, std::generic_category());
Rafael Espindola3816c532016-07-19 20:19:56 +0000362#endif
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000363
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000364 return std::error_code();
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000365}
366
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000367static int convertAccessMode(AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000368 switch (Mode) {
369 case AccessMode::Exist:
370 return F_OK;
371 case AccessMode::Write:
372 return W_OK;
373 case AccessMode::Execute:
374 return R_OK | X_OK; // scripts also need R_OK.
375 }
376 llvm_unreachable("invalid enum");
377}
Michael J. Spencer45710402010-12-03 01:21:28 +0000378
Rafael Espindola281f23a2014-09-11 20:30:02 +0000379std::error_code access(const Twine &Path, AccessMode Mode) {
380 SmallString<128> PathStorage;
381 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
382
383 if (::access(P.begin(), convertAccessMode(Mode)) == -1)
384 return std::error_code(errno, std::generic_category());
385
386 if (Mode == AccessMode::Execute) {
387 // Don't say that directories are executable.
388 struct stat buf;
389 if (0 != stat(P.begin(), &buf))
390 return errc::permission_denied;
391 if (!S_ISREG(buf.st_mode))
392 return errc::permission_denied;
393 }
Michael J. Spencer45710402010-12-03 01:21:28 +0000394
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000395 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000396}
397
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000398bool can_execute(const Twine &Path) {
399 return !access(Path, AccessMode::Execute);
400}
401
Michael J. Spencer203d7802011-12-12 06:04:28 +0000402bool equivalent(file_status A, file_status B) {
403 assert(status_known(A) && status_known(B));
Sylvestre Ledru3099f4bd2012-04-23 16:37:23 +0000404 return A.fs_st_dev == B.fs_st_dev &&
405 A.fs_st_ino == B.fs_st_ino;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000406}
407
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000408std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000409 file_status fsA, fsB;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000410 if (std::error_code ec = status(A, fsA))
411 return ec;
412 if (std::error_code ec = status(B, fsB))
413 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000414 result = equivalent(fsA, fsB);
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000415 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000416}
417
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000418static std::error_code fillStatus(int StatRet, const struct stat &Status,
419 file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000420 if (StatRet != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000421 std::error_code ec(errno, std::generic_category());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000422 if (ec == errc::no_such_file_or_directory)
Rafael Espindola77021c92013-07-16 03:20:13 +0000423 Result = file_status(file_type::file_not_found);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000424 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000425 Result = file_status(file_type::status_error);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000426 return ec;
427 }
428
Rafael Espindola9da91a02013-07-16 02:55:33 +0000429 file_type Type = file_type::type_unknown;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000430
Rafael Espindola77021c92013-07-16 03:20:13 +0000431 if (S_ISDIR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000432 Type = file_type::directory_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000433 else if (S_ISREG(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000434 Type = file_type::regular_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000435 else if (S_ISBLK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000436 Type = file_type::block_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000437 else if (S_ISCHR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000438 Type = file_type::character_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000439 else if (S_ISFIFO(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000440 Type = file_type::fifo_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000441 else if (S_ISSOCK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000442 Type = file_type::socket_file;
443
Rafael Espindola77021c92013-07-16 03:20:13 +0000444 perms Perms = static_cast<perms>(Status.st_mode);
445 Result =
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000446 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_atime,
447 Status.st_mtime, Status.st_uid, Status.st_gid,
448 Status.st_size);
Michael J. Spencer203d7802011-12-12 06:04:28 +0000449
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000450 return std::error_code();
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000451}
452
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000453std::error_code status(const Twine &Path, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000454 SmallString<128> PathStorage;
455 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
456
457 struct stat Status;
458 int StatRet = ::stat(P.begin(), &Status);
459 return fillStatus(StatRet, Status, Result);
460}
461
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000462std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000463 struct stat Status;
464 int StatRet = ::fstat(FD, &Status);
465 return fillStatus(StatRet, Status, Result);
466}
467
Pavel Labath757ca882016-10-24 10:59:17 +0000468std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
Eric Christophera24dc7f2013-07-04 01:10:38 +0000469#if defined(HAVE_FUTIMENS)
470 timespec Times[2];
Pavel Labath757ca882016-10-24 10:59:17 +0000471 Times[0] = Times[1] = sys::toTimeSpec(Time);
Eric Christophera24dc7f2013-07-04 01:10:38 +0000472 if (::futimens(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000473 return std::error_code(errno, std::generic_category());
474 return std::error_code();
Eric Christophera24dc7f2013-07-04 01:10:38 +0000475#elif defined(HAVE_FUTIMES)
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000476 timeval Times[2];
Pavel Labath676a8752016-10-24 14:19:28 +0000477 Times[0] = Times[1] = sys::toTimeVal(
478 std::chrono::time_point_cast<std::chrono::microseconds>(Time));
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000479 if (::futimes(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000480 return std::error_code(errno, std::generic_category());
481 return std::error_code();
Alp Tokerb30f01e2013-12-11 15:42:33 +0000482#else
483#warning Missing futimes() and futimens()
Alp Tokerb792a012014-06-30 18:57:04 +0000484 return make_error_code(errc::function_not_supported);
Alp Tokerb30f01e2013-12-11 15:42:33 +0000485#endif
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000486}
487
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000488std::error_code mapped_file_region::init(int FD, uint64_t Offset,
489 mapmode Mode) {
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000490 assert(Size != 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000491
492 int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE;
493 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
Craig Toppere73658d2014-04-28 04:05:08 +0000494 Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000495 if (Mapping == MAP_FAILED)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000496 return std::error_code(errno, std::generic_category());
497 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000498}
499
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000500mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
501 uint64_t offset, std::error_code &ec)
502 : Size(length), Mapping() {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000503 // Make sure that the requested size fits within SIZE_T.
504 if (length > std::numeric_limits<size_t>::max()) {
Rafael Espindola2a826e42014-06-13 17:20:48 +0000505 ec = make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000506 return;
507 }
508
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000509 ec = init(fd, offset, mode);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000510 if (ec)
Craig Toppere73658d2014-04-28 04:05:08 +0000511 Mapping = nullptr;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000512}
513
514mapped_file_region::~mapped_file_region() {
515 if (Mapping)
516 ::munmap(Mapping, Size);
517}
518
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000519uint64_t mapped_file_region::size() const {
520 assert(Mapping && "Mapping failed but used anyway!");
521 return Size;
522}
523
524char *mapped_file_region::data() const {
525 assert(Mapping && "Mapping failed but used anyway!");
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000526 return reinterpret_cast<char*>(Mapping);
527}
528
529const char *mapped_file_region::const_data() const {
530 assert(Mapping && "Mapping failed but used anyway!");
531 return reinterpret_cast<const char*>(Mapping);
532}
533
534int mapped_file_region::alignment() {
Rafael Espindolac0610bf2014-12-04 16:59:36 +0000535 return Process::getPageSize();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000536}
537
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000538std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000539 StringRef path){
Michael J. Spencer52714862011-01-05 16:38:57 +0000540 SmallString<128> path_null(path);
541 DIR *directory = ::opendir(path_null.c_str());
Craig Toppere73658d2014-04-28 04:05:08 +0000542 if (!directory)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000543 return std::error_code(errno, std::generic_category());
Michael J. Spencer52714862011-01-05 16:38:57 +0000544
545 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
546 // Add something for replace_filename to replace.
547 path::append(path_null, ".");
548 it.CurrentEntry = directory_entry(path_null.str());
549 return directory_iterator_increment(it);
550}
551
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000552std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000553 if (it.IterationHandle)
554 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
555 it.IterationHandle = 0;
556 it.CurrentEntry = directory_entry();
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000557 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000558}
559
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000560std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000561 errno = 0;
562 dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle));
Craig Toppere73658d2014-04-28 04:05:08 +0000563 if (cur_dir == nullptr && errno != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000564 return std::error_code(errno, std::generic_category());
Craig Toppere73658d2014-04-28 04:05:08 +0000565 } else if (cur_dir != nullptr) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000566 StringRef name(cur_dir->d_name, NAMLEN(cur_dir));
567 if ((name.size() == 1 && name[0] == '.') ||
568 (name.size() == 2 && name[0] == '.' && name[1] == '.'))
569 return directory_iterator_increment(it);
570 it.CurrentEntry.replace_filename(name);
571 } else
572 return directory_iterator_destruct(it);
573
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000574 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000575}
576
Taewook Ohd9153272016-06-13 15:54:56 +0000577#if !defined(F_GETPATH)
578static bool hasProcSelfFD() {
579 // If we have a /proc filesystem mounted, we can quickly establish the
580 // real name of the file with readlink
581 static const bool Result = (::access("/proc/self/fd", R_OK) == 0);
582 return Result;
583}
584#endif
585
586std::error_code openFileForRead(const Twine &Name, int &ResultFD,
587 SmallVectorImpl<char> *RealPath) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000588 SmallString<128> Storage;
589 StringRef P = Name.toNullTerminatedStringRef(Storage);
Pavel Labathf726dfa2017-01-24 10:57:01 +0000590 int OpenFlags = O_RDONLY;
591#ifdef O_CLOEXEC
592 OpenFlags |= O_CLOEXEC;
593#endif
594 while ((ResultFD = open(P.begin(), OpenFlags)) < 0) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000595 if (errno != EINTR)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000596 return std::error_code(errno, std::generic_category());
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000597 }
Pavel Labathf726dfa2017-01-24 10:57:01 +0000598#ifndef O_CLOEXEC
599 int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC);
600 (void)r;
601 assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed");
602#endif
Taewook Ohd9153272016-06-13 15:54:56 +0000603 // Attempt to get the real name of the file, if the user asked
604 if(!RealPath)
605 return std::error_code();
606 RealPath->clear();
607#if defined(F_GETPATH)
608 // When F_GETPATH is availble, it is the quickest way to get
609 // the real path name.
610 char Buffer[MAXPATHLEN];
611 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
612 RealPath->append(Buffer, Buffer + strlen(Buffer));
613#else
614 char Buffer[PATH_MAX];
615 if (hasProcSelfFD()) {
616 char ProcPath[64];
617 snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", ResultFD);
618 ssize_t CharCount = ::readlink(ProcPath, Buffer, sizeof(Buffer));
619 if (CharCount > 0)
620 RealPath->append(Buffer, Buffer + CharCount);
621 } else {
622 // Use ::realpath to get the real path name
623 if (::realpath(P.begin(), Buffer) != nullptr)
624 RealPath->append(Buffer, Buffer + strlen(Buffer));
625 }
626#endif
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000627 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000628}
Nick Kledzik18497e92012-06-20 00:28:54 +0000629
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000630std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000631 sys::fs::OpenFlags Flags, unsigned Mode) {
632 // Verify that we don't have both "append" and "excl".
633 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
634 "Cannot specify both 'excl' and 'append' file creation flags!");
635
Pavel Labathf726dfa2017-01-24 10:57:01 +0000636 int OpenFlags = O_CREAT;
637
638#ifdef O_CLOEXEC
639 OpenFlags |= O_CLOEXEC;
640#endif
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000641
642 if (Flags & F_RW)
643 OpenFlags |= O_RDWR;
644 else
645 OpenFlags |= O_WRONLY;
Rafael Espindola67080ce2013-07-19 15:02:03 +0000646
647 if (Flags & F_Append)
648 OpenFlags |= O_APPEND;
649 else
650 OpenFlags |= O_TRUNC;
651
652 if (Flags & F_Excl)
653 OpenFlags |= O_EXCL;
654
655 SmallString<128> Storage;
656 StringRef P = Name.toNullTerminatedStringRef(Storage);
657 while ((ResultFD = open(P.begin(), OpenFlags, Mode)) < 0) {
658 if (errno != EINTR)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000659 return std::error_code(errno, std::generic_category());
Rafael Espindola67080ce2013-07-19 15:02:03 +0000660 }
Pavel Labathf726dfa2017-01-24 10:57:01 +0000661#ifndef O_CLOEXEC
662 int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC);
663 (void)r;
664 assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed");
665#endif
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000666 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +0000667}
668
Taewook Ohd9153272016-06-13 15:54:56 +0000669std::error_code getPathFromOpenFD(int FD, SmallVectorImpl<char> &ResultPath) {
670 if (FD < 0)
671 return make_error_code(errc::bad_file_descriptor);
672
673#if defined(F_GETPATH)
674 // When F_GETPATH is availble, it is the quickest way to get
675 // the path from a file descriptor.
676 ResultPath.reserve(MAXPATHLEN);
677 if (::fcntl(FD, F_GETPATH, ResultPath.begin()) == -1)
678 return std::error_code(errno, std::generic_category());
679
680 ResultPath.set_size(strlen(ResultPath.begin()));
681#else
682 // If we have a /proc filesystem mounted, we can quickly establish the
683 // real name of the file with readlink. Otherwise, we don't know how to
684 // get the filename from a file descriptor. Give up.
685 if (!fs::hasProcSelfFD())
686 return make_error_code(errc::function_not_supported);
687
688 ResultPath.reserve(PATH_MAX);
689 char ProcPath[64];
690 snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", FD);
691 ssize_t CharCount = ::readlink(ProcPath, ResultPath.begin(), ResultPath.capacity());
692 if (CharCount < 0)
693 return std::error_code(errno, std::generic_category());
694
695 // Was the filename truncated?
696 if (static_cast<size_t>(CharCount) == ResultPath.capacity()) {
697 // Use lstat to get the size of the filename
698 struct stat sb;
699 if (::lstat(ProcPath, &sb) < 0)
700 return std::error_code(errno, std::generic_category());
701
702 ResultPath.reserve(sb.st_size + 1);
703 CharCount = ::readlink(ProcPath, ResultPath.begin(), ResultPath.capacity());
704 if (CharCount < 0)
705 return std::error_code(errno, std::generic_category());
706
707 // Test for race condition: did the link size change?
708 if (CharCount > sb.st_size)
709 return std::error_code(ENAMETOOLONG, std::generic_category());
710 }
711 ResultPath.set_size(static_cast<size_t>(CharCount));
712#endif
713 return std::error_code();
714}
715
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000716} // end namespace fs
Peter Collingbournef7d41012014-01-31 23:46:06 +0000717
718namespace path {
719
720bool home_directory(SmallVectorImpl<char> &result) {
721 if (char *RequestedDir = getenv("HOME")) {
722 result.clear();
723 result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
724 return true;
725 }
726
727 return false;
728}
729
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000730static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000731 #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR)
732 // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
733 // macros defined in <unistd.h> on darwin >= 9
734 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR
735 : _CS_DARWIN_USER_CACHE_DIR;
736 size_t ConfLen = confstr(ConfName, nullptr, 0);
737 if (ConfLen > 0) {
738 do {
739 Result.resize(ConfLen);
740 ConfLen = confstr(ConfName, Result.data(), Result.size());
741 } while (ConfLen > 0 && ConfLen != Result.size());
742
743 if (ConfLen > 0) {
744 assert(Result.back() == 0);
745 Result.pop_back();
746 return true;
747 }
748
749 Result.clear();
750 }
751 #endif
752 return false;
753}
754
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000755static bool getUserCacheDir(SmallVectorImpl<char> &Result) {
Sean Silvaa915a162016-03-24 22:27:27 +0000756 // First try using XDG_CACHE_HOME env variable,
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000757 // as specified in XDG Base Directory Specification at
758 // http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
Sean Silvaa915a162016-03-24 22:27:27 +0000759 if (const char *XdgCacheDir = std::getenv("XDG_CACHE_HOME")) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000760 Result.clear();
Sean Silvaa915a162016-03-24 22:27:27 +0000761 Result.append(XdgCacheDir, XdgCacheDir + strlen(XdgCacheDir));
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000762 return true;
763 }
764
765 // Try Darwin configuration query
766 if (getDarwinConfDir(false, Result))
767 return true;
768
769 // Use "$HOME/.cache" if $HOME is available
770 if (home_directory(Result)) {
771 append(Result, ".cache");
772 return true;
773 }
774
775 return false;
776}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000777
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000778static const char *getEnvTempDir() {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000779 // Check whether the temporary directory is specified by an environment
780 // variable.
781 const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"};
782 for (const char *Env : EnvironmentVariables) {
783 if (const char *Dir = std::getenv(Env))
784 return Dir;
785 }
786
787 return nullptr;
788}
789
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000790static const char *getDefaultTempDir(bool ErasedOnReboot) {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000791#ifdef P_tmpdir
Benjamin Kramer870d9512014-08-27 11:47:52 +0000792 if ((bool)P_tmpdir)
Rafael Espindola016a6d52014-08-26 14:47:52 +0000793 return P_tmpdir;
794#endif
795
796 if (ErasedOnReboot)
797 return "/tmp";
798 return "/var/tmp";
799}
800
801void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
802 Result.clear();
803
804 if (ErasedOnReboot) {
805 // There is no env variable for the cache directory.
806 if (const char *RequestedDir = getEnvTempDir()) {
807 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
808 return;
809 }
810 }
811
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000812 if (getDarwinConfDir(ErasedOnReboot, Result))
813 return;
Rafael Espindola016a6d52014-08-26 14:47:52 +0000814
815 const char *RequestedDir = getDefaultTempDir(ErasedOnReboot);
816 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
817}
818
Peter Collingbournef7d41012014-01-31 23:46:06 +0000819} // end namespace path
820
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000821} // end namespace sys
822} // end namespace llvm