Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- llvm/System/Unix/Path.cpp - Unix Path Implementation -----*- C++ -*-===// |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 2 | // |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 7 | // |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 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 "llvm/Config/alloca.h" |
| 20 | #include "Unix.h" |
| 21 | #if HAVE_SYS_STAT_H |
| 22 | #include <sys/stat.h> |
| 23 | #endif |
| 24 | #if HAVE_FCNTL_H |
| 25 | #include <fcntl.h> |
| 26 | #endif |
Chris Lattner | 116abbf | 2008-04-01 06:25:23 +0000 | [diff] [blame] | 27 | #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 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 33 | #if HAVE_UTIME_H |
| 34 | #include <utime.h> |
| 35 | #endif |
| 36 | #if HAVE_TIME_H |
| 37 | #include <time.h> |
| 38 | #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 Lattner | 365f220 | 2008-03-03 02:55:43 +0000 | [diff] [blame] | 56 | #if HAVE_DLFCN_H |
| 57 | #include <dlfcn.h> |
| 58 | #endif |
| 59 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 60 | // 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 |
| 65 | |
| 66 | namespace { |
| 67 | inline bool lastIsSlash(const std::string& path) { |
| 68 | return !path.empty() && path[path.length() - 1] == '/'; |
| 69 | } |
| 70 | |
| 71 | } |
| 72 | |
| 73 | namespace llvm { |
| 74 | using namespace sys; |
| 75 | |
Chris Lattner | 4b8f1c6 | 2008-02-27 06:17:10 +0000 | [diff] [blame] | 76 | extern const char sys::PathSeparator = ':'; |
| 77 | |
Nick Lewycky | 4fd4b46 | 2008-05-11 17:37:40 +0000 | [diff] [blame] | 78 | Path::Path(const std::string& p) |
| 79 | : path(p) {} |
| 80 | |
| 81 | Path::Path(const char *StrStart, unsigned StrLen) |
| 82 | : path(StrStart, StrLen) {} |
| 83 | |
Chris Lattner | 43ac42b | 2008-08-11 23:39:47 +0000 | [diff] [blame] | 84 | Path& |
| 85 | Path::operator=(const std::string &that) { |
| 86 | path = that; |
| 87 | return *this; |
| 88 | } |
| 89 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 90 | bool |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 91 | Path::isValid() const { |
| 92 | // Check some obvious things |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 93 | if (path.empty()) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 94 | return false; |
| 95 | else if (path.length() >= MAXPATHLEN) |
| 96 | return false; |
| 97 | |
| 98 | // Check that the characters are ascii chars |
| 99 | size_t len = path.length(); |
| 100 | unsigned i = 0; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 101 | while (i < len && isascii(path[i])) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 102 | ++i; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 103 | return i >= len; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 106 | bool |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 107 | Path::isAbsolute() const { |
| 108 | if (path.empty()) |
| 109 | return false; |
| 110 | return path[0] == '/'; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 111 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 112 | Path |
| 113 | Path::GetRootDirectory() { |
| 114 | Path result; |
| 115 | result.set("/"); |
| 116 | return result; |
| 117 | } |
| 118 | |
| 119 | Path |
| 120 | Path::GetTemporaryDirectory(std::string* ErrMsg ) { |
| 121 | #if defined(HAVE_MKDTEMP) |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 122 | // The best way is with mkdtemp but that's not available on many systems, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 123 | // Linux and FreeBSD have it. Others probably won't. |
| 124 | char pathname[MAXPATHLEN]; |
| 125 | strcpy(pathname,"/tmp/llvm_XXXXXX"); |
| 126 | if (0 == mkdtemp(pathname)) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 127 | MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 128 | std::string(pathname) + ": can't create temporary directory"); |
| 129 | return Path(); |
| 130 | } |
| 131 | Path result; |
| 132 | result.set(pathname); |
| 133 | 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 Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 140 | // the time it is re-created as a directoy. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 141 | char pathname[MAXPATHLEN]; |
| 142 | strcpy(pathname, "/tmp/llvm_XXXXXX"); |
| 143 | int fd = 0; |
| 144 | if (-1 == (fd = mkstemp(pathname))) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 145 | MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 146 | std::string(pathname) + ": can't create temporary directory"); |
| 147 | return Path(); |
| 148 | } |
| 149 | ::close(fd); |
| 150 | ::unlink(pathname); // start race condition, ignore errors |
| 151 | if (-1 == ::mkdir(pathname, S_IRWXU)) { // end race condition |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 152 | MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 153 | std::string(pathname) + ": can't create temporary directory"); |
| 154 | return Path(); |
| 155 | } |
| 156 | Path result; |
| 157 | result.set(pathname); |
| 158 | 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); |
| 169 | if (TmpName == 0) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 170 | MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 171 | std::string(TmpName) + ": can't create unique directory name"); |
| 172 | return Path(); |
| 173 | } |
| 174 | if (-1 == ::mkdir(TmpName, S_IRWXU)) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 175 | MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 176 | std::string(TmpName) + ": can't create temporary directory"); |
| 177 | return Path(); |
| 178 | } |
| 179 | Path result; |
| 180 | result.set(TmpName); |
| 181 | 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 Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 187 | // temporary name generated. So, we provide our own implementation that |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 188 | // 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 ) ); |
| 198 | if (-1 == ::mkdir(pathname, S_IRWXU)) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 199 | MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 200 | std::string(pathname) + ": can't create temporary directory"); |
| 201 | return Path(); |
| 202 | } |
| 203 | Path result; |
| 204 | result.set(pathname); |
| 205 | assert(result.isValid() && "mkstemp didn't create a valid pathname!"); |
| 206 | return result; |
| 207 | #endif |
| 208 | } |
| 209 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 210 | void |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 211 | Path::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); |
| 216 | } |
| 217 | #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/")); |
| 223 | } |
| 224 | |
| 225 | void |
| 226 | Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) { |
| 227 | char * env_var = getenv("LLVM_LIB_SEARCH_PATH"); |
| 228 | if (env_var != 0) { |
| 229 | getPathList(env_var,Paths); |
| 230 | } |
| 231 | #ifdef LLVM_LIBDIR |
| 232 | { |
| 233 | Path tmpPath; |
| 234 | if (tmpPath.set(LLVM_LIBDIR)) |
| 235 | if (tmpPath.canRead()) |
| 236 | Paths.push_back(tmpPath); |
| 237 | } |
| 238 | #endif |
| 239 | GetSystemLibraryPaths(Paths); |
| 240 | } |
| 241 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 242 | Path |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 243 | Path::GetLLVMDefaultConfigDir() { |
| 244 | return Path("/etc/llvm/"); |
| 245 | } |
| 246 | |
| 247 | Path |
| 248 | Path::GetUserHomeDirectory() { |
| 249 | const char* home = getenv("HOME"); |
| 250 | if (home) { |
| 251 | Path result; |
| 252 | if (result.set(home)) |
| 253 | return result; |
| 254 | } |
| 255 | return GetRootDirectory(); |
| 256 | } |
| 257 | |
Ted Kremenek | b05c935 | 2007-12-18 22:07:33 +0000 | [diff] [blame] | 258 | Path |
| 259 | Path::GetCurrentDirectory() { |
| 260 | char pathname[MAXPATHLEN]; |
| 261 | if (!getcwd(pathname,MAXPATHLEN)) { |
| 262 | assert (false && "Could not query current working directory."); |
| 263 | return Path(""); |
| 264 | } |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 265 | |
Ted Kremenek | b05c935 | 2007-12-18 22:07:33 +0000 | [diff] [blame] | 266 | return Path(pathname); |
| 267 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 268 | |
Chris Lattner | 365f220 | 2008-03-03 02:55:43 +0000 | [diff] [blame] | 269 | /// GetMainExecutable - Return the path to the main executable, given the |
| 270 | /// value of argv[0] from program startup. |
| 271 | Path Path::GetMainExecutable(const char *argv0, void *MainAddr) { |
Seo Sanghyeon | 4d04821 | 2008-06-27 22:55:30 +0000 | [diff] [blame] | 272 | #if defined(__linux__) || defined(__CYGWIN__) |
Chris Lattner | c9aca31 | 2008-03-13 05:22:05 +0000 | [diff] [blame] | 273 | char exe_path[MAXPATHLEN]; |
Seo Sanghyeon | 4d04821 | 2008-06-27 22:55:30 +0000 | [diff] [blame] | 274 | ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path)); |
Chris Lattner | c9aca31 | 2008-03-13 05:22:05 +0000 | [diff] [blame] | 275 | if (len > 0 && len < MAXPATHLEN - 1) { |
| 276 | exe_path[len] = '\0'; |
| 277 | return Path(std::string(exe_path)); |
| 278 | } |
| 279 | #elif defined(HAVE_DLFCN_H) |
Chris Lattner | 365f220 | 2008-03-03 02:55:43 +0000 | [diff] [blame] | 280 | // Use dladdr to get executable path if available. |
Chris Lattner | 365f220 | 2008-03-03 02:55:43 +0000 | [diff] [blame] | 281 | Dl_info DLInfo; |
| 282 | int err = dladdr(MainAddr, &DLInfo); |
| 283 | if (err != 0) |
| 284 | return Path(std::string(DLInfo.dli_fname)); |
| 285 | #endif |
| 286 | return Path(); |
| 287 | } |
| 288 | |
| 289 | |
Ted Kremenek | b169dfa | 2008-04-07 22:01:32 +0000 | [diff] [blame] | 290 | std::string Path::getDirname() const { |
| 291 | return getDirnameCharSep(path, '/'); |
| 292 | } |
Ted Kremenek | 4a4f5ed | 2008-04-07 21:53:57 +0000 | [diff] [blame] | 293 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 294 | std::string |
| 295 | Path::getBasename() const { |
| 296 | // Find the last slash |
Ted Kremenek | 4a4f5ed | 2008-04-07 21:53:57 +0000 | [diff] [blame] | 297 | std::string::size_type slash = path.rfind('/'); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 298 | if (slash == std::string::npos) |
| 299 | slash = 0; |
| 300 | else |
| 301 | slash++; |
| 302 | |
Ted Kremenek | 4a4f5ed | 2008-04-07 21:53:57 +0000 | [diff] [blame] | 303 | std::string::size_type dot = path.rfind('.'); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 304 | if (dot == std::string::npos || dot < slash) |
| 305 | return path.substr(slash); |
| 306 | else |
| 307 | return path.substr(slash, dot - slash); |
| 308 | } |
| 309 | |
Argiris Kirtzidis | c8f4a3a | 2008-06-15 15:15:19 +0000 | [diff] [blame] | 310 | std::string |
| 311 | Path::getSuffix() const { |
| 312 | // Find the last slash |
| 313 | std::string::size_type slash = path.rfind('/'); |
| 314 | if (slash == std::string::npos) |
| 315 | slash = 0; |
| 316 | else |
| 317 | slash++; |
| 318 | |
| 319 | std::string::size_type dot = path.rfind('.'); |
| 320 | if (dot == std::string::npos || dot < slash) |
Wojciech Matyjewicz | ce6f137 | 2008-06-15 18:02:47 +0000 | [diff] [blame] | 321 | return std::string(); |
Argiris Kirtzidis | c8f4a3a | 2008-06-15 15:15:19 +0000 | [diff] [blame] | 322 | else |
| 323 | return path.substr(dot + 1); |
| 324 | } |
| 325 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 326 | bool Path::getMagicNumber(std::string& Magic, unsigned len) const { |
| 327 | assert(len < 1024 && "Request for magic string too long"); |
| 328 | char* buf = (char*) alloca(1 + len); |
| 329 | int fd = ::open(path.c_str(), O_RDONLY); |
| 330 | if (fd < 0) |
| 331 | return false; |
| 332 | ssize_t bytes_read = ::read(fd, buf, len); |
| 333 | ::close(fd); |
| 334 | if (ssize_t(len) != bytes_read) { |
| 335 | Magic.clear(); |
| 336 | return false; |
| 337 | } |
| 338 | Magic.assign(buf,len); |
| 339 | return true; |
| 340 | } |
| 341 | |
| 342 | bool |
| 343 | Path::exists() const { |
| 344 | return 0 == access(path.c_str(), F_OK ); |
| 345 | } |
| 346 | |
| 347 | bool |
Ted Kremenek | 65149be | 2007-12-18 19:46:22 +0000 | [diff] [blame] | 348 | Path::isDirectory() const { |
| 349 | struct stat buf; |
| 350 | if (0 != stat(path.c_str(), &buf)) |
| 351 | return false; |
| 352 | return buf.st_mode & S_IFDIR ? true : false; |
| 353 | } |
| 354 | |
| 355 | bool |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 356 | Path::canRead() const { |
| 357 | return 0 == access(path.c_str(), F_OK | R_OK ); |
| 358 | } |
| 359 | |
| 360 | bool |
| 361 | Path::canWrite() const { |
| 362 | return 0 == access(path.c_str(), F_OK | W_OK ); |
| 363 | } |
| 364 | |
| 365 | bool |
| 366 | Path::canExecute() const { |
| 367 | if (0 != access(path.c_str(), R_OK | X_OK )) |
| 368 | return false; |
| 369 | struct stat buf; |
| 370 | if (0 != stat(path.c_str(), &buf)) |
| 371 | return false; |
| 372 | if (!S_ISREG(buf.st_mode)) |
| 373 | return false; |
| 374 | return true; |
| 375 | } |
| 376 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 377 | std::string |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 378 | Path::getLast() const { |
| 379 | // Find the last slash |
| 380 | size_t pos = path.rfind('/'); |
| 381 | |
| 382 | // Handle the corner cases |
| 383 | if (pos == std::string::npos) |
| 384 | return path; |
| 385 | |
| 386 | // If the last character is a slash |
| 387 | if (pos == path.length()-1) { |
| 388 | // Find the second to last slash |
| 389 | size_t pos2 = path.rfind('/', pos-1); |
| 390 | if (pos2 == std::string::npos) |
| 391 | return path.substr(0,pos); |
| 392 | else |
| 393 | return path.substr(pos2+1,pos-pos2-1); |
| 394 | } |
| 395 | // Return everything after the last slash |
| 396 | return path.substr(pos+1); |
| 397 | } |
| 398 | |
| 399 | const FileStatus * |
| 400 | PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const { |
| 401 | if (!fsIsValid || update) { |
| 402 | struct stat buf; |
| 403 | if (0 != stat(path.c_str(), &buf)) { |
| 404 | MakeErrMsg(ErrStr, path + ": can't get status of file"); |
| 405 | return 0; |
| 406 | } |
| 407 | status.fileSize = buf.st_size; |
| 408 | status.modTime.fromEpochTime(buf.st_mtime); |
| 409 | status.mode = buf.st_mode; |
| 410 | status.user = buf.st_uid; |
| 411 | status.group = buf.st_gid; |
| 412 | status.uniqueID = uint64_t(buf.st_ino); |
| 413 | status.isDir = S_ISDIR(buf.st_mode); |
| 414 | status.isFile = S_ISREG(buf.st_mode); |
| 415 | fsIsValid = true; |
| 416 | } |
| 417 | return &status; |
| 418 | } |
| 419 | |
| 420 | static bool AddPermissionBits(const Path &File, int bits) { |
| 421 | // Get the umask value from the operating system. We want to use it |
| 422 | // when changing the file's permissions. Since calling umask() sets |
| 423 | // the umask and returns its old value, we must call it a second |
| 424 | // time to reset it to the user's preference. |
| 425 | int mask = umask(0777); // The arg. to umask is arbitrary. |
| 426 | umask(mask); // Restore the umask. |
| 427 | |
| 428 | // Get the file's current mode. |
| 429 | struct stat buf; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 430 | if (0 != stat(File.toString().c_str(), &buf)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 431 | return false; |
| 432 | // Change the file to have whichever permissions bits from 'bits' |
| 433 | // that the umask would not disable. |
| 434 | if ((chmod(File.c_str(), (buf.st_mode | (bits & ~mask)))) == -1) |
| 435 | return false; |
| 436 | return true; |
| 437 | } |
| 438 | |
| 439 | bool Path::makeReadableOnDisk(std::string* ErrMsg) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 440 | if (!AddPermissionBits(*this, 0444)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 441 | return MakeErrMsg(ErrMsg, path + ": can't make file readable"); |
| 442 | return false; |
| 443 | } |
| 444 | |
| 445 | bool Path::makeWriteableOnDisk(std::string* ErrMsg) { |
| 446 | if (!AddPermissionBits(*this, 0222)) |
| 447 | return MakeErrMsg(ErrMsg, path + ": can't make file writable"); |
| 448 | return false; |
| 449 | } |
| 450 | |
| 451 | bool Path::makeExecutableOnDisk(std::string* ErrMsg) { |
| 452 | if (!AddPermissionBits(*this, 0111)) |
| 453 | return MakeErrMsg(ErrMsg, path + ": can't make file executable"); |
| 454 | return false; |
| 455 | } |
| 456 | |
| 457 | bool |
| 458 | Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const { |
| 459 | DIR* direntries = ::opendir(path.c_str()); |
| 460 | if (direntries == 0) |
| 461 | return MakeErrMsg(ErrMsg, path + ": can't open directory"); |
| 462 | |
| 463 | std::string dirPath = path; |
| 464 | if (!lastIsSlash(dirPath)) |
| 465 | dirPath += '/'; |
| 466 | |
| 467 | result.clear(); |
| 468 | struct dirent* de = ::readdir(direntries); |
| 469 | for ( ; de != 0; de = ::readdir(direntries)) { |
| 470 | if (de->d_name[0] != '.') { |
| 471 | Path aPath(dirPath + (const char*)de->d_name); |
| 472 | struct stat st; |
| 473 | if (0 != lstat(aPath.path.c_str(), &st)) { |
| 474 | if (S_ISLNK(st.st_mode)) |
| 475 | continue; // dangling symlink -- ignore |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 476 | return MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 477 | aPath.path + ": can't determine file object type"); |
| 478 | } |
| 479 | result.insert(aPath); |
| 480 | } |
| 481 | } |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 482 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 483 | closedir(direntries); |
| 484 | return false; |
| 485 | } |
| 486 | |
| 487 | bool |
| 488 | Path::set(const std::string& a_path) { |
| 489 | if (a_path.empty()) |
| 490 | return false; |
| 491 | std::string save(path); |
| 492 | path = a_path; |
| 493 | if (!isValid()) { |
| 494 | path = save; |
| 495 | return false; |
| 496 | } |
| 497 | return true; |
| 498 | } |
| 499 | |
| 500 | bool |
| 501 | Path::appendComponent(const std::string& name) { |
| 502 | if (name.empty()) |
| 503 | return false; |
| 504 | std::string save(path); |
| 505 | if (!lastIsSlash(path)) |
| 506 | path += '/'; |
| 507 | path += name; |
| 508 | if (!isValid()) { |
| 509 | path = save; |
| 510 | return false; |
| 511 | } |
| 512 | return true; |
| 513 | } |
| 514 | |
| 515 | bool |
| 516 | Path::eraseComponent() { |
| 517 | size_t slashpos = path.rfind('/',path.size()); |
| 518 | if (slashpos == 0 || slashpos == std::string::npos) { |
| 519 | path.erase(); |
| 520 | return true; |
| 521 | } |
| 522 | if (slashpos == path.size() - 1) |
| 523 | slashpos = path.rfind('/',slashpos-1); |
| 524 | if (slashpos == std::string::npos) { |
| 525 | path.erase(); |
| 526 | return true; |
| 527 | } |
| 528 | path.erase(slashpos); |
| 529 | return true; |
| 530 | } |
| 531 | |
| 532 | bool |
| 533 | Path::appendSuffix(const std::string& suffix) { |
| 534 | std::string save(path); |
| 535 | path.append("."); |
| 536 | path.append(suffix); |
| 537 | if (!isValid()) { |
| 538 | path = save; |
| 539 | return false; |
| 540 | } |
| 541 | return true; |
| 542 | } |
| 543 | |
| 544 | bool |
| 545 | Path::eraseSuffix() { |
| 546 | std::string save = path; |
| 547 | size_t dotpos = path.rfind('.',path.size()); |
| 548 | size_t slashpos = path.rfind('/',path.size()); |
| 549 | if (dotpos != std::string::npos) { |
| 550 | if (slashpos == std::string::npos || dotpos > slashpos+1) { |
| 551 | path.erase(dotpos, path.size()-dotpos); |
| 552 | return true; |
| 553 | } |
| 554 | } |
| 555 | if (!isValid()) |
| 556 | path = save; |
| 557 | return false; |
| 558 | } |
| 559 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 560 | static bool createDirectoryHelper(char* beg, char* end, bool create_parents) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 561 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 562 | if (access(beg, F_OK | R_OK | W_OK) == 0) |
| 563 | return false; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 564 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 565 | if (create_parents) { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 566 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 567 | char* c = end; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 568 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 569 | for (; c != beg; --c) |
| 570 | if (*c == '/') { |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 571 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 572 | // Recurse to handling the parent directory. |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 573 | *c = '\0'; |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 574 | bool x = createDirectoryHelper(beg, c, create_parents); |
| 575 | *c = '/'; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 576 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 577 | // Return if we encountered an error. |
| 578 | if (x) |
| 579 | return true; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 580 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 581 | break; |
| 582 | } |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 583 | } |
| 584 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 585 | return mkdir(beg, S_IRWXU | S_IRWXG) != 0; |
| 586 | } |
| 587 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 588 | bool |
| 589 | Path::createDirectoryOnDisk( bool create_parents, std::string* ErrMsg ) { |
| 590 | // Get a writeable copy of the path name |
| 591 | char pathname[MAXPATHLEN]; |
| 592 | path.copy(pathname,MAXPATHLEN); |
| 593 | |
| 594 | // Null-terminate the last component |
Evan Cheng | 591bfc8 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 595 | size_t lastchar = path.length() - 1 ; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 596 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 597 | if (pathname[lastchar] != '/') |
| 598 | ++lastchar; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 599 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 600 | pathname[lastchar] = 0; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 601 | |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 602 | if (createDirectoryHelper(pathname, pathname+lastchar, create_parents)) |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 603 | return MakeErrMsg(ErrMsg, |
Ted Kremenek | f8cce7d | 2008-04-03 16:11:31 +0000 | [diff] [blame] | 604 | std::string(pathname) + ": can't create directory"); |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 605 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 606 | return false; |
| 607 | } |
| 608 | |
| 609 | bool |
| 610 | Path::createFileOnDisk(std::string* ErrMsg) { |
| 611 | // Create the file |
| 612 | int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR); |
| 613 | if (fd < 0) |
| 614 | return MakeErrMsg(ErrMsg, path + ": can't create file"); |
| 615 | ::close(fd); |
| 616 | return false; |
| 617 | } |
| 618 | |
| 619 | bool |
| 620 | Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) { |
| 621 | // Make this into a unique file name |
| 622 | if (makeUnique( reuse_current, ErrMsg )) |
| 623 | return true; |
| 624 | |
| 625 | // create the file |
| 626 | int fd = ::open(path.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0666); |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 627 | if (fd < 0) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 628 | return MakeErrMsg(ErrMsg, path + ": can't create temporary file"); |
| 629 | ::close(fd); |
| 630 | return false; |
| 631 | } |
| 632 | |
| 633 | bool |
| 634 | Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const { |
| 635 | // Get the status so we can determin if its a file or directory |
| 636 | struct stat buf; |
| 637 | if (0 != stat(path.c_str(), &buf)) { |
| 638 | MakeErrMsg(ErrStr, path + ": can't get status of file"); |
| 639 | return true; |
| 640 | } |
| 641 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 642 | // Note: this check catches strange situations. In all cases, LLVM should |
| 643 | // only be involved in the creation and deletion of regular files. This |
| 644 | // check ensures that what we're trying to erase is a regular file. It |
| 645 | // effectively prevents LLVM from erasing things like /dev/null, any block |
| 646 | // special file, or other things that aren't "regular" files. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 647 | if (S_ISREG(buf.st_mode)) { |
| 648 | if (unlink(path.c_str()) != 0) |
| 649 | return MakeErrMsg(ErrStr, path + ": can't destroy file"); |
| 650 | return false; |
| 651 | } |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 652 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 653 | if (!S_ISDIR(buf.st_mode)) { |
| 654 | if (ErrStr) *ErrStr = "not a file or directory"; |
| 655 | return true; |
| 656 | } |
| 657 | |
| 658 | if (remove_contents) { |
| 659 | // Recursively descend the directory to remove its contents. |
| 660 | std::string cmd = "/bin/rm -rf " + path; |
| 661 | system(cmd.c_str()); |
| 662 | return false; |
| 663 | } |
| 664 | |
| 665 | // Otherwise, try to just remove the one directory. |
| 666 | char pathname[MAXPATHLEN]; |
| 667 | path.copy(pathname, MAXPATHLEN); |
Evan Cheng | 591bfc8 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 668 | size_t lastchar = path.length() - 1; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 669 | if (pathname[lastchar] == '/') |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 670 | pathname[lastchar] = 0; |
| 671 | else |
| 672 | pathname[lastchar+1] = 0; |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 673 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 674 | if (rmdir(pathname) != 0) |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 675 | return MakeErrMsg(ErrStr, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 676 | std::string(pathname) + ": can't erase directory"); |
| 677 | return false; |
| 678 | } |
| 679 | |
| 680 | bool |
| 681 | Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) { |
| 682 | if (0 != ::rename(path.c_str(), newName.c_str())) |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 683 | return MakeErrMsg(ErrMsg, std::string("can't rename '") + path + "' as '" + |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 684 | newName.toString() + "' "); |
| 685 | return false; |
| 686 | } |
| 687 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 688 | bool |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 689 | Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrStr) const { |
| 690 | struct utimbuf utb; |
| 691 | utb.actime = si.modTime.toPosixTime(); |
| 692 | utb.modtime = utb.actime; |
| 693 | if (0 != ::utime(path.c_str(),&utb)) |
| 694 | return MakeErrMsg(ErrStr, path + ": can't set file modification time"); |
| 695 | if (0 != ::chmod(path.c_str(),si.mode)) |
| 696 | return MakeErrMsg(ErrStr, path + ": can't set mode"); |
| 697 | return false; |
| 698 | } |
| 699 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 700 | bool |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 701 | sys::CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg){ |
| 702 | int inFile = -1; |
| 703 | int outFile = -1; |
| 704 | inFile = ::open(Src.c_str(), O_RDONLY); |
| 705 | if (inFile == -1) |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 706 | return MakeErrMsg(ErrMsg, Src.toString() + |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 707 | ": can't open source file to copy"); |
| 708 | |
| 709 | outFile = ::open(Dest.c_str(), O_WRONLY|O_CREAT, 0666); |
| 710 | if (outFile == -1) { |
| 711 | ::close(inFile); |
| 712 | return MakeErrMsg(ErrMsg, Dest.toString() + |
| 713 | ": can't create destination file for copy"); |
| 714 | } |
| 715 | |
| 716 | char Buffer[16*1024]; |
| 717 | while (ssize_t Amt = ::read(inFile, Buffer, 16*1024)) { |
| 718 | if (Amt == -1) { |
| 719 | if (errno != EINTR && errno != EAGAIN) { |
| 720 | ::close(inFile); |
| 721 | ::close(outFile); |
| 722 | return MakeErrMsg(ErrMsg, Src.toString()+": can't read source file: "); |
| 723 | } |
| 724 | } else { |
| 725 | char *BufPtr = Buffer; |
| 726 | while (Amt) { |
| 727 | ssize_t AmtWritten = ::write(outFile, BufPtr, Amt); |
| 728 | if (AmtWritten == -1) { |
| 729 | if (errno != EINTR && errno != EAGAIN) { |
| 730 | ::close(inFile); |
| 731 | ::close(outFile); |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 732 | return MakeErrMsg(ErrMsg, Dest.toString() + |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 733 | ": can't write destination file: "); |
| 734 | } |
| 735 | } else { |
| 736 | Amt -= AmtWritten; |
| 737 | BufPtr += AmtWritten; |
| 738 | } |
| 739 | } |
| 740 | } |
| 741 | } |
| 742 | ::close(inFile); |
| 743 | ::close(outFile); |
| 744 | return false; |
| 745 | } |
| 746 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 747 | bool |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 748 | Path::makeUnique(bool reuse_current, std::string* ErrMsg) { |
| 749 | if (reuse_current && !exists()) |
| 750 | return false; // File doesn't exist already, just use it! |
| 751 | |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 752 | // Append an XXXXXX pattern to the end of the file for use with mkstemp, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 753 | // mktemp or our own implementation. |
| 754 | char *FNBuffer = (char*) alloca(path.size()+8); |
Devang Patel | 79612e1 | 2008-07-22 20:02:39 +0000 | [diff] [blame] | 755 | path.copy(FNBuffer,path.size()); |
Devang Patel | db08c70 | 2008-07-24 00:35:38 +0000 | [diff] [blame] | 756 | if (isDirectory()) |
| 757 | strcpy(FNBuffer+path.size(), "/XXXXXX"); |
| 758 | else |
Devang Patel | 79612e1 | 2008-07-22 20:02:39 +0000 | [diff] [blame] | 759 | strcpy(FNBuffer+path.size(), "-XXXXXX"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 760 | |
| 761 | #if defined(HAVE_MKSTEMP) |
| 762 | int TempFD; |
| 763 | if ((TempFD = mkstemp(FNBuffer)) == -1) |
| 764 | return MakeErrMsg(ErrMsg, path + ": can't make unique filename"); |
| 765 | |
| 766 | // We don't need to hold the temp file descriptor... we will trust that no one |
| 767 | // will overwrite/delete the file before we can open it again. |
| 768 | close(TempFD); |
| 769 | |
| 770 | // Save the name |
| 771 | path = FNBuffer; |
| 772 | #elif defined(HAVE_MKTEMP) |
| 773 | // If we don't have mkstemp, use the old and obsolete mktemp function. |
| 774 | if (mktemp(FNBuffer) == 0) |
| 775 | return MakeErrMsg(ErrMsg, path + ": can't make unique filename"); |
| 776 | |
| 777 | // Save the name |
| 778 | path = FNBuffer; |
| 779 | #else |
| 780 | // Okay, looks like we have to do it all by our lonesome. |
| 781 | static unsigned FCounter = 0; |
| 782 | unsigned offset = path.size() + 1; |
| 783 | while ( FCounter < 999999 && exists()) { |
| 784 | sprintf(FNBuffer+offset,"%06u",++FCounter); |
| 785 | path = FNBuffer; |
| 786 | } |
| 787 | if (FCounter > 999999) |
Mikhail Glushenkov | 9c369df | 2009-02-15 03:20:03 +0000 | [diff] [blame^] | 788 | return MakeErrMsg(ErrMsg, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 789 | path + ": can't make unique filename: too many files"); |
| 790 | #endif |
| 791 | return false; |
| 792 | } |
| 793 | |
Chris Lattner | 157d70a | 2008-04-01 06:00:12 +0000 | [diff] [blame] | 794 | const char *Path::MapInFilePages(int FD, uint64_t FileSize) { |
Chris Lattner | 7bbb6d6 | 2008-04-01 06:16:24 +0000 | [diff] [blame] | 795 | int Flags = MAP_PRIVATE; |
| 796 | #ifdef MAP_FILE |
| 797 | Flags |= MAP_FILE; |
| 798 | #endif |
| 799 | void *BasePtr = ::mmap(0, FileSize, PROT_READ, Flags, FD, 0); |
| 800 | if (BasePtr == MAP_FAILED) |
| 801 | return 0; |
Chris Lattner | 116abbf | 2008-04-01 06:25:23 +0000 | [diff] [blame] | 802 | return (const char*)BasePtr; |
Chris Lattner | 157d70a | 2008-04-01 06:00:12 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Chris Lattner | 7bbb6d6 | 2008-04-01 06:16:24 +0000 | [diff] [blame] | 805 | void Path::UnMapFilePages(const char *BasePtr, uint64_t FileSize) { |
Chris Lattner | 116abbf | 2008-04-01 06:25:23 +0000 | [diff] [blame] | 806 | ::munmap((void*)BasePtr, FileSize); |
Chris Lattner | 157d70a | 2008-04-01 06:00:12 +0000 | [diff] [blame] | 807 | } |
| 808 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 809 | } // end llvm namespace |
| 810 | |