blob: df8841220b57799256a35ee053b3f67a97ed992c [file] [log] [blame]
Michael J. Spencerebad2f92010-11-29 22:28:51 +00001//===- llvm/Support/Unix/PathV2.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 implementation of the PathV2 API.
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"
Daniel Dunbar3f0fa192012-05-05 16:36:24 +000020#include "llvm/Support/Process.h"
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000021#if HAVE_SYS_STAT_H
22#include <sys/stat.h>
23#endif
24#if HAVE_FCNTL_H
25#include <fcntl.h>
26#endif
Nick Kledzik18497e92012-06-20 00:28:54 +000027#ifdef HAVE_SYS_MMAN_H
28#include <sys/mman.h>
29#endif
Michael J. Spencer52714862011-01-05 16:38:57 +000030#if HAVE_DIRENT_H
31# include <dirent.h>
32# define NAMLEN(dirent) strlen((dirent)->d_name)
33#else
34# define dirent direct
35# define NAMLEN(dirent) (dirent)->d_namlen
36# if HAVE_SYS_NDIR_H
37# include <sys/ndir.h>
38# endif
39# if HAVE_SYS_DIR_H
40# include <sys/dir.h>
41# endif
42# if HAVE_NDIR_H
43# include <ndir.h>
44# endif
45#endif
Michael J. Spencer45710402010-12-03 01:21:28 +000046#if HAVE_STDIO_H
47#include <stdio.h>
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000048#endif
Bill Wendlingbdaa57f2011-09-14 21:49:42 +000049#if HAVE_LIMITS_H
50#include <limits.h>
51#endif
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000052
Joerg Sonnenbergerc0697302012-08-10 10:56:09 +000053// Both stdio.h and cstdio are included via different pathes and
54// stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros
55// either.
56#undef ferror
57#undef feof
58
Sylvestre Ledru14ada942012-04-11 15:35:36 +000059// For GNU Hurd
60#if defined(__GNU__) && !defined(PATH_MAX)
61# define PATH_MAX 4096
62#endif
63
Michael J. Spencer45710402010-12-03 01:21:28 +000064using namespace llvm;
65
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000066namespace {
Michael J. Spencer5529c572010-12-07 01:23:08 +000067 /// This class automatically closes the given file descriptor when it goes out
68 /// of scope. You can take back explicit ownership of the file descriptor by
69 /// calling take(). The destructor does not verify that close was successful.
70 /// Therefore, never allow this class to call close on a file descriptor that
71 /// has been read from or written to.
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000072 struct AutoFD {
73 int FileDescriptor;
74
75 AutoFD(int fd) : FileDescriptor(fd) {}
76 ~AutoFD() {
77 if (FileDescriptor >= 0)
78 ::close(FileDescriptor);
79 }
80
81 int take() {
82 int ret = FileDescriptor;
83 FileDescriptor = -1;
84 return ret;
85 }
86
87 operator int() const {return FileDescriptor;}
88 };
Michael J. Spencer45710402010-12-03 01:21:28 +000089
90 error_code TempDir(SmallVectorImpl<char> &result) {
91 // FIXME: Don't use TMPDIR if program is SUID or SGID enabled.
92 const char *dir = 0;
93 (dir = std::getenv("TMPDIR" )) ||
94 (dir = std::getenv("TMP" )) ||
95 (dir = std::getenv("TEMP" )) ||
96 (dir = std::getenv("TEMPDIR")) ||
97#ifdef P_tmpdir
98 (dir = P_tmpdir) ||
99#endif
100 (dir = "/tmp");
101
Michael J. Spencer98c7a112010-12-07 01:23:19 +0000102 result.clear();
Michael J. Spencer45710402010-12-03 01:21:28 +0000103 StringRef d(dir);
104 result.append(d.begin(), d.end());
David Blaikie18544b92012-02-09 19:24:12 +0000105 return error_code::success();
Michael J. Spencer45710402010-12-03 01:21:28 +0000106 }
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000107}
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000108
109namespace llvm {
110namespace sys {
Michael J. Spencer20daa282010-12-07 01:22:31 +0000111namespace fs {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000112
113error_code current_path(SmallVectorImpl<char> &result) {
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000114#ifdef MAXPATHLEN
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000115 result.reserve(MAXPATHLEN);
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000116#else
117// For GNU Hurd
118 result.reserve(1024);
119#endif
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000120
Michael J. Spencer20daa282010-12-07 01:22:31 +0000121 while (true) {
122 if (::getcwd(result.data(), result.capacity()) == 0) {
123 // See if there was a real error.
124 if (errno != errc::not_enough_memory)
125 return error_code(errno, system_category());
126 // Otherwise there just wasn't enough space.
127 result.reserve(result.capacity() * 2);
128 } else
129 break;
130 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000131
132 result.set_size(strlen(result.data()));
David Blaikie18544b92012-02-09 19:24:12 +0000133 return error_code::success();
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000134}
135
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000136error_code copy_file(const Twine &from, const Twine &to, copy_option copt) {
137 // Get arguments.
138 SmallString<128> from_storage;
139 SmallString<128> to_storage;
Michael J. Spencer795adf52010-12-01 20:37:42 +0000140 StringRef f = from.toNullTerminatedStringRef(from_storage);
141 StringRef t = to.toNullTerminatedStringRef(to_storage);
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000142
143 const size_t buf_sz = 32768;
144 char buffer[buf_sz];
145 int from_file = -1, to_file = -1;
146
147 // Open from.
148 if ((from_file = ::open(f.begin(), O_RDONLY)) < 0)
149 return error_code(errno, system_category());
150 AutoFD from_fd(from_file);
151
152 // Stat from.
153 struct stat from_stat;
154 if (::stat(f.begin(), &from_stat) != 0)
155 return error_code(errno, system_category());
156
157 // Setup to flags.
158 int to_flags = O_CREAT | O_WRONLY;
159 if (copt == copy_option::fail_if_exists)
160 to_flags |= O_EXCL;
161
162 // Open to.
163 if ((to_file = ::open(t.begin(), to_flags, from_stat.st_mode)) < 0)
164 return error_code(errno, system_category());
165 AutoFD to_fd(to_file);
166
167 // Copy!
168 ssize_t sz, sz_read = 1, sz_write;
169 while (sz_read > 0 &&
170 (sz_read = ::read(from_fd, buffer, buf_sz)) > 0) {
171 // Allow for partial writes - see Advanced Unix Programming (2nd Ed.),
172 // Marc Rochkind, Addison-Wesley, 2004, page 94
173 sz_write = 0;
174 do {
175 if ((sz = ::write(to_fd, buffer + sz_write, sz_read - sz_write)) < 0) {
176 sz_read = sz; // cause read loop termination.
177 break; // error.
178 }
179 sz_write += sz;
180 } while (sz_write < sz_read);
181 }
182
183 // After all the file operations above the return value of close actually
184 // matters.
185 if (::close(from_fd.take()) < 0) sz_read = -1;
186 if (::close(to_fd.take()) < 0) sz_read = -1;
187
188 // Check for errors.
189 if (sz_read < 0)
190 return error_code(errno, system_category());
191
David Blaikie18544b92012-02-09 19:24:12 +0000192 return error_code::success();
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000193}
194
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000195error_code create_directory(const Twine &path, bool &existed) {
196 SmallString<128> path_storage;
197 StringRef p = path.toNullTerminatedStringRef(path_storage);
198
Michael J. Spencere5755be2010-12-07 01:23:29 +0000199 if (::mkdir(p.begin(), S_IRWXU | S_IRWXG) == -1) {
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000200 if (errno != errc::file_exists)
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000201 return error_code(errno, system_category());
202 existed = true;
203 } else
204 existed = false;
205
David Blaikie18544b92012-02-09 19:24:12 +0000206 return error_code::success();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000207}
208
Michael J. Spencere0c45602010-12-03 05:58:41 +0000209error_code create_hard_link(const Twine &to, const Twine &from) {
210 // Get arguments.
211 SmallString<128> from_storage;
212 SmallString<128> to_storage;
213 StringRef f = from.toNullTerminatedStringRef(from_storage);
214 StringRef t = to.toNullTerminatedStringRef(to_storage);
215
216 if (::link(t.begin(), f.begin()) == -1)
217 return error_code(errno, system_category());
218
David Blaikie18544b92012-02-09 19:24:12 +0000219 return error_code::success();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000220}
221
Michael J. Spencer7ee6d5d2010-12-03 07:41:25 +0000222error_code create_symlink(const Twine &to, const Twine &from) {
223 // Get arguments.
224 SmallString<128> from_storage;
225 SmallString<128> to_storage;
226 StringRef f = from.toNullTerminatedStringRef(from_storage);
227 StringRef t = to.toNullTerminatedStringRef(to_storage);
228
229 if (::symlink(t.begin(), f.begin()) == -1)
230 return error_code(errno, system_category());
231
David Blaikie18544b92012-02-09 19:24:12 +0000232 return error_code::success();
Michael J. Spencer7ee6d5d2010-12-03 07:41:25 +0000233}
234
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000235error_code remove(const Twine &path, bool &existed) {
236 SmallString<128> path_storage;
237 StringRef p = path.toNullTerminatedStringRef(path_storage);
238
239 if (::remove(p.begin()) == -1) {
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000240 if (errno != errc::no_such_file_or_directory)
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000241 return error_code(errno, system_category());
242 existed = false;
243 } else
244 existed = true;
245
David Blaikie18544b92012-02-09 19:24:12 +0000246 return error_code::success();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000247}
248
Michael J. Spencer409f5562010-12-03 17:53:55 +0000249error_code rename(const Twine &from, const Twine &to) {
250 // Get arguments.
251 SmallString<128> from_storage;
252 SmallString<128> to_storage;
253 StringRef f = from.toNullTerminatedStringRef(from_storage);
254 StringRef t = to.toNullTerminatedStringRef(to_storage);
255
Michael J. Spencerec202ee2011-01-16 22:18:41 +0000256 if (::rename(f.begin(), t.begin()) == -1) {
257 // If it's a cross device link, copy then delete, otherwise return the error
258 if (errno == EXDEV) {
259 if (error_code ec = copy_file(from, to, copy_option::overwrite_if_exists))
260 return ec;
261 bool Existed;
262 if (error_code ec = remove(from, Existed))
263 return ec;
264 } else
265 return error_code(errno, system_category());
266 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000267
David Blaikie18544b92012-02-09 19:24:12 +0000268 return error_code::success();
Michael J. Spencer409f5562010-12-03 17:53:55 +0000269}
270
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000271error_code resize_file(const Twine &path, uint64_t size) {
272 SmallString<128> path_storage;
273 StringRef p = path.toNullTerminatedStringRef(path_storage);
274
275 if (::truncate(p.begin(), size) == -1)
276 return error_code(errno, system_category());
277
David Blaikie18544b92012-02-09 19:24:12 +0000278 return error_code::success();
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000279}
280
Michael J. Spencer45710402010-12-03 01:21:28 +0000281error_code exists(const Twine &path, bool &result) {
282 SmallString<128> path_storage;
283 StringRef p = path.toNullTerminatedStringRef(path_storage);
284
Benjamin Kramer172f8082012-06-02 16:28:09 +0000285 if (::access(p.begin(), F_OK) == -1) {
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000286 if (errno != errc::no_such_file_or_directory)
Michael J. Spencer45710402010-12-03 01:21:28 +0000287 return error_code(errno, system_category());
288 result = false;
289 } else
290 result = true;
291
David Blaikie18544b92012-02-09 19:24:12 +0000292 return error_code::success();
Michael J. Spencer45710402010-12-03 01:21:28 +0000293}
294
Rafael Espindolab0a5c962013-06-14 19:38:45 +0000295bool can_execute(const Twine &Path) {
296 SmallString<128> PathStorage;
297 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
298
299 return ::access(P.begin(), X_OK) != -1;
300}
301
Michael J. Spencer203d7802011-12-12 06:04:28 +0000302bool equivalent(file_status A, file_status B) {
303 assert(status_known(A) && status_known(B));
Sylvestre Ledru3099f4bd2012-04-23 16:37:23 +0000304 return A.fs_st_dev == B.fs_st_dev &&
305 A.fs_st_ino == B.fs_st_ino;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000306}
307
Michael J. Spencer376d3872010-12-03 18:49:13 +0000308error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000309 file_status fsA, fsB;
310 if (error_code ec = status(A, fsA)) return ec;
311 if (error_code ec = status(B, fsB)) return ec;
312 result = equivalent(fsA, fsB);
David Blaikie18544b92012-02-09 19:24:12 +0000313 return error_code::success();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000314}
315
Michael J. Spencer818ab4a2010-12-04 00:31:48 +0000316error_code file_size(const Twine &path, uint64_t &result) {
317 SmallString<128> path_storage;
318 StringRef p = path.toNullTerminatedStringRef(path_storage);
319
320 struct stat status;
321 if (::stat(p.begin(), &status) == -1)
322 return error_code(errno, system_category());
323 if (!S_ISREG(status.st_mode))
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000324 return make_error_code(errc::operation_not_permitted);
Michael J. Spencer818ab4a2010-12-04 00:31:48 +0000325
326 result = status.st_size;
David Blaikie18544b92012-02-09 19:24:12 +0000327 return error_code::success();
Michael J. Spencer818ab4a2010-12-04 00:31:48 +0000328}
329
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000330error_code status(const Twine &path, file_status &result) {
331 SmallString<128> path_storage;
332 StringRef p = path.toNullTerminatedStringRef(path_storage);
333
334 struct stat status;
335 if (::stat(p.begin(), &status) != 0) {
336 error_code ec(errno, system_category());
337 if (ec == errc::no_such_file_or_directory)
338 result = file_status(file_type::file_not_found);
339 else
340 result = file_status(file_type::status_error);
341 return ec;
342 }
343
Nick Kledzik18497e92012-06-20 00:28:54 +0000344 perms prms = static_cast<perms>(status.st_mode & perms_mask);
345
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000346 if (S_ISDIR(status.st_mode))
Nick Kledzik18497e92012-06-20 00:28:54 +0000347 result = file_status(file_type::directory_file, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000348 else if (S_ISREG(status.st_mode))
Nick Kledzik18497e92012-06-20 00:28:54 +0000349 result = file_status(file_type::regular_file, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000350 else if (S_ISBLK(status.st_mode))
Nick Kledzik18497e92012-06-20 00:28:54 +0000351 result = file_status(file_type::block_file, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000352 else if (S_ISCHR(status.st_mode))
Nick Kledzik18497e92012-06-20 00:28:54 +0000353 result = file_status(file_type::character_file, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000354 else if (S_ISFIFO(status.st_mode))
Nick Kledzik18497e92012-06-20 00:28:54 +0000355 result = file_status(file_type::fifo_file, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000356 else if (S_ISSOCK(status.st_mode))
Nick Kledzik18497e92012-06-20 00:28:54 +0000357 result = file_status(file_type::socket_file, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000358 else
Nick Kledzik18497e92012-06-20 00:28:54 +0000359 result = file_status(file_type::type_unknown, prms);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000360
Sylvestre Ledru3099f4bd2012-04-23 16:37:23 +0000361 result.fs_st_dev = status.st_dev;
362 result.fs_st_ino = status.st_ino;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000363
David Blaikie18544b92012-02-09 19:24:12 +0000364 return error_code::success();
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000365}
366
Nick Kledzik18497e92012-06-20 00:28:54 +0000367// Modifies permissions on a file.
368error_code permissions(const Twine &path, perms prms) {
369 if ((prms & add_perms) && (prms & remove_perms))
370 llvm_unreachable("add_perms and remove_perms are mutually exclusive");
371
372 // Get current permissions
373 file_status info;
374 if (error_code ec = status(path, info)) {
375 return ec;
376 }
377
378 // Set updated permissions.
379 SmallString<128> path_storage;
380 StringRef p = path.toNullTerminatedStringRef(path_storage);
381 perms permsToSet;
382 if (prms & add_perms) {
383 permsToSet = (info.permissions() | prms) & perms_mask;
384 } else if (prms & remove_perms) {
385 permsToSet = (info.permissions() & ~prms) & perms_mask;
386 } else {
387 permsToSet = prms & perms_mask;
388 }
389 if (::chmod(p.begin(), static_cast<mode_t>(permsToSet))) {
390 return error_code(errno, system_category());
391 }
392
393 return error_code::success();
394}
395
Eric Christopherb6148ed2012-05-11 00:07:44 +0000396// Since this is most often used for temporary files, mode defaults to 0600.
Michael J. Spencer45710402010-12-03 01:21:28 +0000397error_code unique_file(const Twine &model, int &result_fd,
Eric Christopherb6148ed2012-05-11 00:07:44 +0000398 SmallVectorImpl<char> &result_path,
399 bool makeAbsolute, unsigned mode) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000400 SmallString<128> Model;
401 model.toVector(Model);
402 // Null terminate.
403 Model.c_str();
404
Argyrios Kyrtzidis348937d2011-07-28 00:29:20 +0000405 if (makeAbsolute) {
406 // Make model absolute by prepending a temp directory if it's not already.
407 bool absolute = path::is_absolute(Twine(Model));
408 if (!absolute) {
409 SmallString<128> TDir;
410 if (error_code ec = TempDir(TDir)) return ec;
411 path::append(TDir, Twine(Model));
412 Model.swap(TDir);
413 }
Michael J. Spencer45710402010-12-03 01:21:28 +0000414 }
415
Daniel Dunbar58ed0c62012-05-05 16:39:22 +0000416 // From here on, DO NOT modify model. It may be needed if the randomly chosen
417 // path already exists.
Daniel Dunbar3f0fa192012-05-05 16:36:24 +0000418 SmallString<128> RandomPath = Model;
Michael J. Spencer45710402010-12-03 01:21:28 +0000419
420retry_random_path:
Daniel Dunbar58ed0c62012-05-05 16:39:22 +0000421 // Replace '%' with random chars.
Daniel Dunbar3f0fa192012-05-05 16:36:24 +0000422 for (unsigned i = 0, e = Model.size(); i != e; ++i) {
423 if (Model[i] == '%')
424 RandomPath[i] = "0123456789abcdef"[sys::Process::GetRandomNumber() & 15];
Michael J. Spencer45710402010-12-03 01:21:28 +0000425 }
426
Argyrios Kyrtzidiseed2dc52013-02-28 00:38:19 +0000427 // Make sure we don't fall into an infinite loop by constantly trying
428 // to create the parent path.
429 bool TriedToCreateParent = false;
430
Michael J. Spencer45710402010-12-03 01:21:28 +0000431 // Try to open + create the file.
432rety_open_create:
Eric Christopherb6148ed2012-05-11 00:07:44 +0000433 int RandomFD = ::open(RandomPath.c_str(), O_RDWR | O_CREAT | O_EXCL, mode);
Michael J. Spencer45710402010-12-03 01:21:28 +0000434 if (RandomFD == -1) {
Douglas Gregor95585ab2013-01-10 01:58:46 +0000435 int SavedErrno = errno;
Michael J. Spencer45710402010-12-03 01:21:28 +0000436 // If the file existed, try again, otherwise, error.
Douglas Gregor95585ab2013-01-10 01:58:46 +0000437 if (SavedErrno == errc::file_exists)
Michael J. Spencer45710402010-12-03 01:21:28 +0000438 goto retry_random_path;
Daniel Dunbar61d59f22012-11-15 20:24:52 +0000439 // If path prefix doesn't exist, try to create it.
Douglas Gregor6bd4d8c2013-04-05 20:48:36 +0000440 if (SavedErrno == errc::no_such_file_or_directory && !TriedToCreateParent) {
Argyrios Kyrtzidiseed2dc52013-02-28 00:38:19 +0000441 TriedToCreateParent = true;
Daniel Dunbar61d59f22012-11-15 20:24:52 +0000442 StringRef p(RandomPath);
Michael J. Spencer45710402010-12-03 01:21:28 +0000443 SmallString<64> dir_to_create;
444 for (path::const_iterator i = path::begin(p),
445 e = --path::end(p); i != e; ++i) {
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000446 path::append(dir_to_create, *i);
Michael J. Spencer45710402010-12-03 01:21:28 +0000447 bool Exists;
448 if (error_code ec = exists(Twine(dir_to_create), Exists)) return ec;
449 if (!Exists) {
450 // Don't try to create network paths.
451 if (i->size() > 2 && (*i)[0] == '/' &&
452 (*i)[1] == '/' &&
453 (*i)[2] != '/')
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000454 return make_error_code(errc::no_such_file_or_directory);
Douglas Gregor95585ab2013-01-10 01:58:46 +0000455 if (::mkdir(dir_to_create.c_str(), 0700) == -1 &&
456 errno != errc::file_exists)
Michael J. Spencer45710402010-12-03 01:21:28 +0000457 return error_code(errno, system_category());
458 }
459 }
460 goto rety_open_create;
461 }
Douglas Gregor95585ab2013-01-10 01:58:46 +0000462
463 return error_code(SavedErrno, system_category());
Michael J. Spencer45710402010-12-03 01:21:28 +0000464 }
465
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000466 // Make the path absolute.
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000467 char real_path_buff[PATH_MAX + 1];
468 if (realpath(RandomPath.c_str(), real_path_buff) == NULL) {
469 int error = errno;
Michael J. Spencer45710402010-12-03 01:21:28 +0000470 ::close(RandomFD);
471 ::unlink(RandomPath.c_str());
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000472 return error_code(error, system_category());
Michael J. Spencer45710402010-12-03 01:21:28 +0000473 }
474
Andrew Tricka4ec5b22011-03-24 16:43:37 +0000475 result_path.clear();
476 StringRef d(real_path_buff);
477 result_path.append(d.begin(), d.end());
478
Michael J. Spencer45710402010-12-03 01:21:28 +0000479 result_fd = RandomFD;
David Blaikie18544b92012-02-09 19:24:12 +0000480 return error_code::success();
Michael J. Spencer45710402010-12-03 01:21:28 +0000481}
482
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000483error_code mapped_file_region::init(int FD, bool CloseFD, uint64_t Offset) {
484 AutoFD ScopedFD(FD);
485 if (!CloseFD)
486 ScopedFD.take();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000487
488 // Figure out how large the file is.
489 struct stat FileInfo;
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000490 if (fstat(FD, &FileInfo) == -1)
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000491 return error_code(errno, system_category());
492 uint64_t FileSize = FileInfo.st_size;
493
494 if (Size == 0)
495 Size = FileSize;
496 else if (FileSize < Size) {
497 // We need to grow the file.
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000498 if (ftruncate(FD, Size) == -1)
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000499 return error_code(errno, system_category());
500 }
501
502 int flags = (Mode == readwrite) ? MAP_SHARED : MAP_PRIVATE;
503 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
504#ifdef MAP_FILE
505 flags |= MAP_FILE;
506#endif
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000507 Mapping = ::mmap(0, Size, prot, flags, FD, Offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000508 if (Mapping == MAP_FAILED)
509 return error_code(errno, system_category());
510 return error_code::success();
511}
512
513mapped_file_region::mapped_file_region(const Twine &path,
514 mapmode mode,
515 uint64_t length,
516 uint64_t offset,
517 error_code &ec)
518 : Mode(mode)
519 , Size(length)
520 , Mapping() {
521 // Make sure that the requested size fits within SIZE_T.
522 if (length > std::numeric_limits<size_t>::max()) {
523 ec = make_error_code(errc::invalid_argument);
524 return;
525 }
526
527 SmallString<128> path_storage;
528 StringRef name = path.toNullTerminatedStringRef(path_storage);
529 int oflags = (mode == readonly) ? O_RDONLY : O_RDWR;
530 int ofd = ::open(name.begin(), oflags);
531 if (ofd == -1) {
532 ec = error_code(errno, system_category());
533 return;
534 }
535
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000536 ec = init(ofd, true, offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000537 if (ec)
538 Mapping = 0;
539}
540
541mapped_file_region::mapped_file_region(int fd,
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000542 bool closefd,
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000543 mapmode mode,
544 uint64_t length,
545 uint64_t offset,
546 error_code &ec)
547 : Mode(mode)
548 , Size(length)
549 , Mapping() {
550 // Make sure that the requested size fits within SIZE_T.
551 if (length > std::numeric_limits<size_t>::max()) {
552 ec = make_error_code(errc::invalid_argument);
553 return;
554 }
555
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000556 ec = init(fd, closefd, offset);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000557 if (ec)
558 Mapping = 0;
559}
560
561mapped_file_region::~mapped_file_region() {
562 if (Mapping)
563 ::munmap(Mapping, Size);
564}
565
Chandler Carruthf12e3a62012-11-30 11:45:22 +0000566#if LLVM_HAS_RVALUE_REFERENCES
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000567mapped_file_region::mapped_file_region(mapped_file_region &&other)
568 : Mode(other.Mode), Size(other.Size), Mapping(other.Mapping) {
569 other.Mapping = 0;
570}
571#endif
572
573mapped_file_region::mapmode mapped_file_region::flags() const {
574 assert(Mapping && "Mapping failed but used anyway!");
575 return Mode;
576}
577
578uint64_t mapped_file_region::size() const {
579 assert(Mapping && "Mapping failed but used anyway!");
580 return Size;
581}
582
583char *mapped_file_region::data() const {
584 assert(Mapping && "Mapping failed but used anyway!");
585 assert(Mode != readonly && "Cannot get non const data for readonly mapping!");
586 return reinterpret_cast<char*>(Mapping);
587}
588
589const char *mapped_file_region::const_data() const {
590 assert(Mapping && "Mapping failed but used anyway!");
591 return reinterpret_cast<const char*>(Mapping);
592}
593
594int mapped_file_region::alignment() {
Chandler Carruthacd64be2012-12-31 23:31:56 +0000595 return process::get_self()->page_size();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000596}
597
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000598error_code detail::directory_iterator_construct(detail::DirIterState &it,
599 StringRef path){
Michael J. Spencer52714862011-01-05 16:38:57 +0000600 SmallString<128> path_null(path);
601 DIR *directory = ::opendir(path_null.c_str());
602 if (directory == 0)
603 return error_code(errno, system_category());
604
605 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
606 // Add something for replace_filename to replace.
607 path::append(path_null, ".");
608 it.CurrentEntry = directory_entry(path_null.str());
609 return directory_iterator_increment(it);
610}
611
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000612error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000613 if (it.IterationHandle)
614 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
615 it.IterationHandle = 0;
616 it.CurrentEntry = directory_entry();
David Blaikie18544b92012-02-09 19:24:12 +0000617 return error_code::success();
Michael J. Spencer52714862011-01-05 16:38:57 +0000618}
619
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000620error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer52714862011-01-05 16:38:57 +0000621 errno = 0;
622 dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle));
623 if (cur_dir == 0 && errno != 0) {
624 return error_code(errno, system_category());
625 } else if (cur_dir != 0) {
626 StringRef name(cur_dir->d_name, NAMLEN(cur_dir));
627 if ((name.size() == 1 && name[0] == '.') ||
628 (name.size() == 2 && name[0] == '.' && name[1] == '.'))
629 return directory_iterator_increment(it);
630 it.CurrentEntry.replace_filename(name);
631 } else
632 return directory_iterator_destruct(it);
633
David Blaikie18544b92012-02-09 19:24:12 +0000634 return error_code::success();
Michael J. Spencer52714862011-01-05 16:38:57 +0000635}
636
Michael J. Spenceree1699c2011-01-15 18:52:33 +0000637error_code get_magic(const Twine &path, uint32_t len,
638 SmallVectorImpl<char> &result) {
639 SmallString<128> PathStorage;
640 StringRef Path = path.toNullTerminatedStringRef(PathStorage);
641 result.set_size(0);
642
643 // Open path.
644 std::FILE *file = std::fopen(Path.data(), "rb");
645 if (file == 0)
646 return error_code(errno, system_category());
647
648 // Reserve storage.
649 result.reserve(len);
650
651 // Read magic!
652 size_t size = std::fread(result.data(), 1, len, file);
653 if (std::ferror(file) != 0) {
654 std::fclose(file);
655 return error_code(errno, system_category());
656 } else if (size != result.size()) {
657 if (std::feof(file) != 0) {
658 std::fclose(file);
659 result.set_size(size);
660 return make_error_code(errc::value_too_large);
661 }
662 }
663 std::fclose(file);
664 result.set_size(len);
David Blaikie18544b92012-02-09 19:24:12 +0000665 return error_code::success();
Michael J. Spenceree1699c2011-01-15 18:52:33 +0000666}
667
Nick Kledzik18497e92012-06-20 00:28:54 +0000668error_code map_file_pages(const Twine &path, off_t file_offset, size_t size,
669 bool map_writable, void *&result) {
670 SmallString<128> path_storage;
671 StringRef name = path.toNullTerminatedStringRef(path_storage);
672 int oflags = map_writable ? O_RDWR : O_RDONLY;
673 int ofd = ::open(name.begin(), oflags);
674 if ( ofd == -1 )
675 return error_code(errno, system_category());
676 AutoFD fd(ofd);
677 int flags = map_writable ? MAP_SHARED : MAP_PRIVATE;
678 int prot = map_writable ? (PROT_READ|PROT_WRITE) : PROT_READ;
679#ifdef MAP_FILE
680 flags |= MAP_FILE;
681#endif
682 result = ::mmap(0, size, prot, flags, fd, file_offset);
683 if (result == MAP_FAILED) {
684 return error_code(errno, system_category());
685 }
686
687 return error_code::success();
688}
689
690error_code unmap_file_pages(void *base, size_t size) {
691 if ( ::munmap(base, size) == -1 )
692 return error_code(errno, system_category());
693
694 return error_code::success();
695}
696
697
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000698} // end namespace fs
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000699} // end namespace sys
700} // end namespace llvm