blob: b0aab160787fc9b60b1a7e77b34cefedf6054efa [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>
Zachary Turner392ed9d2017-02-21 20:55:47 +000068#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && \
69 !defined(__linux__)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000070#include <sys/statvfs.h>
71#define STATVFS statvfs
Zachary Turner392ed9d2017-02-21 20:55:47 +000072#define FSTATVFS fstatvfs
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000073#define STATVFS_F_FRSIZE(vfs) vfs.f_frsize
74#else
Zachary Turner392ed9d2017-02-21 20:55:47 +000075#if defined(__OpenBSD__) || defined(__FreeBSD__)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000076#include <sys/param.h>
Mehdi Amini3ba84ca2016-04-08 16:45:05 +000077#include <sys/mount.h>
Zachary Turner392ed9d2017-02-21 20:55:47 +000078#elif defined(__linux__)
79#include <linux/magic.h>
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000080#include <sys/vfs.h>
81#else
82#include <sys/mount.h>
83#endif
84#define STATVFS statfs
Zachary Turner392ed9d2017-02-21 20:55:47 +000085#define FSTATVFS fstatfs
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000086#define STATVFS_F_FRSIZE(vfs) static_cast<uint64_t>(vfs.f_bsize)
87#endif
88
Zachary Turner392ed9d2017-02-21 20:55:47 +000089#if defined(__NetBSD__)
90#define STATVFS_F_FLAG(vfs) (vfs).f_flag
91#else
92#define STATVFS_F_FLAG(vfs) (vfs).f_flags
93#endif
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000094
Michael J. Spencer45710402010-12-03 01:21:28 +000095using namespace llvm;
96
Michael J. Spencerebad2f92010-11-29 22:28:51 +000097namespace llvm {
98namespace sys {
Michael J. Spencer20daa282010-12-07 01:22:31 +000099namespace fs {
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000100#if defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
101 defined(__OpenBSD__) || defined(__minix) || defined(__FreeBSD_kernel__) || \
Chandler Carruth2aff7502016-07-19 22:46:39 +0000102 defined(__linux__) || defined(__CYGWIN__) || defined(__DragonFly__) || \
103 defined(_AIX)
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000104static int
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000105test_dir(char ret[PATH_MAX], const char *dir, const char *bin)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000106{
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000107 struct stat sb;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000108 char fullpath[PATH_MAX];
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000109
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000110 snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000111 if (!realpath(fullpath, ret))
112 return 1;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000113 if (stat(fullpath, &sb) != 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000114 return 1;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000115
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000116 return 0;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000117}
118
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000119static char *
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000120getprogpath(char ret[PATH_MAX], const char *bin)
121{
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000122 char *pv, *s, *t;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000123
124 /* First approach: absolute path. */
125 if (bin[0] == '/') {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000126 if (test_dir(ret, "/", bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000127 return ret;
128 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000129 }
130
131 /* Second approach: relative path. */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000132 if (strchr(bin, '/')) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000133 char cwd[PATH_MAX];
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000134 if (!getcwd(cwd, PATH_MAX))
135 return nullptr;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000136 if (test_dir(ret, cwd, bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000137 return ret;
138 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000139 }
140
141 /* Third approach: $PATH */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000142 if ((pv = getenv("PATH")) == nullptr)
143 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000144 s = pv = strdup(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000145 if (!pv)
146 return nullptr;
147 while ((t = strsep(&s, ":")) != nullptr) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000148 if (test_dir(ret, t, bin) == 0) {
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000149 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000150 return ret;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000151 }
152 }
153 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000154 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000155}
156#endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__
157
158/// GetMainExecutable - Return the path to the main executable, given the
159/// value of argv[0] from program startup.
160std::string getMainExecutable(const char *argv0, void *MainAddr) {
161#if defined(__APPLE__)
162 // On OS X the executable path is saved to the stack by dyld. Reading it
163 // from there is much faster than calling dladdr, especially for large
164 // binaries with symbols.
165 char exe_path[MAXPATHLEN];
166 uint32_t size = sizeof(exe_path);
167 if (_NSGetExecutablePath(exe_path, &size) == 0) {
168 char link_path[MAXPATHLEN];
169 if (realpath(exe_path, link_path))
Rafael Espindola4601c462013-06-26 05:25:44 +0000170 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000171 }
172#elif defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
Rafael Espindolaaca97392013-10-31 14:35:00 +0000173 defined(__OpenBSD__) || defined(__minix) || defined(__DragonFly__) || \
Chandler Carruth2aff7502016-07-19 22:46:39 +0000174 defined(__FreeBSD_kernel__) || defined(_AIX)
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000175 char exe_path[PATH_MAX];
176
177 if (getprogpath(exe_path, argv0) != NULL)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000178 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000179#elif defined(__linux__) || defined(__CYGWIN__)
180 char exe_path[MAXPATHLEN];
181 StringRef aPath("/proc/self/exe");
182 if (sys::fs::exists(aPath)) {
183 // /proc is not always mounted under Linux (chroot for example).
184 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
185 if (len >= 0)
Alexey Samsonov4c798452014-12-29 20:59:02 +0000186 return std::string(exe_path, len);
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000187 } else {
188 // Fall back to the classical detection.
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000189 if (getprogpath(exe_path, argv0))
190 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000191 }
Omair Javaidf5d560bc842017-02-02 01:17:49 +0000192#elif defined(HAVE_DLFCN_H) && defined(HAVE_DLADDR)
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000193 // Use dladdr to get executable path if available.
194 Dl_info DLInfo;
195 int err = dladdr(MainAddr, &DLInfo);
196 if (err == 0)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000197 return "";
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000198
199 // If the filename is a symlink, we need to resolve and return the location of
200 // the actual executable.
201 char link_path[MAXPATHLEN];
202 if (realpath(DLInfo.dli_fname, link_path))
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000203 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000204#else
205#error GetMainExecutable is not implemented on this host yet.
206#endif
207 return "";
208}
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000209
Pavel Labath757ca882016-10-24 10:59:17 +0000210TimePoint<> file_status::getLastAccessedTime() const {
211 return toTimePoint(fs_st_atime);
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000212}
213
Pavel Labath757ca882016-10-24 10:59:17 +0000214TimePoint<> file_status::getLastModificationTime() const {
215 return toTimePoint(fs_st_mtime);
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000216}
217
Rafael Espindolad1230992013-07-29 21:55:38 +0000218UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000219 return UniqueID(fs_st_dev, fs_st_ino);
220}
221
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000222ErrorOr<space_info> disk_space(const Twine &Path) {
223 struct STATVFS Vfs;
224 if (::STATVFS(Path.str().c_str(), &Vfs))
225 return std::error_code(errno, std::generic_category());
226 auto FrSize = STATVFS_F_FRSIZE(Vfs);
227 space_info SpaceInfo;
228 SpaceInfo.capacity = static_cast<uint64_t>(Vfs.f_blocks) * FrSize;
229 SpaceInfo.free = static_cast<uint64_t>(Vfs.f_bfree) * FrSize;
230 SpaceInfo.available = static_cast<uint64_t>(Vfs.f_bavail) * FrSize;
231 return SpaceInfo;
232}
233
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000234std::error_code current_path(SmallVectorImpl<char> &result) {
Rafael Espindola6ee16382013-08-10 00:50:57 +0000235 result.clear();
236
237 const char *pwd = ::getenv("PWD");
238 llvm::sys::fs::file_status PWDStatus, DotStatus;
239 if (pwd && llvm::sys::path::is_absolute(pwd) &&
240 !llvm::sys::fs::status(pwd, PWDStatus) &&
241 !llvm::sys::fs::status(".", DotStatus) &&
242 PWDStatus.getUniqueID() == DotStatus.getUniqueID()) {
243 result.append(pwd, pwd + strlen(pwd));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000244 return std::error_code();
Rafael Espindola6ee16382013-08-10 00:50:57 +0000245 }
246
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000247#ifdef MAXPATHLEN
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000248 result.reserve(MAXPATHLEN);
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000249#else
250// For GNU Hurd
251 result.reserve(1024);
252#endif
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000253
Michael J. Spencer20daa282010-12-07 01:22:31 +0000254 while (true) {
Craig Toppere73658d2014-04-28 04:05:08 +0000255 if (::getcwd(result.data(), result.capacity()) == nullptr) {
Michael J. Spencer20daa282010-12-07 01:22:31 +0000256 // See if there was a real error.
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000257 if (errno != ENOMEM)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000258 return std::error_code(errno, std::generic_category());
Michael J. Spencer20daa282010-12-07 01:22:31 +0000259 // Otherwise there just wasn't enough space.
260 result.reserve(result.capacity() * 2);
261 } else
262 break;
263 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000264
265 result.set_size(strlen(result.data()));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000266 return std::error_code();
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000267}
268
Pavel Labath2f096092017-01-24 10:32:03 +0000269std::error_code set_current_path(const Twine &path) {
270 SmallString<128> path_storage;
271 StringRef p = path.toNullTerminatedStringRef(path_storage);
272
273 if (::chdir(p.begin()) == -1)
274 return std::error_code(errno, std::generic_category());
275
276 return std::error_code();
277}
278
Frederic Riss6b9396c2015-08-06 21:04:55 +0000279std::error_code create_directory(const Twine &path, bool IgnoreExisting,
280 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000281 SmallString<128> path_storage;
282 StringRef p = path.toNullTerminatedStringRef(path_storage);
283
Frederic Riss6b9396c2015-08-06 21:04:55 +0000284 if (::mkdir(p.begin(), Perms) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000285 if (errno != EEXIST || !IgnoreExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000286 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000287 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000288
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000289 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000290}
291
Rafael Espindola83f858e2014-03-11 18:40:24 +0000292// Note that we are using symbolic link because hard links are not supported by
293// all filesystems (SMB doesn't).
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000294std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000295 // Get arguments.
296 SmallString<128> from_storage;
297 SmallString<128> to_storage;
298 StringRef f = from.toNullTerminatedStringRef(from_storage);
299 StringRef t = to.toNullTerminatedStringRef(to_storage);
300
Rafael Espindola83f858e2014-03-11 18:40:24 +0000301 if (::symlink(t.begin(), f.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000302 return std::error_code(errno, std::generic_category());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000303
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000304 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000305}
306
Mehdi Amini8e13bc42016-12-14 04:56:42 +0000307std::error_code create_hard_link(const Twine &to, const Twine &from) {
308 // Get arguments.
309 SmallString<128> from_storage;
310 SmallString<128> to_storage;
311 StringRef f = from.toNullTerminatedStringRef(from_storage);
312 StringRef t = to.toNullTerminatedStringRef(to_storage);
313
314 if (::link(t.begin(), f.begin()) == -1)
315 return std::error_code(errno, std::generic_category());
316
317 return std::error_code();
318}
319
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000320std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000321 SmallString<128> path_storage;
322 StringRef p = path.toNullTerminatedStringRef(path_storage);
323
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000324 struct stat buf;
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000325 if (lstat(p.begin(), &buf) != 0) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000326 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000327 return std::error_code(errno, std::generic_category());
328 return std::error_code();
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000329 }
330
331 // Note: this check catches strange situations. In all cases, LLVM should
332 // only be involved in the creation and deletion of regular files. This
333 // check ensures that what we're trying to erase is a regular file. It
334 // effectively prevents LLVM from erasing things like /dev/null, any block
335 // special file, or other things that aren't "regular" files.
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000336 if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000337 return make_error_code(errc::operation_not_permitted);
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000338
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000339 if (::remove(p.begin()) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000340 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000341 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000342 }
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000343
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000344 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000345}
346
Zachary Turner392ed9d2017-02-21 20:55:47 +0000347static bool is_local_impl(struct STATVFS &Vfs) {
348#if defined(__linux__)
Zachary Turner6bc2dac2017-02-21 21:13:10 +0000349#ifndef CIFS_MAGIC_NUMBER
350#define CIFS_MAGIC_NUMBER 0xFF534D42
351#endif
Zachary Turner392ed9d2017-02-21 20:55:47 +0000352 switch ((uint32_t)Vfs.f_type) {
353 case NFS_SUPER_MAGIC:
354 case SMB_SUPER_MAGIC:
355 case CIFS_MAGIC_NUMBER:
356 return false;
357 default:
358 return true;
359 }
360#else
361 return !!(STATVFS_F_FLAG(Vfs) & MNT_LOCAL);
362#endif
363}
364
365std::error_code is_local(const Twine &Path, bool &Result) {
366 struct STATVFS Vfs;
367 if (::STATVFS(Path.str().c_str(), &Vfs))
368 return std::error_code(errno, std::generic_category());
369
370 Result = is_local_impl(Vfs);
371 return std::error_code();
372}
373
374std::error_code is_local(int FD, bool &Result) {
375 struct STATVFS Vfs;
376 if (::FSTATVFS(FD, &Vfs))
377 return std::error_code(errno, std::generic_category());
378
379 Result = is_local_impl(Vfs);
380 return std::error_code();
381}
382
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000383std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000384 // Get arguments.
385 SmallString<128> from_storage;
386 SmallString<128> to_storage;
387 StringRef f = from.toNullTerminatedStringRef(from_storage);
388 StringRef t = to.toNullTerminatedStringRef(to_storage);
389
Rafael Espindolab6fea4c2013-07-17 03:33:41 +0000390 if (::rename(f.begin(), t.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000391 return std::error_code(errno, std::generic_category());
Michael J. Spencer409f5562010-12-03 17:53:55 +0000392
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000393 return std::error_code();
Michael J. Spencer409f5562010-12-03 17:53:55 +0000394}
395
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000396std::error_code resize_file(int FD, uint64_t Size) {
Rafael Espindola3816c532016-07-19 20:19:56 +0000397#if defined(HAVE_POSIX_FALLOCATE)
398 // If we have posix_fallocate use it. Unlike ftruncate it always allocates
399 // space, so we get an error if the disk is full.
400 if (int Err = ::posix_fallocate(FD, 0, Size))
401 return std::error_code(Err, std::generic_category());
402#else
403 // Use ftruncate as a fallback. It may or may not allocate space. At least on
404 // OS X with HFS+ it does.
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000405 if (::ftruncate(FD, Size) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000406 return std::error_code(errno, std::generic_category());
Rafael Espindola3816c532016-07-19 20:19:56 +0000407#endif
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000408
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000409 return std::error_code();
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000410}
411
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000412static int convertAccessMode(AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000413 switch (Mode) {
414 case AccessMode::Exist:
415 return F_OK;
416 case AccessMode::Write:
417 return W_OK;
418 case AccessMode::Execute:
419 return R_OK | X_OK; // scripts also need R_OK.
420 }
421 llvm_unreachable("invalid enum");
422}
Michael J. Spencer45710402010-12-03 01:21:28 +0000423
Rafael Espindola281f23a2014-09-11 20:30:02 +0000424std::error_code access(const Twine &Path, AccessMode Mode) {
425 SmallString<128> PathStorage;
426 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
427
428 if (::access(P.begin(), convertAccessMode(Mode)) == -1)
429 return std::error_code(errno, std::generic_category());
430
431 if (Mode == AccessMode::Execute) {
432 // Don't say that directories are executable.
433 struct stat buf;
434 if (0 != stat(P.begin(), &buf))
435 return errc::permission_denied;
436 if (!S_ISREG(buf.st_mode))
437 return errc::permission_denied;
438 }
Michael J. Spencer45710402010-12-03 01:21:28 +0000439
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000440 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000441}
442
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000443bool can_execute(const Twine &Path) {
444 return !access(Path, AccessMode::Execute);
445}
446
Michael J. Spencer203d7802011-12-12 06:04:28 +0000447bool equivalent(file_status A, file_status B) {
448 assert(status_known(A) && status_known(B));
Sylvestre Ledru3099f4bd2012-04-23 16:37:23 +0000449 return A.fs_st_dev == B.fs_st_dev &&
450 A.fs_st_ino == B.fs_st_ino;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000451}
452
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000453std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000454 file_status fsA, fsB;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000455 if (std::error_code ec = status(A, fsA))
456 return ec;
457 if (std::error_code ec = status(B, fsB))
458 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000459 result = equivalent(fsA, fsB);
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000460 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000461}
462
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000463static std::error_code fillStatus(int StatRet, const struct stat &Status,
464 file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000465 if (StatRet != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000466 std::error_code ec(errno, std::generic_category());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000467 if (ec == errc::no_such_file_or_directory)
Rafael Espindola77021c92013-07-16 03:20:13 +0000468 Result = file_status(file_type::file_not_found);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000469 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000470 Result = file_status(file_type::status_error);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000471 return ec;
472 }
473
Rafael Espindola9da91a02013-07-16 02:55:33 +0000474 file_type Type = file_type::type_unknown;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000475
Rafael Espindola77021c92013-07-16 03:20:13 +0000476 if (S_ISDIR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000477 Type = file_type::directory_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000478 else if (S_ISREG(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000479 Type = file_type::regular_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000480 else if (S_ISBLK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000481 Type = file_type::block_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000482 else if (S_ISCHR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000483 Type = file_type::character_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000484 else if (S_ISFIFO(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000485 Type = file_type::fifo_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000486 else if (S_ISSOCK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000487 Type = file_type::socket_file;
488
Rafael Espindola77021c92013-07-16 03:20:13 +0000489 perms Perms = static_cast<perms>(Status.st_mode);
490 Result =
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000491 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_atime,
492 Status.st_mtime, Status.st_uid, Status.st_gid,
493 Status.st_size);
Michael J. Spencer203d7802011-12-12 06:04:28 +0000494
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000495 return std::error_code();
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000496}
497
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000498std::error_code status(const Twine &Path, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000499 SmallString<128> PathStorage;
500 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
501
502 struct stat Status;
503 int StatRet = ::stat(P.begin(), &Status);
504 return fillStatus(StatRet, Status, Result);
505}
506
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000507std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000508 struct stat Status;
509 int StatRet = ::fstat(FD, &Status);
510 return fillStatus(StatRet, Status, Result);
511}
512
Pavel Labath757ca882016-10-24 10:59:17 +0000513std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
Eric Christophera24dc7f2013-07-04 01:10:38 +0000514#if defined(HAVE_FUTIMENS)
515 timespec Times[2];
Pavel Labath757ca882016-10-24 10:59:17 +0000516 Times[0] = Times[1] = sys::toTimeSpec(Time);
Eric Christophera24dc7f2013-07-04 01:10:38 +0000517 if (::futimens(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000518 return std::error_code(errno, std::generic_category());
519 return std::error_code();
Eric Christophera24dc7f2013-07-04 01:10:38 +0000520#elif defined(HAVE_FUTIMES)
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000521 timeval Times[2];
Pavel Labath676a8752016-10-24 14:19:28 +0000522 Times[0] = Times[1] = sys::toTimeVal(
523 std::chrono::time_point_cast<std::chrono::microseconds>(Time));
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000524 if (::futimes(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000525 return std::error_code(errno, std::generic_category());
526 return std::error_code();
Alp Tokerb30f01e2013-12-11 15:42:33 +0000527#else
528#warning Missing futimes() and futimens()
Alp Tokerb792a012014-06-30 18:57:04 +0000529 return make_error_code(errc::function_not_supported);
Alp Tokerb30f01e2013-12-11 15:42:33 +0000530#endif
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000531}
532
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000533std::error_code mapped_file_region::init(int FD, uint64_t Offset,
534 mapmode Mode) {
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000535 assert(Size != 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000536
537 int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE;
538 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
Zachary Turner392ed9d2017-02-21 20:55:47 +0000539#if defined(__APPLE__)
540//----------------------------------------------------------------------
541// Newer versions of MacOSX have a flag that will allow us to read from
542// binaries whose code signature is invalid without crashing by using
543// the MAP_RESILIENT_CODESIGN flag. Also if a file from removable media
544// is mapped we can avoid crashing and return zeroes to any pages we try
545// to read if the media becomes unavailable by using the
546// MAP_RESILIENT_MEDIA flag.
547//----------------------------------------------------------------------
548#if defined(MAP_RESILIENT_CODESIGN)
549 flags |= MAP_RESILIENT_CODESIGN;
550#endif
551#if defined(MAP_RESILIENT_MEDIA)
552 flags |= MAP_RESILIENT_MEDIA;
553#endif
554#endif // #if defined (__APPLE__)
555
Craig Toppere73658d2014-04-28 04:05:08 +0000556 Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000557 if (Mapping == MAP_FAILED)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000558 return std::error_code(errno, std::generic_category());
559 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000560}
561
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000562mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
563 uint64_t offset, std::error_code &ec)
564 : Size(length), Mapping() {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000565 // Make sure that the requested size fits within SIZE_T.
566 if (length > std::numeric_limits<size_t>::max()) {
Rafael Espindola2a826e42014-06-13 17:20:48 +0000567 ec = make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000568 return;
569 }
570
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000571 ec = init(fd, offset, mode);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000572 if (ec)
Craig Toppere73658d2014-04-28 04:05:08 +0000573 Mapping = nullptr;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000574}
575
576mapped_file_region::~mapped_file_region() {
577 if (Mapping)
578 ::munmap(Mapping, Size);
579}
580
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000581uint64_t mapped_file_region::size() const {
582 assert(Mapping && "Mapping failed but used anyway!");
583 return Size;
584}
585
586char *mapped_file_region::data() const {
587 assert(Mapping && "Mapping failed but used anyway!");
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000588 return reinterpret_cast<char*>(Mapping);
589}
590
591const char *mapped_file_region::const_data() const {
592 assert(Mapping && "Mapping failed but used anyway!");
593 return reinterpret_cast<const char*>(Mapping);
594}
595
596int mapped_file_region::alignment() {
Rafael Espindolac0610bf2014-12-04 16:59:36 +0000597 return Process::getPageSize();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000598}
599
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000600std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000601 StringRef path){
Michael J. Spencer52714862011-01-05 16:38:57 +0000602 SmallString<128> path_null(path);
603 DIR *directory = ::opendir(path_null.c_str());
Craig Toppere73658d2014-04-28 04:05:08 +0000604 if (!directory)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000605 return std::error_code(errno, std::generic_category());
Michael J. Spencer52714862011-01-05 16:38:57 +0000606
607 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
608 // Add something for replace_filename to replace.
609 path::append(path_null, ".");
610 it.CurrentEntry = directory_entry(path_null.str());
611 return directory_iterator_increment(it);
612}
613
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000614std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000615 if (it.IterationHandle)
616 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
617 it.IterationHandle = 0;
618 it.CurrentEntry = directory_entry();
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000619 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000620}
621
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000622std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000623 errno = 0;
624 dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle));
Craig Toppere73658d2014-04-28 04:05:08 +0000625 if (cur_dir == nullptr && errno != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000626 return std::error_code(errno, std::generic_category());
Craig Toppere73658d2014-04-28 04:05:08 +0000627 } else if (cur_dir != nullptr) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000628 StringRef name(cur_dir->d_name, NAMLEN(cur_dir));
629 if ((name.size() == 1 && name[0] == '.') ||
630 (name.size() == 2 && name[0] == '.' && name[1] == '.'))
631 return directory_iterator_increment(it);
632 it.CurrentEntry.replace_filename(name);
633 } else
634 return directory_iterator_destruct(it);
635
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000636 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000637}
638
Taewook Ohd9153272016-06-13 15:54:56 +0000639#if !defined(F_GETPATH)
640static bool hasProcSelfFD() {
641 // If we have a /proc filesystem mounted, we can quickly establish the
642 // real name of the file with readlink
643 static const bool Result = (::access("/proc/self/fd", R_OK) == 0);
644 return Result;
645}
646#endif
647
648std::error_code openFileForRead(const Twine &Name, int &ResultFD,
649 SmallVectorImpl<char> *RealPath) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000650 SmallString<128> Storage;
651 StringRef P = Name.toNullTerminatedStringRef(Storage);
Pavel Labathf726dfa2017-01-24 10:57:01 +0000652 int OpenFlags = O_RDONLY;
653#ifdef O_CLOEXEC
654 OpenFlags |= O_CLOEXEC;
655#endif
656 while ((ResultFD = open(P.begin(), OpenFlags)) < 0) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000657 if (errno != EINTR)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000658 return std::error_code(errno, std::generic_category());
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000659 }
Pavel Labathf726dfa2017-01-24 10:57:01 +0000660#ifndef O_CLOEXEC
661 int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC);
662 (void)r;
663 assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed");
664#endif
Taewook Ohd9153272016-06-13 15:54:56 +0000665 // Attempt to get the real name of the file, if the user asked
666 if(!RealPath)
667 return std::error_code();
668 RealPath->clear();
669#if defined(F_GETPATH)
670 // When F_GETPATH is availble, it is the quickest way to get
671 // the real path name.
672 char Buffer[MAXPATHLEN];
673 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
674 RealPath->append(Buffer, Buffer + strlen(Buffer));
675#else
676 char Buffer[PATH_MAX];
677 if (hasProcSelfFD()) {
678 char ProcPath[64];
679 snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", ResultFD);
680 ssize_t CharCount = ::readlink(ProcPath, Buffer, sizeof(Buffer));
681 if (CharCount > 0)
682 RealPath->append(Buffer, Buffer + CharCount);
683 } else {
684 // Use ::realpath to get the real path name
685 if (::realpath(P.begin(), Buffer) != nullptr)
686 RealPath->append(Buffer, Buffer + strlen(Buffer));
687 }
688#endif
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000689 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000690}
Nick Kledzik18497e92012-06-20 00:28:54 +0000691
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000692std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000693 sys::fs::OpenFlags Flags, unsigned Mode) {
694 // Verify that we don't have both "append" and "excl".
695 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
696 "Cannot specify both 'excl' and 'append' file creation flags!");
697
Pavel Labathf726dfa2017-01-24 10:57:01 +0000698 int OpenFlags = O_CREAT;
699
700#ifdef O_CLOEXEC
701 OpenFlags |= O_CLOEXEC;
702#endif
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000703
704 if (Flags & F_RW)
705 OpenFlags |= O_RDWR;
706 else
707 OpenFlags |= O_WRONLY;
Rafael Espindola67080ce2013-07-19 15:02:03 +0000708
709 if (Flags & F_Append)
710 OpenFlags |= O_APPEND;
711 else
712 OpenFlags |= O_TRUNC;
713
714 if (Flags & F_Excl)
715 OpenFlags |= O_EXCL;
716
717 SmallString<128> Storage;
718 StringRef P = Name.toNullTerminatedStringRef(Storage);
719 while ((ResultFD = open(P.begin(), OpenFlags, Mode)) < 0) {
720 if (errno != EINTR)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000721 return std::error_code(errno, std::generic_category());
Rafael Espindola67080ce2013-07-19 15:02:03 +0000722 }
Pavel Labathf726dfa2017-01-24 10:57:01 +0000723#ifndef O_CLOEXEC
724 int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC);
725 (void)r;
726 assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed");
727#endif
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000728 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +0000729}
730
Taewook Ohd9153272016-06-13 15:54:56 +0000731std::error_code getPathFromOpenFD(int FD, SmallVectorImpl<char> &ResultPath) {
732 if (FD < 0)
733 return make_error_code(errc::bad_file_descriptor);
734
735#if defined(F_GETPATH)
736 // When F_GETPATH is availble, it is the quickest way to get
737 // the path from a file descriptor.
738 ResultPath.reserve(MAXPATHLEN);
739 if (::fcntl(FD, F_GETPATH, ResultPath.begin()) == -1)
740 return std::error_code(errno, std::generic_category());
741
742 ResultPath.set_size(strlen(ResultPath.begin()));
743#else
744 // If we have a /proc filesystem mounted, we can quickly establish the
745 // real name of the file with readlink. Otherwise, we don't know how to
746 // get the filename from a file descriptor. Give up.
747 if (!fs::hasProcSelfFD())
748 return make_error_code(errc::function_not_supported);
749
750 ResultPath.reserve(PATH_MAX);
751 char ProcPath[64];
752 snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", FD);
753 ssize_t CharCount = ::readlink(ProcPath, ResultPath.begin(), ResultPath.capacity());
754 if (CharCount < 0)
755 return std::error_code(errno, std::generic_category());
756
757 // Was the filename truncated?
758 if (static_cast<size_t>(CharCount) == ResultPath.capacity()) {
759 // Use lstat to get the size of the filename
760 struct stat sb;
761 if (::lstat(ProcPath, &sb) < 0)
762 return std::error_code(errno, std::generic_category());
763
764 ResultPath.reserve(sb.st_size + 1);
765 CharCount = ::readlink(ProcPath, ResultPath.begin(), ResultPath.capacity());
766 if (CharCount < 0)
767 return std::error_code(errno, std::generic_category());
768
769 // Test for race condition: did the link size change?
770 if (CharCount > sb.st_size)
771 return std::error_code(ENAMETOOLONG, std::generic_category());
772 }
773 ResultPath.set_size(static_cast<size_t>(CharCount));
774#endif
775 return std::error_code();
776}
777
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000778} // end namespace fs
Peter Collingbournef7d41012014-01-31 23:46:06 +0000779
780namespace path {
781
782bool home_directory(SmallVectorImpl<char> &result) {
783 if (char *RequestedDir = getenv("HOME")) {
784 result.clear();
785 result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
786 return true;
787 }
788
789 return false;
790}
791
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000792static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000793 #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR)
794 // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
795 // macros defined in <unistd.h> on darwin >= 9
796 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR
797 : _CS_DARWIN_USER_CACHE_DIR;
798 size_t ConfLen = confstr(ConfName, nullptr, 0);
799 if (ConfLen > 0) {
800 do {
801 Result.resize(ConfLen);
802 ConfLen = confstr(ConfName, Result.data(), Result.size());
803 } while (ConfLen > 0 && ConfLen != Result.size());
804
805 if (ConfLen > 0) {
806 assert(Result.back() == 0);
807 Result.pop_back();
808 return true;
809 }
810
811 Result.clear();
812 }
813 #endif
814 return false;
815}
816
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000817static bool getUserCacheDir(SmallVectorImpl<char> &Result) {
Sean Silvaa915a162016-03-24 22:27:27 +0000818 // First try using XDG_CACHE_HOME env variable,
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000819 // as specified in XDG Base Directory Specification at
820 // http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
Sean Silvaa915a162016-03-24 22:27:27 +0000821 if (const char *XdgCacheDir = std::getenv("XDG_CACHE_HOME")) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000822 Result.clear();
Sean Silvaa915a162016-03-24 22:27:27 +0000823 Result.append(XdgCacheDir, XdgCacheDir + strlen(XdgCacheDir));
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000824 return true;
825 }
826
827 // Try Darwin configuration query
828 if (getDarwinConfDir(false, Result))
829 return true;
830
831 // Use "$HOME/.cache" if $HOME is available
832 if (home_directory(Result)) {
833 append(Result, ".cache");
834 return true;
835 }
836
837 return false;
838}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000839
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000840static const char *getEnvTempDir() {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000841 // Check whether the temporary directory is specified by an environment
842 // variable.
843 const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"};
844 for (const char *Env : EnvironmentVariables) {
845 if (const char *Dir = std::getenv(Env))
846 return Dir;
847 }
848
849 return nullptr;
850}
851
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000852static const char *getDefaultTempDir(bool ErasedOnReboot) {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000853#ifdef P_tmpdir
Benjamin Kramer870d9512014-08-27 11:47:52 +0000854 if ((bool)P_tmpdir)
Rafael Espindola016a6d52014-08-26 14:47:52 +0000855 return P_tmpdir;
856#endif
857
858 if (ErasedOnReboot)
859 return "/tmp";
860 return "/var/tmp";
861}
862
863void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
864 Result.clear();
865
866 if (ErasedOnReboot) {
867 // There is no env variable for the cache directory.
868 if (const char *RequestedDir = getEnvTempDir()) {
869 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
870 return;
871 }
872 }
873
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000874 if (getDarwinConfDir(ErasedOnReboot, Result))
875 return;
Rafael Espindola016a6d52014-08-26 14:47:52 +0000876
877 const char *RequestedDir = getDefaultTempDir(ErasedOnReboot);
878 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
879}
880
Peter Collingbournef7d41012014-01-31 23:46:06 +0000881} // end namespace path
882
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000883} // end namespace sys
884} // end namespace llvm