blob: 7ad57d892ff188f1796e6d3b338e88a23f5f33d0 [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. Spencer9fc1d9d2010-12-01 19:32:01 +000034
Nico Weberf3db8e32018-04-02 17:17:29 +000035#include <dirent.h>
Zachary Turnere48ace62017-03-10 17:39:21 +000036#include <pwd.h>
37
Rafael Espindola4601c462013-06-26 05:25:44 +000038#ifdef __APPLE__
39#include <mach-o/dyld.h>
Taewook Ohd9153272016-06-13 15:54:56 +000040#include <sys/attr.h>
Rafael Espindola4601c462013-06-26 05:25:44 +000041#endif
42
Simon Pilgrimf2fbf432016-11-20 13:47:59 +000043// Both stdio.h and cstdio are included via different paths and
Joerg Sonnenbergerc0697302012-08-10 10:56:09 +000044// stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros
45// either.
46#undef ferror
47#undef feof
48
Sylvestre Ledru14ada942012-04-11 15:35:36 +000049// For GNU Hurd
50#if defined(__GNU__) && !defined(PATH_MAX)
51# define PATH_MAX 4096
52#endif
53
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000054#include <sys/types.h>
Zachary Turner392ed9d2017-02-21 20:55:47 +000055#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && \
56 !defined(__linux__)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000057#include <sys/statvfs.h>
58#define STATVFS statvfs
Zachary Turner392ed9d2017-02-21 20:55:47 +000059#define FSTATVFS fstatvfs
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000060#define STATVFS_F_FRSIZE(vfs) vfs.f_frsize
61#else
Zachary Turner392ed9d2017-02-21 20:55:47 +000062#if defined(__OpenBSD__) || defined(__FreeBSD__)
Mehdi Amini3ba84ca2016-04-08 16:45:05 +000063#include <sys/mount.h>
Chandler Carruth6bda14b2017-06-06 11:49:48 +000064#include <sys/param.h>
Zachary Turner392ed9d2017-02-21 20:55:47 +000065#elif defined(__linux__)
Michal Gorny5ddd2a52017-02-22 18:09:15 +000066#if defined(HAVE_LINUX_MAGIC_H)
Zachary Turner392ed9d2017-02-21 20:55:47 +000067#include <linux/magic.h>
Michal Gorny5ddd2a52017-02-22 18:09:15 +000068#else
69#if defined(HAVE_LINUX_NFS_FS_H)
70#include <linux/nfs_fs.h>
71#endif
72#if defined(HAVE_LINUX_SMB_H)
73#include <linux/smb.h>
74#endif
75#endif
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000076#include <sys/vfs.h>
77#else
78#include <sys/mount.h>
79#endif
80#define STATVFS statfs
Zachary Turner392ed9d2017-02-21 20:55:47 +000081#define FSTATVFS fstatfs
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000082#define STATVFS_F_FRSIZE(vfs) static_cast<uint64_t>(vfs.f_bsize)
83#endif
84
Zachary Turner392ed9d2017-02-21 20:55:47 +000085#if defined(__NetBSD__)
86#define STATVFS_F_FLAG(vfs) (vfs).f_flag
87#else
88#define STATVFS_F_FLAG(vfs) (vfs).f_flags
89#endif
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000090
Michael J. Spencer45710402010-12-03 01:21:28 +000091using namespace llvm;
92
Michael J. Spencerebad2f92010-11-29 22:28:51 +000093namespace llvm {
94namespace sys {
Michael J. Spencer20daa282010-12-07 01:22:31 +000095namespace fs {
Zachary Turner63db25b2018-06-04 19:38:11 +000096
97const file_t kInvalidFile = -1;
98
Erich Keaned8f61f82017-07-21 22:48:47 +000099#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
100 defined(__minix) || defined(__FreeBSD_kernel__) || defined(__linux__) || \
101 defined(__CYGWIN__) || defined(__DragonFly__) || defined(_AIX)
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000102static int
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000103test_dir(char ret[PATH_MAX], const char *dir, const char *bin)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000104{
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000105 struct stat sb;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000106 char fullpath[PATH_MAX];
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000107
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000108 snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000109 if (!realpath(fullpath, ret))
110 return 1;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000111 if (stat(fullpath, &sb) != 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000112 return 1;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000113
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000114 return 0;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000115}
116
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000117static char *
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000118getprogpath(char ret[PATH_MAX], const char *bin)
119{
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000120 char *pv, *s, *t;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000121
122 /* First approach: absolute path. */
123 if (bin[0] == '/') {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000124 if (test_dir(ret, "/", bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000125 return ret;
126 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000127 }
128
129 /* Second approach: relative path. */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000130 if (strchr(bin, '/')) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000131 char cwd[PATH_MAX];
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000132 if (!getcwd(cwd, PATH_MAX))
133 return nullptr;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000134 if (test_dir(ret, cwd, bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000135 return ret;
136 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000137 }
138
139 /* Third approach: $PATH */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000140 if ((pv = getenv("PATH")) == nullptr)
141 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000142 s = pv = strdup(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000143 if (!pv)
144 return nullptr;
145 while ((t = strsep(&s, ":")) != nullptr) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000146 if (test_dir(ret, t, bin) == 0) {
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000147 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000148 return ret;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000149 }
150 }
151 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000152 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000153}
Dimitry Andricebc87792017-05-17 19:33:10 +0000154#endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000155
156/// GetMainExecutable - Return the path to the main executable, given the
157/// value of argv[0] from program startup.
158std::string getMainExecutable(const char *argv0, void *MainAddr) {
159#if defined(__APPLE__)
160 // On OS X the executable path is saved to the stack by dyld. Reading it
161 // from there is much faster than calling dladdr, especially for large
162 // binaries with symbols.
163 char exe_path[MAXPATHLEN];
164 uint32_t size = sizeof(exe_path);
165 if (_NSGetExecutablePath(exe_path, &size) == 0) {
166 char link_path[MAXPATHLEN];
167 if (realpath(exe_path, link_path))
Rafael Espindola4601c462013-06-26 05:25:44 +0000168 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000169 }
Erich Keaned8f61f82017-07-21 22:48:47 +0000170#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
171 defined(__minix) || defined(__DragonFly__) || \
172 defined(__FreeBSD_kernel__) || defined(_AIX)
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000173 char exe_path[PATH_MAX];
174
175 if (getprogpath(exe_path, argv0) != NULL)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000176 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000177#elif defined(__linux__) || defined(__CYGWIN__)
178 char exe_path[MAXPATHLEN];
179 StringRef aPath("/proc/self/exe");
180 if (sys::fs::exists(aPath)) {
181 // /proc is not always mounted under Linux (chroot for example).
182 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
183 if (len >= 0)
Alexey Samsonov4c798452014-12-29 20:59:02 +0000184 return std::string(exe_path, len);
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000185 } else {
186 // Fall back to the classical detection.
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000187 if (getprogpath(exe_path, argv0))
188 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000189 }
Omair Javaidf5d560bc842017-02-02 01:17:49 +0000190#elif defined(HAVE_DLFCN_H) && defined(HAVE_DLADDR)
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000191 // Use dladdr to get executable path if available.
192 Dl_info DLInfo;
193 int err = dladdr(MainAddr, &DLInfo);
194 if (err == 0)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000195 return "";
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000196
197 // If the filename is a symlink, we need to resolve and return the location of
198 // the actual executable.
199 char link_path[MAXPATHLEN];
200 if (realpath(DLInfo.dli_fname, link_path))
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000201 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000202#else
203#error GetMainExecutable is not implemented on this host yet.
204#endif
205 return "";
206}
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000207
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000208TimePoint<> basic_file_status::getLastAccessedTime() const {
Pavel Labath757ca882016-10-24 10:59:17 +0000209 return toTimePoint(fs_st_atime);
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000210}
211
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000212TimePoint<> basic_file_status::getLastModificationTime() const {
Pavel Labath757ca882016-10-24 10:59:17 +0000213 return toTimePoint(fs_st_mtime);
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000214}
215
Rafael Espindolad1230992013-07-29 21:55:38 +0000216UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000217 return UniqueID(fs_st_dev, fs_st_ino);
218}
219
Zachary Turner5821a3b2017-03-20 23:55:20 +0000220uint32_t file_status::getLinkCount() const {
221 return fs_st_nlinks;
222}
223
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000224ErrorOr<space_info> disk_space(const Twine &Path) {
225 struct STATVFS Vfs;
226 if (::STATVFS(Path.str().c_str(), &Vfs))
227 return std::error_code(errno, std::generic_category());
228 auto FrSize = STATVFS_F_FRSIZE(Vfs);
229 space_info SpaceInfo;
230 SpaceInfo.capacity = static_cast<uint64_t>(Vfs.f_blocks) * FrSize;
231 SpaceInfo.free = static_cast<uint64_t>(Vfs.f_bfree) * FrSize;
232 SpaceInfo.available = static_cast<uint64_t>(Vfs.f_bavail) * FrSize;
233 return SpaceInfo;
234}
235
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000236std::error_code current_path(SmallVectorImpl<char> &result) {
Rafael Espindola6ee16382013-08-10 00:50:57 +0000237 result.clear();
238
239 const char *pwd = ::getenv("PWD");
240 llvm::sys::fs::file_status PWDStatus, DotStatus;
241 if (pwd && llvm::sys::path::is_absolute(pwd) &&
242 !llvm::sys::fs::status(pwd, PWDStatus) &&
243 !llvm::sys::fs::status(".", DotStatus) &&
244 PWDStatus.getUniqueID() == DotStatus.getUniqueID()) {
245 result.append(pwd, pwd + strlen(pwd));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000246 return std::error_code();
Rafael Espindola6ee16382013-08-10 00:50:57 +0000247 }
248
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000249#ifdef MAXPATHLEN
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000250 result.reserve(MAXPATHLEN);
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000251#else
252// For GNU Hurd
253 result.reserve(1024);
254#endif
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000255
Michael J. Spencer20daa282010-12-07 01:22:31 +0000256 while (true) {
Craig Toppere73658d2014-04-28 04:05:08 +0000257 if (::getcwd(result.data(), result.capacity()) == nullptr) {
Michael J. Spencer20daa282010-12-07 01:22:31 +0000258 // See if there was a real error.
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000259 if (errno != ENOMEM)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000260 return std::error_code(errno, std::generic_category());
Michael J. Spencer20daa282010-12-07 01:22:31 +0000261 // Otherwise there just wasn't enough space.
262 result.reserve(result.capacity() * 2);
263 } else
264 break;
265 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000266
267 result.set_size(strlen(result.data()));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000268 return std::error_code();
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000269}
270
Pavel Labath2f096092017-01-24 10:32:03 +0000271std::error_code set_current_path(const Twine &path) {
272 SmallString<128> path_storage;
273 StringRef p = path.toNullTerminatedStringRef(path_storage);
274
275 if (::chdir(p.begin()) == -1)
276 return std::error_code(errno, std::generic_category());
277
278 return std::error_code();
279}
280
Frederic Riss6b9396c2015-08-06 21:04:55 +0000281std::error_code create_directory(const Twine &path, bool IgnoreExisting,
282 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000283 SmallString<128> path_storage;
284 StringRef p = path.toNullTerminatedStringRef(path_storage);
285
Frederic Riss6b9396c2015-08-06 21:04:55 +0000286 if (::mkdir(p.begin(), Perms) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000287 if (errno != EEXIST || !IgnoreExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000288 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000289 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000290
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000291 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000292}
293
Rafael Espindola83f858e2014-03-11 18:40:24 +0000294// Note that we are using symbolic link because hard links are not supported by
295// all filesystems (SMB doesn't).
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000296std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000297 // Get arguments.
298 SmallString<128> from_storage;
299 SmallString<128> to_storage;
300 StringRef f = from.toNullTerminatedStringRef(from_storage);
301 StringRef t = to.toNullTerminatedStringRef(to_storage);
302
Rafael Espindola83f858e2014-03-11 18:40:24 +0000303 if (::symlink(t.begin(), f.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000304 return std::error_code(errno, std::generic_category());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000305
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000306 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000307}
308
Mehdi Amini8e13bc42016-12-14 04:56:42 +0000309std::error_code create_hard_link(const Twine &to, const Twine &from) {
310 // Get arguments.
311 SmallString<128> from_storage;
312 SmallString<128> to_storage;
313 StringRef f = from.toNullTerminatedStringRef(from_storage);
314 StringRef t = to.toNullTerminatedStringRef(to_storage);
315
316 if (::link(t.begin(), f.begin()) == -1)
317 return std::error_code(errno, std::generic_category());
318
319 return std::error_code();
320}
321
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000322std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000323 SmallString<128> path_storage;
324 StringRef p = path.toNullTerminatedStringRef(path_storage);
325
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000326 struct stat buf;
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000327 if (lstat(p.begin(), &buf) != 0) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000328 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000329 return std::error_code(errno, std::generic_category());
330 return std::error_code();
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000331 }
332
333 // Note: this check catches strange situations. In all cases, LLVM should
334 // only be involved in the creation and deletion of regular files. This
335 // check ensures that what we're trying to erase is a regular file. It
336 // effectively prevents LLVM from erasing things like /dev/null, any block
337 // special file, or other things that aren't "regular" files.
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000338 if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000339 return make_error_code(errc::operation_not_permitted);
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000340
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000341 if (::remove(p.begin()) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000342 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000343 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000344 }
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000345
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000346 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000347}
348
Zachary Turner392ed9d2017-02-21 20:55:47 +0000349static bool is_local_impl(struct STATVFS &Vfs) {
350#if defined(__linux__)
Michal Gorny5ddd2a52017-02-22 18:09:15 +0000351#ifndef NFS_SUPER_MAGIC
352#define NFS_SUPER_MAGIC 0x6969
353#endif
354#ifndef SMB_SUPER_MAGIC
355#define SMB_SUPER_MAGIC 0x517B
356#endif
Zachary Turner6bc2dac2017-02-21 21:13:10 +0000357#ifndef CIFS_MAGIC_NUMBER
358#define CIFS_MAGIC_NUMBER 0xFF534D42
359#endif
Zachary Turner392ed9d2017-02-21 20:55:47 +0000360 switch ((uint32_t)Vfs.f_type) {
361 case NFS_SUPER_MAGIC:
362 case SMB_SUPER_MAGIC:
363 case CIFS_MAGIC_NUMBER:
364 return false;
365 default:
366 return true;
367 }
Nuno Lopes7a1bbd42017-03-09 13:43:31 +0000368#elif defined(__CYGWIN__)
369 // Cygwin doesn't expose this information; would need to use Win32 API.
370 return false;
Petr Hosek87f13432018-05-03 01:38:49 +0000371#elif defined(__Fuchsia__)
372 // Fuchsia doesn't yet support remote filesystem mounts.
373 return true;
Tim Northover43d64b02018-07-18 13:42:18 +0000374#elif defined(__HAIKU__)
375 // Haiku doesn't expose this information.
376 return false;
Kamil Rytarowski07c81b12017-06-01 12:57:00 +0000377#elif defined(__sun)
378 // statvfs::f_basetype contains a null-terminated FSType name of the mounted target
379 StringRef fstype(Vfs.f_basetype);
380 // NFS is the only non-local fstype??
381 return !fstype.equals("nfs");
Zachary Turner392ed9d2017-02-21 20:55:47 +0000382#else
383 return !!(STATVFS_F_FLAG(Vfs) & MNT_LOCAL);
384#endif
385}
386
387std::error_code is_local(const Twine &Path, bool &Result) {
388 struct STATVFS Vfs;
389 if (::STATVFS(Path.str().c_str(), &Vfs))
390 return std::error_code(errno, std::generic_category());
391
392 Result = is_local_impl(Vfs);
393 return std::error_code();
394}
395
396std::error_code is_local(int FD, bool &Result) {
397 struct STATVFS Vfs;
398 if (::FSTATVFS(FD, &Vfs))
399 return std::error_code(errno, std::generic_category());
400
401 Result = is_local_impl(Vfs);
402 return std::error_code();
403}
404
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000405std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000406 // Get arguments.
407 SmallString<128> from_storage;
408 SmallString<128> to_storage;
409 StringRef f = from.toNullTerminatedStringRef(from_storage);
410 StringRef t = to.toNullTerminatedStringRef(to_storage);
411
Rafael Espindolab6fea4c2013-07-17 03:33:41 +0000412 if (::rename(f.begin(), t.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000413 return std::error_code(errno, std::generic_category());
Michael J. Spencer409f5562010-12-03 17:53:55 +0000414
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000415 return std::error_code();
Michael J. Spencer409f5562010-12-03 17:53:55 +0000416}
417
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000418std::error_code resize_file(int FD, uint64_t Size) {
Rafael Espindola3816c532016-07-19 20:19:56 +0000419#if defined(HAVE_POSIX_FALLOCATE)
420 // If we have posix_fallocate use it. Unlike ftruncate it always allocates
421 // space, so we get an error if the disk is full.
Joerg Sonnenbergerecfb8762017-05-05 17:55:58 +0000422 if (int Err = ::posix_fallocate(FD, 0, Size)) {
Davide Italiano1f465aa2017-11-07 00:47:04 +0000423 if (Err != EINVAL && Err != EOPNOTSUPP)
Joerg Sonnenbergerecfb8762017-05-05 17:55:58 +0000424 return std::error_code(Err, std::generic_category());
425 }
426#endif
Rafael Espindola3816c532016-07-19 20:19:56 +0000427 // Use ftruncate as a fallback. It may or may not allocate space. At least on
428 // OS X with HFS+ it does.
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000429 if (::ftruncate(FD, Size) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000430 return std::error_code(errno, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000431
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000432 return std::error_code();
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000433}
434
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000435static int convertAccessMode(AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000436 switch (Mode) {
437 case AccessMode::Exist:
438 return F_OK;
439 case AccessMode::Write:
440 return W_OK;
441 case AccessMode::Execute:
442 return R_OK | X_OK; // scripts also need R_OK.
443 }
444 llvm_unreachable("invalid enum");
445}
Michael J. Spencer45710402010-12-03 01:21:28 +0000446
Rafael Espindola281f23a2014-09-11 20:30:02 +0000447std::error_code access(const Twine &Path, AccessMode Mode) {
448 SmallString<128> PathStorage;
449 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
450
451 if (::access(P.begin(), convertAccessMode(Mode)) == -1)
452 return std::error_code(errno, std::generic_category());
453
454 if (Mode == AccessMode::Execute) {
455 // Don't say that directories are executable.
456 struct stat buf;
457 if (0 != stat(P.begin(), &buf))
458 return errc::permission_denied;
459 if (!S_ISREG(buf.st_mode))
460 return errc::permission_denied;
461 }
Michael J. Spencer45710402010-12-03 01:21:28 +0000462
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000463 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000464}
465
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000466bool can_execute(const Twine &Path) {
467 return !access(Path, AccessMode::Execute);
468}
469
Michael J. Spencer203d7802011-12-12 06:04:28 +0000470bool equivalent(file_status A, file_status B) {
471 assert(status_known(A) && status_known(B));
Sylvestre Ledru3099f4bd2012-04-23 16:37:23 +0000472 return A.fs_st_dev == B.fs_st_dev &&
473 A.fs_st_ino == B.fs_st_ino;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000474}
475
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000476std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000477 file_status fsA, fsB;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000478 if (std::error_code ec = status(A, fsA))
479 return ec;
480 if (std::error_code ec = status(B, fsB))
481 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000482 result = equivalent(fsA, fsB);
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000483 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000484}
485
Zachary Turnere48ace62017-03-10 17:39:21 +0000486static void expandTildeExpr(SmallVectorImpl<char> &Path) {
487 StringRef PathStr(Path.begin(), Path.size());
488 if (PathStr.empty() || !PathStr.startswith("~"))
489 return;
490
491 PathStr = PathStr.drop_front();
Zachary Turner18753342017-03-16 22:34:18 +0000492 StringRef Expr =
493 PathStr.take_until([](char c) { return path::is_separator(c); });
Zachary Turnere48ace62017-03-10 17:39:21 +0000494 StringRef Remainder = PathStr.substr(Expr.size() + 1);
495 SmallString<128> Storage;
496 if (Expr.empty()) {
497 // This is just ~/..., resolve it to the current user's home dir.
498 if (!path::home_directory(Storage)) {
499 // For some reason we couldn't get the home directory. Just exit.
500 return;
501 }
502
503 // Overwrite the first character and insert the rest.
504 Path[0] = Storage[0];
505 Path.insert(Path.begin() + 1, Storage.begin() + 1, Storage.end());
506 return;
507 }
508
509 // This is a string of the form ~username/, look up this user's entry in the
510 // password database.
511 struct passwd *Entry = nullptr;
512 std::string User = Expr.str();
513 Entry = ::getpwnam(User.c_str());
514
515 if (!Entry) {
516 // Unable to look up the entry, just return back the original path.
517 return;
518 }
519
520 Storage = Remainder;
521 Path.clear();
522 Path.append(Entry->pw_dir, Entry->pw_dir + strlen(Entry->pw_dir));
523 llvm::sys::path::append(Path, Storage);
524}
525
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000526static std::error_code fillStatus(int StatRet, const struct stat &Status,
Fangrui Song69d64182018-06-10 04:53:14 +0000527 file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000528 if (StatRet != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000529 std::error_code ec(errno, std::generic_category());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000530 if (ec == errc::no_such_file_or_directory)
Rafael Espindola77021c92013-07-16 03:20:13 +0000531 Result = file_status(file_type::file_not_found);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000532 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000533 Result = file_status(file_type::status_error);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000534 return ec;
535 }
536
Rafael Espindola9da91a02013-07-16 02:55:33 +0000537 file_type Type = file_type::type_unknown;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000538
Rafael Espindola77021c92013-07-16 03:20:13 +0000539 if (S_ISDIR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000540 Type = file_type::directory_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000541 else if (S_ISREG(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000542 Type = file_type::regular_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000543 else if (S_ISBLK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000544 Type = file_type::block_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000545 else if (S_ISCHR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000546 Type = file_type::character_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000547 else if (S_ISFIFO(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000548 Type = file_type::fifo_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000549 else if (S_ISSOCK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000550 Type = file_type::socket_file;
Zachary Turner3b9fb882017-03-07 17:48:47 +0000551 else if (S_ISLNK(Status.st_mode))
552 Type = file_type::symlink_file;
Rafael Espindola9da91a02013-07-16 02:55:33 +0000553
James Henderson566fdf42017-03-16 11:22:09 +0000554 perms Perms = static_cast<perms>(Status.st_mode) & all_perms;
Zachary Turner5821a3b2017-03-20 23:55:20 +0000555 Result = file_status(Type, Perms, Status.st_dev, Status.st_nlink,
556 Status.st_ino, Status.st_atime, Status.st_mtime,
557 Status.st_uid, Status.st_gid, Status.st_size);
Michael J. Spencer203d7802011-12-12 06:04:28 +0000558
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000559 return std::error_code();
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000560}
561
Zachary Turner82dd5422017-03-07 16:10:10 +0000562std::error_code status(const Twine &Path, file_status &Result, bool Follow) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000563 SmallString<128> PathStorage;
564 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
565
566 struct stat Status;
Zachary Turner82dd5422017-03-07 16:10:10 +0000567 int StatRet = (Follow ? ::stat : ::lstat)(P.begin(), &Status);
Rafael Espindola77021c92013-07-16 03:20:13 +0000568 return fillStatus(StatRet, Status, Result);
569}
570
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000571std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000572 struct stat Status;
573 int StatRet = ::fstat(FD, &Status);
Aaron Ballman345012d2017-03-13 12:24:51 +0000574 return fillStatus(StatRet, Status, Result);
575}
576
James Henderson566fdf42017-03-16 11:22:09 +0000577std::error_code setPermissions(const Twine &Path, perms Permissions) {
578 SmallString<128> PathStorage;
579 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
580
581 if (::chmod(P.begin(), Permissions))
582 return std::error_code(errno, std::generic_category());
583 return std::error_code();
584}
585
Aaron Ballman345012d2017-03-13 12:24:51 +0000586std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
587#if defined(HAVE_FUTIMENS)
588 timespec Times[2];
Pavel Labath757ca882016-10-24 10:59:17 +0000589 Times[0] = Times[1] = sys::toTimeSpec(Time);
Eric Christophera24dc7f2013-07-04 01:10:38 +0000590 if (::futimens(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000591 return std::error_code(errno, std::generic_category());
592 return std::error_code();
Eric Christophera24dc7f2013-07-04 01:10:38 +0000593#elif defined(HAVE_FUTIMES)
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000594 timeval Times[2];
Pavel Labath676a8752016-10-24 14:19:28 +0000595 Times[0] = Times[1] = sys::toTimeVal(
596 std::chrono::time_point_cast<std::chrono::microseconds>(Time));
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000597 if (::futimes(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000598 return std::error_code(errno, std::generic_category());
599 return std::error_code();
Alp Tokerb30f01e2013-12-11 15:42:33 +0000600#else
601#warning Missing futimes() and futimens()
Alp Tokerb792a012014-06-30 18:57:04 +0000602 return make_error_code(errc::function_not_supported);
Alp Tokerb30f01e2013-12-11 15:42:33 +0000603#endif
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000604}
605
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000606std::error_code mapped_file_region::init(int FD, uint64_t Offset,
607 mapmode Mode) {
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000608 assert(Size != 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000609
610 int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE;
611 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
Zachary Turner842972b2017-02-22 21:24:06 +0000612#if defined(__APPLE__)
613 //----------------------------------------------------------------------
614 // Newer versions of MacOSX have a flag that will allow us to read from
615 // binaries whose code signature is invalid without crashing by using
616 // the MAP_RESILIENT_CODESIGN flag. Also if a file from removable media
617 // is mapped we can avoid crashing and return zeroes to any pages we try
618 // to read if the media becomes unavailable by using the
619 // MAP_RESILIENT_MEDIA flag. These flags are only usable when mapping
620 // with PROT_READ, so take care not to specify them otherwise.
621 //----------------------------------------------------------------------
622 if (Mode == readonly) {
623#if defined(MAP_RESILIENT_CODESIGN)
624 flags |= MAP_RESILIENT_CODESIGN;
625#endif
626#if defined(MAP_RESILIENT_MEDIA)
627 flags |= MAP_RESILIENT_MEDIA;
628#endif
629 }
630#endif // #if defined (__APPLE__)
Zachary Turner392ed9d2017-02-21 20:55:47 +0000631
Craig Toppere73658d2014-04-28 04:05:08 +0000632 Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000633 if (Mapping == MAP_FAILED)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000634 return std::error_code(errno, std::generic_category());
635 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000636}
637
Roman Lebedev7c983672017-09-27 15:59:16 +0000638mapped_file_region::mapped_file_region(int fd, mapmode mode, size_t length,
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000639 uint64_t offset, std::error_code &ec)
Peter Collingbourne881ba102018-06-13 18:03:14 +0000640 : Size(length), Mapping(), Mode(mode) {
Zachary Turner2061ad22018-02-15 18:46:59 +0000641 (void)Mode;
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000642 ec = init(fd, offset, mode);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000643 if (ec)
Craig Toppere73658d2014-04-28 04:05:08 +0000644 Mapping = nullptr;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000645}
646
647mapped_file_region::~mapped_file_region() {
648 if (Mapping)
649 ::munmap(Mapping, Size);
650}
651
Roman Lebedev21b013e2017-09-27 16:08:33 +0000652size_t mapped_file_region::size() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000653 assert(Mapping && "Mapping failed but used anyway!");
654 return Size;
655}
656
657char *mapped_file_region::data() const {
658 assert(Mapping && "Mapping failed but used anyway!");
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000659 return reinterpret_cast<char*>(Mapping);
660}
661
662const char *mapped_file_region::const_data() const {
663 assert(Mapping && "Mapping failed but used anyway!");
664 return reinterpret_cast<const char*>(Mapping);
665}
666
667int mapped_file_region::alignment() {
Rafael Espindolac0610bf2014-12-04 16:59:36 +0000668 return Process::getPageSize();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000669}
670
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000671std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Zachary Turner260bda32017-03-08 22:49:32 +0000672 StringRef path,
673 bool follow_symlinks) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000674 SmallString<128> path_null(path);
675 DIR *directory = ::opendir(path_null.c_str());
Craig Toppere73658d2014-04-28 04:05:08 +0000676 if (!directory)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000677 return std::error_code(errno, std::generic_category());
Michael J. Spencer52714862011-01-05 16:38:57 +0000678
679 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
680 // Add something for replace_filename to replace.
681 path::append(path_null, ".");
Zachary Turner260bda32017-03-08 22:49:32 +0000682 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
Michael J. Spencer52714862011-01-05 16:38:57 +0000683 return directory_iterator_increment(it);
684}
685
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000686std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000687 if (it.IterationHandle)
688 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
689 it.IterationHandle = 0;
690 it.CurrentEntry = directory_entry();
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000691 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000692}
693
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000694std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000695 errno = 0;
696 dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle));
Craig Toppere73658d2014-04-28 04:05:08 +0000697 if (cur_dir == nullptr && errno != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000698 return std::error_code(errno, std::generic_category());
Craig Toppere73658d2014-04-28 04:05:08 +0000699 } else if (cur_dir != nullptr) {
Nico Weberf3db8e32018-04-02 17:17:29 +0000700 StringRef name(cur_dir->d_name);
Michael J. Spencer52714862011-01-05 16:38:57 +0000701 if ((name.size() == 1 && name[0] == '.') ||
702 (name.size() == 2 && name[0] == '.' && name[1] == '.'))
703 return directory_iterator_increment(it);
704 it.CurrentEntry.replace_filename(name);
705 } else
706 return directory_iterator_destruct(it);
707
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000708 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000709}
710
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000711ErrorOr<basic_file_status> directory_entry::status() const {
712 file_status s;
713 if (auto EC = fs::status(Path, s, FollowSymlinks))
714 return EC;
715 return s;
716}
717
Taewook Ohd9153272016-06-13 15:54:56 +0000718#if !defined(F_GETPATH)
719static bool hasProcSelfFD() {
720 // If we have a /proc filesystem mounted, we can quickly establish the
721 // real name of the file with readlink
722 static const bool Result = (::access("/proc/self/fd", R_OK) == 0);
723 return Result;
724}
725#endif
726
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000727static int nativeOpenFlags(CreationDisposition Disp, OpenFlags Flags,
728 FileAccess Access) {
729 int Result = 0;
730 if (Access == FA_Read)
731 Result |= O_RDONLY;
732 else if (Access == FA_Write)
733 Result |= O_WRONLY;
734 else if (Access == (FA_Read | FA_Write))
735 Result |= O_RDWR;
736
737 // This is for compatibility with old code that assumed F_Append implied
738 // would open an existing file. See Windows/Path.inc for a longer comment.
739 if (Flags & F_Append)
740 Disp = CD_OpenAlways;
741
742 if (Disp == CD_CreateNew) {
743 Result |= O_CREAT; // Create if it doesn't exist.
744 Result |= O_EXCL; // Fail if it does.
745 } else if (Disp == CD_CreateAlways) {
746 Result |= O_CREAT; // Create if it doesn't exist.
747 Result |= O_TRUNC; // Truncate if it does.
748 } else if (Disp == CD_OpenAlways) {
749 Result |= O_CREAT; // Create if it doesn't exist.
750 } else if (Disp == CD_OpenExisting) {
751 // Nothing special, just don't add O_CREAT and we get these semantics.
752 }
753
754 if (Flags & F_Append)
755 Result |= O_APPEND;
756
757#ifdef O_CLOEXEC
Zachary Turner6edfecb2018-06-08 15:15:56 +0000758 if (!(Flags & OF_ChildInherit))
759 Result |= O_CLOEXEC;
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000760#endif
761
762 return Result;
763}
764
Zachary Turner9d2cfa62018-06-07 23:25:13 +0000765std::error_code openFile(const Twine &Name, int &ResultFD,
766 CreationDisposition Disp, FileAccess Access,
767 OpenFlags Flags, unsigned Mode) {
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000768 int OpenFlags = nativeOpenFlags(Disp, Flags, Access);
769
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000770 SmallString<128> Storage;
771 StringRef P = Name.toNullTerminatedStringRef(Storage);
Pavel Labathb2c73c42018-06-11 13:30:47 +0000772 if ((ResultFD = sys::RetryAfterSignal(-1, ::open, P.begin(), OpenFlags, Mode)) <
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000773 0)
Pavel Labathfe09f502017-06-29 13:15:31 +0000774 return std::error_code(errno, std::generic_category());
Pavel Labathf726dfa2017-01-24 10:57:01 +0000775#ifndef O_CLOEXEC
Zachary Turner6edfecb2018-06-08 15:15:56 +0000776 if (!(Flags & OF_ChildInherit)) {
777 int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC);
778 (void)r;
779 assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed");
780 }
Pavel Labathf726dfa2017-01-24 10:57:01 +0000781#endif
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000782 return std::error_code();
783}
784
Zachary Turner9d2cfa62018-06-07 23:25:13 +0000785Expected<int> openNativeFile(const Twine &Name, CreationDisposition Disp,
786 FileAccess Access, OpenFlags Flags,
787 unsigned Mode) {
788
789 int FD;
790 std::error_code EC = openFile(Name, FD, Disp, Access, Flags, Mode);
791 if (EC)
792 return errorCodeToError(EC);
793 return FD;
794}
795
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000796std::error_code openFileForRead(const Twine &Name, int &ResultFD,
797 OpenFlags Flags,
798 SmallVectorImpl<char> *RealPath) {
799 std::error_code EC =
800 openFile(Name, ResultFD, CD_OpenExisting, FA_Read, Flags, 0666);
801 if (EC)
802 return EC;
803
Taewook Ohd9153272016-06-13 15:54:56 +0000804 // Attempt to get the real name of the file, if the user asked
805 if(!RealPath)
806 return std::error_code();
807 RealPath->clear();
808#if defined(F_GETPATH)
809 // When F_GETPATH is availble, it is the quickest way to get
810 // the real path name.
811 char Buffer[MAXPATHLEN];
812 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
813 RealPath->append(Buffer, Buffer + strlen(Buffer));
814#else
815 char Buffer[PATH_MAX];
816 if (hasProcSelfFD()) {
817 char ProcPath[64];
818 snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", ResultFD);
819 ssize_t CharCount = ::readlink(ProcPath, Buffer, sizeof(Buffer));
820 if (CharCount > 0)
821 RealPath->append(Buffer, Buffer + CharCount);
822 } else {
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000823 SmallString<128> Storage;
824 StringRef P = Name.toNullTerminatedStringRef(Storage);
825
Taewook Ohd9153272016-06-13 15:54:56 +0000826 // Use ::realpath to get the real path name
827 if (::realpath(P.begin(), Buffer) != nullptr)
828 RealPath->append(Buffer, Buffer + strlen(Buffer));
829 }
830#endif
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000831 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000832}
Nick Kledzik18497e92012-06-20 00:28:54 +0000833
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000834Expected<file_t> openNativeFileForRead(const Twine &Name, OpenFlags Flags,
Zachary Turner63db25b2018-06-04 19:38:11 +0000835 SmallVectorImpl<char> *RealPath) {
836 file_t ResultFD;
Zachary Turner1f67a3c2018-06-07 19:58:58 +0000837 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
Zachary Turner63db25b2018-06-04 19:38:11 +0000838 if (EC)
839 return errorCodeToError(EC);
840 return ResultFD;
841}
842
Zachary Turner63db25b2018-06-04 19:38:11 +0000843void closeFile(file_t &F) {
844 ::close(F);
845 F = kInvalidFile;
846}
847
Zachary Turner260bda32017-03-08 22:49:32 +0000848template <typename T>
849static std::error_code remove_directories_impl(const T &Entry,
850 bool IgnoreErrors) {
851 std::error_code EC;
852 directory_iterator Begin(Entry, EC, false);
853 directory_iterator End;
854 while (Begin != End) {
855 auto &Item = *Begin;
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000856 ErrorOr<basic_file_status> st = Item.status();
857 if (!st && !IgnoreErrors)
858 return st.getError();
Zachary Turner260bda32017-03-08 22:49:32 +0000859
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000860 if (is_directory(*st)) {
Zachary Turner260bda32017-03-08 22:49:32 +0000861 EC = remove_directories_impl(Item, IgnoreErrors);
862 if (EC && !IgnoreErrors)
863 return EC;
864 }
865
866 EC = fs::remove(Item.path(), true);
867 if (EC && !IgnoreErrors)
868 return EC;
869
870 Begin.increment(EC);
871 if (EC && !IgnoreErrors)
872 return EC;
873 }
874 return std::error_code();
875}
876
877std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
878 auto EC = remove_directories_impl(path, IgnoreErrors);
879 if (EC && !IgnoreErrors)
880 return EC;
881 EC = fs::remove(path, true);
882 if (EC && !IgnoreErrors)
883 return EC;
884 return std::error_code();
885}
886
Zachary Turnere48ace62017-03-10 17:39:21 +0000887std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
888 bool expand_tilde) {
889 dest.clear();
890 if (path.isTriviallyEmpty())
891 return std::error_code();
892
893 if (expand_tilde) {
894 SmallString<128> Storage;
895 path.toVector(Storage);
896 expandTildeExpr(Storage);
897 return real_path(Storage, dest, false);
898 }
899
Davide Italiano4762c062018-01-09 17:27:45 +0000900 SmallString<128> Storage;
901 StringRef P = path.toNullTerminatedStringRef(Storage);
902 char Buffer[PATH_MAX];
903 if (::realpath(P.begin(), Buffer) == nullptr)
904 return std::error_code(errno, std::generic_category());
905 dest.append(Buffer, Buffer + strlen(Buffer));
Zachary Turnere48ace62017-03-10 17:39:21 +0000906 return std::error_code();
907}
908
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000909} // end namespace fs
Peter Collingbournef7d41012014-01-31 23:46:06 +0000910
911namespace path {
912
913bool home_directory(SmallVectorImpl<char> &result) {
Zachary Turnera3cf70b2017-03-22 15:24:59 +0000914 char *RequestedDir = getenv("HOME");
915 if (!RequestedDir) {
916 struct passwd *pw = getpwuid(getuid());
917 if (pw && pw->pw_dir)
918 RequestedDir = pw->pw_dir;
Peter Collingbournef7d41012014-01-31 23:46:06 +0000919 }
Zachary Turnera3cf70b2017-03-22 15:24:59 +0000920 if (!RequestedDir)
921 return false;
922
923 result.clear();
924 result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
925 return true;
Peter Collingbournef7d41012014-01-31 23:46:06 +0000926}
927
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000928static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000929 #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR)
930 // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
931 // macros defined in <unistd.h> on darwin >= 9
932 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR
933 : _CS_DARWIN_USER_CACHE_DIR;
934 size_t ConfLen = confstr(ConfName, nullptr, 0);
935 if (ConfLen > 0) {
936 do {
937 Result.resize(ConfLen);
938 ConfLen = confstr(ConfName, Result.data(), Result.size());
939 } while (ConfLen > 0 && ConfLen != Result.size());
940
941 if (ConfLen > 0) {
942 assert(Result.back() == 0);
943 Result.pop_back();
944 return true;
945 }
946
947 Result.clear();
948 }
949 #endif
950 return false;
951}
952
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000953static bool getUserCacheDir(SmallVectorImpl<char> &Result) {
Sean Silvaa915a162016-03-24 22:27:27 +0000954 // First try using XDG_CACHE_HOME env variable,
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000955 // as specified in XDG Base Directory Specification at
956 // http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
Sean Silvaa915a162016-03-24 22:27:27 +0000957 if (const char *XdgCacheDir = std::getenv("XDG_CACHE_HOME")) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000958 Result.clear();
Sean Silvaa915a162016-03-24 22:27:27 +0000959 Result.append(XdgCacheDir, XdgCacheDir + strlen(XdgCacheDir));
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000960 return true;
961 }
962
963 // Try Darwin configuration query
964 if (getDarwinConfDir(false, Result))
965 return true;
966
967 // Use "$HOME/.cache" if $HOME is available
968 if (home_directory(Result)) {
969 append(Result, ".cache");
970 return true;
971 }
972
973 return false;
974}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000975
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000976static const char *getEnvTempDir() {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000977 // Check whether the temporary directory is specified by an environment
978 // variable.
979 const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"};
980 for (const char *Env : EnvironmentVariables) {
981 if (const char *Dir = std::getenv(Env))
982 return Dir;
983 }
984
985 return nullptr;
986}
987
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000988static const char *getDefaultTempDir(bool ErasedOnReboot) {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000989#ifdef P_tmpdir
Benjamin Kramer870d9512014-08-27 11:47:52 +0000990 if ((bool)P_tmpdir)
Rafael Espindola016a6d52014-08-26 14:47:52 +0000991 return P_tmpdir;
992#endif
993
994 if (ErasedOnReboot)
995 return "/tmp";
996 return "/var/tmp";
997}
998
999void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
1000 Result.clear();
1001
1002 if (ErasedOnReboot) {
1003 // There is no env variable for the cache directory.
1004 if (const char *RequestedDir = getEnvTempDir()) {
1005 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
1006 return;
1007 }
1008 }
1009
Pawel Bylica0e97e5c2015-11-02 09:49:17 +00001010 if (getDarwinConfDir(ErasedOnReboot, Result))
1011 return;
Rafael Espindola016a6d52014-08-26 14:47:52 +00001012
1013 const char *RequestedDir = getDefaultTempDir(ErasedOnReboot);
1014 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
1015}
1016
Peter Collingbournef7d41012014-01-31 23:46:06 +00001017} // end namespace path
1018
Michael J. Spencerebad2f92010-11-29 22:28:51 +00001019} // end namespace sys
1020} // end namespace llvm