blob: 1f5c622cfaaa5373c7a09f7972c1e89c13bb3f21 [file] [log] [blame]
Eugene Zelenko5a520112018-03-28 22:09:09 +00001//===- VirtualFileSystem.cpp - Virtual File System Layer ------------------===//
Ben Langmuirc8130a72014-02-20 21:59:23 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Ben Langmuirc8130a72014-02-20 21:59:23 +00006//
7//===----------------------------------------------------------------------===//
Eugene Zelenko5a520112018-03-28 22:09:09 +00008//
Ben Langmuirc8130a72014-02-20 21:59:23 +00009// This file implements the VirtualFileSystem interface.
Eugene Zelenko5a520112018-03-28 22:09:09 +000010//
Ben Langmuirc8130a72014-02-20 21:59:23 +000011//===----------------------------------------------------------------------===//
12
Jonas Devliegherefc514902018-10-10 13:27:25 +000013#include "llvm/Support/VirtualFileSystem.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000014#include "llvm/ADT/ArrayRef.h"
Ben Langmuird51ba0b2014-02-21 23:39:37 +000015#include "llvm/ADT/DenseMap.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000016#include "llvm/ADT/IntrusiveRefCntPtr.h"
Ilya Biryukovd5554c512018-09-04 14:15:53 +000017#include "llvm/ADT/None.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000018#include "llvm/ADT/Optional.h"
Ben Langmuird51ba0b2014-02-21 23:39:37 +000019#include "llvm/ADT/STLExtras.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000020#include "llvm/ADT/SmallString.h"
21#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/StringRef.h"
Ben Langmuir740812b2014-06-24 19:37:16 +000023#include "llvm/ADT/StringSet.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000024#include "llvm/ADT/Twine.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000025#include "llvm/ADT/iterator_range.h"
Benjamin Kramercfeacf52016-05-27 14:27:13 +000026#include "llvm/Config/llvm-config.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000027#include "llvm/Support/Casting.h"
28#include "llvm/Support/Chrono.h"
Ilya Biryukovd5554c512018-09-04 14:15:53 +000029#include "llvm/Support/Compiler.h"
Bruno Cardoso Lopesb2e2e212016-05-06 23:21:57 +000030#include "llvm/Support/Debug.h"
Rafael Espindola71de0b62014-06-13 17:20:50 +000031#include "llvm/Support/Errc.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000032#include "llvm/Support/ErrorHandling.h"
33#include "llvm/Support/ErrorOr.h"
34#include "llvm/Support/FileSystem.h"
Ben Langmuirc8130a72014-02-20 21:59:23 +000035#include "llvm/Support/MemoryBuffer.h"
Ben Langmuirc8130a72014-02-20 21:59:23 +000036#include "llvm/Support/Path.h"
David Majnemer6a6206d2016-03-04 05:26:14 +000037#include "llvm/Support/Process.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000038#include "llvm/Support/SMLoc.h"
39#include "llvm/Support/SourceMgr.h"
Ben Langmuird51ba0b2014-02-21 23:39:37 +000040#include "llvm/Support/YAMLParser.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000041#include "llvm/Support/raw_ostream.h"
42#include <algorithm>
Benjamin Kramer4527fb22014-03-02 17:08:31 +000043#include <atomic>
Eugene Zelenko5a520112018-03-28 22:09:09 +000044#include <cassert>
45#include <cstdint>
46#include <iterator>
47#include <limits>
48#include <map>
Ahmed Charlesdfca6f92014-03-09 11:36:40 +000049#include <memory>
Eric Liucea78e32018-09-05 09:45:27 +000050#include <mutex>
Eugene Zelenko5a520112018-03-28 22:09:09 +000051#include <string>
52#include <system_error>
Benjamin Kramercfeacf52016-05-27 14:27:13 +000053#include <utility>
Eugene Zelenko5a520112018-03-28 22:09:09 +000054#include <vector>
Ben Langmuirc8130a72014-02-20 21:59:23 +000055
Ben Langmuirc8130a72014-02-20 21:59:23 +000056using namespace llvm;
Jonas Devliegherefc514902018-10-10 13:27:25 +000057using namespace llvm::vfs;
Eugene Zelenko5a520112018-03-28 22:09:09 +000058
Ben Langmuirc8130a72014-02-20 21:59:23 +000059using llvm::sys::fs::file_status;
60using llvm::sys::fs::file_type;
61using llvm::sys::fs::perms;
62using llvm::sys::fs::UniqueID;
63
64Status::Status(const file_status &Status)
65 : UID(Status.getUniqueID()), MTime(Status.getLastModificationTime()),
66 User(Status.getUser()), Group(Status.getGroup()), Size(Status.getSize()),
Jonas Devliegherefc514902018-10-10 13:27:25 +000067 Type(Status.type()), Perms(Status.permissions()) {}
Ben Langmuirc8130a72014-02-20 21:59:23 +000068
Pavel Labathac71c8e2016-11-09 10:52:22 +000069Status::Status(StringRef Name, UniqueID UID, sys::TimePoint<> MTime,
Benjamin Kramer268b51a2015-10-05 13:15:33 +000070 uint32_t User, uint32_t Group, uint64_t Size, file_type Type,
71 perms Perms)
Ben Langmuirb59cf672014-02-27 00:25:12 +000072 : Name(Name), UID(UID), MTime(MTime), User(User), Group(Group), Size(Size),
Eugene Zelenko5a520112018-03-28 22:09:09 +000073 Type(Type), Perms(Perms) {}
Ben Langmuirc8130a72014-02-20 21:59:23 +000074
Jordan Rupprechta8fb7292018-07-24 20:28:07 +000075Status Status::copyWithNewName(const Status &In, StringRef NewName) {
76 return Status(NewName, In.getUniqueID(), In.getLastModificationTime(),
77 In.getUser(), In.getGroup(), In.getSize(), In.getType(),
78 In.getPermissions());
79}
Benjamin Kramer268b51a2015-10-05 13:15:33 +000080
Jordan Rupprechta8fb7292018-07-24 20:28:07 +000081Status Status::copyWithNewName(const file_status &In, StringRef NewName) {
82 return Status(NewName, In.getUniqueID(), In.getLastModificationTime(),
83 In.getUser(), In.getGroup(), In.getSize(), In.type(),
84 In.permissions());
Benjamin Kramer268b51a2015-10-05 13:15:33 +000085}
86
Ben Langmuirc8130a72014-02-20 21:59:23 +000087bool Status::equivalent(const Status &Other) const {
Benjamin Kramerd5152912017-07-20 11:57:02 +000088 assert(isStatusKnown() && Other.isStatusKnown());
Ben Langmuirc8130a72014-02-20 21:59:23 +000089 return getUniqueID() == Other.getUniqueID();
90}
Eugene Zelenko5a520112018-03-28 22:09:09 +000091
Jonas Devliegherefc514902018-10-10 13:27:25 +000092bool Status::isDirectory() const { return Type == file_type::directory_file; }
Eugene Zelenko5a520112018-03-28 22:09:09 +000093
Jonas Devliegherefc514902018-10-10 13:27:25 +000094bool Status::isRegularFile() const { return Type == file_type::regular_file; }
Eugene Zelenko5a520112018-03-28 22:09:09 +000095
Ben Langmuirc8130a72014-02-20 21:59:23 +000096bool Status::isOther() const {
97 return exists() && !isRegularFile() && !isDirectory() && !isSymlink();
98}
Eugene Zelenko5a520112018-03-28 22:09:09 +000099
Jonas Devliegherefc514902018-10-10 13:27:25 +0000100bool Status::isSymlink() const { return Type == file_type::symlink_file; }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000101
Jonas Devliegherefc514902018-10-10 13:27:25 +0000102bool Status::isStatusKnown() const { return Type != file_type::status_error; }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000103
Ben Langmuirc8130a72014-02-20 21:59:23 +0000104bool Status::exists() const {
105 return isStatusKnown() && Type != file_type::file_not_found;
106}
107
Eugene Zelenko5a520112018-03-28 22:09:09 +0000108File::~File() = default;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000109
Eugene Zelenko5a520112018-03-28 22:09:09 +0000110FileSystem::~FileSystem() = default;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000111
Benjamin Kramera8857962014-10-26 22:44:13 +0000112ErrorOr<std::unique_ptr<MemoryBuffer>>
113FileSystem::getBufferForFile(const llvm::Twine &Name, int64_t FileSize,
114 bool RequiresNullTerminator, bool IsVolatile) {
115 auto F = openFileForRead(Name);
116 if (!F)
117 return F.getError();
Ben Langmuirc8130a72014-02-20 21:59:23 +0000118
Benjamin Kramera8857962014-10-26 22:44:13 +0000119 return (*F)->getBuffer(Name, FileSize, RequiresNullTerminator, IsVolatile);
Ben Langmuirc8130a72014-02-20 21:59:23 +0000120}
121
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000122std::error_code FileSystem::makeAbsolute(SmallVectorImpl<char> &Path) const {
Bob Wilsonf43354f2016-03-26 18:55:13 +0000123 if (llvm::sys::path::is_absolute(Path))
Eugene Zelenko5a520112018-03-28 22:09:09 +0000124 return {};
Bob Wilsonf43354f2016-03-26 18:55:13 +0000125
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000126 auto WorkingDir = getCurrentWorkingDirectory();
127 if (!WorkingDir)
128 return WorkingDir.getError();
129
Pavel Labath1ad53ca2019-01-16 09:55:32 +0000130 llvm::sys::fs::make_absolute(WorkingDir.get(), Path);
131 return {};
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000132}
133
Eric Liu5fb18fe2018-05-17 10:26:23 +0000134std::error_code FileSystem::getRealPath(const Twine &Path,
Sam McCall99538e82018-11-09 15:11:34 +0000135 SmallVectorImpl<char> &Output) const {
Eric Liu5fb18fe2018-05-17 10:26:23 +0000136 return errc::operation_not_permitted;
137}
138
Jonas Devliegherecbb5c862018-11-08 00:01:32 +0000139std::error_code FileSystem::isLocal(const Twine &Path, bool &Result) {
140 return errc::operation_not_permitted;
141}
142
Benjamin Kramerd45b2052015-10-07 15:48:01 +0000143bool FileSystem::exists(const Twine &Path) {
144 auto Status = status(Path);
145 return Status && Status->exists();
146}
147
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +0000148#ifndef NDEBUG
149static bool isTraversalComponent(StringRef Component) {
150 return Component.equals("..") || Component.equals(".");
151}
152
153static bool pathHasTraversal(StringRef Path) {
154 using namespace llvm::sys;
Eugene Zelenko5a520112018-03-28 22:09:09 +0000155
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +0000156 for (StringRef Comp : llvm::make_range(path::begin(Path), path::end(Path)))
157 if (isTraversalComponent(Comp))
158 return true;
159 return false;
160}
161#endif
162
Ben Langmuirc8130a72014-02-20 21:59:23 +0000163//===-----------------------------------------------------------------------===/
164// RealFileSystem implementation
165//===-----------------------------------------------------------------------===/
166
Benjamin Kramer3d6220d2014-03-01 17:21:22 +0000167namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000168
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000169/// Wrapper around a raw file descriptor.
Ben Langmuirc8130a72014-02-20 21:59:23 +0000170class RealFile : public File {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000171 friend class RealFileSystem;
172
Ben Langmuirc8130a72014-02-20 21:59:23 +0000173 int FD;
Ben Langmuird066d4c2014-02-28 21:16:07 +0000174 Status S;
Taewook Ohf42103c2016-06-13 20:40:21 +0000175 std::string RealName;
Eugene Zelenko5a520112018-03-28 22:09:09 +0000176
Taewook Ohf42103c2016-06-13 20:40:21 +0000177 RealFile(int FD, StringRef NewName, StringRef NewRealPathName)
Benjamin Kramer268b51a2015-10-05 13:15:33 +0000178 : FD(FD), S(NewName, {}, {}, {}, {}, {},
Taewook Ohf42103c2016-06-13 20:40:21 +0000179 llvm::sys::fs::file_type::status_error, {}),
180 RealName(NewRealPathName.str()) {
Ben Langmuirc8130a72014-02-20 21:59:23 +0000181 assert(FD >= 0 && "Invalid or inactive file descriptor");
182 }
Ben Langmuird51ba0b2014-02-21 23:39:37 +0000183
Ben Langmuirc8130a72014-02-20 21:59:23 +0000184public:
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000185 ~RealFile() override;
Eugene Zelenko5a520112018-03-28 22:09:09 +0000186
Craig Toppera798a9d2014-03-02 09:32:10 +0000187 ErrorOr<Status> status() override;
Jordan Rupprechta8fb7292018-07-24 20:28:07 +0000188 ErrorOr<std::string> getName() override;
Benjamin Kramer737501c2015-10-05 21:20:19 +0000189 ErrorOr<std::unique_ptr<MemoryBuffer>> getBuffer(const Twine &Name,
190 int64_t FileSize,
191 bool RequiresNullTerminator,
192 bool IsVolatile) override;
Rafael Espindola8e650d72014-06-12 20:37:59 +0000193 std::error_code close() override;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000194};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000195
196} // namespace
197
Ben Langmuird51ba0b2014-02-21 23:39:37 +0000198RealFile::~RealFile() { close(); }
Ben Langmuirc8130a72014-02-20 21:59:23 +0000199
200ErrorOr<Status> RealFile::status() {
201 assert(FD != -1 && "cannot stat closed file");
Ben Langmuird066d4c2014-02-28 21:16:07 +0000202 if (!S.isStatusKnown()) {
203 file_status RealStatus;
Rafael Espindola8e650d72014-06-12 20:37:59 +0000204 if (std::error_code EC = sys::fs::status(FD, RealStatus))
Ben Langmuird066d4c2014-02-28 21:16:07 +0000205 return EC;
Jordan Rupprechta8fb7292018-07-24 20:28:07 +0000206 S = Status::copyWithNewName(RealStatus, S.getName());
Ben Langmuird066d4c2014-02-28 21:16:07 +0000207 }
208 return S;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000209}
210
Jordan Rupprechta8fb7292018-07-24 20:28:07 +0000211ErrorOr<std::string> RealFile::getName() {
212 return RealName.empty() ? S.getName().str() : RealName;
Taewook Ohf42103c2016-06-13 20:40:21 +0000213}
214
Benjamin Kramera8857962014-10-26 22:44:13 +0000215ErrorOr<std::unique_ptr<MemoryBuffer>>
216RealFile::getBuffer(const Twine &Name, int64_t FileSize,
217 bool RequiresNullTerminator, bool IsVolatile) {
Ben Langmuirc8130a72014-02-20 21:59:23 +0000218 assert(FD != -1 && "cannot get buffer for closed file");
Benjamin Kramera8857962014-10-26 22:44:13 +0000219 return MemoryBuffer::getOpenFile(FD, Name, FileSize, RequiresNullTerminator,
220 IsVolatile);
Ben Langmuirc8130a72014-02-20 21:59:23 +0000221}
222
Rafael Espindola8e650d72014-06-12 20:37:59 +0000223std::error_code RealFile::close() {
David Majnemer6a6206d2016-03-04 05:26:14 +0000224 std::error_code EC = sys::Process::SafelyCloseFileDescriptor(FD);
Ben Langmuirc8130a72014-02-20 21:59:23 +0000225 FD = -1;
David Majnemer6a6206d2016-03-04 05:26:14 +0000226 return EC;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000227}
228
Benjamin Kramer3d6220d2014-03-01 17:21:22 +0000229namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000230
Sam McCall15e475e2019-02-14 12:57:01 +0000231/// A file system according to your operating system.
232/// This may be linked to the process's working directory, or maintain its own.
233///
234/// Currently, its own working directory is emulated by storing the path and
235/// sending absolute paths to llvm::sys::fs:: functions.
236/// A more principled approach would be to push this down a level, modelling
237/// the working dir as an llvm::sys::fs::WorkingDir or similar.
238/// This would enable the use of openat()-style functions on some platforms.
Ben Langmuirc8130a72014-02-20 21:59:23 +0000239class RealFileSystem : public FileSystem {
240public:
Sam McCall15e475e2019-02-14 12:57:01 +0000241 explicit RealFileSystem(bool LinkCWDToProcess) {
242 if (!LinkCWDToProcess) {
243 SmallString<128> PWD, RealPWD;
244 if (llvm::sys::fs::current_path(PWD))
245 return; // Awful, but nothing to do here.
246 if (llvm::sys::fs::real_path(PWD, RealPWD))
247 WD = {PWD, PWD};
248 else
249 WD = {PWD, RealPWD};
250 }
251 }
252
Craig Toppera798a9d2014-03-02 09:32:10 +0000253 ErrorOr<Status> status(const Twine &Path) override;
Benjamin Kramera8857962014-10-26 22:44:13 +0000254 ErrorOr<std::unique_ptr<File>> openFileForRead(const Twine &Path) override;
Ben Langmuir740812b2014-06-24 19:37:16 +0000255 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000256
257 llvm::ErrorOr<std::string> getCurrentWorkingDirectory() const override;
258 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
Jonas Devliegherecbb5c862018-11-08 00:01:32 +0000259 std::error_code isLocal(const Twine &Path, bool &Result) override;
Sam McCall99538e82018-11-09 15:11:34 +0000260 std::error_code getRealPath(const Twine &Path,
261 SmallVectorImpl<char> &Output) const override;
Jonas Devliegherefc514902018-10-10 13:27:25 +0000262
Eric Liucea78e32018-09-05 09:45:27 +0000263private:
Sam McCall15e475e2019-02-14 12:57:01 +0000264 // If this FS has its own working dir, use it to make Path absolute.
265 // The returned twine is safe to use as long as both Storage and Path live.
266 Twine adjustPath(const Twine &Path, SmallVectorImpl<char> &Storage) const {
267 if (!WD)
268 return Path;
269 Path.toVector(Storage);
270 sys::fs::make_absolute(WD->Resolved, Storage);
271 return Storage;
272 }
273
274 struct WorkingDirectory {
275 // The current working directory, without symlinks resolved. (echo $PWD).
276 SmallString<128> Specified;
277 // The current working directory, with links resolved. (readlink .).
278 SmallString<128> Resolved;
279 };
280 Optional<WorkingDirectory> WD;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000281};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000282
283} // namespace
Ben Langmuirc8130a72014-02-20 21:59:23 +0000284
285ErrorOr<Status> RealFileSystem::status(const Twine &Path) {
Sam McCall15e475e2019-02-14 12:57:01 +0000286 SmallString<256> Storage;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000287 sys::fs::file_status RealStatus;
Sam McCall15e475e2019-02-14 12:57:01 +0000288 if (std::error_code EC =
289 sys::fs::status(adjustPath(Path, Storage), RealStatus))
Ben Langmuirc8130a72014-02-20 21:59:23 +0000290 return EC;
Jordan Rupprechta8fb7292018-07-24 20:28:07 +0000291 return Status::copyWithNewName(RealStatus, Path.str());
Ben Langmuirc8130a72014-02-20 21:59:23 +0000292}
293
Benjamin Kramera8857962014-10-26 22:44:13 +0000294ErrorOr<std::unique_ptr<File>>
295RealFileSystem::openFileForRead(const Twine &Name) {
Ben Langmuirc8130a72014-02-20 21:59:23 +0000296 int FD;
Sam McCall15e475e2019-02-14 12:57:01 +0000297 SmallString<256> RealName, Storage;
298 if (std::error_code EC = sys::fs::openFileForRead(
299 adjustPath(Name, Storage), FD, sys::fs::OF_None, &RealName))
Ben Langmuirc8130a72014-02-20 21:59:23 +0000300 return EC;
Taewook Ohf42103c2016-06-13 20:40:21 +0000301 return std::unique_ptr<File>(new RealFile(FD, Name.str(), RealName.str()));
Ben Langmuirc8130a72014-02-20 21:59:23 +0000302}
303
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000304llvm::ErrorOr<std::string> RealFileSystem::getCurrentWorkingDirectory() const {
Sam McCall15e475e2019-02-14 12:57:01 +0000305 if (WD)
306 return WD->Specified.str();
307
308 SmallString<128> Dir;
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000309 if (std::error_code EC = llvm::sys::fs::current_path(Dir))
310 return EC;
Sam McCall15e475e2019-02-14 12:57:01 +0000311 return Dir.str();
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000312}
313
314std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) {
Sam McCall15e475e2019-02-14 12:57:01 +0000315 if (!WD)
316 return llvm::sys::fs::set_current_path(Path);
Eric Liucea78e32018-09-05 09:45:27 +0000317
Sam McCall15e475e2019-02-14 12:57:01 +0000318 SmallString<128> Absolute, Resolved, Storage;
319 adjustPath(Path, Storage).toVector(Absolute);
320 bool IsDir;
321 if (auto Err = llvm::sys::fs::is_directory(Absolute, IsDir))
322 return Err;
323 if (!IsDir)
324 return std::make_error_code(std::errc::not_a_directory);
325 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved))
326 return Err;
327 WD = {Absolute, Resolved};
Eric Liucea78e32018-09-05 09:45:27 +0000328 return std::error_code();
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000329}
330
Jonas Devliegherecbb5c862018-11-08 00:01:32 +0000331std::error_code RealFileSystem::isLocal(const Twine &Path, bool &Result) {
Sam McCall15e475e2019-02-14 12:57:01 +0000332 SmallString<256> Storage;
333 return llvm::sys::fs::is_local(adjustPath(Path, Storage), Result);
Jonas Devliegherecbb5c862018-11-08 00:01:32 +0000334}
335
Sam McCall99538e82018-11-09 15:11:34 +0000336std::error_code
337RealFileSystem::getRealPath(const Twine &Path,
338 SmallVectorImpl<char> &Output) const {
Sam McCall15e475e2019-02-14 12:57:01 +0000339 SmallString<256> Storage;
340 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output);
Eric Liu5fb18fe2018-05-17 10:26:23 +0000341}
342
Ben Langmuirc8130a72014-02-20 21:59:23 +0000343IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() {
Sam McCall15e475e2019-02-14 12:57:01 +0000344 static IntrusiveRefCntPtr<FileSystem> FS(new RealFileSystem(true));
Ben Langmuirc8130a72014-02-20 21:59:23 +0000345 return FS;
346}
347
Sam McCall15e475e2019-02-14 12:57:01 +0000348std::unique_ptr<FileSystem> vfs::createPhysicalFileSystem() {
349 return llvm::make_unique<RealFileSystem>(false);
350}
351
Ben Langmuir740812b2014-06-24 19:37:16 +0000352namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000353
Jonas Devliegherefc514902018-10-10 13:27:25 +0000354class RealFSDirIter : public llvm::vfs::detail::DirIterImpl {
Ben Langmuir740812b2014-06-24 19:37:16 +0000355 llvm::sys::fs::directory_iterator Iter;
Eugene Zelenko5a520112018-03-28 22:09:09 +0000356
Ben Langmuir740812b2014-06-24 19:37:16 +0000357public:
Juergen Ributzka4a259562017-03-10 21:23:29 +0000358 RealFSDirIter(const Twine &Path, std::error_code &EC) : Iter(Path, EC) {
Sam McCall0ae00562018-09-14 12:47:38 +0000359 if (Iter != llvm::sys::fs::directory_iterator())
360 CurrentEntry = directory_entry(Iter->path(), Iter->type());
Ben Langmuir740812b2014-06-24 19:37:16 +0000361 }
362
363 std::error_code increment() override {
364 std::error_code EC;
365 Iter.increment(EC);
Sam McCall0ae00562018-09-14 12:47:38 +0000366 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator())
367 ? directory_entry()
368 : directory_entry(Iter->path(), Iter->type());
Ben Langmuir740812b2014-06-24 19:37:16 +0000369 return EC;
370 }
371};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000372
373} // namespace
Ben Langmuir740812b2014-06-24 19:37:16 +0000374
375directory_iterator RealFileSystem::dir_begin(const Twine &Dir,
376 std::error_code &EC) {
Sam McCall15e475e2019-02-14 12:57:01 +0000377 SmallString<128> Storage;
378 return directory_iterator(
379 std::make_shared<RealFSDirIter>(adjustPath(Dir, Storage), EC));
Ben Langmuir740812b2014-06-24 19:37:16 +0000380}
381
Ben Langmuirc8130a72014-02-20 21:59:23 +0000382//===-----------------------------------------------------------------------===/
383// OverlayFileSystem implementation
384//===-----------------------------------------------------------------------===/
Eugene Zelenko5a520112018-03-28 22:09:09 +0000385
Ben Langmuirc8130a72014-02-20 21:59:23 +0000386OverlayFileSystem::OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> BaseFS) {
Benjamin Kramerd6da1a02016-06-12 20:05:23 +0000387 FSList.push_back(std::move(BaseFS));
Ben Langmuirc8130a72014-02-20 21:59:23 +0000388}
389
390void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr<FileSystem> FS) {
391 FSList.push_back(FS);
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000392 // Synchronize added file systems by duplicating the working directory from
393 // the first one in the list.
394 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get());
Ben Langmuirc8130a72014-02-20 21:59:23 +0000395}
396
397ErrorOr<Status> OverlayFileSystem::status(const Twine &Path) {
398 // FIXME: handle symlinks that cross file systems
399 for (iterator I = overlays_begin(), E = overlays_end(); I != E; ++I) {
400 ErrorOr<Status> Status = (*I)->status(Path);
Rafael Espindola71de0b62014-06-13 17:20:50 +0000401 if (Status || Status.getError() != llvm::errc::no_such_file_or_directory)
Ben Langmuirc8130a72014-02-20 21:59:23 +0000402 return Status;
403 }
Rafael Espindola71de0b62014-06-13 17:20:50 +0000404 return make_error_code(llvm::errc::no_such_file_or_directory);
Ben Langmuirc8130a72014-02-20 21:59:23 +0000405}
406
Benjamin Kramera8857962014-10-26 22:44:13 +0000407ErrorOr<std::unique_ptr<File>>
408OverlayFileSystem::openFileForRead(const llvm::Twine &Path) {
Ben Langmuirc8130a72014-02-20 21:59:23 +0000409 // FIXME: handle symlinks that cross file systems
410 for (iterator I = overlays_begin(), E = overlays_end(); I != E; ++I) {
Benjamin Kramera8857962014-10-26 22:44:13 +0000411 auto Result = (*I)->openFileForRead(Path);
412 if (Result || Result.getError() != llvm::errc::no_such_file_or_directory)
413 return Result;
Ben Langmuirc8130a72014-02-20 21:59:23 +0000414 }
Rafael Espindola71de0b62014-06-13 17:20:50 +0000415 return make_error_code(llvm::errc::no_such_file_or_directory);
Ben Langmuirc8130a72014-02-20 21:59:23 +0000416}
Ben Langmuird51ba0b2014-02-21 23:39:37 +0000417
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000418llvm::ErrorOr<std::string>
419OverlayFileSystem::getCurrentWorkingDirectory() const {
420 // All file systems are synchronized, just take the first working directory.
421 return FSList.front()->getCurrentWorkingDirectory();
422}
Eugene Zelenko5a520112018-03-28 22:09:09 +0000423
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000424std::error_code
425OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) {
426 for (auto &FS : FSList)
427 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path))
428 return EC;
Eugene Zelenko5a520112018-03-28 22:09:09 +0000429 return {};
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000430}
431
Jonas Devliegherecbb5c862018-11-08 00:01:32 +0000432std::error_code OverlayFileSystem::isLocal(const Twine &Path, bool &Result) {
433 for (auto &FS : FSList)
434 if (FS->exists(Path))
435 return FS->isLocal(Path, Result);
436 return errc::no_such_file_or_directory;
437}
438
Sam McCall99538e82018-11-09 15:11:34 +0000439std::error_code
440OverlayFileSystem::getRealPath(const Twine &Path,
441 SmallVectorImpl<char> &Output) const {
Eric Liua840a462018-05-18 13:22:49 +0000442 for (auto &FS : FSList)
443 if (FS->exists(Path))
Sam McCall99538e82018-11-09 15:11:34 +0000444 return FS->getRealPath(Path, Output);
Eric Liua840a462018-05-18 13:22:49 +0000445 return errc::no_such_file_or_directory;
446}
447
Jonas Devliegherefc514902018-10-10 13:27:25 +0000448llvm::vfs::detail::DirIterImpl::~DirIterImpl() = default;
Ben Langmuir740812b2014-06-24 19:37:16 +0000449
450namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000451
Jonas Devliegherefc514902018-10-10 13:27:25 +0000452class OverlayFSDirIterImpl : public llvm::vfs::detail::DirIterImpl {
Ben Langmuir740812b2014-06-24 19:37:16 +0000453 OverlayFileSystem &Overlays;
454 std::string Path;
455 OverlayFileSystem::iterator CurrentFS;
456 directory_iterator CurrentDirIter;
457 llvm::StringSet<> SeenNames;
458
459 std::error_code incrementFS() {
460 assert(CurrentFS != Overlays.overlays_end() && "incrementing past end");
461 ++CurrentFS;
462 for (auto E = Overlays.overlays_end(); CurrentFS != E; ++CurrentFS) {
463 std::error_code EC;
464 CurrentDirIter = (*CurrentFS)->dir_begin(Path, EC);
465 if (EC && EC != errc::no_such_file_or_directory)
466 return EC;
467 if (CurrentDirIter != directory_iterator())
468 break; // found
469 }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000470 return {};
Ben Langmuir740812b2014-06-24 19:37:16 +0000471 }
472
473 std::error_code incrementDirIter(bool IsFirstTime) {
474 assert((IsFirstTime || CurrentDirIter != directory_iterator()) &&
475 "incrementing past end");
476 std::error_code EC;
477 if (!IsFirstTime)
478 CurrentDirIter.increment(EC);
479 if (!EC && CurrentDirIter == directory_iterator())
480 EC = incrementFS();
481 return EC;
482 }
483
484 std::error_code incrementImpl(bool IsFirstTime) {
485 while (true) {
486 std::error_code EC = incrementDirIter(IsFirstTime);
487 if (EC || CurrentDirIter == directory_iterator()) {
Sam McCall0ae00562018-09-14 12:47:38 +0000488 CurrentEntry = directory_entry();
Ben Langmuir740812b2014-06-24 19:37:16 +0000489 return EC;
490 }
491 CurrentEntry = *CurrentDirIter;
Sam McCall0ae00562018-09-14 12:47:38 +0000492 StringRef Name = llvm::sys::path::filename(CurrentEntry.path());
David Blaikie61b86d42014-11-19 02:56:13 +0000493 if (SeenNames.insert(Name).second)
Ben Langmuir740812b2014-06-24 19:37:16 +0000494 return EC; // name not seen before
495 }
496 llvm_unreachable("returned above");
497 }
498
499public:
500 OverlayFSDirIterImpl(const Twine &Path, OverlayFileSystem &FS,
501 std::error_code &EC)
502 : Overlays(FS), Path(Path.str()), CurrentFS(Overlays.overlays_begin()) {
503 CurrentDirIter = (*CurrentFS)->dir_begin(Path, EC);
504 EC = incrementImpl(true);
505 }
506
507 std::error_code increment() override { return incrementImpl(false); }
508};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000509
510} // namespace
Ben Langmuir740812b2014-06-24 19:37:16 +0000511
512directory_iterator OverlayFileSystem::dir_begin(const Twine &Dir,
513 std::error_code &EC) {
514 return directory_iterator(
515 std::make_shared<OverlayFSDirIterImpl>(Dir, *this, EC));
516}
517
Richard Trieua87b70d2018-12-29 02:02:13 +0000518void ProxyFileSystem::anchor() {}
519
Jonas Devliegherefc514902018-10-10 13:27:25 +0000520namespace llvm {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000521namespace vfs {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000522
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000523namespace detail {
524
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000525enum InMemoryNodeKind { IME_File, IME_Directory, IME_HardLink };
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000526
527/// The in memory file system is a tree of Nodes. Every node can either be a
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000528/// file , hardlink or a directory.
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000529class InMemoryNode {
Eric Liub71e6f42018-07-11 18:43:07 +0000530 InMemoryNodeKind Kind;
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000531 std::string FileName;
Simon Marchiddbabc62018-08-06 21:48:20 +0000532
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000533public:
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000534 InMemoryNode(llvm::StringRef FileName, InMemoryNodeKind Kind)
535 : Kind(Kind), FileName(llvm::sys::path::filename(FileName)) {}
Eugene Zelenko5a520112018-03-28 22:09:09 +0000536 virtual ~InMemoryNode() = default;
537
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000538 /// Get the filename of this node (the name without the directory part).
539 StringRef getFileName() const { return FileName; }
540 InMemoryNodeKind getKind() const { return Kind; }
541 virtual std::string toString(unsigned Indent) const = 0;
542};
543
544class InMemoryFile : public InMemoryNode {
545 Status Stat;
546 std::unique_ptr<llvm::MemoryBuffer> Buffer;
547
548public:
549 InMemoryFile(Status Stat, std::unique_ptr<llvm::MemoryBuffer> Buffer)
550 : InMemoryNode(Stat.getName(), IME_File), Stat(std::move(Stat)),
551 Buffer(std::move(Buffer)) {}
552
Simon Marchiddbabc62018-08-06 21:48:20 +0000553 /// Return the \p Status for this node. \p RequestedName should be the name
554 /// through which the caller referred to this node. It will override
555 /// \p Status::Name in the return value, to mimic the behavior of \p RealFile.
556 Status getStatus(StringRef RequestedName) const {
557 return Status::copyWithNewName(Stat, RequestedName);
558 }
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000559 llvm::MemoryBuffer *getBuffer() const { return Buffer.get(); }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000560
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000561 std::string toString(unsigned Indent) const override {
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000562 return (std::string(Indent, ' ') + Stat.getName() + "\n").str();
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000563 }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000564
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000565 static bool classof(const InMemoryNode *N) {
566 return N->getKind() == IME_File;
567 }
568};
569
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000570namespace {
571
572class InMemoryHardLink : public InMemoryNode {
573 const InMemoryFile &ResolvedFile;
574
575public:
576 InMemoryHardLink(StringRef Path, const InMemoryFile &ResolvedFile)
577 : InMemoryNode(Path, IME_HardLink), ResolvedFile(ResolvedFile) {}
578 const InMemoryFile &getResolvedFile() const { return ResolvedFile; }
579
580 std::string toString(unsigned Indent) const override {
581 return std::string(Indent, ' ') + "HardLink to -> " +
582 ResolvedFile.toString(0);
583 }
584
585 static bool classof(const InMemoryNode *N) {
586 return N->getKind() == IME_HardLink;
587 }
588};
589
Simon Marchiddbabc62018-08-06 21:48:20 +0000590/// Adapt a InMemoryFile for VFS' File interface. The goal is to make
591/// \p InMemoryFileAdaptor mimic as much as possible the behavior of
592/// \p RealFile.
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000593class InMemoryFileAdaptor : public File {
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000594 const InMemoryFile &Node;
Simon Marchiddbabc62018-08-06 21:48:20 +0000595 /// The name to use when returning a Status for this file.
596 std::string RequestedName;
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000597
Simon Marchia37ef292018-07-11 14:08:17 +0000598public:
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000599 explicit InMemoryFileAdaptor(const InMemoryFile &Node,
600 std::string RequestedName)
Simon Marchiddbabc62018-08-06 21:48:20 +0000601 : Node(Node), RequestedName(std::move(RequestedName)) {}
Simon Marchia37ef292018-07-11 14:08:17 +0000602
Simon Marchiddbabc62018-08-06 21:48:20 +0000603 llvm::ErrorOr<Status> status() override {
604 return Node.getStatus(RequestedName);
605 }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000606
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000607 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
Benjamin Kramer737501c2015-10-05 21:20:19 +0000608 getBuffer(const Twine &Name, int64_t FileSize, bool RequiresNullTerminator,
609 bool IsVolatile) override {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000610 llvm::MemoryBuffer *Buf = Node.getBuffer();
611 return llvm::MemoryBuffer::getMemBuffer(
612 Buf->getBuffer(), Buf->getBufferIdentifier(), RequiresNullTerminator);
613 }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000614
615 std::error_code close() override { return {}; }
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000616};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000617} // namespace
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000618
619class InMemoryDirectory : public InMemoryNode {
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000620 Status Stat;
Eric Liu495847a2018-09-24 14:52:11 +0000621 llvm::StringMap<std::unique_ptr<InMemoryNode>> Entries;
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000622
623public:
624 InMemoryDirectory(Status Stat)
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000625 : InMemoryNode(Stat.getName(), IME_Directory), Stat(std::move(Stat)) {}
Eugene Zelenko5a520112018-03-28 22:09:09 +0000626
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000627 /// Return the \p Status for this node. \p RequestedName should be the name
628 /// through which the caller referred to this node. It will override
629 /// \p Status::Name in the return value, to mimic the behavior of \p RealFile.
630 Status getStatus(StringRef RequestedName) const {
631 return Status::copyWithNewName(Stat, RequestedName);
632 }
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000633 InMemoryNode *getChild(StringRef Name) {
634 auto I = Entries.find(Name);
635 if (I != Entries.end())
636 return I->second.get();
637 return nullptr;
638 }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000639
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000640 InMemoryNode *addChild(StringRef Name, std::unique_ptr<InMemoryNode> Child) {
641 return Entries.insert(make_pair(Name, std::move(Child)))
642 .first->second.get();
643 }
644
Eugene Zelenko5a520112018-03-28 22:09:09 +0000645 using const_iterator = decltype(Entries)::const_iterator;
646
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000647 const_iterator begin() const { return Entries.begin(); }
648 const_iterator end() const { return Entries.end(); }
649
650 std::string toString(unsigned Indent) const override {
651 std::string Result =
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000652 (std::string(Indent, ' ') + Stat.getName() + "\n").str();
Eugene Zelenko5a520112018-03-28 22:09:09 +0000653 for (const auto &Entry : Entries)
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000654 Result += Entry.second->toString(Indent + 2);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000655 return Result;
656 }
Eugene Zelenko5a520112018-03-28 22:09:09 +0000657
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000658 static bool classof(const InMemoryNode *N) {
659 return N->getKind() == IME_Directory;
660 }
661};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000662
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000663namespace {
664Status getNodeStatus(const InMemoryNode *Node, StringRef RequestedName) {
665 if (auto Dir = dyn_cast<detail::InMemoryDirectory>(Node))
666 return Dir->getStatus(RequestedName);
667 if (auto File = dyn_cast<detail::InMemoryFile>(Node))
668 return File->getStatus(RequestedName);
669 if (auto Link = dyn_cast<detail::InMemoryHardLink>(Node))
670 return Link->getResolvedFile().getStatus(RequestedName);
671 llvm_unreachable("Unknown node type");
672}
673} // namespace
Eugene Zelenko5a520112018-03-28 22:09:09 +0000674} // namespace detail
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000675
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000676InMemoryFileSystem::InMemoryFileSystem(bool UseNormalizedPaths)
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000677 : Root(new detail::InMemoryDirectory(
Pavel Labathac71c8e2016-11-09 10:52:22 +0000678 Status("", getNextVirtualUniqueID(), llvm::sys::TimePoint<>(), 0, 0,
679 0, llvm::sys::fs::file_type::directory_file,
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000680 llvm::sys::fs::perms::all_all))),
681 UseNormalizedPaths(UseNormalizedPaths) {}
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000682
Eugene Zelenko5a520112018-03-28 22:09:09 +0000683InMemoryFileSystem::~InMemoryFileSystem() = default;
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000684
Benjamin Kramerdecb2ae2015-10-09 13:03:22 +0000685std::string InMemoryFileSystem::toString() const {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000686 return Root->toString(/*Indent=*/0);
687}
688
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000689bool InMemoryFileSystem::addFile(const Twine &P, time_t ModificationTime,
Ben Hamiltone5af5bd2017-11-09 16:01:16 +0000690 std::unique_ptr<llvm::MemoryBuffer> Buffer,
691 Optional<uint32_t> User,
692 Optional<uint32_t> Group,
693 Optional<llvm::sys::fs::file_type> Type,
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000694 Optional<llvm::sys::fs::perms> Perms,
695 const detail::InMemoryFile *HardLinkTarget) {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000696 SmallString<128> Path;
697 P.toVector(Path);
698
699 // Fix up relative paths. This just prepends the current working directory.
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000700 std::error_code EC = makeAbsolute(Path);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000701 assert(!EC);
702 (void)EC;
703
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000704 if (useNormalizedPaths())
Mike Aizatskyaeb9dd92015-11-09 19:12:18 +0000705 llvm::sys::path::remove_dots(Path, /*remove_dot_dot=*/true);
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000706
707 if (Path.empty())
708 return false;
709
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000710 detail::InMemoryDirectory *Dir = Root.get();
Ben Hamiltone5af5bd2017-11-09 16:01:16 +0000711 auto I = llvm::sys::path::begin(Path), E = sys::path::end(Path);
712 const auto ResolvedUser = User.getValueOr(0);
713 const auto ResolvedGroup = Group.getValueOr(0);
714 const auto ResolvedType = Type.getValueOr(sys::fs::file_type::regular_file);
715 const auto ResolvedPerms = Perms.getValueOr(sys::fs::all_all);
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000716 assert(!(HardLinkTarget && Buffer) && "HardLink cannot have a buffer");
Ben Hamiltone5af5bd2017-11-09 16:01:16 +0000717 // Any intermediate directories we create should be accessible by
718 // the owner, even if Perms says otherwise for the final path.
719 const auto NewDirectoryPerms = ResolvedPerms | sys::fs::owner_all;
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000720 while (true) {
721 StringRef Name = *I;
722 detail::InMemoryNode *Node = Dir->getChild(Name);
723 ++I;
724 if (!Node) {
725 if (I == E) {
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000726 // End of the path.
Ben Hamilton78381012017-11-16 19:34:08 +0000727 std::unique_ptr<detail::InMemoryNode> Child;
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000728 if (HardLinkTarget)
729 Child.reset(new detail::InMemoryHardLink(P.str(), *HardLinkTarget));
730 else {
731 // Create a new file or directory.
732 Status Stat(P.str(), getNextVirtualUniqueID(),
733 llvm::sys::toTimePoint(ModificationTime), ResolvedUser,
734 ResolvedGroup, Buffer->getBufferSize(), ResolvedType,
735 ResolvedPerms);
736 if (ResolvedType == sys::fs::file_type::directory_file) {
737 Child.reset(new detail::InMemoryDirectory(std::move(Stat)));
738 } else {
739 Child.reset(
740 new detail::InMemoryFile(std::move(Stat), std::move(Buffer)));
741 }
Ben Hamilton78381012017-11-16 19:34:08 +0000742 }
743 Dir->addChild(Name, std::move(Child));
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000744 return true;
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000745 }
746
747 // Create a new directory. Use the path up to here.
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000748 Status Stat(
749 StringRef(Path.str().begin(), Name.end() - Path.str().begin()),
Ben Hamiltone5af5bd2017-11-09 16:01:16 +0000750 getNextVirtualUniqueID(), llvm::sys::toTimePoint(ModificationTime),
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000751 ResolvedUser, ResolvedGroup, 0, sys::fs::file_type::directory_file,
752 NewDirectoryPerms);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000753 Dir = cast<detail::InMemoryDirectory>(Dir->addChild(
754 Name, llvm::make_unique<detail::InMemoryDirectory>(std::move(Stat))));
755 continue;
756 }
757
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000758 if (auto *NewDir = dyn_cast<detail::InMemoryDirectory>(Node)) {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000759 Dir = NewDir;
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000760 } else {
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000761 assert((isa<detail::InMemoryFile>(Node) ||
762 isa<detail::InMemoryHardLink>(Node)) &&
763 "Must be either file, hardlink or directory!");
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000764
765 // Trying to insert a directory in place of a file.
766 if (I != E)
767 return false;
768
769 // Return false only if the new file is different from the existing one.
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000770 if (auto Link = dyn_cast<detail::InMemoryHardLink>(Node)) {
771 return Link->getResolvedFile().getBuffer()->getBuffer() ==
772 Buffer->getBuffer();
773 }
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000774 return cast<detail::InMemoryFile>(Node)->getBuffer()->getBuffer() ==
775 Buffer->getBuffer();
776 }
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000777 }
778}
779
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000780bool InMemoryFileSystem::addFile(const Twine &P, time_t ModificationTime,
781 std::unique_ptr<llvm::MemoryBuffer> Buffer,
782 Optional<uint32_t> User,
783 Optional<uint32_t> Group,
784 Optional<llvm::sys::fs::file_type> Type,
785 Optional<llvm::sys::fs::perms> Perms) {
786 return addFile(P, ModificationTime, std::move(Buffer), User, Group, Type,
787 Perms, /*HardLinkTarget=*/nullptr);
788}
789
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000790bool InMemoryFileSystem::addFileNoOwn(const Twine &P, time_t ModificationTime,
Ben Hamiltone5af5bd2017-11-09 16:01:16 +0000791 llvm::MemoryBuffer *Buffer,
792 Optional<uint32_t> User,
793 Optional<uint32_t> Group,
794 Optional<llvm::sys::fs::file_type> Type,
795 Optional<llvm::sys::fs::perms> Perms) {
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000796 return addFile(P, ModificationTime,
797 llvm::MemoryBuffer::getMemBuffer(
Ben Hamiltone5af5bd2017-11-09 16:01:16 +0000798 Buffer->getBuffer(), Buffer->getBufferIdentifier()),
799 std::move(User), std::move(Group), std::move(Type),
800 std::move(Perms));
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000801}
802
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000803static ErrorOr<const detail::InMemoryNode *>
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000804lookupInMemoryNode(const InMemoryFileSystem &FS, detail::InMemoryDirectory *Dir,
805 const Twine &P) {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000806 SmallString<128> Path;
807 P.toVector(Path);
808
809 // Fix up relative paths. This just prepends the current working directory.
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000810 std::error_code EC = FS.makeAbsolute(Path);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000811 assert(!EC);
812 (void)EC;
813
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000814 if (FS.useNormalizedPaths())
Mike Aizatskyaeb9dd92015-11-09 19:12:18 +0000815 llvm::sys::path::remove_dots(Path, /*remove_dot_dot=*/true);
Benjamin Kramer4ad1c432015-10-12 13:30:38 +0000816
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000817 if (Path.empty())
Benjamin Kramerdecb2ae2015-10-09 13:03:22 +0000818 return Dir;
819
Benjamin Kramer71ce3762015-10-12 16:16:39 +0000820 auto I = llvm::sys::path::begin(Path), E = llvm::sys::path::end(Path);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000821 while (true) {
822 detail::InMemoryNode *Node = Dir->getChild(*I);
823 ++I;
824 if (!Node)
825 return errc::no_such_file_or_directory;
826
827 // Return the file if it's at the end of the path.
828 if (auto File = dyn_cast<detail::InMemoryFile>(Node)) {
829 if (I == E)
830 return File;
831 return errc::no_such_file_or_directory;
832 }
833
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000834 // If Node is HardLink then return the resolved file.
835 if (auto File = dyn_cast<detail::InMemoryHardLink>(Node)) {
836 if (I == E)
837 return &File->getResolvedFile();
838 return errc::no_such_file_or_directory;
839 }
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000840 // Traverse directories.
841 Dir = cast<detail::InMemoryDirectory>(Node);
842 if (I == E)
843 return Dir;
844 }
845}
846
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000847bool InMemoryFileSystem::addHardLink(const Twine &FromPath,
848 const Twine &ToPath) {
849 auto FromNode = lookupInMemoryNode(*this, Root.get(), FromPath);
850 auto ToNode = lookupInMemoryNode(*this, Root.get(), ToPath);
851 // FromPath must not have been added before. ToPath must have been added
852 // before. Resolved ToPath must be a File.
853 if (!ToNode || FromNode || !isa<detail::InMemoryFile>(*ToNode))
854 return false;
855 return this->addFile(FromPath, 0, nullptr, None, None, None, None,
856 cast<detail::InMemoryFile>(*ToNode));
857}
858
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000859llvm::ErrorOr<Status> InMemoryFileSystem::status(const Twine &Path) {
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000860 auto Node = lookupInMemoryNode(*this, Root.get(), Path);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000861 if (Node)
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000862 return detail::getNodeStatus(*Node, Path.str());
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000863 return Node.getError();
864}
865
866llvm::ErrorOr<std::unique_ptr<File>>
867InMemoryFileSystem::openFileForRead(const Twine &Path) {
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000868 auto Node = lookupInMemoryNode(*this, Root.get(), Path);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000869 if (!Node)
870 return Node.getError();
871
872 // When we have a file provide a heap-allocated wrapper for the memory buffer
873 // to match the ownership semantics for File.
874 if (auto *F = dyn_cast<detail::InMemoryFile>(*Node))
Simon Marchiddbabc62018-08-06 21:48:20 +0000875 return std::unique_ptr<File>(
876 new detail::InMemoryFileAdaptor(*F, Path.str()));
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000877
878 // FIXME: errc::not_a_file?
879 return make_error_code(llvm::errc::invalid_argument);
880}
881
882namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +0000883
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000884/// Adaptor from InMemoryDir::iterator to directory_iterator.
Jonas Devliegherefc514902018-10-10 13:27:25 +0000885class InMemoryDirIterator : public llvm::vfs::detail::DirIterImpl {
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000886 detail::InMemoryDirectory::const_iterator I;
887 detail::InMemoryDirectory::const_iterator E;
Simon Marchiddbabc62018-08-06 21:48:20 +0000888 std::string RequestedDirName;
889
890 void setCurrentEntry() {
891 if (I != E) {
892 SmallString<256> Path(RequestedDirName);
893 llvm::sys::path::append(Path, I->second->getFileName());
Sam McCall0ae00562018-09-14 12:47:38 +0000894 sys::fs::file_type Type;
895 switch (I->second->getKind()) {
Jonas Devliegherefc514902018-10-10 13:27:25 +0000896 case detail::IME_File:
897 case detail::IME_HardLink:
898 Type = sys::fs::file_type::regular_file;
899 break;
900 case detail::IME_Directory:
901 Type = sys::fs::file_type::directory_file;
902 break;
Sam McCall0ae00562018-09-14 12:47:38 +0000903 }
904 CurrentEntry = directory_entry(Path.str(), Type);
Simon Marchiddbabc62018-08-06 21:48:20 +0000905 } else {
906 // When we're at the end, make CurrentEntry invalid and DirIterImpl will
907 // do the rest.
Sam McCall0ae00562018-09-14 12:47:38 +0000908 CurrentEntry = directory_entry();
Simon Marchiddbabc62018-08-06 21:48:20 +0000909 }
910 }
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000911
912public:
Eugene Zelenko5a520112018-03-28 22:09:09 +0000913 InMemoryDirIterator() = default;
914
Ilya Biryukovd5554c512018-09-04 14:15:53 +0000915 explicit InMemoryDirIterator(const detail::InMemoryDirectory &Dir,
Simon Marchiddbabc62018-08-06 21:48:20 +0000916 std::string RequestedDirName)
917 : I(Dir.begin()), E(Dir.end()),
918 RequestedDirName(std::move(RequestedDirName)) {
919 setCurrentEntry();
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000920 }
921
922 std::error_code increment() override {
923 ++I;
Simon Marchiddbabc62018-08-06 21:48:20 +0000924 setCurrentEntry();
Eugene Zelenko5a520112018-03-28 22:09:09 +0000925 return {};
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000926 }
927};
Eugene Zelenko5a520112018-03-28 22:09:09 +0000928
929} // namespace
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000930
931directory_iterator InMemoryFileSystem::dir_begin(const Twine &Dir,
932 std::error_code &EC) {
Benjamin Kramer7708b2a2015-10-05 13:55:20 +0000933 auto Node = lookupInMemoryNode(*this, Root.get(), Dir);
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000934 if (!Node) {
935 EC = Node.getError();
936 return directory_iterator(std::make_shared<InMemoryDirIterator>());
937 }
938
939 if (auto *DirNode = dyn_cast<detail::InMemoryDirectory>(*Node))
Simon Marchiddbabc62018-08-06 21:48:20 +0000940 return directory_iterator(
941 std::make_shared<InMemoryDirIterator>(*DirNode, Dir.str()));
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000942
943 EC = make_error_code(llvm::errc::not_a_directory);
944 return directory_iterator(std::make_shared<InMemoryDirIterator>());
945}
Benjamin Kramere9e76072016-01-09 16:33:16 +0000946
947std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) {
948 SmallString<128> Path;
949 P.toVector(Path);
950
951 // Fix up relative paths. This just prepends the current working directory.
952 std::error_code EC = makeAbsolute(Path);
953 assert(!EC);
954 (void)EC;
955
956 if (useNormalizedPaths())
957 llvm::sys::path::remove_dots(Path, /*remove_dot_dot=*/true);
958
959 if (!Path.empty())
960 WorkingDirectory = Path.str();
Eugene Zelenko5a520112018-03-28 22:09:09 +0000961 return {};
Benjamin Kramere9e76072016-01-09 16:33:16 +0000962}
Eugene Zelenko5a520112018-03-28 22:09:09 +0000963
Sam McCall99538e82018-11-09 15:11:34 +0000964std::error_code
965InMemoryFileSystem::getRealPath(const Twine &Path,
966 SmallVectorImpl<char> &Output) const {
Eric Liu33dd6192018-05-24 11:17:00 +0000967 auto CWD = getCurrentWorkingDirectory();
968 if (!CWD || CWD->empty())
969 return errc::operation_not_permitted;
970 Path.toVector(Output);
971 if (auto EC = makeAbsolute(Output))
972 return EC;
973 llvm::sys::path::remove_dots(Output, /*remove_dot_dot=*/true);
974 return {};
975}
976
Jonas Devliegherecbb5c862018-11-08 00:01:32 +0000977std::error_code InMemoryFileSystem::isLocal(const Twine &Path, bool &Result) {
978 Result = false;
979 return {};
980}
981
Eugene Zelenko5a520112018-03-28 22:09:09 +0000982} // namespace vfs
Jonas Devliegherefc514902018-10-10 13:27:25 +0000983} // namespace llvm
Benjamin Kramera25dcfd2015-10-05 13:55:14 +0000984
Ben Langmuird51ba0b2014-02-21 23:39:37 +0000985//===-----------------------------------------------------------------------===/
Benjamin Kramerdadb58b2015-10-07 10:05:44 +0000986// RedirectingFileSystem implementation
Ben Langmuird51ba0b2014-02-21 23:39:37 +0000987//===-----------------------------------------------------------------------===/
988
Volodymyr Sapsai91e13162018-10-26 22:14:33 +0000989// FIXME: reuse implementation common with OverlayFSDirIterImpl as these
990// iterators are conceptually similar.
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +0000991class llvm::vfs::VFSFromYamlDirIterImpl
992 : public llvm::vfs::detail::DirIterImpl {
Ben Langmuir740812b2014-06-24 19:37:16 +0000993 std::string Dir;
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +0000994 RedirectingFileSystem::RedirectingDirectoryEntry::iterator Current, End;
Benjamin Kramer49692ed2015-10-09 13:28:13 +0000995
Volodymyr Sapsai91e13162018-10-26 22:14:33 +0000996 // To handle 'fallthrough' mode we need to iterate at first through
997 // RedirectingDirectoryEntry and then through ExternalFS. These operations are
998 // done sequentially, we just need to keep a track of what kind of iteration
999 // we are currently performing.
1000
1001 /// Flag telling if we should iterate through ExternalFS or stop at the last
1002 /// RedirectingDirectoryEntry::iterator.
1003 bool IterateExternalFS;
1004 /// Flag telling if we have switched to iterating through ExternalFS.
1005 bool IsExternalFSCurrent = false;
1006 FileSystem &ExternalFS;
1007 directory_iterator ExternalDirIter;
1008 llvm::StringSet<> SeenNames;
1009
1010 /// To combine multiple iterations, different methods are responsible for
1011 /// different iteration steps.
1012 /// @{
1013
1014 /// Responsible for dispatching between RedirectingDirectoryEntry iteration
1015 /// and ExternalFS iteration.
1016 std::error_code incrementImpl(bool IsFirstTime);
1017 /// Responsible for RedirectingDirectoryEntry iteration.
1018 std::error_code incrementContent(bool IsFirstTime);
1019 /// Responsible for ExternalFS iteration.
1020 std::error_code incrementExternal();
1021 /// @}
Volodymyr Sapsai3aa88b52018-08-07 23:00:40 +00001022
Ben Langmuir740812b2014-06-24 19:37:16 +00001023public:
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001024 VFSFromYamlDirIterImpl(
1025 const Twine &Path,
1026 RedirectingFileSystem::RedirectingDirectoryEntry::iterator Begin,
1027 RedirectingFileSystem::RedirectingDirectoryEntry::iterator End,
1028 bool IterateExternalFS, FileSystem &ExternalFS, std::error_code &EC);
Eugene Zelenko5a520112018-03-28 22:09:09 +00001029
Ben Langmuir740812b2014-06-24 19:37:16 +00001030 std::error_code increment() override;
1031};
1032
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001033llvm::ErrorOr<std::string>
1034RedirectingFileSystem::getCurrentWorkingDirectory() const {
1035 return ExternalFS->getCurrentWorkingDirectory();
1036}
Eugene Zelenko5a520112018-03-28 22:09:09 +00001037
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001038std::error_code
1039RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) {
1040 return ExternalFS->setCurrentWorkingDirectory(Path);
1041}
Eugene Zelenko5a520112018-03-28 22:09:09 +00001042
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001043std::error_code RedirectingFileSystem::isLocal(const Twine &Path,
1044 bool &Result) {
1045 return ExternalFS->isLocal(Path, Result);
1046}
Eugene Zelenko5a520112018-03-28 22:09:09 +00001047
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001048directory_iterator RedirectingFileSystem::dir_begin(const Twine &Dir,
1049 std::error_code &EC) {
1050 ErrorOr<RedirectingFileSystem::Entry *> E = lookupPath(Dir);
1051 if (!E) {
1052 EC = E.getError();
1053 if (IsFallthrough && EC == errc::no_such_file_or_directory)
1054 return ExternalFS->dir_begin(Dir, EC);
1055 return {};
1056 }
1057 ErrorOr<Status> S = status(Dir, *E);
1058 if (!S) {
1059 EC = S.getError();
1060 return {};
1061 }
1062 if (!S->isDirectory()) {
1063 EC = std::error_code(static_cast<int>(errc::not_a_directory),
1064 std::system_category());
1065 return {};
Benjamin Kramer7708b2a2015-10-05 13:55:20 +00001066 }
Eugene Zelenko5a520112018-03-28 22:09:09 +00001067
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001068 auto *D = cast<RedirectingFileSystem::RedirectingDirectoryEntry>(*E);
1069 return directory_iterator(std::make_shared<VFSFromYamlDirIterImpl>(
1070 Dir, D->contents_begin(), D->contents_end(),
1071 /*IterateExternalFS=*/IsFallthrough, *ExternalFS, EC));
1072}
Benjamin Kramer7708b2a2015-10-05 13:55:20 +00001073
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001074void RedirectingFileSystem::setExternalContentsPrefixDir(StringRef PrefixDir) {
1075 ExternalContentsPrefixDir = PrefixDir.str();
1076}
Jonas Devliegherecbb5c862018-11-08 00:01:32 +00001077
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001078StringRef RedirectingFileSystem::getExternalContentsPrefixDir() const {
1079 return ExternalContentsPrefixDir;
1080}
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001081
Bruno Cardoso Lopesb2e2e212016-05-06 23:21:57 +00001082#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001083LLVM_DUMP_METHOD void RedirectingFileSystem::dump() const {
1084 for (const auto &Root : Roots)
1085 dumpEntry(Root.get());
1086}
1087
1088LLVM_DUMP_METHOD void
1089RedirectingFileSystem::dumpEntry(RedirectingFileSystem::Entry *E,
1090 int NumSpaces) const {
1091 StringRef Name = E->getName();
1092 for (int i = 0, e = NumSpaces; i < e; ++i)
1093 dbgs() << " ";
1094 dbgs() << "'" << Name.str().c_str() << "'"
1095 << "\n";
1096
1097 if (E->getKind() == RedirectingFileSystem::EK_Directory) {
1098 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(E);
1099 assert(DE && "Should be a directory");
1100
1101 for (std::unique_ptr<Entry> &SubEntry :
1102 llvm::make_range(DE->contents_begin(), DE->contents_end()))
1103 dumpEntry(SubEntry.get(), NumSpaces + 2);
Bruno Cardoso Lopesb2e2e212016-05-06 23:21:57 +00001104 }
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001105}
Bruno Cardoso Lopesb2e2e212016-05-06 23:21:57 +00001106#endif
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001107
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001108/// A helper class to hold the common YAML parsing state.
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001109class llvm::vfs::RedirectingFileSystemParser {
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001110 yaml::Stream &Stream;
1111
Jonas Devliegherefc514902018-10-10 13:27:25 +00001112 void error(yaml::Node *N, const Twine &Msg) { Stream.printError(N, Msg); }
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001113
1114 // false on error
1115 bool parseScalarString(yaml::Node *N, StringRef &Result,
1116 SmallVectorImpl<char> &Storage) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001117 const auto *S = dyn_cast<yaml::ScalarNode>(N);
1118
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001119 if (!S) {
1120 error(N, "expected string");
1121 return false;
1122 }
1123 Result = S->getValue(Storage);
1124 return true;
1125 }
1126
1127 // false on error
1128 bool parseScalarBool(yaml::Node *N, bool &Result) {
1129 SmallString<5> Storage;
1130 StringRef Value;
1131 if (!parseScalarString(N, Value, Storage))
1132 return false;
1133
1134 if (Value.equals_lower("true") || Value.equals_lower("on") ||
1135 Value.equals_lower("yes") || Value == "1") {
1136 Result = true;
1137 return true;
1138 } else if (Value.equals_lower("false") || Value.equals_lower("off") ||
1139 Value.equals_lower("no") || Value == "0") {
1140 Result = false;
1141 return true;
1142 }
1143
1144 error(N, "expected boolean value");
1145 return false;
1146 }
1147
1148 struct KeyStatus {
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001149 bool Required;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001150 bool Seen = false;
1151
1152 KeyStatus(bool Required = false) : Required(Required) {}
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001153 };
Eugene Zelenko5a520112018-03-28 22:09:09 +00001154
1155 using KeyStatusPair = std::pair<StringRef, KeyStatus>;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001156
1157 // false on error
1158 bool checkDuplicateOrUnknownKey(yaml::Node *KeyNode, StringRef Key,
1159 DenseMap<StringRef, KeyStatus> &Keys) {
1160 if (!Keys.count(Key)) {
1161 error(KeyNode, "unknown key");
1162 return false;
1163 }
1164 KeyStatus &S = Keys[Key];
1165 if (S.Seen) {
1166 error(KeyNode, Twine("duplicate key '") + Key + "'");
1167 return false;
1168 }
1169 S.Seen = true;
1170 return true;
1171 }
1172
1173 // false on error
1174 bool checkMissingKeys(yaml::Node *Obj, DenseMap<StringRef, KeyStatus> &Keys) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001175 for (const auto &I : Keys) {
1176 if (I.second.Required && !I.second.Seen) {
1177 error(Obj, Twine("missing key '") + I.first + "'");
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001178 return false;
1179 }
1180 }
1181 return true;
1182 }
1183
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001184 RedirectingFileSystem::Entry *
1185 lookupOrCreateEntry(RedirectingFileSystem *FS, StringRef Name,
1186 RedirectingFileSystem::Entry *ParentEntry = nullptr) {
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001187 if (!ParentEntry) { // Look for a existent root
Eugene Zelenko5a520112018-03-28 22:09:09 +00001188 for (const auto &Root : FS->Roots) {
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001189 if (Name.equals(Root->getName())) {
1190 ParentEntry = Root.get();
1191 return ParentEntry;
1192 }
1193 }
1194 } else { // Advance to the next component
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001195 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(
1196 ParentEntry);
1197 for (std::unique_ptr<RedirectingFileSystem::Entry> &Content :
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001198 llvm::make_range(DE->contents_begin(), DE->contents_end())) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001199 auto *DirContent =
1200 dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(
1201 Content.get());
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001202 if (DirContent && Name.equals(Content->getName()))
1203 return DirContent;
1204 }
1205 }
1206
1207 // ... or create a new one
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001208 std::unique_ptr<RedirectingFileSystem::Entry> E =
1209 llvm::make_unique<RedirectingFileSystem::RedirectingDirectoryEntry>(
1210 Name, Status("", getNextVirtualUniqueID(),
1211 std::chrono::system_clock::now(), 0, 0, 0,
1212 file_type::directory_file, sys::fs::all_all));
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001213
1214 if (!ParentEntry) { // Add a new root to the overlay
1215 FS->Roots.push_back(std::move(E));
1216 ParentEntry = FS->Roots.back().get();
1217 return ParentEntry;
1218 }
1219
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001220 auto *DE =
1221 dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(ParentEntry);
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001222 DE->addContent(std::move(E));
1223 return DE->getLastContent();
1224 }
1225
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001226 void uniqueOverlayTree(RedirectingFileSystem *FS,
1227 RedirectingFileSystem::Entry *SrcE,
1228 RedirectingFileSystem::Entry *NewParentE = nullptr) {
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001229 StringRef Name = SrcE->getName();
1230 switch (SrcE->getKind()) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001231 case RedirectingFileSystem::EK_Directory: {
1232 auto *DE =
1233 dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(SrcE);
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001234 assert(DE && "Must be a directory");
1235 // Empty directories could be present in the YAML as a way to
1236 // describe a file for a current directory after some of its subdir
1237 // is parsed. This only leads to redundant walks, ignore it.
1238 if (!Name.empty())
1239 NewParentE = lookupOrCreateEntry(FS, Name, NewParentE);
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001240 for (std::unique_ptr<RedirectingFileSystem::Entry> &SubEntry :
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001241 llvm::make_range(DE->contents_begin(), DE->contents_end()))
1242 uniqueOverlayTree(FS, SubEntry.get(), NewParentE);
1243 break;
1244 }
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001245 case RedirectingFileSystem::EK_File: {
1246 auto *FE = dyn_cast<RedirectingFileSystem::RedirectingFileEntry>(SrcE);
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001247 assert(FE && "Must be a file");
1248 assert(NewParentE && "Parent entry must exist");
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001249 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(
1250 NewParentE);
1251 DE->addContent(
1252 llvm::make_unique<RedirectingFileSystem::RedirectingFileEntry>(
1253 Name, FE->getExternalContentsPath(), FE->getUseName()));
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001254 break;
1255 }
1256 }
1257 }
1258
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001259 std::unique_ptr<RedirectingFileSystem::Entry>
1260 parseEntry(yaml::Node *N, RedirectingFileSystem *FS, bool IsRootEntry) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001261 auto *M = dyn_cast<yaml::MappingNode>(N);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001262 if (!M) {
1263 error(N, "expected mapping node for file or directory entry");
Craig Topperf1186c52014-05-08 06:41:40 +00001264 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001265 }
1266
1267 KeyStatusPair Fields[] = {
Jonas Devliegherefc514902018-10-10 13:27:25 +00001268 KeyStatusPair("name", true),
1269 KeyStatusPair("type", true),
1270 KeyStatusPair("contents", false),
1271 KeyStatusPair("external-contents", false),
1272 KeyStatusPair("use-external-name", false),
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001273 };
1274
Craig Topperac67c052015-11-30 03:11:10 +00001275 DenseMap<StringRef, KeyStatus> Keys(std::begin(Fields), std::end(Fields));
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001276
1277 bool HasContents = false; // external or otherwise
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001278 std::vector<std::unique_ptr<RedirectingFileSystem::Entry>>
1279 EntryArrayContents;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001280 std::string ExternalContentsPath;
1281 std::string Name;
Volodymyr Sapsai3b2f6a42018-08-07 19:05:41 +00001282 yaml::Node *NameValueNode;
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001283 auto UseExternalName =
1284 RedirectingFileSystem::RedirectingFileEntry::NK_NotSet;
1285 RedirectingFileSystem::EntryKind Kind;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001286
Eugene Zelenko5a520112018-03-28 22:09:09 +00001287 for (auto &I : *M) {
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001288 StringRef Key;
1289 // Reuse the buffer for key and value, since we don't look at key after
1290 // parsing value.
1291 SmallString<256> Buffer;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001292 if (!parseScalarString(I.getKey(), Key, Buffer))
Craig Topperf1186c52014-05-08 06:41:40 +00001293 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001294
Eugene Zelenko5a520112018-03-28 22:09:09 +00001295 if (!checkDuplicateOrUnknownKey(I.getKey(), Key, Keys))
Craig Topperf1186c52014-05-08 06:41:40 +00001296 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001297
1298 StringRef Value;
1299 if (Key == "name") {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001300 if (!parseScalarString(I.getValue(), Value, Buffer))
Craig Topperf1186c52014-05-08 06:41:40 +00001301 return nullptr;
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001302
Volodymyr Sapsai3b2f6a42018-08-07 19:05:41 +00001303 NameValueNode = I.getValue();
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001304 if (FS->UseCanonicalizedPaths) {
1305 SmallString<256> Path(Value);
1306 // Guarantee that old YAML files containing paths with ".." and "."
1307 // are properly canonicalized before read into the VFS.
1308 Path = sys::path::remove_leading_dotslash(Path);
1309 sys::path::remove_dots(Path, /*remove_dot_dot=*/true);
1310 Name = Path.str();
1311 } else {
1312 Name = Value;
1313 }
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001314 } else if (Key == "type") {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001315 if (!parseScalarString(I.getValue(), Value, Buffer))
Craig Topperf1186c52014-05-08 06:41:40 +00001316 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001317 if (Value == "file")
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001318 Kind = RedirectingFileSystem::EK_File;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001319 else if (Value == "directory")
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001320 Kind = RedirectingFileSystem::EK_Directory;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001321 else {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001322 error(I.getValue(), "unknown value for 'type'");
Craig Topperf1186c52014-05-08 06:41:40 +00001323 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001324 }
1325 } else if (Key == "contents") {
1326 if (HasContents) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001327 error(I.getKey(),
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001328 "entry already has 'contents' or 'external-contents'");
Craig Topperf1186c52014-05-08 06:41:40 +00001329 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001330 }
1331 HasContents = true;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001332 auto *Contents = dyn_cast<yaml::SequenceNode>(I.getValue());
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001333 if (!Contents) {
1334 // FIXME: this is only for directories, what about files?
Eugene Zelenko5a520112018-03-28 22:09:09 +00001335 error(I.getValue(), "expected array");
Craig Topperf1186c52014-05-08 06:41:40 +00001336 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001337 }
1338
Eugene Zelenko5a520112018-03-28 22:09:09 +00001339 for (auto &I : *Contents) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001340 if (std::unique_ptr<RedirectingFileSystem::Entry> E =
Volodymyr Sapsai3b2f6a42018-08-07 19:05:41 +00001341 parseEntry(&I, FS, /*IsRootEntry*/ false))
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001342 EntryArrayContents.push_back(std::move(E));
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001343 else
Craig Topperf1186c52014-05-08 06:41:40 +00001344 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001345 }
1346 } else if (Key == "external-contents") {
1347 if (HasContents) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001348 error(I.getKey(),
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001349 "entry already has 'contents' or 'external-contents'");
Craig Topperf1186c52014-05-08 06:41:40 +00001350 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001351 }
1352 HasContents = true;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001353 if (!parseScalarString(I.getValue(), Value, Buffer))
Craig Topperf1186c52014-05-08 06:41:40 +00001354 return nullptr;
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001355
1356 SmallString<256> FullPath;
1357 if (FS->IsRelativeOverlay) {
1358 FullPath = FS->getExternalContentsPrefixDir();
1359 assert(!FullPath.empty() &&
1360 "External contents prefix directory must exist");
1361 llvm::sys::path::append(FullPath, Value);
1362 } else {
1363 FullPath = Value;
1364 }
1365
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001366 if (FS->UseCanonicalizedPaths) {
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001367 // Guarantee that old YAML files containing paths with ".." and "."
1368 // are properly canonicalized before read into the VFS.
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001369 FullPath = sys::path::remove_leading_dotslash(FullPath);
1370 sys::path::remove_dots(FullPath, /*remove_dot_dot=*/true);
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001371 }
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001372 ExternalContentsPath = FullPath.str();
Ben Langmuirb59cf672014-02-27 00:25:12 +00001373 } else if (Key == "use-external-name") {
1374 bool Val;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001375 if (!parseScalarBool(I.getValue(), Val))
Craig Topperf1186c52014-05-08 06:41:40 +00001376 return nullptr;
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001377 UseExternalName =
1378 Val ? RedirectingFileSystem::RedirectingFileEntry::NK_External
1379 : RedirectingFileSystem::RedirectingFileEntry::NK_Virtual;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001380 } else {
1381 llvm_unreachable("key missing from Keys");
1382 }
1383 }
1384
1385 if (Stream.failed())
Craig Topperf1186c52014-05-08 06:41:40 +00001386 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001387
1388 // check for missing keys
1389 if (!HasContents) {
1390 error(N, "missing key 'contents' or 'external-contents'");
Craig Topperf1186c52014-05-08 06:41:40 +00001391 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001392 }
1393 if (!checkMissingKeys(N, Keys))
Craig Topperf1186c52014-05-08 06:41:40 +00001394 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001395
Ben Langmuirb59cf672014-02-27 00:25:12 +00001396 // check invalid configuration
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001397 if (Kind == RedirectingFileSystem::EK_Directory &&
1398 UseExternalName !=
1399 RedirectingFileSystem::RedirectingFileEntry::NK_NotSet) {
Ben Langmuirb59cf672014-02-27 00:25:12 +00001400 error(N, "'use-external-name' is not supported for directories");
Craig Topperf1186c52014-05-08 06:41:40 +00001401 return nullptr;
Ben Langmuirb59cf672014-02-27 00:25:12 +00001402 }
1403
Volodymyr Sapsai3b2f6a42018-08-07 19:05:41 +00001404 if (IsRootEntry && !sys::path::is_absolute(Name)) {
1405 assert(NameValueNode && "Name presence should be checked earlier");
1406 error(NameValueNode,
1407 "entry with relative path at the root level is not discoverable");
1408 return nullptr;
1409 }
1410
Ben Langmuir93853232014-03-05 21:32:20 +00001411 // Remove trailing slash(es), being careful not to remove the root path
Ben Langmuir47ff9ab2014-02-25 04:34:14 +00001412 StringRef Trimmed(Name);
Ben Langmuir93853232014-03-05 21:32:20 +00001413 size_t RootPathLen = sys::path::root_path(Trimmed).size();
1414 while (Trimmed.size() > RootPathLen &&
1415 sys::path::is_separator(Trimmed.back()))
Jonas Devliegherefc514902018-10-10 13:27:25 +00001416 Trimmed = Trimmed.slice(0, Trimmed.size() - 1);
Ben Langmuir47ff9ab2014-02-25 04:34:14 +00001417 // Get the last component
1418 StringRef LastComponent = sys::path::filename(Trimmed);
1419
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001420 std::unique_ptr<RedirectingFileSystem::Entry> Result;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001421 switch (Kind) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001422 case RedirectingFileSystem::EK_File:
1423 Result = llvm::make_unique<RedirectingFileSystem::RedirectingFileEntry>(
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001424 LastComponent, std::move(ExternalContentsPath), UseExternalName);
Ben Langmuir47ff9ab2014-02-25 04:34:14 +00001425 break;
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001426 case RedirectingFileSystem::EK_Directory:
1427 Result =
1428 llvm::make_unique<RedirectingFileSystem::RedirectingDirectoryEntry>(
1429 LastComponent, std::move(EntryArrayContents),
1430 Status("", getNextVirtualUniqueID(),
1431 std::chrono::system_clock::now(), 0, 0, 0,
1432 file_type::directory_file, sys::fs::all_all));
Ben Langmuir47ff9ab2014-02-25 04:34:14 +00001433 break;
1434 }
1435
1436 StringRef Parent = sys::path::parent_path(Trimmed);
1437 if (Parent.empty())
1438 return Result;
1439
1440 // if 'name' contains multiple components, create implicit directory entries
1441 for (sys::path::reverse_iterator I = sys::path::rbegin(Parent),
1442 E = sys::path::rend(Parent);
1443 I != E; ++I) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001444 std::vector<std::unique_ptr<RedirectingFileSystem::Entry>> Entries;
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001445 Entries.push_back(std::move(Result));
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001446 Result =
1447 llvm::make_unique<RedirectingFileSystem::RedirectingDirectoryEntry>(
1448 *I, std::move(Entries),
1449 Status("", getNextVirtualUniqueID(),
1450 std::chrono::system_clock::now(), 0, 0, 0,
1451 file_type::directory_file, sys::fs::all_all));
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001452 }
Ben Langmuir47ff9ab2014-02-25 04:34:14 +00001453 return Result;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001454 }
1455
1456public:
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001457 RedirectingFileSystemParser(yaml::Stream &S) : Stream(S) {}
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001458
1459 // false on error
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001460 bool parse(yaml::Node *Root, RedirectingFileSystem *FS) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001461 auto *Top = dyn_cast<yaml::MappingNode>(Root);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001462 if (!Top) {
1463 error(Root, "expected mapping node");
1464 return false;
1465 }
1466
1467 KeyStatusPair Fields[] = {
Jonas Devliegherefc514902018-10-10 13:27:25 +00001468 KeyStatusPair("version", true),
1469 KeyStatusPair("case-sensitive", false),
1470 KeyStatusPair("use-external-names", false),
1471 KeyStatusPair("overlay-relative", false),
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00001472 KeyStatusPair("fallthrough", false),
Jonas Devliegherefc514902018-10-10 13:27:25 +00001473 KeyStatusPair("roots", true),
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001474 };
1475
Craig Topperac67c052015-11-30 03:11:10 +00001476 DenseMap<StringRef, KeyStatus> Keys(std::begin(Fields), std::end(Fields));
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001477 std::vector<std::unique_ptr<RedirectingFileSystem::Entry>> RootEntries;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001478
1479 // Parse configuration and 'roots'
Eugene Zelenko5a520112018-03-28 22:09:09 +00001480 for (auto &I : *Top) {
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001481 SmallString<10> KeyBuffer;
1482 StringRef Key;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001483 if (!parseScalarString(I.getKey(), Key, KeyBuffer))
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001484 return false;
1485
Eugene Zelenko5a520112018-03-28 22:09:09 +00001486 if (!checkDuplicateOrUnknownKey(I.getKey(), Key, Keys))
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001487 return false;
1488
1489 if (Key == "roots") {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001490 auto *Roots = dyn_cast<yaml::SequenceNode>(I.getValue());
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001491 if (!Roots) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001492 error(I.getValue(), "expected array");
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001493 return false;
1494 }
1495
Eugene Zelenko5a520112018-03-28 22:09:09 +00001496 for (auto &I : *Roots) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001497 if (std::unique_ptr<RedirectingFileSystem::Entry> E =
Volodymyr Sapsai3b2f6a42018-08-07 19:05:41 +00001498 parseEntry(&I, FS, /*IsRootEntry*/ true))
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001499 RootEntries.push_back(std::move(E));
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001500 else
1501 return false;
1502 }
1503 } else if (Key == "version") {
1504 StringRef VersionString;
1505 SmallString<4> Storage;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001506 if (!parseScalarString(I.getValue(), VersionString, Storage))
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001507 return false;
1508 int Version;
1509 if (VersionString.getAsInteger<int>(10, Version)) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001510 error(I.getValue(), "expected integer");
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001511 return false;
1512 }
1513 if (Version < 0) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001514 error(I.getValue(), "invalid version number");
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001515 return false;
1516 }
1517 if (Version != 0) {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001518 error(I.getValue(), "version mismatch, expected 0");
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001519 return false;
1520 }
1521 } else if (Key == "case-sensitive") {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001522 if (!parseScalarBool(I.getValue(), FS->CaseSensitive))
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001523 return false;
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001524 } else if (Key == "overlay-relative") {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001525 if (!parseScalarBool(I.getValue(), FS->IsRelativeOverlay))
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001526 return false;
Ben Langmuirb59cf672014-02-27 00:25:12 +00001527 } else if (Key == "use-external-names") {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001528 if (!parseScalarBool(I.getValue(), FS->UseExternalNames))
Ben Langmuirb59cf672014-02-27 00:25:12 +00001529 return false;
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00001530 } else if (Key == "fallthrough") {
1531 if (!parseScalarBool(I.getValue(), FS->IsFallthrough))
1532 return false;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001533 } else {
1534 llvm_unreachable("key missing from Keys");
1535 }
1536 }
1537
1538 if (Stream.failed())
1539 return false;
1540
1541 if (!checkMissingKeys(Top, Keys))
1542 return false;
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001543
1544 // Now that we sucessefully parsed the YAML file, canonicalize the internal
1545 // representation to a proper directory tree so that we can search faster
1546 // inside the VFS.
Eugene Zelenko5a520112018-03-28 22:09:09 +00001547 for (auto &E : RootEntries)
Bruno Cardoso Lopesf6a0a722016-05-12 19:13:07 +00001548 uniqueOverlayTree(FS, E.get());
1549
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001550 return true;
1551 }
1552};
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001553
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001554RedirectingFileSystem *
1555RedirectingFileSystem::create(std::unique_ptr<MemoryBuffer> Buffer,
1556 SourceMgr::DiagHandlerTy DiagHandler,
1557 StringRef YAMLFilePath, void *DiagContext,
1558 IntrusiveRefCntPtr<FileSystem> ExternalFS) {
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001559 SourceMgr SM;
Rafael Espindola85d78922014-08-27 19:03:27 +00001560 yaml::Stream Stream(Buffer->getMemBufferRef(), SM);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001561
Ben Langmuir97882e72014-02-24 20:56:37 +00001562 SM.setDiagHandler(DiagHandler, DiagContext);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001563 yaml::document_iterator DI = Stream.begin();
1564 yaml::Node *Root = DI->getRoot();
1565 if (DI == Stream.end() || !Root) {
1566 SM.PrintMessage(SMLoc(), SourceMgr::DK_Error, "expected root node");
Craig Topperf1186c52014-05-08 06:41:40 +00001567 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001568 }
1569
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001570 RedirectingFileSystemParser P(Stream);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001571
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001572 std::unique_ptr<RedirectingFileSystem> FS(
Benjamin Kramerd6da1a02016-06-12 20:05:23 +00001573 new RedirectingFileSystem(std::move(ExternalFS)));
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001574
1575 if (!YAMLFilePath.empty()) {
1576 // Use the YAML path from -ivfsoverlay to compute the dir to be prefixed
1577 // to each 'external-contents' path.
1578 //
1579 // Example:
1580 // -ivfsoverlay dummy.cache/vfs/vfs.yaml
1581 // yields:
1582 // FS->ExternalContentsPrefixDir => /<absolute_path_to>/dummy.cache/vfs
1583 //
1584 SmallString<256> OverlayAbsDir = sys::path::parent_path(YAMLFilePath);
1585 std::error_code EC = llvm::sys::fs::make_absolute(OverlayAbsDir);
1586 assert(!EC && "Overlay dir final path must be absolute");
1587 (void)EC;
1588 FS->setExternalContentsPrefixDir(OverlayAbsDir);
1589 }
1590
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001591 if (!P.parse(Root, FS.get()))
Craig Topperf1186c52014-05-08 06:41:40 +00001592 return nullptr;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001593
Ahmed Charles9a16beb2014-03-07 19:33:25 +00001594 return FS.release();
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001595}
1596
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001597ErrorOr<RedirectingFileSystem::Entry *>
1598RedirectingFileSystem::lookupPath(const Twine &Path_) const {
Ben Langmuira6f8ca82014-03-04 22:34:50 +00001599 SmallString<256> Path;
1600 Path_.toVector(Path);
1601
1602 // Handle relative paths
Benjamin Kramer7708b2a2015-10-05 13:55:20 +00001603 if (std::error_code EC = makeAbsolute(Path))
Ben Langmuira6f8ca82014-03-04 22:34:50 +00001604 return EC;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001605
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001606 // Canonicalize path by removing ".", "..", "./", etc components. This is
1607 // a VFS request, do bot bother about symlinks in the path components
1608 // but canonicalize in order to perform the correct entry search.
1609 if (UseCanonicalizedPaths) {
1610 Path = sys::path::remove_leading_dotslash(Path);
1611 sys::path::remove_dots(Path, /*remove_dot_dot=*/true);
1612 }
1613
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001614 if (Path.empty())
Rafael Espindola71de0b62014-06-13 17:20:50 +00001615 return make_error_code(llvm::errc::invalid_argument);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001616
1617 sys::path::const_iterator Start = sys::path::begin(Path);
1618 sys::path::const_iterator End = sys::path::end(Path);
Eugene Zelenko5a520112018-03-28 22:09:09 +00001619 for (const auto &Root : Roots) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001620 ErrorOr<RedirectingFileSystem::Entry *> Result =
1621 lookupPath(Start, End, Root.get());
Rafael Espindola71de0b62014-06-13 17:20:50 +00001622 if (Result || Result.getError() != llvm::errc::no_such_file_or_directory)
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001623 return Result;
1624 }
Rafael Espindola71de0b62014-06-13 17:20:50 +00001625 return make_error_code(llvm::errc::no_such_file_or_directory);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001626}
1627
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001628ErrorOr<RedirectingFileSystem::Entry *>
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001629RedirectingFileSystem::lookupPath(sys::path::const_iterator Start,
Volodymyr Sapsai76100332018-11-16 01:15:54 +00001630 sys::path::const_iterator End,
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001631 RedirectingFileSystem::Entry *From) const {
Nico Weber1865df42018-04-27 19:11:14 +00001632#ifndef _WIN32
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001633 assert(!isTraversalComponent(*Start) &&
1634 !isTraversalComponent(From->getName()) &&
1635 "Paths should not contain traversal components");
1636#else
1637 // FIXME: this is here to support windows, remove it once canonicalized
1638 // paths become globally default.
Bruno Cardoso Lopesbe056b12016-02-23 17:06:50 +00001639 if (Start->equals("."))
1640 ++Start;
Bruno Cardoso Lopesb76c0272016-03-17 02:20:43 +00001641#endif
Ben Langmuira6f8ca82014-03-04 22:34:50 +00001642
Bruno Cardoso Lopesd712b342016-03-30 23:54:00 +00001643 StringRef FromName = From->getName();
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001644
Bruno Cardoso Lopesd712b342016-03-30 23:54:00 +00001645 // Forward the search to the next component in case this is an empty one.
1646 if (!FromName.empty()) {
1647 if (CaseSensitive ? !Start->equals(FromName)
1648 : !Start->equals_lower(FromName))
1649 // failure to match
1650 return make_error_code(llvm::errc::no_such_file_or_directory);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001651
Bruno Cardoso Lopesd712b342016-03-30 23:54:00 +00001652 ++Start;
1653
1654 if (Start == End) {
1655 // Match!
1656 return From;
1657 }
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001658 }
1659
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001660 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(From);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001661 if (!DE)
Rafael Espindola71de0b62014-06-13 17:20:50 +00001662 return make_error_code(llvm::errc::not_a_directory);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001663
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001664 for (const std::unique_ptr<RedirectingFileSystem::Entry> &DirEntry :
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001665 llvm::make_range(DE->contents_begin(), DE->contents_end())) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001666 ErrorOr<RedirectingFileSystem::Entry *> Result =
1667 lookupPath(Start, End, DirEntry.get());
Rafael Espindola71de0b62014-06-13 17:20:50 +00001668 if (Result || Result.getError() != llvm::errc::no_such_file_or_directory)
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001669 return Result;
1670 }
Rafael Espindola71de0b62014-06-13 17:20:50 +00001671 return make_error_code(llvm::errc::no_such_file_or_directory);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001672}
1673
Ben Langmuirf13302e2015-12-10 23:41:39 +00001674static Status getRedirectedFileStatus(const Twine &Path, bool UseExternalNames,
1675 Status ExternalStatus) {
1676 Status S = ExternalStatus;
1677 if (!UseExternalNames)
Jordan Rupprechta8fb7292018-07-24 20:28:07 +00001678 S = Status::copyWithNewName(S, Path.str());
Ben Langmuirf13302e2015-12-10 23:41:39 +00001679 S.IsVFSMapped = true;
1680 return S;
1681}
1682
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001683ErrorOr<Status> RedirectingFileSystem::status(const Twine &Path,
1684 RedirectingFileSystem::Entry *E) {
Ben Langmuir740812b2014-06-24 19:37:16 +00001685 assert(E != nullptr);
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001686 if (auto *F = dyn_cast<RedirectingFileSystem::RedirectingFileEntry>(E)) {
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001687 ErrorOr<Status> S = ExternalFS->status(F->getExternalContentsPath());
Ben Langmuirb59cf672014-02-27 00:25:12 +00001688 assert(!S || S->getName() == F->getExternalContentsPath());
Ben Langmuir5de00f32014-05-23 18:15:47 +00001689 if (S)
Ben Langmuirf13302e2015-12-10 23:41:39 +00001690 return getRedirectedFileStatus(Path, F->useExternalName(UseExternalNames),
1691 *S);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001692 return S;
1693 } else { // directory
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001694 auto *DE = cast<RedirectingFileSystem::RedirectingDirectoryEntry>(E);
Jordan Rupprechta8fb7292018-07-24 20:28:07 +00001695 return Status::copyWithNewName(DE->getStatus(), Path.str());
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001696 }
1697}
1698
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001699ErrorOr<Status> RedirectingFileSystem::status(const Twine &Path) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001700 ErrorOr<RedirectingFileSystem::Entry *> Result = lookupPath(Path);
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00001701 if (!Result) {
1702 if (IsFallthrough &&
1703 Result.getError() == llvm::errc::no_such_file_or_directory) {
1704 return ExternalFS->status(Path);
1705 }
Ben Langmuir740812b2014-06-24 19:37:16 +00001706 return Result.getError();
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00001707 }
Ben Langmuir740812b2014-06-24 19:37:16 +00001708 return status(Path, *Result);
1709}
1710
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001711namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001712
Ben Langmuirf13302e2015-12-10 23:41:39 +00001713/// Provide a file wrapper with an overriden status.
1714class FileWithFixedStatus : public File {
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001715 std::unique_ptr<File> InnerFile;
Ben Langmuirf13302e2015-12-10 23:41:39 +00001716 Status S;
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001717
1718public:
Ben Langmuirf13302e2015-12-10 23:41:39 +00001719 FileWithFixedStatus(std::unique_ptr<File> InnerFile, Status S)
Benjamin Kramercfeacf52016-05-27 14:27:13 +00001720 : InnerFile(std::move(InnerFile)), S(std::move(S)) {}
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001721
Ben Langmuirf13302e2015-12-10 23:41:39 +00001722 ErrorOr<Status> status() override { return S; }
1723 ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
Eugene Zelenko5a520112018-03-28 22:09:09 +00001724
Benjamin Kramer737501c2015-10-05 21:20:19 +00001725 getBuffer(const Twine &Name, int64_t FileSize, bool RequiresNullTerminator,
1726 bool IsVolatile) override {
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001727 return InnerFile->getBuffer(Name, FileSize, RequiresNullTerminator,
1728 IsVolatile);
1729 }
Eugene Zelenko5a520112018-03-28 22:09:09 +00001730
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001731 std::error_code close() override { return InnerFile->close(); }
1732};
Eugene Zelenko5a520112018-03-28 22:09:09 +00001733
1734} // namespace
Benjamin Kramer5532ef12015-10-05 13:55:09 +00001735
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001736ErrorOr<std::unique_ptr<File>>
1737RedirectingFileSystem::openFileForRead(const Twine &Path) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001738 ErrorOr<RedirectingFileSystem::Entry *> E = lookupPath(Path);
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00001739 if (!E) {
1740 if (IsFallthrough &&
1741 E.getError() == llvm::errc::no_such_file_or_directory) {
1742 return ExternalFS->openFileForRead(Path);
1743 }
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001744 return E.getError();
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00001745 }
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001746
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001747 auto *F = dyn_cast<RedirectingFileSystem::RedirectingFileEntry>(*E);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001748 if (!F) // FIXME: errc::not_a_file?
Rafael Espindola71de0b62014-06-13 17:20:50 +00001749 return make_error_code(llvm::errc::invalid_argument);
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001750
Benjamin Kramera8857962014-10-26 22:44:13 +00001751 auto Result = ExternalFS->openFileForRead(F->getExternalContentsPath());
1752 if (!Result)
1753 return Result;
Ben Langmuird066d4c2014-02-28 21:16:07 +00001754
Ben Langmuirf13302e2015-12-10 23:41:39 +00001755 auto ExternalStatus = (*Result)->status();
1756 if (!ExternalStatus)
1757 return ExternalStatus.getError();
Ben Langmuird066d4c2014-02-28 21:16:07 +00001758
Ben Langmuirf13302e2015-12-10 23:41:39 +00001759 // FIXME: Update the status with the name and VFSMapped.
1760 Status S = getRedirectedFileStatus(Path, F->useExternalName(UseExternalNames),
1761 *ExternalStatus);
1762 return std::unique_ptr<File>(
1763 llvm::make_unique<FileWithFixedStatus>(std::move(*Result), S));
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001764}
1765
Volodymyr Sapsai76100332018-11-16 01:15:54 +00001766std::error_code
1767RedirectingFileSystem::getRealPath(const Twine &Path,
1768 SmallVectorImpl<char> &Output) const {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001769 ErrorOr<RedirectingFileSystem::Entry *> Result = lookupPath(Path);
Volodymyr Sapsai76100332018-11-16 01:15:54 +00001770 if (!Result) {
1771 if (IsFallthrough &&
1772 Result.getError() == llvm::errc::no_such_file_or_directory) {
1773 return ExternalFS->getRealPath(Path, Output);
1774 }
1775 return Result.getError();
1776 }
1777
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001778 if (auto *F =
1779 dyn_cast<RedirectingFileSystem::RedirectingFileEntry>(*Result)) {
Volodymyr Sapsai76100332018-11-16 01:15:54 +00001780 return ExternalFS->getRealPath(F->getExternalContentsPath(), Output);
1781 }
1782 // Even if there is a directory entry, fall back to ExternalFS if allowed,
1783 // because directories don't have a single external contents path.
1784 return IsFallthrough ? ExternalFS->getRealPath(Path, Output)
1785 : llvm::errc::invalid_argument;
1786}
1787
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001788IntrusiveRefCntPtr<FileSystem>
Rafael Espindola04ab21d72014-08-17 22:12:58 +00001789vfs::getVFSFromYAML(std::unique_ptr<MemoryBuffer> Buffer,
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001790 SourceMgr::DiagHandlerTy DiagHandler,
Jonas Devliegherefc514902018-10-10 13:27:25 +00001791 StringRef YAMLFilePath, void *DiagContext,
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001792 IntrusiveRefCntPtr<FileSystem> ExternalFS) {
Benjamin Kramerdadb58b2015-10-07 10:05:44 +00001793 return RedirectingFileSystem::create(std::move(Buffer), DiagHandler,
Benjamin Kramerd6da1a02016-06-12 20:05:23 +00001794 YAMLFilePath, DiagContext,
1795 std::move(ExternalFS));
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001796}
1797
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001798static void getVFSEntries(RedirectingFileSystem::Entry *SrcE,
1799 SmallVectorImpl<StringRef> &Path,
Bruno Cardoso Lopes82ec4fde2016-12-22 07:06:03 +00001800 SmallVectorImpl<YAMLVFSEntry> &Entries) {
1801 auto Kind = SrcE->getKind();
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001802 if (Kind == RedirectingFileSystem::EK_Directory) {
1803 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(SrcE);
Bruno Cardoso Lopes82ec4fde2016-12-22 07:06:03 +00001804 assert(DE && "Must be a directory");
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001805 for (std::unique_ptr<RedirectingFileSystem::Entry> &SubEntry :
Bruno Cardoso Lopes82ec4fde2016-12-22 07:06:03 +00001806 llvm::make_range(DE->contents_begin(), DE->contents_end())) {
1807 Path.push_back(SubEntry->getName());
1808 getVFSEntries(SubEntry.get(), Path, Entries);
1809 Path.pop_back();
1810 }
1811 return;
1812 }
1813
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001814 assert(Kind == RedirectingFileSystem::EK_File && "Must be a EK_File");
1815 auto *FE = dyn_cast<RedirectingFileSystem::RedirectingFileEntry>(SrcE);
Bruno Cardoso Lopes82ec4fde2016-12-22 07:06:03 +00001816 assert(FE && "Must be a file");
1817 SmallString<128> VPath;
1818 for (auto &Comp : Path)
1819 llvm::sys::path::append(VPath, Comp);
1820 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath()));
1821}
1822
1823void vfs::collectVFSFromYAML(std::unique_ptr<MemoryBuffer> Buffer,
1824 SourceMgr::DiagHandlerTy DiagHandler,
1825 StringRef YAMLFilePath,
1826 SmallVectorImpl<YAMLVFSEntry> &CollectedEntries,
1827 void *DiagContext,
1828 IntrusiveRefCntPtr<FileSystem> ExternalFS) {
1829 RedirectingFileSystem *VFS = RedirectingFileSystem::create(
1830 std::move(Buffer), DiagHandler, YAMLFilePath, DiagContext,
1831 std::move(ExternalFS));
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00001832 ErrorOr<RedirectingFileSystem::Entry *> RootE = VFS->lookupPath("/");
Bruno Cardoso Lopes82ec4fde2016-12-22 07:06:03 +00001833 if (!RootE)
1834 return;
1835 SmallVector<StringRef, 8> Components;
1836 Components.push_back("/");
1837 getVFSEntries(*RootE, Components, CollectedEntries);
1838}
1839
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001840UniqueID vfs::getNextVirtualUniqueID() {
Benjamin Kramer4527fb22014-03-02 17:08:31 +00001841 static std::atomic<unsigned> UID;
1842 unsigned ID = ++UID;
Ben Langmuird51ba0b2014-02-21 23:39:37 +00001843 // The following assumes that uint64_t max will never collide with a real
1844 // dev_t value from the OS.
1845 return UniqueID(std::numeric_limits<uint64_t>::max(), ID);
1846}
Justin Bogner9c785292014-05-20 21:43:27 +00001847
Justin Bogner9c785292014-05-20 21:43:27 +00001848void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) {
1849 assert(sys::path::is_absolute(VirtualPath) && "virtual path not absolute");
1850 assert(sys::path::is_absolute(RealPath) && "real path not absolute");
1851 assert(!pathHasTraversal(VirtualPath) && "path traversal is not supported");
1852 Mappings.emplace_back(VirtualPath, RealPath);
1853}
1854
Justin Bogner44fa450342014-05-21 22:46:51 +00001855namespace {
Eugene Zelenko5a520112018-03-28 22:09:09 +00001856
Justin Bogner44fa450342014-05-21 22:46:51 +00001857class JSONWriter {
1858 llvm::raw_ostream &OS;
1859 SmallVector<StringRef, 16> DirStack;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001860
1861 unsigned getDirIndent() { return 4 * DirStack.size(); }
1862 unsigned getFileIndent() { return 4 * (DirStack.size() + 1); }
Justin Bogner44fa450342014-05-21 22:46:51 +00001863 bool containedIn(StringRef Parent, StringRef Path);
1864 StringRef containedPart(StringRef Parent, StringRef Path);
1865 void startDirectory(StringRef Path);
1866 void endDirectory();
1867 void writeEntry(StringRef VPath, StringRef RPath);
1868
1869public:
1870 JSONWriter(llvm::raw_ostream &OS) : OS(OS) {}
Eugene Zelenko5a520112018-03-28 22:09:09 +00001871
Bruno Cardoso Lopesfc8644c2016-04-13 19:28:21 +00001872 void write(ArrayRef<YAMLVFSEntry> Entries, Optional<bool> UseExternalNames,
1873 Optional<bool> IsCaseSensitive, Optional<bool> IsOverlayRelative,
Volodymyr Sapsai7faf7ae2018-10-24 22:40:54 +00001874 StringRef OverlayDir);
Justin Bogner44fa450342014-05-21 22:46:51 +00001875};
Eugene Zelenko5a520112018-03-28 22:09:09 +00001876
1877} // namespace
Justin Bogner9c785292014-05-20 21:43:27 +00001878
Justin Bogner44fa450342014-05-21 22:46:51 +00001879bool JSONWriter::containedIn(StringRef Parent, StringRef Path) {
Justin Bogner1c078f22014-05-20 22:12:58 +00001880 using namespace llvm::sys;
Eugene Zelenko5a520112018-03-28 22:09:09 +00001881
Justin Bogner1c078f22014-05-20 22:12:58 +00001882 // Compare each path component.
1883 auto IParent = path::begin(Parent), EParent = path::end(Parent);
1884 for (auto IChild = path::begin(Path), EChild = path::end(Path);
1885 IParent != EParent && IChild != EChild; ++IParent, ++IChild) {
1886 if (*IParent != *IChild)
1887 return false;
1888 }
1889 // Have we exhausted the parent path?
1890 return IParent == EParent;
Justin Bogner9c785292014-05-20 21:43:27 +00001891}
1892
Justin Bogner44fa450342014-05-21 22:46:51 +00001893StringRef JSONWriter::containedPart(StringRef Parent, StringRef Path) {
1894 assert(!Parent.empty());
Justin Bogner9c785292014-05-20 21:43:27 +00001895 assert(containedIn(Parent, Path));
Justin Bogner9c785292014-05-20 21:43:27 +00001896 return Path.slice(Parent.size() + 1, StringRef::npos);
1897}
1898
Justin Bogner44fa450342014-05-21 22:46:51 +00001899void JSONWriter::startDirectory(StringRef Path) {
1900 StringRef Name =
1901 DirStack.empty() ? Path : containedPart(DirStack.back(), Path);
1902 DirStack.push_back(Path);
1903 unsigned Indent = getDirIndent();
1904 OS.indent(Indent) << "{\n";
1905 OS.indent(Indent + 2) << "'type': 'directory',\n";
1906 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(Name) << "\",\n";
1907 OS.indent(Indent + 2) << "'contents': [\n";
1908}
1909
1910void JSONWriter::endDirectory() {
1911 unsigned Indent = getDirIndent();
1912 OS.indent(Indent + 2) << "]\n";
1913 OS.indent(Indent) << "}";
1914
1915 DirStack.pop_back();
1916}
1917
1918void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) {
1919 unsigned Indent = getFileIndent();
1920 OS.indent(Indent) << "{\n";
1921 OS.indent(Indent + 2) << "'type': 'file',\n";
1922 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n";
1923 OS.indent(Indent + 2) << "'external-contents': \""
1924 << llvm::yaml::escape(RPath) << "\"\n";
1925 OS.indent(Indent) << "}";
1926}
1927
1928void JSONWriter::write(ArrayRef<YAMLVFSEntry> Entries,
Bruno Cardoso Lopesfc8644c2016-04-13 19:28:21 +00001929 Optional<bool> UseExternalNames,
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001930 Optional<bool> IsCaseSensitive,
1931 Optional<bool> IsOverlayRelative,
1932 StringRef OverlayDir) {
Justin Bogner44fa450342014-05-21 22:46:51 +00001933 using namespace llvm::sys;
1934
1935 OS << "{\n"
1936 " 'version': 0,\n";
1937 if (IsCaseSensitive.hasValue())
1938 OS << " 'case-sensitive': '"
1939 << (IsCaseSensitive.getValue() ? "true" : "false") << "',\n";
Bruno Cardoso Lopesfc8644c2016-04-13 19:28:21 +00001940 if (UseExternalNames.hasValue())
1941 OS << " 'use-external-names': '"
1942 << (UseExternalNames.getValue() ? "true" : "false") << "',\n";
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001943 bool UseOverlayRelative = false;
1944 if (IsOverlayRelative.hasValue()) {
1945 UseOverlayRelative = IsOverlayRelative.getValue();
Jonas Devliegherefc514902018-10-10 13:27:25 +00001946 OS << " 'overlay-relative': '" << (UseOverlayRelative ? "true" : "false")
1947 << "',\n";
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001948 }
Justin Bogner44fa450342014-05-21 22:46:51 +00001949 OS << " 'roots': [\n";
1950
Justin Bogner73466402014-07-15 01:24:35 +00001951 if (!Entries.empty()) {
1952 const YAMLVFSEntry &Entry = Entries.front();
1953 startDirectory(path::parent_path(Entry.VPath));
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001954
1955 StringRef RPath = Entry.RPath;
1956 if (UseOverlayRelative) {
1957 unsigned OverlayDirLen = OverlayDir.size();
1958 assert(RPath.substr(0, OverlayDirLen) == OverlayDir &&
1959 "Overlay dir must be contained in RPath");
1960 RPath = RPath.slice(OverlayDirLen, RPath.size());
1961 }
1962
1963 writeEntry(path::filename(Entry.VPath), RPath);
Justin Bogner44fa450342014-05-21 22:46:51 +00001964
Justin Bogner73466402014-07-15 01:24:35 +00001965 for (const auto &Entry : Entries.slice(1)) {
1966 StringRef Dir = path::parent_path(Entry.VPath);
1967 if (Dir == DirStack.back())
1968 OS << ",\n";
1969 else {
1970 while (!DirStack.empty() && !containedIn(DirStack.back(), Dir)) {
1971 OS << "\n";
1972 endDirectory();
1973 }
1974 OS << ",\n";
1975 startDirectory(Dir);
1976 }
Bruno Cardoso Lopesd878e282016-03-20 02:08:48 +00001977 StringRef RPath = Entry.RPath;
1978 if (UseOverlayRelative) {
1979 unsigned OverlayDirLen = OverlayDir.size();
1980 assert(RPath.substr(0, OverlayDirLen) == OverlayDir &&
1981 "Overlay dir must be contained in RPath");
1982 RPath = RPath.slice(OverlayDirLen, RPath.size());
1983 }
1984 writeEntry(path::filename(Entry.VPath), RPath);
Justin Bogner73466402014-07-15 01:24:35 +00001985 }
1986
1987 while (!DirStack.empty()) {
1988 OS << "\n";
1989 endDirectory();
1990 }
Justin Bogner44fa450342014-05-21 22:46:51 +00001991 OS << "\n";
Justin Bogner44fa450342014-05-21 22:46:51 +00001992 }
1993
Justin Bogner73466402014-07-15 01:24:35 +00001994 OS << " ]\n"
Justin Bogner44fa450342014-05-21 22:46:51 +00001995 << "}\n";
1996}
1997
Justin Bogner9c785292014-05-20 21:43:27 +00001998void YAMLVFSWriter::write(llvm::raw_ostream &OS) {
Fangrui Song55fab262018-09-26 22:16:28 +00001999 llvm::sort(Mappings, [](const YAMLVFSEntry &LHS, const YAMLVFSEntry &RHS) {
Justin Bogner9c785292014-05-20 21:43:27 +00002000 return LHS.VPath < RHS.VPath;
2001 });
2002
Bruno Cardoso Lopesfc8644c2016-04-13 19:28:21 +00002003 JSONWriter(OS).write(Mappings, UseExternalNames, IsCaseSensitive,
Volodymyr Sapsai7faf7ae2018-10-24 22:40:54 +00002004 IsOverlayRelative, OverlayDir);
Justin Bogner9c785292014-05-20 21:43:27 +00002005}
Ben Langmuir740812b2014-06-24 19:37:16 +00002006
Benjamin Kramer49692ed2015-10-09 13:28:13 +00002007VFSFromYamlDirIterImpl::VFSFromYamlDirIterImpl(
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00002008 const Twine &_Path,
2009 RedirectingFileSystem::RedirectingDirectoryEntry::iterator Begin,
2010 RedirectingFileSystem::RedirectingDirectoryEntry::iterator End,
2011 bool IterateExternalFS, FileSystem &ExternalFS, std::error_code &EC)
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002012 : Dir(_Path.str()), Current(Begin), End(End),
2013 IterateExternalFS(IterateExternalFS), ExternalFS(ExternalFS) {
2014 EC = incrementImpl(/*IsFirstTime=*/true);
Ben Langmuir740812b2014-06-24 19:37:16 +00002015}
2016
2017std::error_code VFSFromYamlDirIterImpl::increment() {
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002018 return incrementImpl(/*IsFirstTime=*/false);
Volodymyr Sapsai3aa88b52018-08-07 23:00:40 +00002019}
2020
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002021std::error_code VFSFromYamlDirIterImpl::incrementExternal() {
2022 assert(!(IsExternalFSCurrent && ExternalDirIter == directory_iterator()) &&
2023 "incrementing past end");
2024 std::error_code EC;
2025 if (IsExternalFSCurrent) {
2026 ExternalDirIter.increment(EC);
2027 } else if (IterateExternalFS) {
2028 ExternalDirIter = ExternalFS.dir_begin(Dir, EC);
2029 IsExternalFSCurrent = true;
2030 if (EC && EC != errc::no_such_file_or_directory)
2031 return EC;
2032 EC = {};
2033 }
2034 if (EC || ExternalDirIter == directory_iterator()) {
2035 CurrentEntry = directory_entry();
2036 } else {
2037 CurrentEntry = *ExternalDirIter;
2038 }
2039 return EC;
2040}
2041
2042std::error_code VFSFromYamlDirIterImpl::incrementContent(bool IsFirstTime) {
Erich Keanef1d30612018-10-29 21:21:55 +00002043 assert((IsFirstTime || Current != End) && "cannot iterate past end");
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002044 if (!IsFirstTime)
2045 ++Current;
Volodymyr Sapsai3aa88b52018-08-07 23:00:40 +00002046 while (Current != End) {
Ben Langmuir740812b2014-06-24 19:37:16 +00002047 SmallString<128> PathStr(Dir);
2048 llvm::sys::path::append(PathStr, (*Current)->getName());
Sam McCall0ae00562018-09-14 12:47:38 +00002049 sys::fs::file_type Type;
2050 switch ((*Current)->getKind()) {
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00002051 case RedirectingFileSystem::EK_Directory:
Jonas Devliegherefc514902018-10-10 13:27:25 +00002052 Type = sys::fs::file_type::directory_file;
2053 break;
Jonas Devlieghere1a0ce652019-01-15 22:36:41 +00002054 case RedirectingFileSystem::EK_File:
Jonas Devliegherefc514902018-10-10 13:27:25 +00002055 Type = sys::fs::file_type::regular_file;
2056 break;
Bruno Cardoso Lopesb7abde02016-08-12 18:18:24 +00002057 }
Sam McCall0ae00562018-09-14 12:47:38 +00002058 CurrentEntry = directory_entry(PathStr.str(), Type);
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002059 return {};
Bruno Cardoso Lopese43e2632016-08-12 02:17:26 +00002060 }
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002061 return incrementExternal();
2062}
Bruno Cardoso Lopesb7abde02016-08-12 18:18:24 +00002063
Volodymyr Sapsai91e13162018-10-26 22:14:33 +00002064std::error_code VFSFromYamlDirIterImpl::incrementImpl(bool IsFirstTime) {
2065 while (true) {
2066 std::error_code EC = IsExternalFSCurrent ? incrementExternal()
2067 : incrementContent(IsFirstTime);
2068 if (EC || CurrentEntry.path().empty())
2069 return EC;
2070 StringRef Name = llvm::sys::path::filename(CurrentEntry.path());
2071 if (SeenNames.insert(Name).second)
2072 return EC; // name not seen before
2073 }
2074 llvm_unreachable("returned above");
Ben Langmuir740812b2014-06-24 19:37:16 +00002075}
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002076
Jonas Devliegherefc514902018-10-10 13:27:25 +00002077vfs::recursive_directory_iterator::recursive_directory_iterator(
2078 FileSystem &FS_, const Twine &Path, std::error_code &EC)
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002079 : FS(&FS_) {
2080 directory_iterator I = FS->dir_begin(Path, EC);
Juergen Ributzkaf9787432017-03-14 00:14:40 +00002081 if (I != directory_iterator()) {
Jonas Devlieghere41fb9512018-10-31 23:36:10 +00002082 State = std::make_shared<detail::RecDirIterState>();
2083 State->Stack.push(I);
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002084 }
2085}
2086
2087vfs::recursive_directory_iterator &
2088recursive_directory_iterator::increment(std::error_code &EC) {
Jonas Devlieghere41fb9512018-10-31 23:36:10 +00002089 assert(FS && State && !State->Stack.empty() && "incrementing past end");
2090 assert(!State->Stack.top()->path().empty() && "non-canonical end iterator");
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002091 vfs::directory_iterator End;
Jonas Devlieghere41fb9512018-10-31 23:36:10 +00002092
2093 if (State->HasNoPushRequest)
2094 State->HasNoPushRequest = false;
2095 else {
2096 if (State->Stack.top()->type() == sys::fs::file_type::directory_file) {
2097 vfs::directory_iterator I = FS->dir_begin(State->Stack.top()->path(), EC);
2098 if (I != End) {
2099 State->Stack.push(I);
2100 return *this;
2101 }
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002102 }
2103 }
2104
Jonas Devlieghere41fb9512018-10-31 23:36:10 +00002105 while (!State->Stack.empty() && State->Stack.top().increment(EC) == End)
2106 State->Stack.pop();
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002107
Jonas Devlieghere41fb9512018-10-31 23:36:10 +00002108 if (State->Stack.empty())
Ben Langmuir7c9f6c82014-06-25 20:25:40 +00002109 State.reset(); // end iterator
2110
2111 return *this;
Rafael Espindola2d2b4202014-07-06 17:43:24 +00002112}