blob: 07a9aaf4fdbe174e12ea03ea5d783884bd77d4a7 [file] [log] [blame]
Reid Spencercf6afc62004-11-14 21:56:59 +00001//===-- ArchiveWriter.cpp - Write LLVM archive files ----------------------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Reid Spencer362cbf02004-11-06 08:51:45 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Reid Spencer362cbf02004-11-06 08:51:45 +00008//===----------------------------------------------------------------------===//
9//
Gabor Greifa99be512007-07-05 17:07:56 +000010// Builds up an LLVM archive file (.a) containing LLVM bitcode.
Reid Spencer362cbf02004-11-06 08:51:45 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "ArchiveInternals.h"
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000015#include "llvm/Module.h"
Chris Lattner7f6b4472008-04-01 04:26:46 +000016#include "llvm/ADT/OwningPtr.h"
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000017#include "llvm/Bitcode/ReaderWriter.h"
Michael J. Spencer54453f22011-01-10 02:34:23 +000018#include "llvm/Support/FileSystem.h"
Chris Lattner7f6b4472008-04-01 04:26:46 +000019#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000020#include "llvm/Support/Process.h"
21#include "llvm/Support/Signals.h"
Michael J. Spencer333fb042010-12-09 17:36:48 +000022#include "llvm/Support/system_error.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000023#include <fstream>
Bill Wendlinga21900d2006-11-28 22:49:32 +000024#include <ostream>
Reid Spencercf6afc62004-11-14 21:56:59 +000025#include <iomanip>
Reid Spencer362cbf02004-11-06 08:51:45 +000026using namespace llvm;
27
Reid Spencercf6afc62004-11-14 21:56:59 +000028// Write an integer using variable bit rate encoding. This saves a few bytes
29// per entry in the symbol table.
Dan Gohman844731a2008-05-13 00:00:25 +000030static inline void writeInteger(unsigned num, std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +000031 while (1) {
32 if (num < 0x80) { // done?
33 ARFile << (unsigned char)num;
34 return;
35 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +000036
Reid Spencercf6afc62004-11-14 21:56:59 +000037 // Nope, we are bigger than a character, output the next 7 bits and set the
38 // high bit to say that there is more coming...
39 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
40 num >>= 7; // Shift out 7 bits now...
41 }
42}
43
44// Compute how many bytes are taken by a given VBR encoded value. This is needed
45// to pre-compute the size of the symbol table.
Dan Gohman844731a2008-05-13 00:00:25 +000046static inline unsigned numVbrBytes(unsigned num) {
Reid Spencercf6afc62004-11-14 21:56:59 +000047
Reid Spencer87f90722004-11-16 06:47:30 +000048 // Note that the following nested ifs are somewhat equivalent to a binary
49 // search. We split it in half by comparing against 2^14 first. This allows
Misha Brukman2b37d7c2005-04-21 21:13:18 +000050 // most reasonable values to be done in 2 comparisons instead of 1 for
Reid Spencer87f90722004-11-16 06:47:30 +000051 // small ones and four for large ones. We expect this to access file offsets
Misha Brukman2b37d7c2005-04-21 21:13:18 +000052 // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range,
Reid Spencer87f90722004-11-16 06:47:30 +000053 // so this approach is reasonable.
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +000054 if (num < 1<<14) {
Reid Spencer87f90722004-11-16 06:47:30 +000055 if (num < 1<<7)
56 return 1;
57 else
58 return 2;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +000059 }
Reid Spencer87f90722004-11-16 06:47:30 +000060 if (num < 1<<21)
61 return 3;
62
63 if (num < 1<<28)
64 return 4;
65 return 5; // anything >= 2^28 takes 5 bytes
Reid Spencercf6afc62004-11-14 21:56:59 +000066}
67
68// Create an empty archive.
Owen Anderson4434ed42009-07-01 23:13:44 +000069Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
Owen Anderson8b477ed2009-07-01 16:58:40 +000070 Archive* result = new Archive(FilePath, C);
Reid Spencer362cbf02004-11-06 08:51:45 +000071 return result;
72}
73
Misha Brukman2b37d7c2005-04-21 21:13:18 +000074// Fill the ArchiveMemberHeader with the information from a member. If
Reid Spencer87f90722004-11-16 06:47:30 +000075// TruncateNames is true, names are flattened to 15 chars or less. The sz field
Misha Brukman2b37d7c2005-04-21 21:13:18 +000076// is provided here instead of coming from the mbr because the member might be
77// stored compressed and the compressed size is not the ArchiveMember's size.
78// Furthermore compressed files have negative size fields to identify them as
Reid Spencer87f90722004-11-16 06:47:30 +000079// compressed.
Reid Spencercf6afc62004-11-14 21:56:59 +000080bool
81Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
82 int sz, bool TruncateNames) const {
Reid Spencer362cbf02004-11-06 08:51:45 +000083
Reid Spencercf6afc62004-11-14 21:56:59 +000084 // Set the permissions mode, uid and gid
85 hdr.init();
86 char buffer[32];
87 sprintf(buffer, "%-8o", mbr.getMode());
88 memcpy(hdr.mode,buffer,8);
89 sprintf(buffer, "%-6u", mbr.getUser());
90 memcpy(hdr.uid,buffer,6);
91 sprintf(buffer, "%-6u", mbr.getGroup());
92 memcpy(hdr.gid,buffer,6);
93
Reid Spencercf6afc62004-11-14 21:56:59 +000094 // Set the last modification date
95 uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime();
96 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
97 memcpy(hdr.date,buffer,12);
98
Reid Spencerd4543da2004-11-17 18:28:29 +000099 // Get rid of trailing blanks in the name
Chris Lattner74382b72009-08-23 22:45:37 +0000100 std::string mbrPath = mbr.getPath().str();
Reid Spencerd4543da2004-11-17 18:28:29 +0000101 size_t mbrLen = mbrPath.length();
102 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
103 mbrPath.erase(mbrLen-1,1);
104 mbrLen--;
105 }
106
Reid Spencercf6afc62004-11-14 21:56:59 +0000107 // Set the name field in one of its various flavors.
108 bool writeLongName = false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000109 if (mbr.isStringTable()) {
110 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
Reid Spencer9a29db42004-11-20 07:29:40 +0000111 } else if (mbr.isSVR4SymbolTable()) {
112 memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16);
113 } else if (mbr.isBSD4SymbolTable()) {
114 memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16);
Reid Spencercf6afc62004-11-14 21:56:59 +0000115 } else if (mbr.isLLVMSymbolTable()) {
116 memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
117 } else if (TruncateNames) {
118 const char* nm = mbrPath.c_str();
119 unsigned len = mbrPath.length();
120 size_t slashpos = mbrPath.rfind('/');
121 if (slashpos != std::string::npos) {
122 nm += slashpos + 1;
123 len -= slashpos +1;
124 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000125 if (len > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000126 len = 15;
Reid Spencer87f90722004-11-16 06:47:30 +0000127 memcpy(hdr.name,nm,len);
Reid Spencercf6afc62004-11-14 21:56:59 +0000128 hdr.name[len] = '/';
129 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
Reid Spencerd4543da2004-11-17 18:28:29 +0000130 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000131 hdr.name[mbrPath.length()] = '/';
132 } else {
133 std::string nm = "#1/";
134 nm += utostr(mbrPath.length());
Reid Spencerd4543da2004-11-17 18:28:29 +0000135 memcpy(hdr.name,nm.data(),nm.length());
Reid Spencer96ce3352004-11-17 16:14:21 +0000136 if (sz < 0)
137 sz -= mbrPath.length();
138 else
139 sz += mbrPath.length();
Reid Spencercf6afc62004-11-14 21:56:59 +0000140 writeLongName = true;
141 }
Reid Spencer96ce3352004-11-17 16:14:21 +0000142
143 // Set the size field
144 if (sz < 0) {
145 buffer[0] = '-';
146 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
147 } else {
148 sprintf(buffer, "%-10u", (unsigned)sz);
149 }
150 memcpy(hdr.size,buffer,10);
151
Reid Spencercf6afc62004-11-14 21:56:59 +0000152 return writeLongName;
153}
154
Reid Spencer87f90722004-11-16 06:47:30 +0000155// Insert a file into the archive before some other member. This also takes care
156// of extracting the necessary flags and information from the file.
Reid Spencer0ff2d312006-08-24 23:45:08 +0000157bool
Michael J. Spencer83a113b2011-01-10 02:34:40 +0000158Archive::addFileBefore(const sys::Path& filePath, iterator where,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000159 std::string* ErrMsg) {
Michael J. Spencer54453f22011-01-10 02:34:23 +0000160 bool Exists;
161 if (sys::fs::exists(filePath.str(), Exists) || !Exists) {
Reid Spencercd5561a2006-12-15 19:44:51 +0000162 if (ErrMsg)
163 *ErrMsg = "Can not add a non-existent file to archive";
164 return true;
165 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000166
167 ArchiveMember* mbr = new ArchiveMember(this);
168
169 mbr->data = 0;
170 mbr->path = filePath;
Reid Spencer8475ec02007-03-29 19:05:44 +0000171 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
Duncan Sands861d20a2009-06-11 08:09:49 +0000172 if (!FSInfo) {
173 delete mbr;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000174 return true;
Duncan Sands861d20a2009-06-11 08:09:49 +0000175 }
176 mbr->info = *FSInfo;
Reid Spencercf6afc62004-11-14 21:56:59 +0000177
178 unsigned flags = 0;
Chris Lattner74382b72009-08-23 22:45:37 +0000179 bool hasSlash = filePath.str().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000180 if (hasSlash)
181 flags |= ArchiveMember::HasPathFlag;
Chris Lattner74382b72009-08-23 22:45:37 +0000182 if (hasSlash || filePath.str().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000183 flags |= ArchiveMember::HasLongFilenameFlag;
184 std::string magic;
185 mbr->path.getMagicNumber(magic,4);
186 switch (sys::IdentifyFileType(magic.c_str(),4)) {
Chris Lattnere07c15c2007-05-06 06:18:07 +0000187 case sys::Bitcode_FileType:
Gabor Greife75ca3d2007-07-06 13:38:17 +0000188 flags |= ArchiveMember::BitcodeFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +0000189 break;
190 default:
191 break;
192 }
193 mbr->flags = flags;
194 members.insert(where,mbr);
Reid Spencer0ff2d312006-08-24 23:45:08 +0000195 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000196}
197
Reid Spencer87f90722004-11-16 06:47:30 +0000198// Write one member out to the file.
Reid Spencer3039b992006-07-07 19:09:14 +0000199bool
Reid Spencercf6afc62004-11-14 21:56:59 +0000200Archive::writeMember(
201 const ArchiveMember& member,
202 std::ofstream& ARFile,
203 bool CreateSymbolTable,
204 bool TruncateNames,
Reid Spencer3039b992006-07-07 19:09:14 +0000205 bool ShouldCompress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000206 std::string* ErrMsg
Reid Spencercf6afc62004-11-14 21:56:59 +0000207) {
208
209 unsigned filepos = ARFile.tellp();
210 filepos -= 8;
211
212 // Get the data and its size either from the
213 // member's in-memory data or directly from the file.
214 size_t fSize = member.getSize();
Chris Lattner7f6b4472008-04-01 04:26:46 +0000215 const char *data = (const char*)member.getData();
216 MemoryBuffer *mFile = 0;
Reid Spencercf6afc62004-11-14 21:56:59 +0000217 if (!data) {
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000218 OwningPtr<MemoryBuffer> File;
219 if (error_code ec = MemoryBuffer::getFile(member.getPath().c_str(), File)) {
Michael J. Spencer333fb042010-12-09 17:36:48 +0000220 if (ErrMsg)
221 *ErrMsg = ec.message();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000222 return true;
Michael J. Spencer333fb042010-12-09 17:36:48 +0000223 }
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000224 mFile = File.take();
Chris Lattner7f6b4472008-04-01 04:26:46 +0000225 data = mFile->getBufferStart();
226 fSize = mFile->getBufferSize();
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000227 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000228
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000229 // Now that we have the data in memory, update the
Dan Gohman4bb31bf2010-03-30 20:04:57 +0000230 // symbol table if it's a bitcode file.
Gabor Greife75ca3d2007-07-06 13:38:17 +0000231 if (CreateSymbolTable && member.isBitcode()) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000232 std::vector<std::string> symbols;
Chris Lattner74382b72009-08-23 22:45:37 +0000233 std::string FullMemberName = archPath.str() + "(" + member.getPath().str()
Reid Spencerd4543da2004-11-17 18:28:29 +0000234 + ")";
Michael J. Spencer83a113b2011-01-10 02:34:40 +0000235 Module* M =
Benjamin Kramer9d44e702010-04-19 16:15:31 +0000236 GetBitcodeSymbols(data, fSize, FullMemberName, Context, symbols, ErrMsg);
Reid Spencercf6afc62004-11-14 21:56:59 +0000237
Gabor Greifa99be512007-07-05 17:07:56 +0000238 // If the bitcode parsed successfully
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000239 if ( M ) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000240 for (std::vector<std::string>::iterator SI = symbols.begin(),
Reid Spencer766b7932004-11-15 01:20:11 +0000241 SE = symbols.end(); SI != SE; ++SI) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000242
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000243 std::pair<SymTabType::iterator,bool> Res =
Reid Spencer766b7932004-11-15 01:20:11 +0000244 symTab.insert(std::make_pair(*SI,filepos));
245
246 if (Res.second) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000247 symTabSize += SI->length() +
248 numVbrBytes(SI->length()) +
Reid Spencer766b7932004-11-15 01:20:11 +0000249 numVbrBytes(filepos);
250 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000251 }
Reid Spencer766b7932004-11-15 01:20:11 +0000252 // We don't need this module any more.
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000253 delete M;
Reid Spencer766b7932004-11-15 01:20:11 +0000254 } else {
Chris Lattner7f6b4472008-04-01 04:26:46 +0000255 delete mFile;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000256 if (ErrMsg)
Chris Lattner74382b72009-08-23 22:45:37 +0000257 *ErrMsg = "Can't parse bitcode member: " + member.getPath().str()
Reid Spencer0b5a5042006-08-25 17:43:11 +0000258 + ": " + *ErrMsg;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000259 return true;
Reid Spencer362cbf02004-11-06 08:51:45 +0000260 }
261 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000262
Chris Lattnere07c15c2007-05-06 06:18:07 +0000263 int hdrSize = fSize;
Reid Spencer362cbf02004-11-06 08:51:45 +0000264
Reid Spencercf6afc62004-11-14 21:56:59 +0000265 // Compute the fields of the header
Reid Spencer362cbf02004-11-06 08:51:45 +0000266 ArchiveMemberHeader Hdr;
Reid Spencercf6afc62004-11-14 21:56:59 +0000267 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
Reid Spencer362cbf02004-11-06 08:51:45 +0000268
269 // Write header to archive file
270 ARFile.write((char*)&Hdr, sizeof(Hdr));
Reid Spencer362cbf02004-11-06 08:51:45 +0000271
Reid Spencercf6afc62004-11-14 21:56:59 +0000272 // Write the long filename if its long
273 if (writeLongName) {
Chris Lattner74382b72009-08-23 22:45:37 +0000274 ARFile.write(member.getPath().str().data(),
275 member.getPath().str().length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000276 }
277
Reid Spencercf6afc62004-11-14 21:56:59 +0000278 // Write the (possibly compressed) member's content to the file.
279 ARFile.write(data,fSize);
280
281 // Make sure the member is an even length
Jeff Cohene1337212004-12-20 03:23:46 +0000282 if ((ARFile.tellp() & 1) == 1)
Reid Spencercf6afc62004-11-14 21:56:59 +0000283 ARFile << ARFILE_PAD;
284
Reid Spencercf6afc62004-11-14 21:56:59 +0000285 // Close the mapped file if it was opened
Chris Lattner7f6b4472008-04-01 04:26:46 +0000286 delete mFile;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000287 return false;
Reid Spencer362cbf02004-11-06 08:51:45 +0000288}
289
Reid Spencer87f90722004-11-16 06:47:30 +0000290// Write out the LLVM symbol table as an archive member to the file.
Reid Spencer362cbf02004-11-06 08:51:45 +0000291void
Reid Spencer87f90722004-11-16 06:47:30 +0000292Archive::writeSymbolTable(std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000293
294 // Construct the symbol table's header
295 ArchiveMemberHeader Hdr;
296 Hdr.init();
297 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
298 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
299 char buffer[32];
Misha Brukman4b2afe62005-04-20 03:55:35 +0000300 sprintf(buffer, "%-8o", 0644);
301 memcpy(Hdr.mode,buffer,8);
Reid Spencer3468e572005-04-21 16:15:19 +0000302 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000303 memcpy(Hdr.uid,buffer,6);
Reid Spencer3468e572005-04-21 16:15:19 +0000304 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000305 memcpy(Hdr.gid,buffer,6);
Reid Spencercf6afc62004-11-14 21:56:59 +0000306 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
307 memcpy(Hdr.date,buffer,12);
308 sprintf(buffer,"%-10u",symTabSize);
309 memcpy(Hdr.size,buffer,10);
310
311 // Write the header
312 ARFile.write((char*)&Hdr, sizeof(Hdr));
313
Devang Patel59500c82008-11-21 20:00:59 +0000314#ifndef NDEBUG
Reid Spencercf6afc62004-11-14 21:56:59 +0000315 // Save the starting position of the symbol tables data content.
316 unsigned startpos = ARFile.tellp();
Devang Patel59500c82008-11-21 20:00:59 +0000317#endif
Reid Spencercf6afc62004-11-14 21:56:59 +0000318
Reid Spencercf6afc62004-11-14 21:56:59 +0000319 // Write out the symbols sequentially
320 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
321 I != E; ++I)
322 {
323 // Write out the file index
324 writeInteger(I->second, ARFile);
325 // Write out the length of the symbol
326 writeInteger(I->first.length(), ARFile);
327 // Write out the symbol
328 ARFile.write(I->first.data(), I->first.length());
Reid Spencer362cbf02004-11-06 08:51:45 +0000329 }
330
Devang Patel59500c82008-11-21 20:00:59 +0000331#ifndef NDEBUG
Reid Spencercf6afc62004-11-14 21:56:59 +0000332 // Now that we're done with the symbol table, get the ending file position
333 unsigned endpos = ARFile.tellp();
Devang Patel59500c82008-11-21 20:00:59 +0000334#endif
Reid Spencer362cbf02004-11-06 08:51:45 +0000335
Reid Spencercf6afc62004-11-14 21:56:59 +0000336 // Make sure that the amount we wrote is what we pre-computed. This is
337 // critical for file integrity purposes.
338 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
Reid Spencer362cbf02004-11-06 08:51:45 +0000339
Reid Spencercf6afc62004-11-14 21:56:59 +0000340 // Make sure the symbol table is even sized
341 if (symTabSize % 2 != 0 )
342 ARFile << ARFILE_PAD;
Reid Spencer362cbf02004-11-06 08:51:45 +0000343}
344
Reid Spencer87f90722004-11-16 06:47:30 +0000345// Write the entire archive to the file specified when the archive was created.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000346// This writes to a temporary file first. Options are for creating a symbol
347// table, flattening the file names (no directories, 15 chars max) and
Reid Spencer87f90722004-11-16 06:47:30 +0000348// compressing each archive member.
Reid Spencer3039b992006-07-07 19:09:14 +0000349bool
350Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000351 std::string* ErrMsg)
Reid Spencer3039b992006-07-07 19:09:14 +0000352{
Reid Spencercf6afc62004-11-14 21:56:59 +0000353 // Make sure they haven't opened up the file, not loaded it,
354 // but are now trying to write it which would wipe out the file.
Chris Lattner7f6b4472008-04-01 04:26:46 +0000355 if (members.empty() && mapfile && mapfile->getBufferSize() > 8) {
Reid Spencercd5561a2006-12-15 19:44:51 +0000356 if (ErrMsg)
357 *ErrMsg = "Can't write an archive not opened for writing";
358 return true;
359 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000360
361 // Create a temporary file to store the archive in
362 sys::Path TmpArchive = archPath;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000363 if (TmpArchive.createTemporaryFileOnDisk(ErrMsg))
364 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000365
366 // Make sure the temporary gets removed if we crash
367 sys::RemoveFileOnSignal(TmpArchive);
368
Reid Spencer3039b992006-07-07 19:09:14 +0000369 // Create archive file for output.
370 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
371 std::ios::binary;
372 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000373
Reid Spencer3039b992006-07-07 19:09:14 +0000374 // Check for errors opening or creating archive file.
Chris Lattner0c332312006-07-28 22:29:50 +0000375 if (!ArchiveFile.is_open() || ArchiveFile.bad()) {
Dan Gohmand27047f2010-05-27 20:51:54 +0000376 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000377 if (ErrMsg)
Chris Lattner74382b72009-08-23 22:45:37 +0000378 *ErrMsg = "Error opening archive file: " + archPath.str();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000379 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000380 }
Reid Spencer3039b992006-07-07 19:09:14 +0000381
382 // If we're creating a symbol table, reset it now
383 if (CreateSymbolTable) {
384 symTabSize = 0;
385 symTab.clear();
386 }
387
388 // Write magic string to archive.
389 ArchiveFile << ARFILE_MAGIC;
390
391 // Loop over all member files, and write them out. Note that this also
392 // builds the symbol table, symTab.
Chris Lattner0c332312006-07-28 22:29:50 +0000393 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000394 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
395 TruncateNames, Compress, ErrMsg)) {
Dan Gohmand27047f2010-05-27 20:51:54 +0000396 TmpArchive.eraseFromDisk();
Reid Spencer3039b992006-07-07 19:09:14 +0000397 ArchiveFile.close();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000398 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000399 }
400 }
401
402 // Close archive file.
403 ArchiveFile.close();
404
405 // Write the symbol table
406 if (CreateSymbolTable) {
407 // At this point we have written a file that is a legal archive but it
408 // doesn't have a symbol table in it. To aid in faster reading and to
409 // ensure compatibility with other archivers we need to put the symbol
410 // table first in the file. Unfortunately, this means mapping the file
411 // we just wrote back in and copying it to the destination file.
Chris Lattner7f6b4472008-04-01 04:26:46 +0000412 sys::Path FinalFilePath = archPath;
Reid Spencer3039b992006-07-07 19:09:14 +0000413
414 // Map in the archive we just wrote.
Chris Lattner7f6b4472008-04-01 04:26:46 +0000415 {
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000416 OwningPtr<MemoryBuffer> arch;
417 if (error_code ec = MemoryBuffer::getFile(TmpArchive.c_str(), arch)) {
Michael J. Spencer333fb042010-12-09 17:36:48 +0000418 if (ErrMsg)
419 *ErrMsg = ec.message();
420 return true;
421 }
Chris Lattner7f6b4472008-04-01 04:26:46 +0000422 const char* base = arch->getBufferStart();
Reid Spencer3039b992006-07-07 19:09:14 +0000423
Michael J. Spencer83a113b2011-01-10 02:34:40 +0000424 // Open another temporary file in order to avoid invalidating the
Reid Spencer3039b992006-07-07 19:09:14 +0000425 // mmapped data
Reid Spencer0ff2d312006-08-24 23:45:08 +0000426 if (FinalFilePath.createTemporaryFileOnDisk(ErrMsg))
427 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000428 sys::RemoveFileOnSignal(FinalFilePath);
429
430 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
Chris Lattner0c332312006-07-28 22:29:50 +0000431 if (!FinalFile.is_open() || FinalFile.bad()) {
Dan Gohmand27047f2010-05-27 20:51:54 +0000432 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000433 if (ErrMsg)
Chris Lattner74382b72009-08-23 22:45:37 +0000434 *ErrMsg = "Error opening archive file: " + FinalFilePath.str();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000435 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000436 }
437
438 // Write the file magic number
439 FinalFile << ARFILE_MAGIC;
440
441 // If there is a foreign symbol table, put it into the file now. Most
442 // ar(1) implementations require the symbol table to be first but llvm-ar
443 // can deal with it being after a foreign symbol table. This ensures
444 // compatibility with other ar(1) implementations as well as allowing the
445 // archive to store both native .o and LLVM .bc files, both indexed.
446 if (foreignST) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000447 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000448 FinalFile.close();
Dan Gohmand27047f2010-05-27 20:51:54 +0000449 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000450 return true;
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000451 }
Reid Spencer3039b992006-07-07 19:09:14 +0000452 }
453
454 // Put out the LLVM symbol table now.
455 writeSymbolTable(FinalFile);
456
457 // Copy the temporary file contents being sure to skip the file's magic
458 // number.
459 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
Chris Lattner7f6b4472008-04-01 04:26:46 +0000460 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
Reid Spencer3039b992006-07-07 19:09:14 +0000461
462 // Close up shop
463 FinalFile.close();
Chris Lattner7f6b4472008-04-01 04:26:46 +0000464 } // free arch.
Michael J. Spencer83a113b2011-01-10 02:34:40 +0000465
Reid Spencer3039b992006-07-07 19:09:14 +0000466 // Move the final file over top of TmpArchive
Reid Spencer0ff2d312006-08-24 23:45:08 +0000467 if (FinalFilePath.renamePathOnDisk(TmpArchive, ErrMsg))
468 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000469 }
Michael J. Spencer83a113b2011-01-10 02:34:40 +0000470
Reid Spencer3039b992006-07-07 19:09:14 +0000471 // Before we replace the actual archive, we need to forget all the
472 // members, since they point to data in that old archive. We need to do
473 // this because we cannot replace an open file on Windows.
474 cleanUpMemory();
Michael J. Spencer83a113b2011-01-10 02:34:40 +0000475
Reid Spencer0ff2d312006-08-24 23:45:08 +0000476 if (TmpArchive.renamePathOnDisk(archPath, ErrMsg))
477 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000478
Owen Andersona5464f32008-05-24 05:42:29 +0000479 // Set correct read and write permissions after temporary file is moved
480 // to final destination path.
481 if (archPath.makeReadableOnDisk(ErrMsg))
482 return true;
483 if (archPath.makeWriteableOnDisk(ErrMsg))
484 return true;
485
Reid Spencer0ff2d312006-08-24 23:45:08 +0000486 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000487}