blob: 125a0ab209ca1397d693c2e434cc633f80209607 [file] [log] [blame]
Reid Spencerb89a2232004-08-25 06:20:07 +00001//===- llvm/System/Unix/Path.cpp - Unix Path Implementation -----*- C++ -*-===//
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +00002//
Reid Spencerb89a2232004-08-25 06:20:07 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +00007//
Reid Spencerb89a2232004-08-25 06:20:07 +00008//===----------------------------------------------------------------------===//
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
Reid Spencer8e665952004-08-29 05:24:01 +000016//=== is guaranteed to work on *all* UNIX variants.
Reid Spencerb89a2232004-08-25 06:20:07 +000017//===----------------------------------------------------------------------===//
18
Misha Brukman210b32b2004-12-20 00:16:38 +000019#include "llvm/Config/alloca.h"
Reid Spencerb89a2232004-08-25 06:20:07 +000020#include "Unix.h"
Reid Spenceraf2f2082004-12-27 06:17:15 +000021#if HAVE_SYS_STAT_H
Reid Spencerb89a2232004-08-25 06:20:07 +000022#include <sys/stat.h>
Reid Spenceraf2f2082004-12-27 06:17:15 +000023#endif
24#if HAVE_FCNTL_H
Reid Spencerb89a2232004-08-25 06:20:07 +000025#include <fcntl.h>
Reid Spenceraf2f2082004-12-27 06:17:15 +000026#endif
Chris Lattner14c762d2008-04-01 06:25:23 +000027#ifdef HAVE_SYS_MMAN_H
28#include <sys/mman.h>
29#endif
30#ifdef HAVE_SYS_STAT_H
31#include <sys/stat.h>
32#endif
Reid Spenceraf2f2082004-12-27 06:17:15 +000033#if HAVE_UTIME_H
Reid Spencereaf18152004-11-14 22:08:36 +000034#include <utime.h>
Reid Spenceraf2f2082004-12-27 06:17:15 +000035#endif
36#if HAVE_TIME_H
Reid Spencer69a16162004-12-24 06:29:42 +000037#include <time.h>
Reid Spenceraf2f2082004-12-27 06:17:15 +000038#endif
39#if HAVE_DIRENT_H
40# include <dirent.h>
41# define NAMLEN(dirent) strlen((dirent)->d_name)
42#else
43# define dirent direct
44# define NAMLEN(dirent) (dirent)->d_namlen
45# if HAVE_SYS_NDIR_H
46# include <sys/ndir.h>
47# endif
48# if HAVE_SYS_DIR_H
49# include <sys/dir.h>
50# endif
51# if HAVE_NDIR_H
52# include <ndir.h>
53# endif
54#endif
55
Chris Lattner1a091442008-03-03 02:55:43 +000056#if HAVE_DLFCN_H
57#include <dlfcn.h>
58#endif
59
Reid Spencer932e2e32005-06-02 05:38:20 +000060// Put in a hack for Cygwin which falsely reports that the mkdtemp function
61// is available when it is not.
62#ifdef __CYGWIN__
63# undef HAVE_MKDTEMP
64#endif
Reid Spencerb89a2232004-08-25 06:20:07 +000065
Reid Spencer3be872e2005-07-28 16:25:57 +000066namespace {
67inline bool lastIsSlash(const std::string& path) {
68 return !path.empty() && path[path.length() - 1] == '/';
69}
70
71}
72
Reid Spencer8e665952004-08-29 05:24:01 +000073namespace llvm {
74using namespace sys;
Reid Spencerb89a2232004-08-25 06:20:07 +000075
Chris Lattnere1b332a2008-02-27 06:17:10 +000076extern const char sys::PathSeparator = ':';
77
Nick Lewyckyfff116f2008-05-11 17:37:40 +000078Path::Path(const std::string& p)
79 : path(p) {}
80
81Path::Path(const char *StrStart, unsigned StrLen)
82 : path(StrStart, StrLen) {}
83
Chris Lattner0eab5e22008-08-11 23:39:47 +000084Path&
85Path::operator=(const std::string &that) {
86 path = that;
87 return *this;
88}
89
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +000090bool
Reid Spencer69a16162004-12-24 06:29:42 +000091Path::isValid() const {
Reid Spencer6371ccb2005-07-08 06:53:26 +000092 // Check some obvious things
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +000093 if (path.empty())
Reid Spencer69a16162004-12-24 06:29:42 +000094 return false;
Chris Lattner0f550142009-07-12 19:01:16 +000095 return path.length() < MAXPATHLEN;
Reid Spencer69a16162004-12-24 06:29:42 +000096}
97
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +000098bool
Chris Lattner88d7e402009-06-15 04:17:07 +000099Path::isAbsolute(const char *NameStart, unsigned NameLen) {
100 assert(NameStart);
101 if (NameLen == 0)
102 return false;
103 return NameStart[0] == '/';
104}
105
106bool
Reid Spencer69cce812007-03-29 16:43:20 +0000107Path::isAbsolute() const {
108 if (path.empty())
109 return false;
110 return path[0] == '/';
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000111}
Reid Spencer8e665952004-08-29 05:24:01 +0000112Path
113Path::GetRootDirectory() {
114 Path result;
Reid Spencerdd04df02005-07-07 23:21:43 +0000115 result.set("/");
Reid Spencer8e665952004-08-29 05:24:01 +0000116 return result;
117}
118
Reid Spencer69a16162004-12-24 06:29:42 +0000119Path
Chris Lattnerd18a2c12009-02-19 05:34:35 +0000120Path::GetTemporaryDirectory(std::string *ErrMsg) {
Reid Spencer69a16162004-12-24 06:29:42 +0000121#if defined(HAVE_MKDTEMP)
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000122 // The best way is with mkdtemp but that's not available on many systems,
Reid Spencer69a16162004-12-24 06:29:42 +0000123 // Linux and FreeBSD have it. Others probably won't.
124 char pathname[MAXPATHLEN];
125 strcpy(pathname,"/tmp/llvm_XXXXXX");
Reid Spencer48744762006-08-22 19:01:30 +0000126 if (0 == mkdtemp(pathname)) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000127 MakeErrMsg(ErrMsg,
Reid Spencer48744762006-08-22 19:01:30 +0000128 std::string(pathname) + ": can't create temporary directory");
129 return Path();
130 }
Reid Spencer69a16162004-12-24 06:29:42 +0000131 Path result;
Reid Spencerdd04df02005-07-07 23:21:43 +0000132 result.set(pathname);
Reid Spencer69a16162004-12-24 06:29:42 +0000133 assert(result.isValid() && "mkdtemp didn't create a valid pathname!");
134 return result;
135#elif defined(HAVE_MKSTEMP)
136 // If no mkdtemp is available, mkstemp can be used to create a temporary file
137 // which is then removed and created as a directory. We prefer this over
138 // mktemp because of mktemp's inherent security and threading risks. We still
139 // have a slight race condition from the time the temporary file is created to
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000140 // the time it is re-created as a directoy.
Reid Spencer69a16162004-12-24 06:29:42 +0000141 char pathname[MAXPATHLEN];
142 strcpy(pathname, "/tmp/llvm_XXXXXX");
143 int fd = 0;
Reid Spencer48744762006-08-22 19:01:30 +0000144 if (-1 == (fd = mkstemp(pathname))) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000145 MakeErrMsg(ErrMsg,
Reid Spencer48744762006-08-22 19:01:30 +0000146 std::string(pathname) + ": can't create temporary directory");
147 return Path();
148 }
Reid Spencer69a16162004-12-24 06:29:42 +0000149 ::close(fd);
150 ::unlink(pathname); // start race condition, ignore errors
Reid Spencer48744762006-08-22 19:01:30 +0000151 if (-1 == ::mkdir(pathname, S_IRWXU)) { // end race condition
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000152 MakeErrMsg(ErrMsg,
Reid Spencer48744762006-08-22 19:01:30 +0000153 std::string(pathname) + ": can't create temporary directory");
154 return Path();
155 }
Reid Spencer69a16162004-12-24 06:29:42 +0000156 Path result;
Reid Spencerdd04df02005-07-07 23:21:43 +0000157 result.set(pathname);
Reid Spencer69a16162004-12-24 06:29:42 +0000158 assert(result.isValid() && "mkstemp didn't create a valid pathname!");
159 return result;
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[MAXPATHLEN];
167 strcpy(pathname, "/tmp/llvm_XXXXXX");
168 char *TmpName = ::mktemp(pathname);
Reid Spencer48744762006-08-22 19:01:30 +0000169 if (TmpName == 0) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000170 MakeErrMsg(ErrMsg,
Reid Spencer48744762006-08-22 19:01:30 +0000171 std::string(TmpName) + ": can't create unique directory name");
172 return Path();
173 }
174 if (-1 == ::mkdir(TmpName, S_IRWXU)) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000175 MakeErrMsg(ErrMsg,
Reid Spencer48744762006-08-22 19:01:30 +0000176 std::string(TmpName) + ": can't create temporary directory");
177 return Path();
178 }
Reid Spencer69a16162004-12-24 06:29:42 +0000179 Path result;
Reid Spencerdd04df02005-07-07 23:21:43 +0000180 result.set(TmpName);
Reid Spencer69a16162004-12-24 06:29:42 +0000181 assert(result.isValid() && "mktemp didn't create a valid pathname!");
182 return result;
183#else
184 // This is the worst case implementation. tempnam(3) leaks memory unless its
185 // on an SVID2 (or later) system. On BSD 4.3 it leaks. tmpnam(3) has thread
186 // issues. The mktemp(3) function doesn't have enough variability in the
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000187 // temporary name generated. So, we provide our own implementation that
Reid Spencer69a16162004-12-24 06:29:42 +0000188 // increments an integer from a random number seeded by the current time. This
189 // should be sufficiently unique that we don't have many collisions between
190 // processes. Generally LLVM processes don't run very long and don't use very
191 // many temporary files so this shouldn't be a big issue for LLVM.
192 static time_t num = ::time(0);
193 char pathname[MAXPATHLEN];
194 do {
195 num++;
196 sprintf(pathname, "/tmp/llvm_%010u", unsigned(num));
197 } while ( 0 == access(pathname, F_OK ) );
Reid Spencer48744762006-08-22 19:01:30 +0000198 if (-1 == ::mkdir(pathname, S_IRWXU)) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000199 MakeErrMsg(ErrMsg,
Reid Spencer48744762006-08-22 19:01:30 +0000200 std::string(pathname) + ": can't create temporary directory");
201 return Path();
Reid Spencer51c5a282006-08-23 20:34:57 +0000202 }
Reid Spencer69a16162004-12-24 06:29:42 +0000203 Path result;
Reid Spencerdd04df02005-07-07 23:21:43 +0000204 result.set(pathname);
Reid Spencer69a16162004-12-24 06:29:42 +0000205 assert(result.isValid() && "mkstemp didn't create a valid pathname!");
206 return result;
207#endif
208}
209
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000210void
Reid Spencer1b6b99b2004-12-13 03:00:51 +0000211Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
212#ifdef LTDL_SHLIBPATH_VAR
213 char* env_var = getenv(LTDL_SHLIBPATH_VAR);
214 if (env_var != 0) {
215 getPathList(env_var,Paths);
Reid Spencer74e72612004-09-14 00:16:39 +0000216 }
Reid Spencer1b6b99b2004-12-13 03:00:51 +0000217#endif
218 // FIXME: Should this look at LD_LIBRARY_PATH too?
219 Paths.push_back(sys::Path("/usr/local/lib/"));
220 Paths.push_back(sys::Path("/usr/X11R6/lib/"));
221 Paths.push_back(sys::Path("/usr/lib/"));
222 Paths.push_back(sys::Path("/lib/"));
Reid Spencer74e72612004-09-14 00:16:39 +0000223}
224
Reid Spencer1b6b99b2004-12-13 03:00:51 +0000225void
Gabor Greifa99be512007-07-05 17:07:56 +0000226Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer1b6b99b2004-12-13 03:00:51 +0000227 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
228 if (env_var != 0) {
229 getPathList(env_var,Paths);
230 }
Reid Spencer1b6b99b2004-12-13 03:00:51 +0000231#ifdef LLVM_LIBDIR
232 {
233 Path tmpPath;
Reid Spencerdd04df02005-07-07 23:21:43 +0000234 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000235 if (tmpPath.canRead())
Reid Spencer1b6b99b2004-12-13 03:00:51 +0000236 Paths.push_back(tmpPath);
237 }
238#endif
239 GetSystemLibraryPaths(Paths);
Reid Spencer8e665952004-08-29 05:24:01 +0000240}
241
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000242Path
Reid Spencer8e665952004-08-29 05:24:01 +0000243Path::GetLLVMDefaultConfigDir() {
244 return Path("/etc/llvm/");
245}
246
Reid Spencer8e665952004-08-29 05:24:01 +0000247Path
248Path::GetUserHomeDirectory() {
249 const char* home = getenv("HOME");
250 if (home) {
251 Path result;
Reid Spencerdd04df02005-07-07 23:21:43 +0000252 if (result.set(home))
Reid Spencer8e665952004-08-29 05:24:01 +0000253 return result;
254 }
255 return GetRootDirectory();
256}
257
Ted Kremenek79200782007-12-18 22:07:33 +0000258Path
259Path::GetCurrentDirectory() {
260 char pathname[MAXPATHLEN];
261 if (!getcwd(pathname,MAXPATHLEN)) {
262 assert (false && "Could not query current working directory.");
263 return Path("");
264 }
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000265
Ted Kremenek79200782007-12-18 22:07:33 +0000266 return Path(pathname);
267}
Reid Spencera229c5c2005-07-08 03:08:58 +0000268
Chris Lattner893a0f92009-03-02 22:17:15 +0000269#ifdef __FreeBSD__
270static int
271test_dir(char buf[PATH_MAX], char ret[PATH_MAX],
272 const char *dir, const char *bin)
273{
Bill Wendling51b16f42009-05-30 01:09:53 +0000274 struct stat sb;
Chris Lattner893a0f92009-03-02 22:17:15 +0000275
Bill Wendling51b16f42009-05-30 01:09:53 +0000276 snprintf(buf, PATH_MAX, "%s//%s", dir, bin);
277 if (realpath(buf, ret) == NULL)
278 return (1);
279 if (stat(buf, &sb) != 0)
280 return (1);
281
282 return (0);
Chris Lattner893a0f92009-03-02 22:17:15 +0000283}
284
285static char *
286getprogpath(char ret[PATH_MAX], const char *bin)
287{
Bill Wendling51b16f42009-05-30 01:09:53 +0000288 char *pv, *s, *t, buf[PATH_MAX];
Chris Lattner893a0f92009-03-02 22:17:15 +0000289
Bill Wendling51b16f42009-05-30 01:09:53 +0000290 /* First approach: absolute path. */
291 if (bin[0] == '/') {
292 if (test_dir(buf, ret, "/", bin) == 0)
293 return (ret);
294 return (NULL);
295 }
Chris Lattner893a0f92009-03-02 22:17:15 +0000296
Bill Wendling51b16f42009-05-30 01:09:53 +0000297 /* Second approach: relative path. */
298 if (strchr(bin, '/') != NULL) {
299 if (getcwd(buf, PATH_MAX) == NULL)
300 return (NULL);
301 if (test_dir(buf, ret, buf, bin) == 0)
302 return (ret);
303 return (NULL);
304 }
Chris Lattner893a0f92009-03-02 22:17:15 +0000305
Bill Wendling51b16f42009-05-30 01:09:53 +0000306 /* Third approach: $PATH */
307 if ((pv = getenv("PATH")) == NULL)
308 return (NULL);
309 s = pv = strdup(pv);
310 if (pv == NULL)
311 return (NULL);
312 while ((t = strsep(&s, ":")) != NULL) {
313 if (test_dir(buf, ret, t, bin) == 0) {
314 free(pv);
315 return (ret);
316 }
317 }
318 free(pv);
319 return (NULL);
Chris Lattner893a0f92009-03-02 22:17:15 +0000320}
321#endif
322
Chris Lattner1a091442008-03-03 02:55:43 +0000323/// GetMainExecutable - Return the path to the main executable, given the
324/// value of argv[0] from program startup.
325Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattner893a0f92009-03-02 22:17:15 +0000326#if defined(__FreeBSD__)
327 char exe_path[PATH_MAX];
328
329 if (getprogpath(exe_path, argv0) != NULL)
330 return Path(std::string(exe_path));
331#elif defined(__linux__) || defined(__CYGWIN__)
Chris Lattner3bdfa042008-03-13 05:22:05 +0000332 char exe_path[MAXPATHLEN];
Seo Sanghyeonfd6437f2008-06-27 22:55:30 +0000333 ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path));
Chris Lattner3bdfa042008-03-13 05:22:05 +0000334 if (len > 0 && len < MAXPATHLEN - 1) {
335 exe_path[len] = '\0';
336 return Path(std::string(exe_path));
337 }
338#elif defined(HAVE_DLFCN_H)
Chris Lattner1a091442008-03-03 02:55:43 +0000339 // Use dladdr to get executable path if available.
Chris Lattner1a091442008-03-03 02:55:43 +0000340 Dl_info DLInfo;
341 int err = dladdr(MainAddr, &DLInfo);
Chris Lattnerd18a2c12009-02-19 05:34:35 +0000342 if (err == 0)
343 return Path();
Bill Wendling51b16f42009-05-30 01:09:53 +0000344
Chris Lattnerd18a2c12009-02-19 05:34:35 +0000345 // If the filename is a symlink, we need to resolve and return the location of
346 // the actual executable.
347 char link_path[MAXPATHLEN];
348 return Path(std::string(realpath(DLInfo.dli_fname, link_path)));
Chris Lattner1a091442008-03-03 02:55:43 +0000349#endif
350 return Path();
351}
352
353
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000354std::string Path::getDirname() const {
355 return getDirnameCharSep(path, '/');
356}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000357
Reid Spencer1b554b42004-09-11 04:55:08 +0000358std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000359Path::getBasename() const {
Reid Spencer1b554b42004-09-11 04:55:08 +0000360 // Find the last slash
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000361 std::string::size_type slash = path.rfind('/');
Reid Spencer1b554b42004-09-11 04:55:08 +0000362 if (slash == std::string::npos)
363 slash = 0;
364 else
365 slash++;
366
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000367 std::string::size_type dot = path.rfind('.');
Jeff Cohen73f36672005-07-09 18:42:02 +0000368 if (dot == std::string::npos || dot < slash)
369 return path.substr(slash);
370 else
371 return path.substr(slash, dot - slash);
Reid Spencer1b554b42004-09-11 04:55:08 +0000372}
373
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000374std::string
375Path::getSuffix() const {
376 // Find the last slash
377 std::string::size_type slash = path.rfind('/');
378 if (slash == std::string::npos)
379 slash = 0;
380 else
381 slash++;
382
383 std::string::size_type dot = path.rfind('.');
384 if (dot == std::string::npos || dot < slash)
Wojciech Matyjewicz93c53462008-06-15 18:02:47 +0000385 return std::string();
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000386 else
387 return path.substr(dot + 1);
388}
389
Reid Spencereaf18152004-11-14 22:08:36 +0000390bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencerbe31d2a2004-11-16 17:14:08 +0000391 assert(len < 1024 && "Request for magic string too long");
392 char* buf = (char*) alloca(1 + len);
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000393 int fd = ::open(path.c_str(), O_RDONLY);
Reid Spencerbe31d2a2004-11-16 17:14:08 +0000394 if (fd < 0)
395 return false;
Reid Spencer86ac2dc2004-12-02 09:09:48 +0000396 ssize_t bytes_read = ::read(fd, buf, len);
397 ::close(fd);
398 if (ssize_t(len) != bytes_read) {
399 Magic.clear();
Reid Spencerbe31d2a2004-11-16 17:14:08 +0000400 return false;
Reid Spencer86ac2dc2004-12-02 09:09:48 +0000401 }
402 Magic.assign(buf,len);
Reid Spencereaf18152004-11-14 22:08:36 +0000403 return true;
404}
405
Reid Spencer1b554b42004-09-11 04:55:08 +0000406bool
Reid Spencer8e665952004-08-29 05:24:01 +0000407Path::exists() const {
408 return 0 == access(path.c_str(), F_OK );
409}
410
411bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000412Path::isDirectory() const {
413 struct stat buf;
414 if (0 != stat(path.c_str(), &buf))
415 return false;
416 return buf.st_mode & S_IFDIR ? true : false;
417}
418
419bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000420Path::canRead() const {
Reid Spencer8e665952004-08-29 05:24:01 +0000421 return 0 == access(path.c_str(), F_OK | R_OK );
422}
423
424bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000425Path::canWrite() const {
Reid Spencer8e665952004-08-29 05:24:01 +0000426 return 0 == access(path.c_str(), F_OK | W_OK );
427}
428
429bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000430Path::canExecute() const {
Reid Spencer8b2d1aa2005-07-08 17:46:10 +0000431 if (0 != access(path.c_str(), R_OK | X_OK ))
432 return false;
Reid Spencer2ae9d112007-04-07 18:52:17 +0000433 struct stat buf;
434 if (0 != stat(path.c_str(), &buf))
435 return false;
436 if (!S_ISREG(buf.st_mode))
Misha Brukman8177bf82005-04-20 15:33:22 +0000437 return false;
Reid Spencer8b2d1aa2005-07-08 17:46:10 +0000438 return true;
Reid Spencer8e665952004-08-29 05:24:01 +0000439}
440
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000441std::string
Reid Spencer8e665952004-08-29 05:24:01 +0000442Path::getLast() const {
443 // Find the last slash
444 size_t pos = path.rfind('/');
445
446 // Handle the corner cases
447 if (pos == std::string::npos)
448 return path;
449
450 // If the last character is a slash
451 if (pos == path.length()-1) {
452 // Find the second to last slash
453 size_t pos2 = path.rfind('/', pos-1);
454 if (pos2 == std::string::npos)
455 return path.substr(0,pos);
456 else
457 return path.substr(pos2+1,pos-pos2-1);
458 }
459 // Return everything after the last slash
460 return path.substr(pos+1);
461}
462
Reid Spencer2ae9d112007-04-07 18:52:17 +0000463const FileStatus *
464PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
465 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000466 struct stat buf;
Reid Spencer8475ec02007-03-29 19:05:44 +0000467 if (0 != stat(path.c_str(), &buf)) {
468 MakeErrMsg(ErrStr, path + ": can't get status of file");
469 return 0;
470 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000471 status.fileSize = buf.st_size;
472 status.modTime.fromEpochTime(buf.st_mtime);
473 status.mode = buf.st_mode;
474 status.user = buf.st_uid;
475 status.group = buf.st_gid;
476 status.uniqueID = uint64_t(buf.st_ino);
477 status.isDir = S_ISDIR(buf.st_mode);
478 status.isFile = S_ISREG(buf.st_mode);
479 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000480 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000481 return &status;
Reid Spencereaf18152004-11-14 22:08:36 +0000482}
483
Chris Lattner252ad032006-07-28 22:03:44 +0000484static bool AddPermissionBits(const Path &File, int bits) {
Reid Spencer77cc91d2004-12-13 19:59:50 +0000485 // Get the umask value from the operating system. We want to use it
486 // when changing the file's permissions. Since calling umask() sets
487 // the umask and returns its old value, we must call it a second
488 // time to reset it to the user's preference.
489 int mask = umask(0777); // The arg. to umask is arbitrary.
490 umask(mask); // Restore the umask.
491
492 // Get the file's current mode.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000493 struct stat buf;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000494 if (0 != stat(File.toString().c_str(), &buf))
Reid Spencer77cc91d2004-12-13 19:59:50 +0000495 return false;
Reid Spencer2ae9d112007-04-07 18:52:17 +0000496 // Change the file to have whichever permissions bits from 'bits'
497 // that the umask would not disable.
498 if ((chmod(File.c_str(), (buf.st_mode | (bits & ~mask)))) == -1)
499 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000500 return true;
501}
502
Reid Spencere1647f42006-08-22 23:27:23 +0000503bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000504 if (!AddPermissionBits(*this, 0444))
Reid Spencer5a060772006-08-23 07:30:48 +0000505 return MakeErrMsg(ErrMsg, path + ": can't make file readable");
Reid Spencere1647f42006-08-22 23:27:23 +0000506 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000507}
508
Reid Spencere1647f42006-08-22 23:27:23 +0000509bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Reid Spencer5a060772006-08-23 07:30:48 +0000510 if (!AddPermissionBits(*this, 0222))
511 return MakeErrMsg(ErrMsg, path + ": can't make file writable");
Reid Spencere1647f42006-08-22 23:27:23 +0000512 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000513}
514
Reid Spencere1647f42006-08-22 23:27:23 +0000515bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Reid Spencer5a060772006-08-23 07:30:48 +0000516 if (!AddPermissionBits(*this, 0111))
517 return MakeErrMsg(ErrMsg, path + ": can't make file executable");
Reid Spencere1647f42006-08-22 23:27:23 +0000518 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000519}
520
Reid Spencereaf18152004-11-14 22:08:36 +0000521bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000522Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Reid Spencereaf18152004-11-14 22:08:36 +0000523 DIR* direntries = ::opendir(path.c_str());
Reid Spencer5a060772006-08-23 07:30:48 +0000524 if (direntries == 0)
525 return MakeErrMsg(ErrMsg, path + ": can't open directory");
Reid Spencereaf18152004-11-14 22:08:36 +0000526
Reid Spencer3be872e2005-07-28 16:25:57 +0000527 std::string dirPath = path;
528 if (!lastIsSlash(dirPath))
529 dirPath += '/';
530
Reid Spencereaf18152004-11-14 22:08:36 +0000531 result.clear();
532 struct dirent* de = ::readdir(direntries);
Misha Brukman4619c752005-04-20 04:04:07 +0000533 for ( ; de != 0; de = ::readdir(direntries)) {
Reid Spencereaf18152004-11-14 22:08:36 +0000534 if (de->d_name[0] != '.') {
Reid Spencer3be872e2005-07-28 16:25:57 +0000535 Path aPath(dirPath + (const char*)de->d_name);
Chris Lattnerb14c3422006-07-07 21:21:06 +0000536 struct stat st;
537 if (0 != lstat(aPath.path.c_str(), &st)) {
538 if (S_ISLNK(st.st_mode))
Misha Brukman4619c752005-04-20 04:04:07 +0000539 continue; // dangling symlink -- ignore
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000540 return MakeErrMsg(ErrMsg,
Reid Spencer5a060772006-08-23 07:30:48 +0000541 aPath.path + ": can't determine file object type");
Misha Brukman4619c752005-04-20 04:04:07 +0000542 }
Reid Spencerb608a812004-11-16 06:15:19 +0000543 result.insert(aPath);
Reid Spencereaf18152004-11-14 22:08:36 +0000544 }
Reid Spencereaf18152004-11-14 22:08:36 +0000545 }
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000546
Reid Spencereaf18152004-11-14 22:08:36 +0000547 closedir(direntries);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000548 return false;
Reid Spencer9195f372004-11-09 20:26:31 +0000549}
550
Reid Spencer8e665952004-08-29 05:24:01 +0000551bool
Reid Spencerdd04df02005-07-07 23:21:43 +0000552Path::set(const std::string& a_path) {
553 if (a_path.empty())
Reid Spencer8e665952004-08-29 05:24:01 +0000554 return false;
Reid Spencerdd04df02005-07-07 23:21:43 +0000555 std::string save(path);
Reid Spencer8e665952004-08-29 05:24:01 +0000556 path = a_path;
Reid Spencer07adb282004-11-05 22:15:36 +0000557 if (!isValid()) {
Reid Spencerdd04df02005-07-07 23:21:43 +0000558 path = save;
Reid Spencer8e665952004-08-29 05:24:01 +0000559 return false;
560 }
561 return true;
562}
563
564bool
Reid Spencerdd04df02005-07-07 23:21:43 +0000565Path::appendComponent(const std::string& name) {
566 if (name.empty())
Reid Spencer8e665952004-08-29 05:24:01 +0000567 return false;
Reid Spencerdd04df02005-07-07 23:21:43 +0000568 std::string save(path);
Reid Spencer3be872e2005-07-28 16:25:57 +0000569 if (!lastIsSlash(path))
570 path += '/';
Reid Spencerdd04df02005-07-07 23:21:43 +0000571 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000572 if (!isValid()) {
Reid Spencerdd04df02005-07-07 23:21:43 +0000573 path = save;
Reid Spencer8e665952004-08-29 05:24:01 +0000574 return false;
575 }
576 return true;
577}
578
579bool
Reid Spencerdd04df02005-07-07 23:21:43 +0000580Path::eraseComponent() {
Reid Spencer8e665952004-08-29 05:24:01 +0000581 size_t slashpos = path.rfind('/',path.size());
Reid Spencerdd04df02005-07-07 23:21:43 +0000582 if (slashpos == 0 || slashpos == std::string::npos) {
583 path.erase();
584 return true;
585 }
Reid Spencer8e665952004-08-29 05:24:01 +0000586 if (slashpos == path.size() - 1)
587 slashpos = path.rfind('/',slashpos-1);
Reid Spencerdd04df02005-07-07 23:21:43 +0000588 if (slashpos == std::string::npos) {
589 path.erase();
590 return true;
591 }
Reid Spencer8e665952004-08-29 05:24:01 +0000592 path.erase(slashpos);
593 return true;
594}
595
596bool
Reid Spencer07adb282004-11-05 22:15:36 +0000597Path::appendSuffix(const std::string& suffix) {
Reid Spencerdd04df02005-07-07 23:21:43 +0000598 std::string save(path);
Reid Spencer8e665952004-08-29 05:24:01 +0000599 path.append(".");
600 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000601 if (!isValid()) {
Reid Spencerdd04df02005-07-07 23:21:43 +0000602 path = save;
Reid Spencer8e665952004-08-29 05:24:01 +0000603 return false;
604 }
605 return true;
606}
607
Reid Spencerdd04df02005-07-07 23:21:43 +0000608bool
609Path::eraseSuffix() {
Reid Spencer6371ccb2005-07-08 06:53:26 +0000610 std::string save = path;
Reid Spencer8e665952004-08-29 05:24:01 +0000611 size_t dotpos = path.rfind('.',path.size());
612 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen563a17f2005-07-08 04:49:16 +0000613 if (dotpos != std::string::npos) {
Jeff Cohen73f36672005-07-09 18:42:02 +0000614 if (slashpos == std::string::npos || dotpos > slashpos+1) {
Jeff Cohen563a17f2005-07-08 04:49:16 +0000615 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen85c716f2005-07-08 05:02:13 +0000616 return true;
Jeff Cohen563a17f2005-07-08 04:49:16 +0000617 }
Reid Spencer8e665952004-08-29 05:24:01 +0000618 }
Reid Spencer6371ccb2005-07-08 06:53:26 +0000619 if (!isValid())
620 path = save;
Jeff Cohen563a17f2005-07-08 04:49:16 +0000621 return false;
Reid Spencer8e665952004-08-29 05:24:01 +0000622}
623
Ted Kremenekc5412c52008-04-03 16:11:31 +0000624static bool createDirectoryHelper(char* beg, char* end, bool create_parents) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000625
Ted Kremenekc5412c52008-04-03 16:11:31 +0000626 if (access(beg, F_OK | R_OK | W_OK) == 0)
627 return false;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000628
Ted Kremenekc5412c52008-04-03 16:11:31 +0000629 if (create_parents) {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000630
Ted Kremenekc5412c52008-04-03 16:11:31 +0000631 char* c = end;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000632
Ted Kremenekc5412c52008-04-03 16:11:31 +0000633 for (; c != beg; --c)
634 if (*c == '/') {
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000635
Ted Kremenekc5412c52008-04-03 16:11:31 +0000636 // Recurse to handling the parent directory.
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000637 *c = '\0';
Ted Kremenekc5412c52008-04-03 16:11:31 +0000638 bool x = createDirectoryHelper(beg, c, create_parents);
639 *c = '/';
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000640
Ted Kremenekc5412c52008-04-03 16:11:31 +0000641 // Return if we encountered an error.
642 if (x)
643 return true;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000644
Ted Kremenekc5412c52008-04-03 16:11:31 +0000645 break;
646 }
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000647 }
648
Ted Kremenekc5412c52008-04-03 16:11:31 +0000649 return mkdir(beg, S_IRWXU | S_IRWXG) != 0;
650}
651
Reid Spencer8e665952004-08-29 05:24:01 +0000652bool
Reid Spencere5c9cb52006-08-23 00:39:35 +0000653Path::createDirectoryOnDisk( bool create_parents, std::string* ErrMsg ) {
Reid Spencer8e665952004-08-29 05:24:01 +0000654 // Get a writeable copy of the path name
655 char pathname[MAXPATHLEN];
656 path.copy(pathname,MAXPATHLEN);
657
658 // Null-terminate the last component
Evan Cheng34cd4a42008-05-05 18:30:58 +0000659 size_t lastchar = path.length() - 1 ;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000660
Ted Kremenekc5412c52008-04-03 16:11:31 +0000661 if (pathname[lastchar] != '/')
662 ++lastchar;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000663
Ted Kremenekc5412c52008-04-03 16:11:31 +0000664 pathname[lastchar] = 0;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000665
Ted Kremenekc5412c52008-04-03 16:11:31 +0000666 if (createDirectoryHelper(pathname, pathname+lastchar, create_parents))
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000667 return MakeErrMsg(ErrMsg,
Ted Kremenekc5412c52008-04-03 16:11:31 +0000668 std::string(pathname) + ": can't create directory");
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000669
Reid Spencere5c9cb52006-08-23 00:39:35 +0000670 return false;
Reid Spencer8e665952004-08-29 05:24:01 +0000671}
672
673bool
Reid Spencere5c9cb52006-08-23 00:39:35 +0000674Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencer8e665952004-08-29 05:24:01 +0000675 // Create the file
Reid Spencer622e2202004-09-18 19:25:11 +0000676 int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR);
Reid Spencer5a060772006-08-23 07:30:48 +0000677 if (fd < 0)
678 return MakeErrMsg(ErrMsg, path + ": can't create file");
Reid Spencer622e2202004-09-18 19:25:11 +0000679 ::close(fd);
Reid Spencere5c9cb52006-08-23 00:39:35 +0000680 return false;
Reid Spencerb89a2232004-08-25 06:20:07 +0000681}
682
Reid Spencer8e665952004-08-29 05:24:01 +0000683bool
Reid Spencere5c9cb52006-08-23 00:39:35 +0000684Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencerc29befb2004-12-15 01:50:13 +0000685 // Make this into a unique file name
Reid Spencer51c5a282006-08-23 20:34:57 +0000686 if (makeUnique( reuse_current, ErrMsg ))
687 return true;
Reid Spencerc29befb2004-12-15 01:50:13 +0000688
689 // create the file
Reid Spencere5c9cb52006-08-23 00:39:35 +0000690 int fd = ::open(path.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0666);
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000691 if (fd < 0)
Reid Spencer5a060772006-08-23 07:30:48 +0000692 return MakeErrMsg(ErrMsg, path + ": can't create temporary file");
Reid Spencere5c9cb52006-08-23 00:39:35 +0000693 ::close(fd);
Reid Spencerc29befb2004-12-15 01:50:13 +0000694 return false;
Reid Spencer9195f372004-11-09 20:26:31 +0000695}
696
697bool
Chris Lattner0c332312006-07-28 22:29:50 +0000698Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Reid Spencer2ae9d112007-04-07 18:52:17 +0000699 // Get the status so we can determin if its a file or directory
700 struct stat buf;
701 if (0 != stat(path.c_str(), &buf)) {
702 MakeErrMsg(ErrStr, path + ": can't get status of file");
Chris Lattner0c332312006-07-28 22:29:50 +0000703 return true;
Reid Spencer2ae9d112007-04-07 18:52:17 +0000704 }
705
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000706 // Note: this check catches strange situations. In all cases, LLVM should
707 // only be involved in the creation and deletion of regular files. This
708 // check ensures that what we're trying to erase is a regular file. It
709 // effectively prevents LLVM from erasing things like /dev/null, any block
710 // special file, or other things that aren't "regular" files.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000711 if (S_ISREG(buf.st_mode)) {
712 if (unlink(path.c_str()) != 0)
713 return MakeErrMsg(ErrStr, path + ": can't destroy file");
714 return false;
715 }
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000716
Reid Spencer2ae9d112007-04-07 18:52:17 +0000717 if (!S_ISDIR(buf.st_mode)) {
718 if (ErrStr) *ErrStr = "not a file or directory";
719 return true;
720 }
Reid Spencer8475ec02007-03-29 19:05:44 +0000721
Chris Lattner0c332312006-07-28 22:29:50 +0000722 if (remove_contents) {
723 // Recursively descend the directory to remove its contents.
724 std::string cmd = "/bin/rm -rf " + path;
Mikhail Glushenkov8eada622009-02-15 03:20:32 +0000725 if (system(cmd.c_str()) != 0) {
726 MakeErrMsg(ErrStr, path + ": failed to recursively remove directory.");
727 return true;
728 }
Chris Lattner0c332312006-07-28 22:29:50 +0000729 return false;
730 }
731
732 // Otherwise, try to just remove the one directory.
733 char pathname[MAXPATHLEN];
734 path.copy(pathname, MAXPATHLEN);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000735 size_t lastchar = path.length() - 1;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000736 if (pathname[lastchar] == '/')
Chris Lattner0c332312006-07-28 22:29:50 +0000737 pathname[lastchar] = 0;
738 else
739 pathname[lastchar+1] = 0;
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000740
Chris Lattner0c332312006-07-28 22:29:50 +0000741 if (rmdir(pathname) != 0)
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000742 return MakeErrMsg(ErrStr,
Reid Spencer8475ec02007-03-29 19:05:44 +0000743 std::string(pathname) + ": can't erase directory");
Chris Lattner0c332312006-07-28 22:29:50 +0000744 return false;
Reid Spencer8e665952004-08-29 05:24:01 +0000745}
746
747bool
Reid Spencer5a060772006-08-23 07:30:48 +0000748Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Reid Spencerdd04df02005-07-07 23:21:43 +0000749 if (0 != ::rename(path.c_str(), newName.c_str()))
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000750 return MakeErrMsg(ErrMsg, std::string("can't rename '") + path + "' as '" +
Daniel Dunbara7f2a9e2009-04-20 20:50:13 +0000751 newName.toString() + "'");
Reid Spencer5a060772006-08-23 07:30:48 +0000752 return false;
Reid Spencereaf18152004-11-14 22:08:36 +0000753}
754
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000755bool
Chris Lattner1bebfb52006-07-28 22:36:17 +0000756Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrStr) const {
Reid Spencereaf18152004-11-14 22:08:36 +0000757 struct utimbuf utb;
758 utb.actime = si.modTime.toPosixTime();
759 utb.modtime = utb.actime;
760 if (0 != ::utime(path.c_str(),&utb))
Reid Spencer51c5a282006-08-23 20:34:57 +0000761 return MakeErrMsg(ErrStr, path + ": can't set file modification time");
Reid Spencereaf18152004-11-14 22:08:36 +0000762 if (0 != ::chmod(path.c_str(),si.mode))
Reid Spencer51c5a282006-08-23 20:34:57 +0000763 return MakeErrMsg(ErrStr, path + ": can't set mode");
Chris Lattner1bebfb52006-07-28 22:36:17 +0000764 return false;
Reid Spencer8e665952004-08-29 05:24:01 +0000765}
766
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000767bool
Reid Spencer51c5a282006-08-23 20:34:57 +0000768sys::CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg){
Reid Spencerc29befb2004-12-15 01:50:13 +0000769 int inFile = -1;
770 int outFile = -1;
Reid Spencer51c5a282006-08-23 20:34:57 +0000771 inFile = ::open(Src.c_str(), O_RDONLY);
772 if (inFile == -1)
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000773 return MakeErrMsg(ErrMsg, Src.toString() +
Reid Spencer51c5a282006-08-23 20:34:57 +0000774 ": can't open source file to copy");
Reid Spencerc29befb2004-12-15 01:50:13 +0000775
Reid Spencer51c5a282006-08-23 20:34:57 +0000776 outFile = ::open(Dest.c_str(), O_WRONLY|O_CREAT, 0666);
777 if (outFile == -1) {
778 ::close(inFile);
779 return MakeErrMsg(ErrMsg, Dest.toString() +
780 ": can't create destination file for copy");
781 }
Reid Spencerc29befb2004-12-15 01:50:13 +0000782
Reid Spencer51c5a282006-08-23 20:34:57 +0000783 char Buffer[16*1024];
784 while (ssize_t Amt = ::read(inFile, Buffer, 16*1024)) {
785 if (Amt == -1) {
786 if (errno != EINTR && errno != EAGAIN) {
787 ::close(inFile);
788 ::close(outFile);
Daniel Dunbara7f2a9e2009-04-20 20:50:13 +0000789 return MakeErrMsg(ErrMsg, Src.toString()+": can't read source file");
Reid Spencer51c5a282006-08-23 20:34:57 +0000790 }
791 } else {
792 char *BufPtr = Buffer;
793 while (Amt) {
794 ssize_t AmtWritten = ::write(outFile, BufPtr, Amt);
795 if (AmtWritten == -1) {
796 if (errno != EINTR && errno != EAGAIN) {
797 ::close(inFile);
798 ::close(outFile);
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000799 return MakeErrMsg(ErrMsg, Dest.toString() +
Daniel Dunbara7f2a9e2009-04-20 20:50:13 +0000800 ": can't write destination file");
Reid Spencerc29befb2004-12-15 01:50:13 +0000801 }
Reid Spencer51c5a282006-08-23 20:34:57 +0000802 } else {
803 Amt -= AmtWritten;
804 BufPtr += AmtWritten;
Reid Spencerc29befb2004-12-15 01:50:13 +0000805 }
806 }
807 }
Reid Spencerc29befb2004-12-15 01:50:13 +0000808 }
Reid Spencer51c5a282006-08-23 20:34:57 +0000809 ::close(inFile);
810 ::close(outFile);
811 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000812}
813
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000814bool
Reid Spencer51c5a282006-08-23 20:34:57 +0000815Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000816 if (reuse_current && !exists())
Reid Spencer51c5a282006-08-23 20:34:57 +0000817 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000818
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000819 // Append an XXXXXX pattern to the end of the file for use with mkstemp,
Reid Spencerc29befb2004-12-15 01:50:13 +0000820 // mktemp or our own implementation.
821 char *FNBuffer = (char*) alloca(path.size()+8);
Devang Patelce8fdf12008-07-22 20:02:39 +0000822 path.copy(FNBuffer,path.size());
Devang Patelbdfa9ac2008-07-24 00:35:38 +0000823 if (isDirectory())
824 strcpy(FNBuffer+path.size(), "/XXXXXX");
825 else
Devang Patelce8fdf12008-07-22 20:02:39 +0000826 strcpy(FNBuffer+path.size(), "-XXXXXX");
Reid Spencerc29befb2004-12-15 01:50:13 +0000827
828#if defined(HAVE_MKSTEMP)
829 int TempFD;
Reid Spencer51c5a282006-08-23 20:34:57 +0000830 if ((TempFD = mkstemp(FNBuffer)) == -1)
831 return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
Reid Spencerc29befb2004-12-15 01:50:13 +0000832
833 // We don't need to hold the temp file descriptor... we will trust that no one
834 // will overwrite/delete the file before we can open it again.
835 close(TempFD);
836
837 // Save the name
838 path = FNBuffer;
839#elif defined(HAVE_MKTEMP)
840 // If we don't have mkstemp, use the old and obsolete mktemp function.
Reid Spencer51c5a282006-08-23 20:34:57 +0000841 if (mktemp(FNBuffer) == 0)
842 return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
Reid Spencerc29befb2004-12-15 01:50:13 +0000843
844 // Save the name
845 path = FNBuffer;
846#else
847 // Okay, looks like we have to do it all by our lonesome.
848 static unsigned FCounter = 0;
849 unsigned offset = path.size() + 1;
850 while ( FCounter < 999999 && exists()) {
851 sprintf(FNBuffer+offset,"%06u",++FCounter);
852 path = FNBuffer;
853 }
854 if (FCounter > 999999)
Mikhail Glushenkovb8863a12009-02-15 03:20:03 +0000855 return MakeErrMsg(ErrMsg,
Reid Spencer51c5a282006-08-23 20:34:57 +0000856 path + ": can't make unique filename: too many files");
Reid Spencerc29befb2004-12-15 01:50:13 +0000857#endif
Reid Spencer51c5a282006-08-23 20:34:57 +0000858 return false;
859}
Reid Spencerc29befb2004-12-15 01:50:13 +0000860
Chris Lattner799ed102008-04-01 06:00:12 +0000861const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
Chris Lattner9ffd19a2008-04-01 06:16:24 +0000862 int Flags = MAP_PRIVATE;
863#ifdef MAP_FILE
864 Flags |= MAP_FILE;
865#endif
866 void *BasePtr = ::mmap(0, FileSize, PROT_READ, Flags, FD, 0);
867 if (BasePtr == MAP_FAILED)
868 return 0;
Chris Lattner14c762d2008-04-01 06:25:23 +0000869 return (const char*)BasePtr;
Chris Lattner799ed102008-04-01 06:00:12 +0000870}
871
Chris Lattner9ffd19a2008-04-01 06:16:24 +0000872void Path::UnMapFilePages(const char *BasePtr, uint64_t FileSize) {
Chris Lattner14c762d2008-04-01 06:25:23 +0000873 ::munmap((void*)BasePtr, FileSize);
Chris Lattner799ed102008-04-01 06:00:12 +0000874}
875
Reid Spencer51c5a282006-08-23 20:34:57 +0000876} // end llvm namespace