1 //===- llvm/System/Unix/Path.cpp - 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 portion of the Path class.
12 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
15 //=== WARNING: Implementation here must contain only generic UNIX code that
16 //=== is guaranteed to work on *all* UNIX variants.
17 //===----------------------------------------------------------------------===//
19 #include "llvm/ADT/SmallVector.h"
27 #ifdef HAVE_SYS_MMAN_H
30 #ifdef HAVE_SYS_STAT_H
41 # define NAMLEN(dirent) strlen((dirent)->d_name)
43 # define dirent direct
44 # define NAMLEN(dirent) (dirent)->d_namlen
46 # include <sys/ndir.h>
61 #include <mach-o/dyld.h>
64 // Put in a hack for Cygwin which falsely reports that the mkdtemp function
65 // is available when it is not.
71 inline bool lastIsSlash(const std::string& path) {
72 return !path.empty() && path[path.length() - 1] == '/';
80 extern const char sys::PathSeparator = ':';
82 Path::Path(const std::string& p)
85 Path::Path(const char *StrStart, unsigned StrLen)
86 : path(StrStart, StrLen) {}
89 Path::operator=(const std::string &that) {
95 Path::isValid() const {
96 // Check some obvious things
99 return path.length() < MAXPATHLEN;
103 Path::isAbsolute(const char *NameStart, unsigned NameLen) {
107 return NameStart[0] == '/';
111 Path::isAbsolute() const {
114 return path[0] == '/';
117 void Path::makeAbsolute() {
121 Path CWD = Path::GetCurrentDirectory();
122 assert(CWD.isAbsolute() && "GetCurrentDirectory returned relative path!");
124 CWD.appendComponent(path);
130 Path::GetRootDirectory() {
137 Path::GetTemporaryDirectory(std::string *ErrMsg) {
138 #if defined(HAVE_MKDTEMP)
139 // The best way is with mkdtemp but that's not available on many systems,
140 // Linux and FreeBSD have it. Others probably won't.
141 char pathname[MAXPATHLEN];
142 strcpy(pathname,"/tmp/llvm_XXXXXX");
143 if (0 == mkdtemp(pathname)) {
145 std::string(pathname) + ": can't create temporary directory");
149 result.set(pathname);
150 assert(result.isValid() && "mkdtemp didn't create a valid pathname!");
152 #elif defined(HAVE_MKSTEMP)
153 // If no mkdtemp is available, mkstemp can be used to create a temporary file
154 // which is then removed and created as a directory. We prefer this over
155 // mktemp because of mktemp's inherent security and threading risks. We still
156 // have a slight race condition from the time the temporary file is created to
157 // the time it is re-created as a directoy.
158 char pathname[MAXPATHLEN];
159 strcpy(pathname, "/tmp/llvm_XXXXXX");
161 if (-1 == (fd = mkstemp(pathname))) {
163 std::string(pathname) + ": can't create temporary directory");
167 ::unlink(pathname); // start race condition, ignore errors
168 if (-1 == ::mkdir(pathname, S_IRWXU)) { // end race condition
170 std::string(pathname) + ": can't create temporary directory");
174 result.set(pathname);
175 assert(result.isValid() && "mkstemp didn't create a valid pathname!");
177 #elif defined(HAVE_MKTEMP)
178 // If a system doesn't have mkdtemp(3) or mkstemp(3) but it does have
179 // mktemp(3) then we'll assume that system (e.g. AIX) has a reasonable
180 // implementation of mktemp(3) and doesn't follow BSD 4.3's lead of replacing
181 // the XXXXXX with the pid of the process and a letter. That leads to only
182 // twenty six temporary files that can be generated.
183 char pathname[MAXPATHLEN];
184 strcpy(pathname, "/tmp/llvm_XXXXXX");
185 char *TmpName = ::mktemp(pathname);
188 std::string(TmpName) + ": can't create unique directory name");
191 if (-1 == ::mkdir(TmpName, S_IRWXU)) {
193 std::string(TmpName) + ": can't create temporary directory");
198 assert(result.isValid() && "mktemp didn't create a valid pathname!");
201 // This is the worst case implementation. tempnam(3) leaks memory unless its
202 // on an SVID2 (or later) system. On BSD 4.3 it leaks. tmpnam(3) has thread
203 // issues. The mktemp(3) function doesn't have enough variability in the
204 // temporary name generated. So, we provide our own implementation that
205 // increments an integer from a random number seeded by the current time. This
206 // should be sufficiently unique that we don't have many collisions between
207 // processes. Generally LLVM processes don't run very long and don't use very
208 // many temporary files so this shouldn't be a big issue for LLVM.
209 static time_t num = ::time(0);
210 char pathname[MAXPATHLEN];
213 sprintf(pathname, "/tmp/llvm_%010u", unsigned(num));
214 } while ( 0 == access(pathname, F_OK ) );
215 if (-1 == ::mkdir(pathname, S_IRWXU)) {
217 std::string(pathname) + ": can't create temporary directory");
221 result.set(pathname);
222 assert(result.isValid() && "mkstemp didn't create a valid pathname!");
228 Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
229 #ifdef LTDL_SHLIBPATH_VAR
230 char* env_var = getenv(LTDL_SHLIBPATH_VAR);
232 getPathList(env_var,Paths);
235 // FIXME: Should this look at LD_LIBRARY_PATH too?
236 Paths.push_back(sys::Path("/usr/local/lib/"));
237 Paths.push_back(sys::Path("/usr/X11R6/lib/"));
238 Paths.push_back(sys::Path("/usr/lib/"));
239 Paths.push_back(sys::Path("/lib/"));
243 Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
244 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
246 getPathList(env_var,Paths);
251 if (tmpPath.set(LLVM_LIBDIR))
252 if (tmpPath.canRead())
253 Paths.push_back(tmpPath);
256 GetSystemLibraryPaths(Paths);
260 Path::GetLLVMDefaultConfigDir() {
261 return Path("/etc/llvm/");
265 Path::GetUserHomeDirectory() {
266 const char* home = getenv("HOME");
269 if (result.set(home))
272 return GetRootDirectory();
276 Path::GetCurrentDirectory() {
277 char pathname[MAXPATHLEN];
278 if (!getcwd(pathname,MAXPATHLEN)) {
279 assert (false && "Could not query current working directory.");
283 return Path(pathname);
288 test_dir(char buf[PATH_MAX], char ret[PATH_MAX],
289 const char *dir, const char *bin)
293 snprintf(buf, PATH_MAX, "%s//%s", dir, bin);
294 if (realpath(buf, ret) == NULL)
296 if (stat(buf, &sb) != 0)
303 getprogpath(char ret[PATH_MAX], const char *bin)
305 char *pv, *s, *t, buf[PATH_MAX];
307 /* First approach: absolute path. */
309 if (test_dir(buf, ret, "/", bin) == 0)
314 /* Second approach: relative path. */
315 if (strchr(bin, '/') != NULL) {
316 if (getcwd(buf, PATH_MAX) == NULL)
318 if (test_dir(buf, ret, buf, bin) == 0)
323 /* Third approach: $PATH */
324 if ((pv = getenv("PATH")) == NULL)
329 while ((t = strsep(&s, ":")) != NULL) {
330 if (test_dir(buf, ret, t, bin) == 0) {
340 /// GetMainExecutable - Return the path to the main executable, given the
341 /// value of argv[0] from program startup.
342 Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
343 #if defined(__APPLE__)
344 // On OS X the executable path is saved to the stack by dyld. Reading it
345 // from there is much faster than calling dladdr, especially for large
346 // binaries with symbols.
347 char exe_path[MAXPATHLEN];
348 uint32_t size = sizeof(exe_path);
349 if (_NSGetExecutablePath(exe_path, &size) == 0) {
350 char link_path[MAXPATHLEN];
351 return Path(std::string(realpath(exe_path, link_path)));
353 #elif defined(__FreeBSD__)
354 char exe_path[PATH_MAX];
356 if (getprogpath(exe_path, argv0) != NULL)
357 return Path(std::string(exe_path));
358 #elif defined(__linux__) || defined(__CYGWIN__)
359 char exe_path[MAXPATHLEN];
360 ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path));
362 return Path(std::string(exe_path, len));
363 #elif defined(HAVE_DLFCN_H)
364 // Use dladdr to get executable path if available.
366 int err = dladdr(MainAddr, &DLInfo);
370 // If the filename is a symlink, we need to resolve and return the location of
371 // the actual executable.
372 char link_path[MAXPATHLEN];
373 return Path(std::string(realpath(DLInfo.dli_fname, link_path)));
379 std::string Path::getDirname() const {
380 return getDirnameCharSep(path, '/');
384 Path::getBasename() const {
385 // Find the last slash
386 std::string::size_type slash = path.rfind('/');
387 if (slash == std::string::npos)
392 std::string::size_type dot = path.rfind('.');
393 if (dot == std::string::npos || dot < slash)
394 return path.substr(slash);
396 return path.substr(slash, dot - slash);
400 Path::getSuffix() const {
401 // Find the last slash
402 std::string::size_type slash = path.rfind('/');
403 if (slash == std::string::npos)
408 std::string::size_type dot = path.rfind('.');
409 if (dot == std::string::npos || dot < slash)
410 return std::string();
412 return path.substr(dot + 1);
415 bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
416 assert(len < 1024 && "Request for magic string too long");
417 SmallVector<char, 128> Buf;
419 char* buf = Buf.data();
420 int fd = ::open(path.c_str(), O_RDONLY);
423 ssize_t bytes_read = ::read(fd, buf, len);
425 if (ssize_t(len) != bytes_read) {
429 Magic.assign(buf,len);
434 Path::exists() const {
435 return 0 == access(path.c_str(), F_OK );
439 Path::isDirectory() const {
441 if (0 != stat(path.c_str(), &buf))
443 return buf.st_mode & S_IFDIR ? true : false;
447 Path::canRead() const {
448 return 0 == access(path.c_str(), R_OK);
452 Path::canWrite() const {
453 return 0 == access(path.c_str(), W_OK);
457 Path::canExecute() const {
458 if (0 != access(path.c_str(), R_OK | X_OK ))
461 if (0 != stat(path.c_str(), &buf))
463 if (!S_ISREG(buf.st_mode))
469 Path::getLast() const {
470 // Find the last slash
471 size_t pos = path.rfind('/');
473 // Handle the corner cases
474 if (pos == std::string::npos)
477 // If the last character is a slash
478 if (pos == path.length()-1) {
479 // Find the second to last slash
480 size_t pos2 = path.rfind('/', pos-1);
481 if (pos2 == std::string::npos)
482 return path.substr(0,pos);
484 return path.substr(pos2+1,pos-pos2-1);
486 // Return everything after the last slash
487 return path.substr(pos+1);
491 PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
492 if (!fsIsValid || update) {
494 if (0 != stat(path.c_str(), &buf)) {
495 MakeErrMsg(ErrStr, path + ": can't get status of file");
498 status.fileSize = buf.st_size;
499 status.modTime.fromEpochTime(buf.st_mtime);
500 status.mode = buf.st_mode;
501 status.user = buf.st_uid;
502 status.group = buf.st_gid;
503 status.uniqueID = uint64_t(buf.st_ino);
504 status.isDir = S_ISDIR(buf.st_mode);
505 status.isFile = S_ISREG(buf.st_mode);
511 static bool AddPermissionBits(const Path &File, int bits) {
512 // Get the umask value from the operating system. We want to use it
513 // when changing the file's permissions. Since calling umask() sets
514 // the umask and returns its old value, we must call it a second
515 // time to reset it to the user's preference.
516 int mask = umask(0777); // The arg. to umask is arbitrary.
517 umask(mask); // Restore the umask.
519 // Get the file's current mode.
521 if (0 != stat(File.c_str(), &buf))
523 // Change the file to have whichever permissions bits from 'bits'
524 // that the umask would not disable.
525 if ((chmod(File.c_str(), (buf.st_mode | (bits & ~mask)))) == -1)
530 bool Path::makeReadableOnDisk(std::string* ErrMsg) {
531 if (!AddPermissionBits(*this, 0444))
532 return MakeErrMsg(ErrMsg, path + ": can't make file readable");
536 bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
537 if (!AddPermissionBits(*this, 0222))
538 return MakeErrMsg(ErrMsg, path + ": can't make file writable");
542 bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
543 if (!AddPermissionBits(*this, 0111))
544 return MakeErrMsg(ErrMsg, path + ": can't make file executable");
549 Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
550 DIR* direntries = ::opendir(path.c_str());
552 return MakeErrMsg(ErrMsg, path + ": can't open directory");
554 std::string dirPath = path;
555 if (!lastIsSlash(dirPath))
559 struct dirent* de = ::readdir(direntries);
560 for ( ; de != 0; de = ::readdir(direntries)) {
561 if (de->d_name[0] != '.') {
562 Path aPath(dirPath + (const char*)de->d_name);
564 if (0 != lstat(aPath.path.c_str(), &st)) {
565 if (S_ISLNK(st.st_mode))
566 continue; // dangling symlink -- ignore
567 return MakeErrMsg(ErrMsg,
568 aPath.path + ": can't determine file object type");
570 result.insert(aPath);
574 closedir(direntries);
579 Path::set(const std::string& a_path) {
582 std::string save(path);
592 Path::appendComponent(const std::string& name) {
595 std::string save(path);
596 if (!lastIsSlash(path))
607 Path::eraseComponent() {
608 size_t slashpos = path.rfind('/',path.size());
609 if (slashpos == 0 || slashpos == std::string::npos) {
613 if (slashpos == path.size() - 1)
614 slashpos = path.rfind('/',slashpos-1);
615 if (slashpos == std::string::npos) {
619 path.erase(slashpos);
624 Path::appendSuffix(const std::string& suffix) {
625 std::string save(path);
636 Path::eraseSuffix() {
637 std::string save = path;
638 size_t dotpos = path.rfind('.',path.size());
639 size_t slashpos = path.rfind('/',path.size());
640 if (dotpos != std::string::npos) {
641 if (slashpos == std::string::npos || dotpos > slashpos+1) {
642 path.erase(dotpos, path.size()-dotpos);
651 static bool createDirectoryHelper(char* beg, char* end, bool create_parents) {
653 if (access(beg, R_OK | W_OK) == 0)
656 if (create_parents) {
660 for (; c != beg; --c)
663 // Recurse to handling the parent directory.
665 bool x = createDirectoryHelper(beg, c, create_parents);
668 // Return if we encountered an error.
676 return mkdir(beg, S_IRWXU | S_IRWXG) != 0;
680 Path::createDirectoryOnDisk( bool create_parents, std::string* ErrMsg ) {
681 // Get a writeable copy of the path name
682 char pathname[MAXPATHLEN];
683 path.copy(pathname,MAXPATHLEN);
685 // Null-terminate the last component
686 size_t lastchar = path.length() - 1 ;
688 if (pathname[lastchar] != '/')
691 pathname[lastchar] = 0;
693 if (createDirectoryHelper(pathname, pathname+lastchar, create_parents))
694 return MakeErrMsg(ErrMsg,
695 std::string(pathname) + ": can't create directory");
701 Path::createFileOnDisk(std::string* ErrMsg) {
703 int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR);
705 return MakeErrMsg(ErrMsg, path + ": can't create file");
711 Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
712 // Make this into a unique file name
713 if (makeUnique( reuse_current, ErrMsg ))
717 int fd = ::open(path.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0666);
719 return MakeErrMsg(ErrMsg, path + ": can't create temporary file");
725 Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
726 // Get the status so we can determin if its a file or directory
728 if (0 != stat(path.c_str(), &buf)) {
729 MakeErrMsg(ErrStr, path + ": can't get status of file");
733 // Note: this check catches strange situations. In all cases, LLVM should
734 // only be involved in the creation and deletion of regular files. This
735 // check ensures that what we're trying to erase is a regular file. It
736 // effectively prevents LLVM from erasing things like /dev/null, any block
737 // special file, or other things that aren't "regular" files.
738 if (S_ISREG(buf.st_mode)) {
739 if (unlink(path.c_str()) != 0)
740 return MakeErrMsg(ErrStr, path + ": can't destroy file");
744 if (!S_ISDIR(buf.st_mode)) {
745 if (ErrStr) *ErrStr = "not a file or directory";
749 if (remove_contents) {
750 // Recursively descend the directory to remove its contents.
751 std::string cmd = "/bin/rm -rf " + path;
752 if (system(cmd.c_str()) != 0) {
753 MakeErrMsg(ErrStr, path + ": failed to recursively remove directory.");
759 // Otherwise, try to just remove the one directory.
760 char pathname[MAXPATHLEN];
761 path.copy(pathname, MAXPATHLEN);
762 size_t lastchar = path.length() - 1;
763 if (pathname[lastchar] == '/')
764 pathname[lastchar] = 0;
766 pathname[lastchar+1] = 0;
768 if (rmdir(pathname) != 0)
769 return MakeErrMsg(ErrStr,
770 std::string(pathname) + ": can't erase directory");
775 Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
776 if (0 != ::rename(path.c_str(), newName.c_str()))
777 return MakeErrMsg(ErrMsg, std::string("can't rename '") + path + "' as '" +
778 newName.str() + "'");
783 Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrStr) const {
785 utb.actime = si.modTime.toPosixTime();
786 utb.modtime = utb.actime;
787 if (0 != ::utime(path.c_str(),&utb))
788 return MakeErrMsg(ErrStr, path + ": can't set file modification time");
789 if (0 != ::chmod(path.c_str(),si.mode))
790 return MakeErrMsg(ErrStr, path + ": can't set mode");
795 sys::CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg){
798 inFile = ::open(Src.c_str(), O_RDONLY);
800 return MakeErrMsg(ErrMsg, Src.str() +
801 ": can't open source file to copy");
803 outFile = ::open(Dest.c_str(), O_WRONLY|O_CREAT, 0666);
806 return MakeErrMsg(ErrMsg, Dest.str() +
807 ": can't create destination file for copy");
810 char Buffer[16*1024];
811 while (ssize_t Amt = ::read(inFile, Buffer, 16*1024)) {
813 if (errno != EINTR && errno != EAGAIN) {
816 return MakeErrMsg(ErrMsg, Src.str()+": can't read source file");
819 char *BufPtr = Buffer;
821 ssize_t AmtWritten = ::write(outFile, BufPtr, Amt);
822 if (AmtWritten == -1) {
823 if (errno != EINTR && errno != EAGAIN) {
826 return MakeErrMsg(ErrMsg, Dest.str() +
827 ": can't write destination file");
831 BufPtr += AmtWritten;
842 Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
843 if (reuse_current && !exists())
844 return false; // File doesn't exist already, just use it!
846 // Append an XXXXXX pattern to the end of the file for use with mkstemp,
847 // mktemp or our own implementation.
848 SmallVector<char, 128> Buf;
849 Buf.resize(path.size()+8);
850 char *FNBuffer = Buf.data();
851 path.copy(FNBuffer,path.size());
853 strcpy(FNBuffer+path.size(), "/XXXXXX");
855 strcpy(FNBuffer+path.size(), "-XXXXXX");
857 #if defined(HAVE_MKSTEMP)
859 if ((TempFD = mkstemp(FNBuffer)) == -1)
860 return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
862 // We don't need to hold the temp file descriptor... we will trust that no one
863 // will overwrite/delete the file before we can open it again.
868 #elif defined(HAVE_MKTEMP)
869 // If we don't have mkstemp, use the old and obsolete mktemp function.
870 if (mktemp(FNBuffer) == 0)
871 return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
876 // Okay, looks like we have to do it all by our lonesome.
877 static unsigned FCounter = 0;
878 unsigned offset = path.size() + 1;
879 while ( FCounter < 999999 && exists()) {
880 sprintf(FNBuffer+offset,"%06u",++FCounter);
883 if (FCounter > 999999)
884 return MakeErrMsg(ErrMsg,
885 path + ": can't make unique filename: too many files");
890 const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
891 int Flags = MAP_PRIVATE;
895 void *BasePtr = ::mmap(0, FileSize, PROT_READ, Flags, FD, 0);
896 if (BasePtr == MAP_FAILED)
898 return (const char*)BasePtr;
901 void Path::UnMapFilePages(const char *BasePtr, uint64_t FileSize) {
902 ::munmap((void*)BasePtr, FileSize);
905 } // end llvm namespace