Remove Path::makeExecutableOnDisk.
[oota-llvm.git] / lib / Support / Unix / Path.inc
1 //===- llvm/Support/Unix/Path.cpp - Unix Path Implementation -----*- C++ -*-===//
2 //
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 //
10 // This file implements the Unix specific portion of the Path class.
11 //
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"
20 #if HAVE_SYS_STAT_H
21 #include <sys/stat.h>
22 #endif
23 #if HAVE_FCNTL_H
24 #include <fcntl.h>
25 #endif
26 #ifdef HAVE_SYS_MMAN_H
27 #include <sys/mman.h>
28 #endif
29 #ifdef HAVE_SYS_STAT_H
30 #include <sys/stat.h>
31 #endif
32 #if HAVE_UTIME_H
33 #include <utime.h>
34 #endif
35 #if HAVE_TIME_H
36 #include <time.h>
37 #endif
38 #if HAVE_DIRENT_H
39 # include <dirent.h>
40 # define NAMLEN(dirent) strlen((dirent)->d_name)
41 #else
42 # define dirent direct
43 # define NAMLEN(dirent) (dirent)->d_namlen
44 # if HAVE_SYS_NDIR_H
45 #  include <sys/ndir.h>
46 # endif
47 # if HAVE_SYS_DIR_H
48 #  include <sys/dir.h>
49 # endif
50 # if HAVE_NDIR_H
51 #  include <ndir.h>
52 # endif
53 #endif
54
55 #if HAVE_DLFCN_H
56 #include <dlfcn.h>
57 #endif
58
59 #ifdef __APPLE__
60 #include <mach-o/dyld.h>
61 #endif
62
63 // For GNU Hurd
64 #if defined(__GNU__) && !defined(MAXPATHLEN)
65 # define MAXPATHLEN 4096
66 #endif
67
68 // Put in a hack for Cygwin which falsely reports that the mkdtemp function
69 // is available when it is not.
70 #ifdef __CYGWIN__
71 # undef HAVE_MKDTEMP
72 #endif
73
74 namespace {
75 inline bool lastIsSlash(const std::string& path) {
76   return !path.empty() && path[path.length() - 1] == '/';
77 }
78
79 }
80
81 namespace llvm {
82 using namespace sys;
83
84 const char sys::PathSeparator = ':';
85
86 StringRef Path::GetEXESuffix() {
87   return StringRef();
88 }
89
90 Path::Path(StringRef p)
91   : path(p) {}
92
93 Path::Path(const char *StrStart, unsigned StrLen)
94   : path(StrStart, StrLen) {}
95
96 Path&
97 Path::operator=(StringRef that) {
98   path.assign(that.data(), that.size());
99   return *this;
100 }
101
102 bool
103 Path::isValid() const {
104   // Empty paths are considered invalid here.
105   // This code doesn't check MAXPATHLEN because there's no need. Nothing in
106   // LLVM manipulates Paths with fixed-sizes arrays, and if the OS can't
107   // handle names longer than some limit, it'll report this on demand using
108   // ENAMETOLONG.
109   return !path.empty();
110 }
111
112 bool
113 Path::isAbsolute(const char *NameStart, unsigned NameLen) {
114   assert(NameStart);
115   if (NameLen == 0)
116     return false;
117   return NameStart[0] == '/';
118 }
119
120 bool
121 Path::isAbsolute() const {
122   if (path.empty())
123     return false;
124   return path[0] == '/';
125 }
126
127 Path
128 Path::GetTemporaryDirectory(std::string *ErrMsg) {
129 #if defined(HAVE_MKDTEMP)
130   // The best way is with mkdtemp but that's not available on many systems,
131   // Linux and FreeBSD have it. Others probably won't.
132   char pathname[] = "/tmp/llvm_XXXXXX";
133   if (0 == mkdtemp(pathname)) {
134     MakeErrMsg(ErrMsg,
135                std::string(pathname) + ": can't create temporary directory");
136     return Path();
137   }
138   return Path(pathname);
139 #elif defined(HAVE_MKSTEMP)
140   // If no mkdtemp is available, mkstemp can be used to create a temporary file
141   // which is then removed and created as a directory. We prefer this over
142   // mktemp because of mktemp's inherent security and threading risks. We still
143   // have a slight race condition from the time the temporary file is created to
144   // the time it is re-created as a directoy.
145   char pathname[] = "/tmp/llvm_XXXXXX";
146   int fd = 0;
147   if (-1 == (fd = mkstemp(pathname))) {
148     MakeErrMsg(ErrMsg,
149       std::string(pathname) + ": can't create temporary directory");
150     return Path();
151   }
152   ::close(fd);
153   ::unlink(pathname); // start race condition, ignore errors
154   if (-1 == ::mkdir(pathname, S_IRWXU)) { // end race condition
155     MakeErrMsg(ErrMsg,
156       std::string(pathname) + ": can't create temporary directory");
157     return Path();
158   }
159   return Path(pathname);
160 #elif defined(HAVE_MKTEMP)
161   // If a system doesn't have mkdtemp(3) or mkstemp(3) but it does have
162   // mktemp(3) then we'll assume that system (e.g. AIX) has a reasonable
163   // implementation of mktemp(3) and doesn't follow BSD 4.3's lead of replacing
164   // the XXXXXX with the pid of the process and a letter. That leads to only
165   // twenty six temporary files that can be generated.
166   char pathname[] = "/tmp/llvm_XXXXXX";
167   char *TmpName = ::mktemp(pathname);
168   if (TmpName == 0) {
169     MakeErrMsg(ErrMsg,
170       std::string(TmpName) + ": can't create unique directory name");
171     return Path();
172   }
173   if (-1 == ::mkdir(TmpName, S_IRWXU)) {
174     MakeErrMsg(ErrMsg,
175         std::string(TmpName) + ": can't create temporary directory");
176     return Path();
177   }
178   return Path(TmpName);
179 #else
180   // This is the worst case implementation. tempnam(3) leaks memory unless its
181   // on an SVID2 (or later) system. On BSD 4.3 it leaks. tmpnam(3) has thread
182   // issues. The mktemp(3) function doesn't have enough variability in the
183   // temporary name generated. So, we provide our own implementation that
184   // increments an integer from a random number seeded by the current time. This
185   // should be sufficiently unique that we don't have many collisions between
186   // processes. Generally LLVM processes don't run very long and don't use very
187   // many temporary files so this shouldn't be a big issue for LLVM.
188   static time_t num = ::time(0);
189   char pathname[MAXPATHLEN];
190   do {
191     num++;
192     sprintf(pathname, "/tmp/llvm_%010u", unsigned(num));
193   } while ( 0 == access(pathname, F_OK ) );
194   if (-1 == ::mkdir(pathname, S_IRWXU)) {
195     MakeErrMsg(ErrMsg,
196       std::string(pathname) + ": can't create temporary directory");
197     return Path();
198   }
199   return Path(pathname);
200 #endif
201 }
202
203 Path
204 Path::GetCurrentDirectory() {
205   char pathname[MAXPATHLEN];
206   if (!getcwd(pathname, MAXPATHLEN)) {
207     assert(false && "Could not query current working directory.");
208     return Path();
209   }
210
211   return Path(pathname);
212 }
213
214 #if defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
215     defined(__OpenBSD__) || defined(__minix) || defined(__FreeBSD_kernel__) || \
216     defined(__linux__) || defined(__CYGWIN__)
217 static int
218 test_dir(char buf[PATH_MAX], char ret[PATH_MAX],
219     const char *dir, const char *bin)
220 {
221   struct stat sb;
222
223   snprintf(buf, PATH_MAX, "%s/%s", dir, bin);
224   if (realpath(buf, ret) == NULL)
225     return (1);
226   if (stat(buf, &sb) != 0)
227     return (1);
228
229   return (0);
230 }
231
232 static char *
233 getprogpath(char ret[PATH_MAX], const char *bin)
234 {
235   char *pv, *s, *t, buf[PATH_MAX];
236
237   /* First approach: absolute path. */
238   if (bin[0] == '/') {
239     if (test_dir(buf, ret, "/", bin) == 0)
240       return (ret);
241     return (NULL);
242   }
243
244   /* Second approach: relative path. */
245   if (strchr(bin, '/') != NULL) {
246     if (getcwd(buf, PATH_MAX) == NULL)
247       return (NULL);
248     if (test_dir(buf, ret, buf, bin) == 0)
249       return (ret);
250     return (NULL);
251   }
252
253   /* Third approach: $PATH */
254   if ((pv = getenv("PATH")) == NULL)
255     return (NULL);
256   s = pv = strdup(pv);
257   if (pv == NULL)
258     return (NULL);
259   while ((t = strsep(&s, ":")) != NULL) {
260     if (test_dir(buf, ret, t, bin) == 0) {
261       free(pv);
262       return (ret);
263     }
264   }
265   free(pv);
266   return (NULL);
267 }
268 #endif // __FreeBSD__ || __NetBSD__ || __FreeBSD_kernel__
269
270 /// GetMainExecutable - Return the path to the main executable, given the
271 /// value of argv[0] from program startup.
272 Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
273 #if defined(__APPLE__)
274   // On OS X the executable path is saved to the stack by dyld. Reading it
275   // from there is much faster than calling dladdr, especially for large
276   // binaries with symbols.
277   char exe_path[MAXPATHLEN];
278   uint32_t size = sizeof(exe_path);
279   if (_NSGetExecutablePath(exe_path, &size) == 0) {
280     char link_path[MAXPATHLEN];
281     if (realpath(exe_path, link_path))
282       return Path(link_path);
283   }
284 #elif defined(__FreeBSD__) || defined (__NetBSD__) || defined(__Bitrig__) || \
285       defined(__OpenBSD__) || defined(__minix) || defined(__FreeBSD_kernel__)
286   char exe_path[PATH_MAX];
287
288   if (getprogpath(exe_path, argv0) != NULL)
289     return Path(exe_path);
290 #elif defined(__linux__) || defined(__CYGWIN__)
291   char exe_path[MAXPATHLEN];
292   StringRef aPath("/proc/self/exe");
293   if (sys::fs::exists(aPath)) {
294       // /proc is not always mounted under Linux (chroot for example).
295       ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
296       if (len >= 0)
297           return Path(StringRef(exe_path, len));
298   } else {
299       // Fall back to the classical detection.
300       if (getprogpath(exe_path, argv0) != NULL)
301           return Path(exe_path);
302   }
303 #elif defined(HAVE_DLFCN_H)
304   // Use dladdr to get executable path if available.
305   Dl_info DLInfo;
306   int err = dladdr(MainAddr, &DLInfo);
307   if (err == 0)
308     return Path();
309
310   // If the filename is a symlink, we need to resolve and return the location of
311   // the actual executable.
312   char link_path[MAXPATHLEN];
313   if (realpath(DLInfo.dli_fname, link_path))
314     return Path(link_path);
315 #else
316 #error GetMainExecutable is not implemented on this host yet.
317 #endif
318   return Path();
319 }
320
321
322 StringRef
323 Path::getSuffix() const {
324   // Find the last slash
325   std::string::size_type slash = path.rfind('/');
326   if (slash == std::string::npos)
327     slash = 0;
328   else
329     slash++;
330
331   std::string::size_type dot = path.rfind('.');
332   if (dot == std::string::npos || dot < slash)
333     return StringRef();
334   else
335     return StringRef(path).substr(dot + 1);
336 }
337
338 bool Path::getMagicNumber(std::string &Magic, unsigned len) const {
339   assert(len < 1024 && "Request for magic string too long");
340   char Buf[1025];
341   int fd = ::open(path.c_str(), O_RDONLY);
342   if (fd < 0)
343     return false;
344   ssize_t bytes_read = ::read(fd, Buf, len);
345   ::close(fd);
346   if (ssize_t(len) != bytes_read)
347     return false;
348   Magic.assign(Buf, len);
349   return true;
350 }
351
352 bool
353 Path::exists() const {
354   return 0 == access(path.c_str(), F_OK );
355 }
356
357 bool
358 Path::isDirectory() const {
359   struct stat buf;
360   if (0 != stat(path.c_str(), &buf))
361     return false;
362   return ((buf.st_mode & S_IFMT) == S_IFDIR) ? true : false;
363 }
364
365 bool
366 Path::isSymLink() const {
367   struct stat buf;
368   if (0 != lstat(path.c_str(), &buf))
369     return false;
370   return S_ISLNK(buf.st_mode);
371 }
372
373
374 bool
375 Path::canRead() const {
376   return 0 == access(path.c_str(), R_OK);
377 }
378
379 bool
380 Path::canWrite() const {
381   return 0 == access(path.c_str(), W_OK);
382 }
383
384 bool
385 Path::isRegularFile() const {
386   // Get the status so we can determine if it's a file or directory
387   struct stat buf;
388
389   if (0 != stat(path.c_str(), &buf))
390     return false;
391
392   if (S_ISREG(buf.st_mode))
393     return true;
394
395   return false;
396 }
397
398 bool
399 Path::canExecute() const {
400   if (0 != access(path.c_str(), R_OK | X_OK ))
401     return false;
402   struct stat buf;
403   if (0 != stat(path.c_str(), &buf))
404     return false;
405   if (!S_ISREG(buf.st_mode))
406     return false;
407   return true;
408 }
409
410 const FileStatus *
411 PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
412   if (!fsIsValid || update) {
413     struct stat buf;
414     if (0 != stat(path.c_str(), &buf)) {
415       MakeErrMsg(ErrStr, path + ": can't get status of file");
416       return 0;
417     }
418     status.fileSize = buf.st_size;
419     status.modTime.fromEpochTime(buf.st_mtime);
420     status.mode = buf.st_mode;
421     status.user = buf.st_uid;
422     status.group = buf.st_gid;
423     status.uniqueID = uint64_t(buf.st_ino);
424     status.isDir  = S_ISDIR(buf.st_mode);
425     status.isFile = S_ISREG(buf.st_mode);
426     fsIsValid = true;
427   }
428   return &status;
429 }
430
431 static bool AddPermissionBits(const Path &File, int bits) {
432   // Get the umask value from the operating system.  We want to use it
433   // when changing the file's permissions. Since calling umask() sets
434   // the umask and returns its old value, we must call it a second
435   // time to reset it to the user's preference.
436   int mask = umask(0777); // The arg. to umask is arbitrary.
437   umask(mask);            // Restore the umask.
438
439   // Get the file's current mode.
440   struct stat buf;
441   if (0 != stat(File.c_str(), &buf))
442     return false;
443   // Change the file to have whichever permissions bits from 'bits'
444   // that the umask would not disable.
445   if ((chmod(File.c_str(), (buf.st_mode | (bits & ~mask)))) == -1)
446       return false;
447   return true;
448 }
449
450 bool Path::makeReadableOnDisk(std::string* ErrMsg) {
451   if (!AddPermissionBits(*this, 0444))
452     return MakeErrMsg(ErrMsg, path + ": can't make file readable");
453   return false;
454 }
455
456 bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
457   if (!AddPermissionBits(*this, 0222))
458     return MakeErrMsg(ErrMsg, path + ": can't make file writable");
459   return false;
460 }
461
462 bool
463 Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
464   DIR* direntries = ::opendir(path.c_str());
465   if (direntries == 0)
466     return MakeErrMsg(ErrMsg, path + ": can't open directory");
467
468   std::string dirPath = path;
469   if (!lastIsSlash(dirPath))
470     dirPath += '/';
471
472   result.clear();
473   struct dirent* de = ::readdir(direntries);
474   for ( ; de != 0; de = ::readdir(direntries)) {
475     if (de->d_name[0] != '.') {
476       Path aPath(dirPath + (const char*)de->d_name);
477       struct stat st;
478       if (0 != lstat(aPath.path.c_str(), &st)) {
479         if (S_ISLNK(st.st_mode))
480           continue; // dangling symlink -- ignore
481         return MakeErrMsg(ErrMsg,
482                           aPath.path +  ": can't determine file object type");
483       }
484       result.insert(aPath);
485     }
486   }
487
488   closedir(direntries);
489   return false;
490 }
491
492 bool
493 Path::set(StringRef a_path) {
494   if (a_path.empty())
495     return false;
496   path = a_path;
497   return true;
498 }
499
500 bool
501 Path::appendComponent(StringRef name) {
502   if (name.empty())
503     return false;
504   if (!lastIsSlash(path))
505     path += '/';
506   path += name;
507   return true;
508 }
509
510 bool
511 Path::eraseComponent() {
512   size_t slashpos = path.rfind('/',path.size());
513   if (slashpos == 0 || slashpos == std::string::npos) {
514     path.erase();
515     return true;
516   }
517   if (slashpos == path.size() - 1)
518     slashpos = path.rfind('/',slashpos-1);
519   if (slashpos == std::string::npos) {
520     path.erase();
521     return true;
522   }
523   path.erase(slashpos);
524   return true;
525 }
526
527 bool
528 Path::eraseSuffix() {
529   size_t dotpos = path.rfind('.',path.size());
530   size_t slashpos = path.rfind('/',path.size());
531   if (dotpos != std::string::npos) {
532     if (slashpos == std::string::npos || dotpos > slashpos+1) {
533       path.erase(dotpos, path.size()-dotpos);
534       return true;
535     }
536   }
537   return false;
538 }
539
540 static bool createDirectoryHelper(char* beg, char* end, bool create_parents) {
541
542   if (access(beg, R_OK | W_OK) == 0)
543     return false;
544
545   if (create_parents) {
546
547     char* c = end;
548
549     for (; c != beg; --c)
550       if (*c == '/') {
551
552         // Recurse to handling the parent directory.
553         *c = '\0';
554         bool x = createDirectoryHelper(beg, c, create_parents);
555         *c = '/';
556
557         // Return if we encountered an error.
558         if (x)
559           return true;
560
561         break;
562       }
563   }
564
565   return mkdir(beg, S_IRWXU | S_IRWXG) != 0;
566 }
567
568 bool
569 Path::createDirectoryOnDisk( bool create_parents, std::string* ErrMsg ) {
570   // Get a writeable copy of the path name
571   std::string pathname(path);
572
573   // Null-terminate the last component
574   size_t lastchar = path.length() - 1 ;
575
576   if (pathname[lastchar] != '/')
577     ++lastchar;
578
579   pathname[lastchar] = '\0';
580
581   if (createDirectoryHelper(&pathname[0], &pathname[lastchar], create_parents))
582     return MakeErrMsg(ErrMsg, pathname + ": can't create directory");
583
584   return false;
585 }
586
587 bool
588 Path::createFileOnDisk(std::string* ErrMsg) {
589   // Create the file
590   int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR);
591   if (fd < 0)
592     return MakeErrMsg(ErrMsg, path + ": can't create file");
593   ::close(fd);
594   return false;
595 }
596
597 bool
598 Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
599   // Make this into a unique file name
600   if (makeUnique( reuse_current, ErrMsg ))
601     return true;
602
603   // create the file
604   int fd = ::open(path.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0666);
605   if (fd < 0)
606     return MakeErrMsg(ErrMsg, path + ": can't create temporary file");
607   ::close(fd);
608   return false;
609 }
610
611 bool
612 Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
613   // Get the status so we can determine if it's a file or directory.
614   struct stat buf;
615   if (0 != stat(path.c_str(), &buf)) {
616     MakeErrMsg(ErrStr, path + ": can't get status of file");
617     return true;
618   }
619
620   // Note: this check catches strange situations. In all cases, LLVM should
621   // only be involved in the creation and deletion of regular files.  This
622   // check ensures that what we're trying to erase is a regular file. It
623   // effectively prevents LLVM from erasing things like /dev/null, any block
624   // special file, or other things that aren't "regular" files.
625   if (S_ISREG(buf.st_mode)) {
626     if (unlink(path.c_str()) != 0)
627       return MakeErrMsg(ErrStr, path + ": can't destroy file");
628     return false;
629   }
630
631   if (!S_ISDIR(buf.st_mode)) {
632     if (ErrStr) *ErrStr = "not a file or directory";
633     return true;
634   }
635
636   if (remove_contents) {
637     // Recursively descend the directory to remove its contents.
638     std::string cmd = "/bin/rm -rf " + path;
639     if (system(cmd.c_str()) != 0) {
640       MakeErrMsg(ErrStr, path + ": failed to recursively remove directory.");
641       return true;
642     }
643     return false;
644   }
645
646   // Otherwise, try to just remove the one directory.
647   std::string pathname(path);
648   size_t lastchar = path.length() - 1;
649   if (pathname[lastchar] == '/')
650     pathname[lastchar] = '\0';
651   else
652     pathname[lastchar+1] = '\0';
653
654   if (rmdir(pathname.c_str()) != 0)
655     return MakeErrMsg(ErrStr, pathname + ": can't erase directory");
656   return false;
657 }
658
659 bool
660 Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
661   if (0 != ::rename(path.c_str(), newName.c_str()))
662     return MakeErrMsg(ErrMsg, std::string("can't rename '") + path + "' as '" +
663                newName.str() + "'");
664   return false;
665 }
666
667 bool
668 Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrStr) const {
669   struct utimbuf utb;
670   utb.actime = si.modTime.toPosixTime();
671   utb.modtime = utb.actime;
672   if (0 != ::utime(path.c_str(),&utb))
673     return MakeErrMsg(ErrStr, path + ": can't set file modification time");
674   if (0 != ::chmod(path.c_str(),si.mode))
675     return MakeErrMsg(ErrStr, path + ": can't set mode");
676   return false;
677 }
678
679 bool
680 sys::CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg){
681   int inFile = -1;
682   int outFile = -1;
683   inFile = ::open(Src.c_str(), O_RDONLY);
684   if (inFile == -1)
685     return MakeErrMsg(ErrMsg, Src.str() +
686       ": can't open source file to copy");
687
688   outFile = ::open(Dest.c_str(), O_WRONLY|O_CREAT, 0666);
689   if (outFile == -1) {
690     ::close(inFile);
691     return MakeErrMsg(ErrMsg, Dest.str() +
692       ": can't create destination file for copy");
693   }
694
695   char Buffer[16*1024];
696   while (ssize_t Amt = ::read(inFile, Buffer, 16*1024)) {
697     if (Amt == -1) {
698       if (errno != EINTR && errno != EAGAIN) {
699         ::close(inFile);
700         ::close(outFile);
701         return MakeErrMsg(ErrMsg, Src.str()+": can't read source file");
702       }
703     } else {
704       char *BufPtr = Buffer;
705       while (Amt) {
706         ssize_t AmtWritten = ::write(outFile, BufPtr, Amt);
707         if (AmtWritten == -1) {
708           if (errno != EINTR && errno != EAGAIN) {
709             ::close(inFile);
710             ::close(outFile);
711             return MakeErrMsg(ErrMsg, Dest.str() +
712               ": can't write destination file");
713           }
714         } else {
715           Amt -= AmtWritten;
716           BufPtr += AmtWritten;
717         }
718       }
719     }
720   }
721   ::close(inFile);
722   ::close(outFile);
723   return false;
724 }
725
726 bool
727 Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
728   bool Exists;
729   if (reuse_current && (fs::exists(path, Exists) || !Exists))
730     return false; // File doesn't exist already, just use it!
731
732   // Append an XXXXXX pattern to the end of the file for use with mkstemp,
733   // mktemp or our own implementation.
734   // This uses std::vector instead of SmallVector to avoid a dependence on
735   // libSupport. And performance isn't critical here.
736   std::vector<char> Buf;
737   Buf.resize(path.size()+8);
738   char *FNBuffer = &Buf[0];
739     path.copy(FNBuffer,path.size());
740   bool isdir;
741   if (!fs::is_directory(path, isdir) && isdir)
742     strcpy(FNBuffer+path.size(), "/XXXXXX");
743   else
744     strcpy(FNBuffer+path.size(), "-XXXXXX");
745
746 #if defined(HAVE_MKSTEMP)
747   int TempFD;
748   if ((TempFD = mkstemp(FNBuffer)) == -1)
749     return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
750
751   // We don't need to hold the temp file descriptor... we will trust that no one
752   // will overwrite/delete the file before we can open it again.
753   close(TempFD);
754
755   // Save the name
756   path = FNBuffer;
757
758   // By default mkstemp sets the mode to 0600, so update mode bits now.
759   AddPermissionBits (*this, 0666);
760 #elif defined(HAVE_MKTEMP)
761   // If we don't have mkstemp, use the old and obsolete mktemp function.
762   if (mktemp(FNBuffer) == 0)
763     return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
764
765   // Save the name
766   path = FNBuffer;
767 #else
768   // Okay, looks like we have to do it all by our lonesome.
769   static unsigned FCounter = 0;
770   // Try to initialize with unique value.
771   if (FCounter == 0) FCounter = ((unsigned)getpid() & 0xFFFF) << 8;
772   char* pos = strstr(FNBuffer, "XXXXXX");
773   do {
774     if (++FCounter > 0xFFFFFF) {
775       return MakeErrMsg(ErrMsg,
776         path + ": can't make unique filename: too many files");
777     }
778     sprintf(pos, "%06X", FCounter);
779     path = FNBuffer;
780   } while (exists());
781   // POSSIBLE SECURITY BUG: An attacker can easily guess the name and exploit
782   // LLVM.
783 #endif
784   return false;
785 }
786
787 const char *Path::MapInFilePages(int FD, size_t FileSize, off_t Offset) {
788   int Flags = MAP_PRIVATE;
789 #ifdef MAP_FILE
790   Flags |= MAP_FILE;
791 #endif
792   void *BasePtr = ::mmap(0, FileSize, PROT_READ, Flags, FD, Offset);
793   if (BasePtr == MAP_FAILED)
794     return 0;
795   return (const char*)BasePtr;
796 }
797
798 void Path::UnMapFilePages(const char *BasePtr, size_t FileSize) {
799   const void *Addr = static_cast<const void *>(BasePtr);
800   ::munmap(const_cast<void *>(Addr), FileSize);
801 }
802
803 } // end llvm namespace