15fce8c4fSNick Kledzik //===- FileOutputBuffer.cpp - File Output Buffer ----------------*- C++ -*-===// 25fce8c4fSNick Kledzik // 35fce8c4fSNick Kledzik // The LLVM Compiler Infrastructure 45fce8c4fSNick Kledzik // 55fce8c4fSNick Kledzik // This file is distributed under the University of Illinois Open Source 65fce8c4fSNick Kledzik // License. See LICENSE.TXT for details. 75fce8c4fSNick Kledzik // 85fce8c4fSNick Kledzik //===----------------------------------------------------------------------===// 95fce8c4fSNick Kledzik // 105fce8c4fSNick Kledzik // Utility for creating a in-memory buffer that will be written to a file. 115fce8c4fSNick Kledzik // 125fce8c4fSNick Kledzik //===----------------------------------------------------------------------===// 135fce8c4fSNick Kledzik 14d9903888SChandler Carruth #include "llvm/Support/FileOutputBuffer.h" 1516132e6fSBenjamin Kramer #include "llvm/ADT/STLExtras.h" 1616132e6fSBenjamin Kramer #include "llvm/ADT/SmallString.h" 1716132e6fSBenjamin Kramer #include "llvm/Support/Errc.h" 18a16fe65bSRui Ueyama #include "llvm/Support/Memory.h" 19d4b24edaSRafael Espindola #include "llvm/Support/Path.h" 20a6e9c3e4SRafael Espindola #include <system_error> 215fce8c4fSNick Kledzik 227eb1f185SRafael Espindola #if !defined(_MSC_VER) && !defined(__MINGW32__) 237eb1f185SRafael Espindola #include <unistd.h> 247eb1f185SRafael Espindola #else 257eb1f185SRafael Espindola #include <io.h> 267eb1f185SRafael Espindola #endif 277eb1f185SRafael Espindola 28a16fe65bSRui Ueyama using namespace llvm; 29a16fe65bSRui Ueyama using namespace llvm::sys; 305fce8c4fSNick Kledzik 3151ebcaafSBenjamin Kramer namespace { 32a16fe65bSRui Ueyama // A FileOutputBuffer which creates a temporary file in the same directory 33a16fe65bSRui Ueyama // as the final output file. The final output file is atomically replaced 34a16fe65bSRui Ueyama // with the temporary file on commit(). 35a16fe65bSRui Ueyama class OnDiskBuffer : public FileOutputBuffer { 36a16fe65bSRui Ueyama public: 3758fe67a9SRafael Espindola OnDiskBuffer(StringRef Path, fs::TempFile Temp, 38a16fe65bSRui Ueyama std::unique_ptr<fs::mapped_file_region> Buf) 3958fe67a9SRafael Espindola : FileOutputBuffer(Path), Buffer(std::move(Buf)), Temp(std::move(Temp)) {} 405fce8c4fSNick Kledzik 41a16fe65bSRui Ueyama uint8_t *getBufferStart() const override { return (uint8_t *)Buffer->data(); } 42a16fe65bSRui Ueyama 43a16fe65bSRui Ueyama uint8_t *getBufferEnd() const override { 44a16fe65bSRui Ueyama return (uint8_t *)Buffer->data() + Buffer->size(); 45a16fe65bSRui Ueyama } 46a16fe65bSRui Ueyama 47a16fe65bSRui Ueyama size_t getBufferSize() const override { return Buffer->size(); } 48a16fe65bSRui Ueyama 490d7a38a8SRafael Espindola Error commit() override { 50a16fe65bSRui Ueyama // Unmap buffer, letting OS flush dirty pages to file on disk. 51a16fe65bSRui Ueyama Buffer.reset(); 52a16fe65bSRui Ueyama 53a16fe65bSRui Ueyama // Atomically replace the existing file with the new one. 5458fe67a9SRafael Espindola return Temp.keep(FinalPath); 55a16fe65bSRui Ueyama } 56a16fe65bSRui Ueyama 57a16fe65bSRui Ueyama ~OnDiskBuffer() override { 581a4398a1SReid Kleckner // Close the mapping before deleting the temp file, so that the removal 591a4398a1SReid Kleckner // succeeds. 60a16fe65bSRui Ueyama Buffer.reset(); 6158fe67a9SRafael Espindola consumeError(Temp.discard()); 625fce8c4fSNick Kledzik } 635fce8c4fSNick Kledzik 64a16fe65bSRui Ueyama private: 65a16fe65bSRui Ueyama std::unique_ptr<fs::mapped_file_region> Buffer; 6658fe67a9SRafael Espindola fs::TempFile Temp; 67a16fe65bSRui Ueyama }; 68a16fe65bSRui Ueyama 69a16fe65bSRui Ueyama // A FileOutputBuffer which keeps data in memory and writes to the final 70a16fe65bSRui Ueyama // output file on commit(). This is used only when we cannot use OnDiskBuffer. 71a16fe65bSRui Ueyama class InMemoryBuffer : public FileOutputBuffer { 72a16fe65bSRui Ueyama public: 73a16fe65bSRui Ueyama InMemoryBuffer(StringRef Path, MemoryBlock Buf, unsigned Mode) 74a16fe65bSRui Ueyama : FileOutputBuffer(Path), Buffer(Buf), Mode(Mode) {} 75a16fe65bSRui Ueyama 76a16fe65bSRui Ueyama uint8_t *getBufferStart() const override { return (uint8_t *)Buffer.base(); } 77a16fe65bSRui Ueyama 78a16fe65bSRui Ueyama uint8_t *getBufferEnd() const override { 79a16fe65bSRui Ueyama return (uint8_t *)Buffer.base() + Buffer.size(); 80a16fe65bSRui Ueyama } 81a16fe65bSRui Ueyama 82a16fe65bSRui Ueyama size_t getBufferSize() const override { return Buffer.size(); } 83a16fe65bSRui Ueyama 840d7a38a8SRafael Espindola Error commit() override { 851f67a3cbSZachary Turner using namespace sys::fs; 86d4b24edaSRafael Espindola int FD; 87a16fe65bSRui Ueyama std::error_code EC; 88*154a72ddSZachary Turner if (auto EC = 89*154a72ddSZachary Turner openFileForWrite(FinalPath, FD, CD_CreateAlways, OF_None, Mode)) 900d7a38a8SRafael Espindola return errorCodeToError(EC); 91a16fe65bSRui Ueyama raw_fd_ostream OS(FD, /*shouldClose=*/true, /*unbuffered=*/true); 92a16fe65bSRui Ueyama OS << StringRef((const char *)Buffer.base(), Buffer.size()); 930d7a38a8SRafael Espindola return Error::success(); 94d4b24edaSRafael Espindola } 95d4b24edaSRafael Espindola 96a16fe65bSRui Ueyama private: 97a16fe65bSRui Ueyama OwningMemoryBlock Buffer; 98a16fe65bSRui Ueyama unsigned Mode; 99a16fe65bSRui Ueyama }; 10051ebcaafSBenjamin Kramer } // namespace 101a16fe65bSRui Ueyama 102f6490e04SRui Ueyama static Expected<std::unique_ptr<InMemoryBuffer>> 103f6490e04SRui Ueyama createInMemoryBuffer(StringRef Path, size_t Size, unsigned Mode) { 104f6490e04SRui Ueyama std::error_code EC; 105f6490e04SRui Ueyama MemoryBlock MB = Memory::allocateMappedMemory( 106f6490e04SRui Ueyama Size, nullptr, sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC); 107f6490e04SRui Ueyama if (EC) 108f6490e04SRui Ueyama return errorCodeToError(EC); 109f6490e04SRui Ueyama return llvm::make_unique<InMemoryBuffer>(Path, MB, Mode); 110f6490e04SRui Ueyama } 111f6490e04SRui Ueyama 112f6490e04SRui Ueyama static Expected<std::unique_ptr<OnDiskBuffer>> 113f6490e04SRui Ueyama createOnDiskBuffer(StringRef Path, size_t Size, unsigned Mode) { 11458fe67a9SRafael Espindola Expected<fs::TempFile> FileOrErr = 11558fe67a9SRafael Espindola fs::TempFile::create(Path + ".tmp%%%%%%%", Mode); 11658fe67a9SRafael Espindola if (!FileOrErr) 11758fe67a9SRafael Espindola return FileOrErr.takeError(); 11858fe67a9SRafael Espindola fs::TempFile File = std::move(*FileOrErr); 1197dbb5778SRafael Espindola 120712e8d29SNico Weber #ifndef _WIN32 121da9bc2e5SRui Ueyama // On Windows, CreateFileMapping (the mmap function on Windows) 122da9bc2e5SRui Ueyama // automatically extends the underlying file. We don't need to 123da9bc2e5SRui Ueyama // extend the file beforehand. _chsize (ftruncate on Windows) is 124da9bc2e5SRui Ueyama // pretty slow just like it writes specified amount of bytes, 125a16fe65bSRui Ueyama // so we should avoid calling that function. 12658fe67a9SRafael Espindola if (auto EC = fs::resize_file(File.FD, Size)) { 12758fe67a9SRafael Espindola consumeError(File.discard()); 128e0df357dSRafael Espindola return errorCodeToError(EC); 12958fe67a9SRafael Espindola } 130da9bc2e5SRui Ueyama #endif 131c69f13bfSRafael Espindola 132a16fe65bSRui Ueyama // Mmap it. 133a16fe65bSRui Ueyama std::error_code EC; 134a16fe65bSRui Ueyama auto MappedFile = llvm::make_unique<fs::mapped_file_region>( 13558fe67a9SRafael Espindola File.FD, fs::mapped_file_region::readwrite, Size, 0, EC); 13658fe67a9SRafael Espindola if (EC) { 13758fe67a9SRafael Espindola consumeError(File.discard()); 138e0df357dSRafael Espindola return errorCodeToError(EC); 13958fe67a9SRafael Espindola } 14058fe67a9SRafael Espindola return llvm::make_unique<OnDiskBuffer>(Path, std::move(File), 14158fe67a9SRafael Espindola std::move(MappedFile)); 1425fce8c4fSNick Kledzik } 1435fce8c4fSNick Kledzik 144a16fe65bSRui Ueyama // Create an instance of FileOutputBuffer. 145e0df357dSRafael Espindola Expected<std::unique_ptr<FileOutputBuffer>> 146a16fe65bSRui Ueyama FileOutputBuffer::create(StringRef Path, size_t Size, unsigned Flags) { 147a16fe65bSRui Ueyama unsigned Mode = fs::all_read | fs::all_write; 148a16fe65bSRui Ueyama if (Flags & F_executable) 149a16fe65bSRui Ueyama Mode |= fs::all_exe; 1505fce8c4fSNick Kledzik 151a16fe65bSRui Ueyama fs::file_status Stat; 152a16fe65bSRui Ueyama fs::status(Path, Stat); 153d4b24edaSRafael Espindola 154a16fe65bSRui Ueyama // Usually, we want to create OnDiskBuffer to create a temporary file in 155a16fe65bSRui Ueyama // the same directory as the destination file and atomically replaces it 156a16fe65bSRui Ueyama // by rename(2). 157a16fe65bSRui Ueyama // 158a16fe65bSRui Ueyama // However, if the destination file is a special file, we don't want to 159a16fe65bSRui Ueyama // use rename (e.g. we don't want to replace /dev/null with a regular 160a16fe65bSRui Ueyama // file.) If that's the case, we create an in-memory buffer, open the 161a16fe65bSRui Ueyama // destination file and write to it on commit(). 162a16fe65bSRui Ueyama switch (Stat.type()) { 163a16fe65bSRui Ueyama case fs::file_type::directory_file: 164e0df357dSRafael Espindola return errorCodeToError(errc::is_a_directory); 165a16fe65bSRui Ueyama case fs::file_type::regular_file: 166a16fe65bSRui Ueyama case fs::file_type::file_not_found: 167a16fe65bSRui Ueyama case fs::file_type::status_error: 168f6490e04SRui Ueyama return createOnDiskBuffer(Path, Size, Mode); 169a16fe65bSRui Ueyama default: 170f6490e04SRui Ueyama return createInMemoryBuffer(Path, Size, Mode); 1715fce8c4fSNick Kledzik } 172a16fe65bSRui Ueyama } 173