blob: 8d1dfc76aea4bfd6568de1405bff55a7483fb13d [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"
Eugene Zelenko1760dc22016-04-05 20:19:49 +000020#include <cassert>
21#include <climits>
22#include <cstdio>
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000023#if HAVE_SYS_STAT_H
24#include <sys/stat.h>
25#endif
26#if HAVE_FCNTL_H
27#include <fcntl.h>
28#endif
Nick Kledzik18497e92012-06-20 00:28:54 +000029#ifdef HAVE_SYS_MMAN_H
30#include <sys/mman.h>
31#endif
Michael J. Spencer52714862011-01-05 16:38:57 +000032#if HAVE_DIRENT_H
33# include <dirent.h>
34# define NAMLEN(dirent) strlen((dirent)->d_name)
35#else
36# define dirent direct
37# define NAMLEN(dirent) (dirent)->d_namlen
38# if HAVE_SYS_NDIR_H
39# include <sys/ndir.h>
40# endif
41# if HAVE_SYS_DIR_H
42# include <sys/dir.h>
43# endif
44# if HAVE_NDIR_H
45# include <ndir.h>
46# endif
47#endif
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000048
Rafael Espindola4601c462013-06-26 05:25:44 +000049#ifdef __APPLE__
50#include <mach-o/dyld.h>
51#endif
52
Joerg Sonnenbergerc0697302012-08-10 10:56:09 +000053// Both stdio.h and cstdio are included via different pathes and
54// stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros
55// either.
56#undef ferror
57#undef feof
58
Sylvestre Ledru14ada942012-04-11 15:35:36 +000059// For GNU Hurd
60#if defined(__GNU__) && !defined(PATH_MAX)
61# define PATH_MAX 4096
62#endif
63
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000064#include <sys/types.h>
65#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__ANDROID__)
66#include <sys/statvfs.h>
67#define STATVFS statvfs
68#define STATVFS_F_FRSIZE(vfs) vfs.f_frsize
69#else
70#ifdef __OpenBSD__
71#include <sys/param.h>
72#elif defined(__ANDROID__)
73#include <sys/vfs.h>
74#else
75#include <sys/mount.h>
76#endif
77#define STATVFS statfs
78#define STATVFS_F_FRSIZE(vfs) static_cast<uint64_t>(vfs.f_bsize)
79#endif
80
81
Michael J. Spencer45710402010-12-03 01:21:28 +000082using namespace llvm;
83
Michael J. Spencerebad2f92010-11-29 22:28:51 +000084namespace llvm {
85namespace sys {
Michael J. Spencer20daa282010-12-07 01:22:31 +000086namespace fs {
Rafael Espindolae03dfd92013-06-26 05:01:35 +000087#if defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
88 defined(__OpenBSD__) || defined(__minix) || defined(__FreeBSD_kernel__) || \
Rafael Espindolaaca97392013-10-31 14:35:00 +000089 defined(__linux__) || defined(__CYGWIN__) || defined(__DragonFly__)
Eugene Zelenko1760dc22016-04-05 20:19:49 +000090
91namespace {
92
93int
Sylvestre Ledru21e674722013-12-09 16:27:00 +000094test_dir(char ret[PATH_MAX], const char *dir, const char *bin)
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +000095{
Rafael Espindolae03dfd92013-06-26 05:01:35 +000096 struct stat sb;
Sylvestre Ledru21e674722013-12-09 16:27:00 +000097 char fullpath[PATH_MAX];
Rafael Espindolae03dfd92013-06-26 05:01:35 +000098
Sylvestre Ledru21e674722013-12-09 16:27:00 +000099 snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000100 if (!realpath(fullpath, ret))
101 return 1;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000102 if (stat(fullpath, &sb) != 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000103 return 1;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000104
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000105 return 0;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000106}
107
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000108char *
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000109getprogpath(char ret[PATH_MAX], const char *bin)
110{
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000111 char *pv, *s, *t;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000112
113 /* First approach: absolute path. */
114 if (bin[0] == '/') {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000115 if (test_dir(ret, "/", bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000116 return ret;
117 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000118 }
119
120 /* Second approach: relative path. */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000121 if (strchr(bin, '/')) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000122 char cwd[PATH_MAX];
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000123 if (!getcwd(cwd, PATH_MAX))
124 return nullptr;
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000125 if (test_dir(ret, cwd, bin) == 0)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000126 return ret;
127 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000128 }
129
130 /* Third approach: $PATH */
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000131 if ((pv = getenv("PATH")) == nullptr)
132 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000133 s = pv = strdup(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000134 if (!pv)
135 return nullptr;
136 while ((t = strsep(&s, ":")) != nullptr) {
Sylvestre Ledru21e674722013-12-09 16:27:00 +0000137 if (test_dir(ret, t, bin) == 0) {
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000138 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000139 return ret;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000140 }
141 }
142 free(pv);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000143 return nullptr;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000144}
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000145
146} // end anonymous namespace
147
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000148#endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__
149
150/// GetMainExecutable - Return the path to the main executable, given the
151/// value of argv[0] from program startup.
152std::string getMainExecutable(const char *argv0, void *MainAddr) {
153#if defined(__APPLE__)
154 // On OS X the executable path is saved to the stack by dyld. Reading it
155 // from there is much faster than calling dladdr, especially for large
156 // binaries with symbols.
157 char exe_path[MAXPATHLEN];
158 uint32_t size = sizeof(exe_path);
159 if (_NSGetExecutablePath(exe_path, &size) == 0) {
160 char link_path[MAXPATHLEN];
161 if (realpath(exe_path, link_path))
Rafael Espindola4601c462013-06-26 05:25:44 +0000162 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000163 }
164#elif defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
Rafael Espindolaaca97392013-10-31 14:35:00 +0000165 defined(__OpenBSD__) || defined(__minix) || defined(__DragonFly__) || \
166 defined(__FreeBSD_kernel__)
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000167 char exe_path[PATH_MAX];
168
169 if (getprogpath(exe_path, argv0) != NULL)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000170 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000171#elif defined(__linux__) || defined(__CYGWIN__)
172 char exe_path[MAXPATHLEN];
173 StringRef aPath("/proc/self/exe");
174 if (sys::fs::exists(aPath)) {
175 // /proc is not always mounted under Linux (chroot for example).
176 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
177 if (len >= 0)
Alexey Samsonov4c798452014-12-29 20:59:02 +0000178 return std::string(exe_path, len);
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000179 } else {
180 // Fall back to the classical detection.
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000181 if (getprogpath(exe_path, argv0))
182 return exe_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000183 }
184#elif defined(HAVE_DLFCN_H)
185 // Use dladdr to get executable path if available.
186 Dl_info DLInfo;
187 int err = dladdr(MainAddr, &DLInfo);
188 if (err == 0)
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000189 return "";
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000190
191 // If the filename is a symlink, we need to resolve and return the location of
192 // the actual executable.
193 char link_path[MAXPATHLEN];
194 if (realpath(DLInfo.dli_fname, link_path))
Rafael Espindola2c6f4fe2013-06-26 06:10:32 +0000195 return link_path;
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000196#else
197#error GetMainExecutable is not implemented on this host yet.
198#endif
199 return "";
200}
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000201
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000202TimeValue file_status::getLastAccessedTime() const {
203 TimeValue Ret;
204 Ret.fromEpochTime(fs_st_atime);
205 return Ret;
206}
207
Rafael Espindolabe3ede72013-06-20 21:51:49 +0000208TimeValue file_status::getLastModificationTime() const {
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000209 TimeValue Ret;
210 Ret.fromEpochTime(fs_st_mtime);
211 return Ret;
212}
213
Rafael Espindolad1230992013-07-29 21:55:38 +0000214UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000215 return UniqueID(fs_st_dev, fs_st_ino);
216}
217
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000218ErrorOr<space_info> disk_space(const Twine &Path) {
219 struct STATVFS Vfs;
220 if (::STATVFS(Path.str().c_str(), &Vfs))
221 return std::error_code(errno, std::generic_category());
222 auto FrSize = STATVFS_F_FRSIZE(Vfs);
223 space_info SpaceInfo;
224 SpaceInfo.capacity = static_cast<uint64_t>(Vfs.f_blocks) * FrSize;
225 SpaceInfo.free = static_cast<uint64_t>(Vfs.f_bfree) * FrSize;
226 SpaceInfo.available = static_cast<uint64_t>(Vfs.f_bavail) * FrSize;
227 return SpaceInfo;
228}
229
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000230std::error_code current_path(SmallVectorImpl<char> &result) {
Rafael Espindola6ee16382013-08-10 00:50:57 +0000231 result.clear();
232
233 const char *pwd = ::getenv("PWD");
234 llvm::sys::fs::file_status PWDStatus, DotStatus;
235 if (pwd && llvm::sys::path::is_absolute(pwd) &&
236 !llvm::sys::fs::status(pwd, PWDStatus) &&
237 !llvm::sys::fs::status(".", DotStatus) &&
238 PWDStatus.getUniqueID() == DotStatus.getUniqueID()) {
239 result.append(pwd, pwd + strlen(pwd));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000240 return std::error_code();
Rafael Espindola6ee16382013-08-10 00:50:57 +0000241 }
242
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000243#ifdef MAXPATHLEN
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000244 result.reserve(MAXPATHLEN);
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000245#else
246// For GNU Hurd
247 result.reserve(1024);
248#endif
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000249
Michael J. Spencer20daa282010-12-07 01:22:31 +0000250 while (true) {
Craig Toppere73658d2014-04-28 04:05:08 +0000251 if (::getcwd(result.data(), result.capacity()) == nullptr) {
Michael J. Spencer20daa282010-12-07 01:22:31 +0000252 // See if there was a real error.
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000253 if (errno != ENOMEM)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000254 return std::error_code(errno, std::generic_category());
Michael J. Spencer20daa282010-12-07 01:22:31 +0000255 // Otherwise there just wasn't enough space.
256 result.reserve(result.capacity() * 2);
257 } else
258 break;
259 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000260
261 result.set_size(strlen(result.data()));
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000262 return std::error_code();
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000263}
264
Frederic Riss6b9396c2015-08-06 21:04:55 +0000265std::error_code create_directory(const Twine &path, bool IgnoreExisting,
266 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000267 SmallString<128> path_storage;
268 StringRef p = path.toNullTerminatedStringRef(path_storage);
269
Frederic Riss6b9396c2015-08-06 21:04:55 +0000270 if (::mkdir(p.begin(), Perms) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000271 if (errno != EEXIST || !IgnoreExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000272 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000273 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000274
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000275 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000276}
277
Rafael Espindola83f858e2014-03-11 18:40:24 +0000278// Note that we are using symbolic link because hard links are not supported by
279// all filesystems (SMB doesn't).
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000280std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000281 // Get arguments.
282 SmallString<128> from_storage;
283 SmallString<128> to_storage;
284 StringRef f = from.toNullTerminatedStringRef(from_storage);
285 StringRef t = to.toNullTerminatedStringRef(to_storage);
286
Rafael Espindola83f858e2014-03-11 18:40:24 +0000287 if (::symlink(t.begin(), f.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000288 return std::error_code(errno, std::generic_category());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000289
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000290 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000291}
292
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000293std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000294 SmallString<128> path_storage;
295 StringRef p = path.toNullTerminatedStringRef(path_storage);
296
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000297 struct stat buf;
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000298 if (lstat(p.begin(), &buf) != 0) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000299 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000300 return std::error_code(errno, std::generic_category());
301 return std::error_code();
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000302 }
303
304 // Note: this check catches strange situations. In all cases, LLVM should
305 // only be involved in the creation and deletion of regular files. This
306 // check ensures that what we're trying to erase is a regular file. It
307 // effectively prevents LLVM from erasing things like /dev/null, any block
308 // special file, or other things that aren't "regular" files.
Argyrios Kyrtzidis37575692014-03-21 01:25:37 +0000309 if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000310 return make_error_code(errc::operation_not_permitted);
Rafael Espindola8cd62b02013-06-17 20:35:51 +0000311
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000312 if (::remove(p.begin()) == -1) {
Rafael Espindola882ce87b2014-05-31 02:29:28 +0000313 if (errno != ENOENT || !IgnoreNonExisting)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000314 return std::error_code(errno, std::generic_category());
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000315 }
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000316
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000317 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000318}
319
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000320std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000321 // Get arguments.
322 SmallString<128> from_storage;
323 SmallString<128> to_storage;
324 StringRef f = from.toNullTerminatedStringRef(from_storage);
325 StringRef t = to.toNullTerminatedStringRef(to_storage);
326
Rafael Espindolab6fea4c2013-07-17 03:33:41 +0000327 if (::rename(f.begin(), t.begin()) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000328 return std::error_code(errno, std::generic_category());
Michael J. Spencer409f5562010-12-03 17:53:55 +0000329
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000330 return std::error_code();
Michael J. Spencer409f5562010-12-03 17:53:55 +0000331}
332
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000333std::error_code resize_file(int FD, uint64_t Size) {
334 if (::ftruncate(FD, Size) == -1)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000335 return std::error_code(errno, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000336
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000337 return std::error_code();
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000338}
339
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000340namespace {
341
342int convertAccessMode(AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000343 switch (Mode) {
344 case AccessMode::Exist:
345 return F_OK;
346 case AccessMode::Write:
347 return W_OK;
348 case AccessMode::Execute:
349 return R_OK | X_OK; // scripts also need R_OK.
350 }
351 llvm_unreachable("invalid enum");
352}
Michael J. Spencer45710402010-12-03 01:21:28 +0000353
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000354} // end anonymous namespace
355
Rafael Espindola281f23a2014-09-11 20:30:02 +0000356std::error_code access(const Twine &Path, AccessMode Mode) {
357 SmallString<128> PathStorage;
358 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
359
360 if (::access(P.begin(), convertAccessMode(Mode)) == -1)
361 return std::error_code(errno, std::generic_category());
362
363 if (Mode == AccessMode::Execute) {
364 // Don't say that directories are executable.
365 struct stat buf;
366 if (0 != stat(P.begin(), &buf))
367 return errc::permission_denied;
368 if (!S_ISREG(buf.st_mode))
369 return errc::permission_denied;
370 }
Michael J. Spencer45710402010-12-03 01:21:28 +0000371
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000372 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000373}
374
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000375bool can_execute(const Twine &Path) {
376 return !access(Path, AccessMode::Execute);
377}
378
Michael J. Spencer203d7802011-12-12 06:04:28 +0000379bool equivalent(file_status A, file_status B) {
380 assert(status_known(A) && status_known(B));
Sylvestre Ledru3099f4bd2012-04-23 16:37:23 +0000381 return A.fs_st_dev == B.fs_st_dev &&
382 A.fs_st_ino == B.fs_st_ino;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000383}
384
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000385std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000386 file_status fsA, fsB;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000387 if (std::error_code ec = status(A, fsA))
388 return ec;
389 if (std::error_code ec = status(B, fsB))
390 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000391 result = equivalent(fsA, fsB);
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000392 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000393}
394
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000395namespace {
396
397std::error_code fillStatus(int StatRet, const struct stat &Status,
398 file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000399 if (StatRet != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000400 std::error_code ec(errno, std::generic_category());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000401 if (ec == errc::no_such_file_or_directory)
Rafael Espindola77021c92013-07-16 03:20:13 +0000402 Result = file_status(file_type::file_not_found);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000403 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000404 Result = file_status(file_type::status_error);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000405 return ec;
406 }
407
Rafael Espindola9da91a02013-07-16 02:55:33 +0000408 file_type Type = file_type::type_unknown;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000409
Rafael Espindola77021c92013-07-16 03:20:13 +0000410 if (S_ISDIR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000411 Type = file_type::directory_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000412 else if (S_ISREG(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000413 Type = file_type::regular_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000414 else if (S_ISBLK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000415 Type = file_type::block_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000416 else if (S_ISCHR(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000417 Type = file_type::character_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000418 else if (S_ISFIFO(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000419 Type = file_type::fifo_file;
Rafael Espindola77021c92013-07-16 03:20:13 +0000420 else if (S_ISSOCK(Status.st_mode))
Rafael Espindola9da91a02013-07-16 02:55:33 +0000421 Type = file_type::socket_file;
422
Rafael Espindola77021c92013-07-16 03:20:13 +0000423 perms Perms = static_cast<perms>(Status.st_mode);
424 Result =
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000425 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_atime,
426 Status.st_mtime, Status.st_uid, Status.st_gid,
427 Status.st_size);
Michael J. Spencer203d7802011-12-12 06:04:28 +0000428
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000429 return std::error_code();
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000430}
431
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000432} // end anonymous namespace
433
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000434std::error_code status(const Twine &Path, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000435 SmallString<128> PathStorage;
436 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
437
438 struct stat Status;
439 int StatRet = ::stat(P.begin(), &Status);
440 return fillStatus(StatRet, Status, Result);
441}
442
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000443std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000444 struct stat Status;
445 int StatRet = ::fstat(FD, &Status);
446 return fillStatus(StatRet, Status, Result);
447}
448
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000449std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) {
Eric Christophera24dc7f2013-07-04 01:10:38 +0000450#if defined(HAVE_FUTIMENS)
451 timespec Times[2];
Dmitri Gribenko70e65852014-02-11 09:11:18 +0000452 Times[0].tv_sec = Time.toEpochTime();
Eric Christophera24dc7f2013-07-04 01:10:38 +0000453 Times[0].tv_nsec = 0;
454 Times[1] = Times[0];
455 if (::futimens(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000456 return std::error_code(errno, std::generic_category());
457 return std::error_code();
Eric Christophera24dc7f2013-07-04 01:10:38 +0000458#elif defined(HAVE_FUTIMES)
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000459 timeval Times[2];
Dmitri Gribenko70e65852014-02-11 09:11:18 +0000460 Times[0].tv_sec = Time.toEpochTime();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000461 Times[0].tv_usec = 0;
462 Times[1] = Times[0];
463 if (::futimes(FD, Times))
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000464 return std::error_code(errno, std::generic_category());
465 return std::error_code();
Alp Tokerb30f01e2013-12-11 15:42:33 +0000466#else
467#warning Missing futimes() and futimens()
Alp Tokerb792a012014-06-30 18:57:04 +0000468 return make_error_code(errc::function_not_supported);
Alp Tokerb30f01e2013-12-11 15:42:33 +0000469#endif
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000470}
471
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000472std::error_code mapped_file_region::init(int FD, uint64_t Offset,
473 mapmode Mode) {
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000474 assert(Size != 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000475
476 int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE;
477 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
Craig Toppere73658d2014-04-28 04:05:08 +0000478 Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000479 if (Mapping == MAP_FAILED)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000480 return std::error_code(errno, std::generic_category());
481 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000482}
483
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000484mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
485 uint64_t offset, std::error_code &ec)
486 : Size(length), Mapping() {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000487 // Make sure that the requested size fits within SIZE_T.
488 if (length > std::numeric_limits<size_t>::max()) {
Rafael Espindola2a826e42014-06-13 17:20:48 +0000489 ec = make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000490 return;
491 }
492
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000493 ec = init(fd, offset, mode);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000494 if (ec)
Craig Toppere73658d2014-04-28 04:05:08 +0000495 Mapping = nullptr;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000496}
497
498mapped_file_region::~mapped_file_region() {
499 if (Mapping)
500 ::munmap(Mapping, Size);
501}
502
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000503uint64_t mapped_file_region::size() const {
504 assert(Mapping && "Mapping failed but used anyway!");
505 return Size;
506}
507
508char *mapped_file_region::data() const {
509 assert(Mapping && "Mapping failed but used anyway!");
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000510 return reinterpret_cast<char*>(Mapping);
511}
512
513const char *mapped_file_region::const_data() const {
514 assert(Mapping && "Mapping failed but used anyway!");
515 return reinterpret_cast<const char*>(Mapping);
516}
517
518int mapped_file_region::alignment() {
Rafael Espindolac0610bf2014-12-04 16:59:36 +0000519 return Process::getPageSize();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000520}
521
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000522std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000523 StringRef path){
Michael J. Spencer52714862011-01-05 16:38:57 +0000524 SmallString<128> path_null(path);
525 DIR *directory = ::opendir(path_null.c_str());
Craig Toppere73658d2014-04-28 04:05:08 +0000526 if (!directory)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000527 return std::error_code(errno, std::generic_category());
Michael J. Spencer52714862011-01-05 16:38:57 +0000528
529 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
530 // Add something for replace_filename to replace.
531 path::append(path_null, ".");
532 it.CurrentEntry = directory_entry(path_null.str());
533 return directory_iterator_increment(it);
534}
535
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000536std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000537 if (it.IterationHandle)
538 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
539 it.IterationHandle = 0;
540 it.CurrentEntry = directory_entry();
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000541 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000542}
543
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000544std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000545 errno = 0;
546 dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle));
Craig Toppere73658d2014-04-28 04:05:08 +0000547 if (cur_dir == nullptr && errno != 0) {
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000548 return std::error_code(errno, std::generic_category());
Craig Toppere73658d2014-04-28 04:05:08 +0000549 } else if (cur_dir != nullptr) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000550 StringRef name(cur_dir->d_name, NAMLEN(cur_dir));
551 if ((name.size() == 1 && name[0] == '.') ||
552 (name.size() == 2 && name[0] == '.' && name[1] == '.'))
553 return directory_iterator_increment(it);
554 it.CurrentEntry.replace_filename(name);
555 } else
556 return directory_iterator_destruct(it);
557
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000558 return std::error_code();
Michael J. Spencer52714862011-01-05 16:38:57 +0000559}
560
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000561std::error_code openFileForRead(const Twine &Name, int &ResultFD) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000562 SmallString<128> Storage;
563 StringRef P = Name.toNullTerminatedStringRef(Storage);
564 while ((ResultFD = open(P.begin(), O_RDONLY)) < 0) {
565 if (errno != EINTR)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000566 return std::error_code(errno, std::generic_category());
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000567 }
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000568 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000569}
Nick Kledzik18497e92012-06-20 00:28:54 +0000570
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000571std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000572 sys::fs::OpenFlags Flags, unsigned Mode) {
573 // Verify that we don't have both "append" and "excl".
574 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
575 "Cannot specify both 'excl' and 'append' file creation flags!");
576
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000577 int OpenFlags = O_CREAT;
578
579 if (Flags & F_RW)
580 OpenFlags |= O_RDWR;
581 else
582 OpenFlags |= O_WRONLY;
Rafael Espindola67080ce2013-07-19 15:02:03 +0000583
584 if (Flags & F_Append)
585 OpenFlags |= O_APPEND;
586 else
587 OpenFlags |= O_TRUNC;
588
589 if (Flags & F_Excl)
590 OpenFlags |= O_EXCL;
591
592 SmallString<128> Storage;
593 StringRef P = Name.toNullTerminatedStringRef(Storage);
594 while ((ResultFD = open(P.begin(), OpenFlags, Mode)) < 0) {
595 if (errno != EINTR)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000596 return std::error_code(errno, std::generic_category());
Rafael Espindola67080ce2013-07-19 15:02:03 +0000597 }
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000598 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +0000599}
600
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000601} // end namespace fs
Peter Collingbournef7d41012014-01-31 23:46:06 +0000602
603namespace path {
604
605bool home_directory(SmallVectorImpl<char> &result) {
606 if (char *RequestedDir = getenv("HOME")) {
607 result.clear();
608 result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
609 return true;
610 }
611
612 return false;
613}
614
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000615namespace {
616
617bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000618 #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR)
619 // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
620 // macros defined in <unistd.h> on darwin >= 9
621 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR
622 : _CS_DARWIN_USER_CACHE_DIR;
623 size_t ConfLen = confstr(ConfName, nullptr, 0);
624 if (ConfLen > 0) {
625 do {
626 Result.resize(ConfLen);
627 ConfLen = confstr(ConfName, Result.data(), Result.size());
628 } while (ConfLen > 0 && ConfLen != Result.size());
629
630 if (ConfLen > 0) {
631 assert(Result.back() == 0);
632 Result.pop_back();
633 return true;
634 }
635
636 Result.clear();
637 }
638 #endif
639 return false;
640}
641
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000642bool getUserCacheDir(SmallVectorImpl<char> &Result) {
Sean Silvaa915a162016-03-24 22:27:27 +0000643 // First try using XDG_CACHE_HOME env variable,
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000644 // as specified in XDG Base Directory Specification at
645 // http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
Sean Silvaa915a162016-03-24 22:27:27 +0000646 if (const char *XdgCacheDir = std::getenv("XDG_CACHE_HOME")) {
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000647 Result.clear();
Sean Silvaa915a162016-03-24 22:27:27 +0000648 Result.append(XdgCacheDir, XdgCacheDir + strlen(XdgCacheDir));
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000649 return true;
650 }
651
652 // Try Darwin configuration query
653 if (getDarwinConfDir(false, Result))
654 return true;
655
656 // Use "$HOME/.cache" if $HOME is available
657 if (home_directory(Result)) {
658 append(Result, ".cache");
659 return true;
660 }
661
662 return false;
663}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000664
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000665const char *getEnvTempDir() {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000666 // Check whether the temporary directory is specified by an environment
667 // variable.
668 const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"};
669 for (const char *Env : EnvironmentVariables) {
670 if (const char *Dir = std::getenv(Env))
671 return Dir;
672 }
673
674 return nullptr;
675}
676
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000677const char *getDefaultTempDir(bool ErasedOnReboot) {
Rafael Espindola016a6d52014-08-26 14:47:52 +0000678#ifdef P_tmpdir
Benjamin Kramer870d9512014-08-27 11:47:52 +0000679 if ((bool)P_tmpdir)
Rafael Espindola016a6d52014-08-26 14:47:52 +0000680 return P_tmpdir;
681#endif
682
683 if (ErasedOnReboot)
684 return "/tmp";
685 return "/var/tmp";
686}
687
Eugene Zelenko1760dc22016-04-05 20:19:49 +0000688} // end anonymous namespace
689
Rafael Espindola016a6d52014-08-26 14:47:52 +0000690void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
691 Result.clear();
692
693 if (ErasedOnReboot) {
694 // There is no env variable for the cache directory.
695 if (const char *RequestedDir = getEnvTempDir()) {
696 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
697 return;
698 }
699 }
700
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000701 if (getDarwinConfDir(ErasedOnReboot, Result))
702 return;
Rafael Espindola016a6d52014-08-26 14:47:52 +0000703
704 const char *RequestedDir = getDefaultTempDir(ErasedOnReboot);
705 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
706}
707
Peter Collingbournef7d41012014-01-31 23:46:06 +0000708} // end namespace path
709
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000710} // end namespace sys
711} // end namespace llvm