1 //===- llvm/Support/Unix/Path.inc - Unix Path Implementation ----*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the Unix specific implementation of the Path API.
12 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
15 //=== WARNING: Implementation here must contain only generic UNIX code that
16 //=== is guaranteed to work on *all* UNIX variants.
17 //===----------------------------------------------------------------------===//
31 #ifdef HAVE_SYS_MMAN_H
39 #include <mach-o/dyld.h>
43 // Both stdio.h and cstdio are included via different paths and
44 // stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros
50 #if defined(__GNU__) && !defined(PATH_MAX)
51 # define PATH_MAX 4096
54 #include <sys/types.h>
55 #if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && \
57 #include <sys/statvfs.h>
58 #define STATVFS statvfs
59 #define FSTATVFS fstatvfs
60 #define STATVFS_F_FRSIZE(vfs) vfs.f_frsize
62 #if defined(__OpenBSD__) || defined(__FreeBSD__)
63 #include <sys/mount.h>
64 #include <sys/param.h>
65 #elif defined(__linux__)
66 #if defined(HAVE_LINUX_MAGIC_H)
67 #include <linux/magic.h>
69 #if defined(HAVE_LINUX_NFS_FS_H)
70 #include <linux/nfs_fs.h>
72 #if defined(HAVE_LINUX_SMB_H)
73 #include <linux/smb.h>
78 #include <sys/mount.h>
80 #define STATVFS statfs
81 #define FSTATVFS fstatfs
82 #define STATVFS_F_FRSIZE(vfs) static_cast<uint64_t>(vfs.f_bsize)
85 #if defined(__NetBSD__)
86 #define STATVFS_F_FLAG(vfs) (vfs).f_flag
88 #define STATVFS_F_FLAG(vfs) (vfs).f_flags
97 const file_t kInvalidFile = -1;
99 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
100 defined(__minix) || defined(__FreeBSD_kernel__) || defined(__linux__) || \
101 defined(__CYGWIN__) || defined(__DragonFly__) || defined(_AIX)
103 test_dir(char ret[PATH_MAX], const char *dir, const char *bin)
106 char fullpath[PATH_MAX];
108 snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
109 if (!realpath(fullpath, ret))
111 if (stat(fullpath, &sb) != 0)
118 getprogpath(char ret[PATH_MAX], const char *bin)
122 /* First approach: absolute path. */
124 if (test_dir(ret, "/", bin) == 0)
129 /* Second approach: relative path. */
130 if (strchr(bin, '/')) {
132 if (!getcwd(cwd, PATH_MAX))
134 if (test_dir(ret, cwd, bin) == 0)
139 /* Third approach: $PATH */
140 if ((pv = getenv("PATH")) == nullptr)
145 while ((t = strsep(&s, ":")) != nullptr) {
146 if (test_dir(ret, t, bin) == 0) {
154 #endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__
156 /// GetMainExecutable - Return the path to the main executable, given the
157 /// value of argv[0] from program startup.
158 std::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))
170 #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
171 defined(__minix) || defined(__DragonFly__) || \
172 defined(__FreeBSD_kernel__) || defined(_AIX)
173 char exe_path[PATH_MAX];
175 if (getprogpath(exe_path, argv0) != NULL)
177 #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));
184 return std::string(exe_path, len);
186 // Fall back to the classical detection.
187 if (getprogpath(exe_path, argv0))
190 #elif defined(HAVE_DLFCN_H) && defined(HAVE_DLADDR)
191 // Use dladdr to get executable path if available.
193 int err = dladdr(MainAddr, &DLInfo);
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))
203 #error GetMainExecutable is not implemented on this host yet.
208 TimePoint<> basic_file_status::getLastAccessedTime() const {
209 return toTimePoint(fs_st_atime);
212 TimePoint<> basic_file_status::getLastModificationTime() const {
213 return toTimePoint(fs_st_mtime);
216 UniqueID file_status::getUniqueID() const {
217 return UniqueID(fs_st_dev, fs_st_ino);
220 uint32_t file_status::getLinkCount() const {
224 ErrorOr<space_info> disk_space(const Twine &Path) {
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;
236 std::error_code current_path(SmallVectorImpl<char> &result) {
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));
246 return std::error_code();
250 result.reserve(MAXPATHLEN);
253 result.reserve(1024);
257 if (::getcwd(result.data(), result.capacity()) == nullptr) {
258 // See if there was a real error.
260 return std::error_code(errno, std::generic_category());
261 // Otherwise there just wasn't enough space.
262 result.reserve(result.capacity() * 2);
267 result.set_size(strlen(result.data()));
268 return std::error_code();
271 std::error_code set_current_path(const Twine &path) {
272 SmallString<128> path_storage;
273 StringRef p = path.toNullTerminatedStringRef(path_storage);
275 if (::chdir(p.begin()) == -1)
276 return std::error_code(errno, std::generic_category());
278 return std::error_code();
281 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
283 SmallString<128> path_storage;
284 StringRef p = path.toNullTerminatedStringRef(path_storage);
286 if (::mkdir(p.begin(), Perms) == -1) {
287 if (errno != EEXIST || !IgnoreExisting)
288 return std::error_code(errno, std::generic_category());
291 return std::error_code();
294 // Note that we are using symbolic link because hard links are not supported by
295 // all filesystems (SMB doesn't).
296 std::error_code create_link(const Twine &to, const Twine &from) {
298 SmallString<128> from_storage;
299 SmallString<128> to_storage;
300 StringRef f = from.toNullTerminatedStringRef(from_storage);
301 StringRef t = to.toNullTerminatedStringRef(to_storage);
303 if (::symlink(t.begin(), f.begin()) == -1)
304 return std::error_code(errno, std::generic_category());
306 return std::error_code();
309 std::error_code create_hard_link(const Twine &to, const Twine &from) {
311 SmallString<128> from_storage;
312 SmallString<128> to_storage;
313 StringRef f = from.toNullTerminatedStringRef(from_storage);
314 StringRef t = to.toNullTerminatedStringRef(to_storage);
316 if (::link(t.begin(), f.begin()) == -1)
317 return std::error_code(errno, std::generic_category());
319 return std::error_code();
322 std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
323 SmallString<128> path_storage;
324 StringRef p = path.toNullTerminatedStringRef(path_storage);
327 if (lstat(p.begin(), &buf) != 0) {
328 if (errno != ENOENT || !IgnoreNonExisting)
329 return std::error_code(errno, std::generic_category());
330 return std::error_code();
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.
338 if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
339 return make_error_code(errc::operation_not_permitted);
341 if (::remove(p.begin()) == -1) {
342 if (errno != ENOENT || !IgnoreNonExisting)
343 return std::error_code(errno, std::generic_category());
346 return std::error_code();
349 static bool is_local_impl(struct STATVFS &Vfs) {
350 #if defined(__linux__)
351 #ifndef NFS_SUPER_MAGIC
352 #define NFS_SUPER_MAGIC 0x6969
354 #ifndef SMB_SUPER_MAGIC
355 #define SMB_SUPER_MAGIC 0x517B
357 #ifndef CIFS_MAGIC_NUMBER
358 #define CIFS_MAGIC_NUMBER 0xFF534D42
360 switch ((uint32_t)Vfs.f_type) {
361 case NFS_SUPER_MAGIC:
362 case SMB_SUPER_MAGIC:
363 case CIFS_MAGIC_NUMBER:
368 #elif defined(__CYGWIN__)
369 // Cygwin doesn't expose this information; would need to use Win32 API.
371 #elif defined(__Fuchsia__)
372 // Fuchsia doesn't yet support remote filesystem mounts.
374 #elif defined(__HAIKU__)
375 // Haiku doesn't expose this information.
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");
383 return !!(STATVFS_F_FLAG(Vfs) & MNT_LOCAL);
387 std::error_code is_local(const Twine &Path, bool &Result) {
389 if (::STATVFS(Path.str().c_str(), &Vfs))
390 return std::error_code(errno, std::generic_category());
392 Result = is_local_impl(Vfs);
393 return std::error_code();
396 std::error_code is_local(int FD, bool &Result) {
398 if (::FSTATVFS(FD, &Vfs))
399 return std::error_code(errno, std::generic_category());
401 Result = is_local_impl(Vfs);
402 return std::error_code();
405 std::error_code rename(const Twine &from, const Twine &to) {
407 SmallString<128> from_storage;
408 SmallString<128> to_storage;
409 StringRef f = from.toNullTerminatedStringRef(from_storage);
410 StringRef t = to.toNullTerminatedStringRef(to_storage);
412 if (::rename(f.begin(), t.begin()) == -1)
413 return std::error_code(errno, std::generic_category());
415 return std::error_code();
418 std::error_code resize_file(int FD, uint64_t Size) {
419 #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.
422 if (int Err = ::posix_fallocate(FD, 0, Size)) {
423 if (Err != EINVAL && Err != EOPNOTSUPP)
424 return std::error_code(Err, std::generic_category());
427 // Use ftruncate as a fallback. It may or may not allocate space. At least on
428 // OS X with HFS+ it does.
429 if (::ftruncate(FD, Size) == -1)
430 return std::error_code(errno, std::generic_category());
432 return std::error_code();
435 static int convertAccessMode(AccessMode Mode) {
437 case AccessMode::Exist:
439 case AccessMode::Write:
441 case AccessMode::Execute:
442 return R_OK | X_OK; // scripts also need R_OK.
444 llvm_unreachable("invalid enum");
447 std::error_code access(const Twine &Path, AccessMode Mode) {
448 SmallString<128> PathStorage;
449 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
451 if (::access(P.begin(), convertAccessMode(Mode)) == -1)
452 return std::error_code(errno, std::generic_category());
454 if (Mode == AccessMode::Execute) {
455 // Don't say that directories are executable.
457 if (0 != stat(P.begin(), &buf))
458 return errc::permission_denied;
459 if (!S_ISREG(buf.st_mode))
460 return errc::permission_denied;
463 return std::error_code();
466 bool can_execute(const Twine &Path) {
467 return !access(Path, AccessMode::Execute);
470 bool equivalent(file_status A, file_status B) {
471 assert(status_known(A) && status_known(B));
472 return A.fs_st_dev == B.fs_st_dev &&
473 A.fs_st_ino == B.fs_st_ino;
476 std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
477 file_status fsA, fsB;
478 if (std::error_code ec = status(A, fsA))
480 if (std::error_code ec = status(B, fsB))
482 result = equivalent(fsA, fsB);
483 return std::error_code();
486 static void expandTildeExpr(SmallVectorImpl<char> &Path) {
487 StringRef PathStr(Path.begin(), Path.size());
488 if (PathStr.empty() || !PathStr.startswith("~"))
491 PathStr = PathStr.drop_front();
493 PathStr.take_until([](char c) { return path::is_separator(c); });
494 StringRef Remainder = PathStr.substr(Expr.size() + 1);
495 SmallString<128> Storage;
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.
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());
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());
516 // Unable to look up the entry, just return back the original path.
522 Path.append(Entry->pw_dir, Entry->pw_dir + strlen(Entry->pw_dir));
523 llvm::sys::path::append(Path, Storage);
526 static file_type typeForMode(mode_t Mode) {
528 return file_type::directory_file;
529 else if (S_ISREG(Mode))
530 return file_type::regular_file;
531 else if (S_ISBLK(Mode))
532 return file_type::block_file;
533 else if (S_ISCHR(Mode))
534 return file_type::character_file;
535 else if (S_ISFIFO(Mode))
536 return file_type::fifo_file;
537 else if (S_ISSOCK(Mode))
538 return file_type::socket_file;
539 else if (S_ISLNK(Mode))
540 return file_type::symlink_file;
541 return file_type::type_unknown;
544 static std::error_code fillStatus(int StatRet, const struct stat &Status,
545 file_status &Result) {
547 std::error_code EC(errno, std::generic_category());
548 if (EC == errc::no_such_file_or_directory)
549 Result = file_status(file_type::file_not_found);
551 Result = file_status(file_type::status_error);
555 perms Perms = static_cast<perms>(Status.st_mode) & all_perms;
556 Result = file_status(typeForMode(Status.st_mode), Perms, Status.st_dev,
557 Status.st_nlink, Status.st_ino, Status.st_atime,
558 Status.st_mtime, Status.st_uid, Status.st_gid,
561 return std::error_code();
564 std::error_code status(const Twine &Path, file_status &Result, bool Follow) {
565 SmallString<128> PathStorage;
566 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
569 int StatRet = (Follow ? ::stat : ::lstat)(P.begin(), &Status);
570 return fillStatus(StatRet, Status, Result);
573 std::error_code status(int FD, file_status &Result) {
575 int StatRet = ::fstat(FD, &Status);
576 return fillStatus(StatRet, Status, Result);
579 std::error_code setPermissions(const Twine &Path, perms Permissions) {
580 SmallString<128> PathStorage;
581 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
583 if (::chmod(P.begin(), Permissions))
584 return std::error_code(errno, std::generic_category());
585 return std::error_code();
588 std::error_code setLastAccessAndModificationTime(int FD, TimePoint<> AccessTime,
589 TimePoint<> ModificationTime) {
590 #if defined(HAVE_FUTIMENS)
592 Times[0] = sys::toTimeSpec(AccessTime);
593 Times[1] = sys::toTimeSpec(ModificationTime);
594 if (::futimens(FD, Times))
595 return std::error_code(errno, std::generic_category());
596 return std::error_code();
597 #elif defined(HAVE_FUTIMES)
599 Times[0] = sys::toTimeVal(
600 std::chrono::time_point_cast<std::chrono::microseconds>(AccessTime));
602 sys::toTimeVal(std::chrono::time_point_cast<std::chrono::microseconds>(
604 if (::futimes(FD, Times))
605 return std::error_code(errno, std::generic_category());
606 return std::error_code();
608 #warning Missing futimes() and futimens()
609 return make_error_code(errc::function_not_supported);
613 std::error_code mapped_file_region::init(int FD, uint64_t Offset,
617 int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE;
618 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
619 #if defined(__APPLE__)
620 //----------------------------------------------------------------------
621 // Newer versions of MacOSX have a flag that will allow us to read from
622 // binaries whose code signature is invalid without crashing by using
623 // the MAP_RESILIENT_CODESIGN flag. Also if a file from removable media
624 // is mapped we can avoid crashing and return zeroes to any pages we try
625 // to read if the media becomes unavailable by using the
626 // MAP_RESILIENT_MEDIA flag. These flags are only usable when mapping
627 // with PROT_READ, so take care not to specify them otherwise.
628 //----------------------------------------------------------------------
629 if (Mode == readonly) {
630 #if defined(MAP_RESILIENT_CODESIGN)
631 flags |= MAP_RESILIENT_CODESIGN;
633 #if defined(MAP_RESILIENT_MEDIA)
634 flags |= MAP_RESILIENT_MEDIA;
637 #endif // #if defined (__APPLE__)
639 Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
640 if (Mapping == MAP_FAILED)
641 return std::error_code(errno, std::generic_category());
642 return std::error_code();
645 mapped_file_region::mapped_file_region(int fd, mapmode mode, size_t length,
646 uint64_t offset, std::error_code &ec)
647 : Size(length), Mapping(), Mode(mode) {
649 ec = init(fd, offset, mode);
654 mapped_file_region::~mapped_file_region() {
656 ::munmap(Mapping, Size);
659 size_t mapped_file_region::size() const {
660 assert(Mapping && "Mapping failed but used anyway!");
664 char *mapped_file_region::data() const {
665 assert(Mapping && "Mapping failed but used anyway!");
666 return reinterpret_cast<char*>(Mapping);
669 const char *mapped_file_region::const_data() const {
670 assert(Mapping && "Mapping failed but used anyway!");
671 return reinterpret_cast<const char*>(Mapping);
674 int mapped_file_region::alignment() {
675 return Process::getPageSize();
678 std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
680 bool follow_symlinks) {
681 SmallString<128> path_null(path);
682 DIR *directory = ::opendir(path_null.c_str());
684 return std::error_code(errno, std::generic_category());
686 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
687 // Add something for replace_filename to replace.
688 path::append(path_null, ".");
689 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
690 return directory_iterator_increment(it);
693 std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
694 if (it.IterationHandle)
695 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
696 it.IterationHandle = 0;
697 it.CurrentEntry = directory_entry();
698 return std::error_code();
701 static file_type direntType(dirent* Entry) {
702 // Most platforms provide the file type in the dirent: Linux/BSD/Mac.
703 // The DTTOIF macro lets us reuse our status -> type conversion.
704 #if defined(_DIRENT_HAVE_D_TYPE) && defined(DTTOIF)
705 return typeForMode(DTTOIF(Entry->d_type));
707 // Other platforms such as Solaris require a stat() to get the type.
708 return file_type::type_unknown;
712 std::error_code detail::directory_iterator_increment(detail::DirIterState &It) {
714 dirent *CurDir = ::readdir(reinterpret_cast<DIR *>(It.IterationHandle));
715 if (CurDir == nullptr && errno != 0) {
716 return std::error_code(errno, std::generic_category());
717 } else if (CurDir != nullptr) {
718 StringRef Name(CurDir->d_name);
719 if ((Name.size() == 1 && Name[0] == '.') ||
720 (Name.size() == 2 && Name[0] == '.' && Name[1] == '.'))
721 return directory_iterator_increment(It);
722 It.CurrentEntry.replace_filename(Name, direntType(CurDir));
724 return directory_iterator_destruct(It);
726 return std::error_code();
729 ErrorOr<basic_file_status> directory_entry::status() const {
731 if (auto EC = fs::status(Path, s, FollowSymlinks))
736 #if !defined(F_GETPATH)
737 static bool hasProcSelfFD() {
738 // If we have a /proc filesystem mounted, we can quickly establish the
739 // real name of the file with readlink
740 static const bool Result = (::access("/proc/self/fd", R_OK) == 0);
745 static int nativeOpenFlags(CreationDisposition Disp, OpenFlags Flags,
748 if (Access == FA_Read)
750 else if (Access == FA_Write)
752 else if (Access == (FA_Read | FA_Write))
755 // This is for compatibility with old code that assumed F_Append implied
756 // would open an existing file. See Windows/Path.inc for a longer comment.
757 if (Flags & F_Append)
758 Disp = CD_OpenAlways;
760 if (Disp == CD_CreateNew) {
761 Result |= O_CREAT; // Create if it doesn't exist.
762 Result |= O_EXCL; // Fail if it does.
763 } else if (Disp == CD_CreateAlways) {
764 Result |= O_CREAT; // Create if it doesn't exist.
765 Result |= O_TRUNC; // Truncate if it does.
766 } else if (Disp == CD_OpenAlways) {
767 Result |= O_CREAT; // Create if it doesn't exist.
768 } else if (Disp == CD_OpenExisting) {
769 // Nothing special, just don't add O_CREAT and we get these semantics.
772 if (Flags & F_Append)
776 if (!(Flags & OF_ChildInherit))
783 std::error_code openFile(const Twine &Name, int &ResultFD,
784 CreationDisposition Disp, FileAccess Access,
785 OpenFlags Flags, unsigned Mode) {
786 int OpenFlags = nativeOpenFlags(Disp, Flags, Access);
788 SmallString<128> Storage;
789 StringRef P = Name.toNullTerminatedStringRef(Storage);
790 // Call ::open in a lambda to avoid overload resolution in RetryAfterSignal
791 // when open is overloaded, such as in Bionic.
792 auto Open = [&]() { return ::open(P.begin(), OpenFlags, Mode); };
793 if ((ResultFD = sys::RetryAfterSignal(-1, Open)) < 0)
794 return std::error_code(errno, std::generic_category());
796 if (!(Flags & OF_ChildInherit)) {
797 int r = fcntl(ResultFD, F_SETFD, FD_CLOEXEC);
799 assert(r == 0 && "fcntl(F_SETFD, FD_CLOEXEC) failed");
802 return std::error_code();
805 Expected<int> openNativeFile(const Twine &Name, CreationDisposition Disp,
806 FileAccess Access, OpenFlags Flags,
810 std::error_code EC = openFile(Name, FD, Disp, Access, Flags, Mode);
812 return errorCodeToError(EC);
816 std::error_code openFileForRead(const Twine &Name, int &ResultFD,
818 SmallVectorImpl<char> *RealPath) {
820 openFile(Name, ResultFD, CD_OpenExisting, FA_Read, Flags, 0666);
824 // Attempt to get the real name of the file, if the user asked
826 return std::error_code();
828 #if defined(F_GETPATH)
829 // When F_GETPATH is availble, it is the quickest way to get
830 // the real path name.
831 char Buffer[MAXPATHLEN];
832 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
833 RealPath->append(Buffer, Buffer + strlen(Buffer));
835 char Buffer[PATH_MAX];
836 if (hasProcSelfFD()) {
838 snprintf(ProcPath, sizeof(ProcPath), "/proc/self/fd/%d", ResultFD);
839 ssize_t CharCount = ::readlink(ProcPath, Buffer, sizeof(Buffer));
841 RealPath->append(Buffer, Buffer + CharCount);
843 SmallString<128> Storage;
844 StringRef P = Name.toNullTerminatedStringRef(Storage);
846 // Use ::realpath to get the real path name
847 if (::realpath(P.begin(), Buffer) != nullptr)
848 RealPath->append(Buffer, Buffer + strlen(Buffer));
851 return std::error_code();
854 Expected<file_t> openNativeFileForRead(const Twine &Name, OpenFlags Flags,
855 SmallVectorImpl<char> *RealPath) {
857 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
859 return errorCodeToError(EC);
863 void closeFile(file_t &F) {
868 template <typename T>
869 static std::error_code remove_directories_impl(const T &Entry,
872 directory_iterator Begin(Entry, EC, false);
873 directory_iterator End;
874 while (Begin != End) {
876 ErrorOr<basic_file_status> st = Item.status();
877 if (!st && !IgnoreErrors)
878 return st.getError();
880 if (is_directory(*st)) {
881 EC = remove_directories_impl(Item, IgnoreErrors);
882 if (EC && !IgnoreErrors)
886 EC = fs::remove(Item.path(), true);
887 if (EC && !IgnoreErrors)
891 if (EC && !IgnoreErrors)
894 return std::error_code();
897 std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
898 auto EC = remove_directories_impl(path, IgnoreErrors);
899 if (EC && !IgnoreErrors)
901 EC = fs::remove(path, true);
902 if (EC && !IgnoreErrors)
904 return std::error_code();
907 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
910 if (path.isTriviallyEmpty())
911 return std::error_code();
914 SmallString<128> Storage;
915 path.toVector(Storage);
916 expandTildeExpr(Storage);
917 return real_path(Storage, dest, false);
920 SmallString<128> Storage;
921 StringRef P = path.toNullTerminatedStringRef(Storage);
922 char Buffer[PATH_MAX];
923 if (::realpath(P.begin(), Buffer) == nullptr)
924 return std::error_code(errno, std::generic_category());
925 dest.append(Buffer, Buffer + strlen(Buffer));
926 return std::error_code();
929 } // end namespace fs
933 bool home_directory(SmallVectorImpl<char> &result) {
934 char *RequestedDir = getenv("HOME");
936 struct passwd *pw = getpwuid(getuid());
937 if (pw && pw->pw_dir)
938 RequestedDir = pw->pw_dir;
944 result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
948 static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
949 #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR)
950 // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
951 // macros defined in <unistd.h> on darwin >= 9
952 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR
953 : _CS_DARWIN_USER_CACHE_DIR;
954 size_t ConfLen = confstr(ConfName, nullptr, 0);
957 Result.resize(ConfLen);
958 ConfLen = confstr(ConfName, Result.data(), Result.size());
959 } while (ConfLen > 0 && ConfLen != Result.size());
962 assert(Result.back() == 0);
973 static const char *getEnvTempDir() {
974 // Check whether the temporary directory is specified by an environment
976 const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"};
977 for (const char *Env : EnvironmentVariables) {
978 if (const char *Dir = std::getenv(Env))
985 static const char *getDefaultTempDir(bool ErasedOnReboot) {
996 void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
999 if (ErasedOnReboot) {
1000 // There is no env variable for the cache directory.
1001 if (const char *RequestedDir = getEnvTempDir()) {
1002 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
1007 if (getDarwinConfDir(ErasedOnReboot, Result))
1010 const char *RequestedDir = getDefaultTempDir(ErasedOnReboot);
1011 Result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
1014 } // end namespace path
1016 } // end namespace sys
1017 } // end namespace llvm