blob: 641e3324d63dd25525089e08de8e404d6a6ba9b7 [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"
Chris Lattnere07c15c2007-05-06 06:18:07 +000015#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattner7f6b4472008-04-01 04:26:46 +000016#include "llvm/ADT/OwningPtr.h"
17#include "llvm/Support/MemoryBuffer.h"
Reid Spencercf6afc62004-11-14 21:56:59 +000018#include "llvm/System/Signals.h"
Reid Spencer3468e572005-04-21 16:15:19 +000019#include "llvm/System/Process.h"
Chris Lattnerc1d56242007-05-06 09:28:33 +000020#include "llvm/ModuleProvider.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000021#include <fstream>
Bill Wendlinga21900d2006-11-28 22:49:32 +000022#include <ostream>
Reid Spencercf6afc62004-11-14 21:56:59 +000023#include <iomanip>
Reid Spencer362cbf02004-11-06 08:51:45 +000024using namespace llvm;
25
Reid Spencercf6afc62004-11-14 21:56:59 +000026// Write an integer using variable bit rate encoding. This saves a few bytes
27// per entry in the symbol table.
Dan Gohman844731a2008-05-13 00:00:25 +000028static inline void writeInteger(unsigned num, std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +000029 while (1) {
30 if (num < 0x80) { // done?
31 ARFile << (unsigned char)num;
32 return;
33 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +000034
Reid Spencercf6afc62004-11-14 21:56:59 +000035 // Nope, we are bigger than a character, output the next 7 bits and set the
36 // high bit to say that there is more coming...
37 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
38 num >>= 7; // Shift out 7 bits now...
39 }
40}
41
42// Compute how many bytes are taken by a given VBR encoded value. This is needed
43// to pre-compute the size of the symbol table.
Dan Gohman844731a2008-05-13 00:00:25 +000044static inline unsigned numVbrBytes(unsigned num) {
Reid Spencercf6afc62004-11-14 21:56:59 +000045
Reid Spencer87f90722004-11-16 06:47:30 +000046 // Note that the following nested ifs are somewhat equivalent to a binary
47 // search. We split it in half by comparing against 2^14 first. This allows
Misha Brukman2b37d7c2005-04-21 21:13:18 +000048 // most reasonable values to be done in 2 comparisons instead of 1 for
Reid Spencer87f90722004-11-16 06:47:30 +000049 // small ones and four for large ones. We expect this to access file offsets
Misha Brukman2b37d7c2005-04-21 21:13:18 +000050 // 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 +000051 // so this approach is reasonable.
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +000052 if (num < 1<<14) {
Reid Spencer87f90722004-11-16 06:47:30 +000053 if (num < 1<<7)
54 return 1;
55 else
56 return 2;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +000057 }
Reid Spencer87f90722004-11-16 06:47:30 +000058 if (num < 1<<21)
59 return 3;
60
61 if (num < 1<<28)
62 return 4;
63 return 5; // anything >= 2^28 takes 5 bytes
Reid Spencercf6afc62004-11-14 21:56:59 +000064}
65
66// Create an empty archive.
Owen Anderson8b477ed2009-07-01 16:58:40 +000067Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext* C) {
68 Archive* result = new Archive(FilePath, C);
Reid Spencer362cbf02004-11-06 08:51:45 +000069 return result;
70}
71
Misha Brukman2b37d7c2005-04-21 21:13:18 +000072// Fill the ArchiveMemberHeader with the information from a member. If
Reid Spencer87f90722004-11-16 06:47:30 +000073// TruncateNames is true, names are flattened to 15 chars or less. The sz field
Misha Brukman2b37d7c2005-04-21 21:13:18 +000074// is provided here instead of coming from the mbr because the member might be
75// stored compressed and the compressed size is not the ArchiveMember's size.
76// Furthermore compressed files have negative size fields to identify them as
Reid Spencer87f90722004-11-16 06:47:30 +000077// compressed.
Reid Spencercf6afc62004-11-14 21:56:59 +000078bool
79Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
80 int sz, bool TruncateNames) const {
Reid Spencer362cbf02004-11-06 08:51:45 +000081
Reid Spencercf6afc62004-11-14 21:56:59 +000082 // Set the permissions mode, uid and gid
83 hdr.init();
84 char buffer[32];
85 sprintf(buffer, "%-8o", mbr.getMode());
86 memcpy(hdr.mode,buffer,8);
87 sprintf(buffer, "%-6u", mbr.getUser());
88 memcpy(hdr.uid,buffer,6);
89 sprintf(buffer, "%-6u", mbr.getGroup());
90 memcpy(hdr.gid,buffer,6);
91
Reid Spencercf6afc62004-11-14 21:56:59 +000092 // Set the last modification date
93 uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime();
94 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
95 memcpy(hdr.date,buffer,12);
96
Reid Spencerd4543da2004-11-17 18:28:29 +000097 // Get rid of trailing blanks in the name
Reid Spencer1fce0912004-12-11 00:14:15 +000098 std::string mbrPath = mbr.getPath().toString();
Reid Spencerd4543da2004-11-17 18:28:29 +000099 size_t mbrLen = mbrPath.length();
100 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
101 mbrPath.erase(mbrLen-1,1);
102 mbrLen--;
103 }
104
Reid Spencercf6afc62004-11-14 21:56:59 +0000105 // Set the name field in one of its various flavors.
106 bool writeLongName = false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000107 if (mbr.isStringTable()) {
108 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
Reid Spencer9a29db42004-11-20 07:29:40 +0000109 } else if (mbr.isSVR4SymbolTable()) {
110 memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16);
111 } else if (mbr.isBSD4SymbolTable()) {
112 memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16);
Reid Spencercf6afc62004-11-14 21:56:59 +0000113 } else if (mbr.isLLVMSymbolTable()) {
114 memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
115 } else if (TruncateNames) {
116 const char* nm = mbrPath.c_str();
117 unsigned len = mbrPath.length();
118 size_t slashpos = mbrPath.rfind('/');
119 if (slashpos != std::string::npos) {
120 nm += slashpos + 1;
121 len -= slashpos +1;
122 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000123 if (len > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000124 len = 15;
Reid Spencer87f90722004-11-16 06:47:30 +0000125 memcpy(hdr.name,nm,len);
Reid Spencercf6afc62004-11-14 21:56:59 +0000126 hdr.name[len] = '/';
127 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
Reid Spencerd4543da2004-11-17 18:28:29 +0000128 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000129 hdr.name[mbrPath.length()] = '/';
130 } else {
131 std::string nm = "#1/";
132 nm += utostr(mbrPath.length());
Reid Spencerd4543da2004-11-17 18:28:29 +0000133 memcpy(hdr.name,nm.data(),nm.length());
Reid Spencer96ce3352004-11-17 16:14:21 +0000134 if (sz < 0)
135 sz -= mbrPath.length();
136 else
137 sz += mbrPath.length();
Reid Spencercf6afc62004-11-14 21:56:59 +0000138 writeLongName = true;
139 }
Reid Spencer96ce3352004-11-17 16:14:21 +0000140
141 // Set the size field
142 if (sz < 0) {
143 buffer[0] = '-';
144 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
145 } else {
146 sprintf(buffer, "%-10u", (unsigned)sz);
147 }
148 memcpy(hdr.size,buffer,10);
149
Reid Spencercf6afc62004-11-14 21:56:59 +0000150 return writeLongName;
151}
152
Reid Spencer87f90722004-11-16 06:47:30 +0000153// Insert a file into the archive before some other member. This also takes care
154// of extracting the necessary flags and information from the file.
Reid Spencer0ff2d312006-08-24 23:45:08 +0000155bool
156Archive::addFileBefore(const sys::Path& filePath, iterator where,
157 std::string* ErrMsg) {
Reid Spencercd5561a2006-12-15 19:44:51 +0000158 if (!filePath.exists()) {
159 if (ErrMsg)
160 *ErrMsg = "Can not add a non-existent file to archive";
161 return true;
162 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000163
164 ArchiveMember* mbr = new ArchiveMember(this);
165
166 mbr->data = 0;
167 mbr->path = filePath;
Reid Spencer8475ec02007-03-29 19:05:44 +0000168 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
Duncan Sands861d20a2009-06-11 08:09:49 +0000169 if (!FSInfo) {
170 delete mbr;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000171 return true;
Duncan Sands861d20a2009-06-11 08:09:49 +0000172 }
173 mbr->info = *FSInfo;
Reid Spencercf6afc62004-11-14 21:56:59 +0000174
175 unsigned flags = 0;
Reid Spencer1fce0912004-12-11 00:14:15 +0000176 bool hasSlash = filePath.toString().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000177 if (hasSlash)
178 flags |= ArchiveMember::HasPathFlag;
Reid Spencer1fce0912004-12-11 00:14:15 +0000179 if (hasSlash || filePath.toString().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000180 flags |= ArchiveMember::HasLongFilenameFlag;
181 std::string magic;
182 mbr->path.getMagicNumber(magic,4);
183 switch (sys::IdentifyFileType(magic.c_str(),4)) {
Chris Lattnere07c15c2007-05-06 06:18:07 +0000184 case sys::Bitcode_FileType:
Gabor Greife75ca3d2007-07-06 13:38:17 +0000185 flags |= ArchiveMember::BitcodeFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +0000186 break;
187 default:
188 break;
189 }
190 mbr->flags = flags;
191 members.insert(where,mbr);
Reid Spencer0ff2d312006-08-24 23:45:08 +0000192 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000193}
194
Reid Spencer87f90722004-11-16 06:47:30 +0000195// Write one member out to the file.
Reid Spencer3039b992006-07-07 19:09:14 +0000196bool
Reid Spencercf6afc62004-11-14 21:56:59 +0000197Archive::writeMember(
198 const ArchiveMember& member,
199 std::ofstream& ARFile,
200 bool CreateSymbolTable,
201 bool TruncateNames,
Reid Spencer3039b992006-07-07 19:09:14 +0000202 bool ShouldCompress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000203 std::string* ErrMsg
Reid Spencercf6afc62004-11-14 21:56:59 +0000204) {
205
206 unsigned filepos = ARFile.tellp();
207 filepos -= 8;
208
209 // Get the data and its size either from the
210 // member's in-memory data or directly from the file.
211 size_t fSize = member.getSize();
Chris Lattner7f6b4472008-04-01 04:26:46 +0000212 const char *data = (const char*)member.getData();
213 MemoryBuffer *mFile = 0;
Reid Spencercf6afc62004-11-14 21:56:59 +0000214 if (!data) {
Chris Lattner038112a2008-04-01 18:04:03 +0000215 mFile = MemoryBuffer::getFile(member.getPath().c_str(), ErrMsg);
Chris Lattner7f6b4472008-04-01 04:26:46 +0000216 if (mFile == 0)
Reid Spencer0ff2d312006-08-24 23:45:08 +0000217 return true;
Chris Lattner7f6b4472008-04-01 04:26:46 +0000218 data = mFile->getBufferStart();
219 fSize = mFile->getBufferSize();
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000220 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000221
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000222 // Now that we have the data in memory, update the
Gabor Greifa99be512007-07-05 17:07:56 +0000223 // symbol table if its a bitcode file.
Gabor Greife75ca3d2007-07-06 13:38:17 +0000224 if (CreateSymbolTable && member.isBitcode()) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000225 std::vector<std::string> symbols;
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000226 std::string FullMemberName = archPath.toString() + "(" +
227 member.getPath().toString()
Reid Spencerd4543da2004-11-17 18:28:29 +0000228 + ")";
Chris Lattnerf2e292c2007-02-07 21:41:02 +0000229 ModuleProvider* MP =
Gabor Greifa99be512007-07-05 17:07:56 +0000230 GetBitcodeSymbols((const unsigned char*)data,fSize,
Owen Anderson8b477ed2009-07-01 16:58:40 +0000231 FullMemberName, Context, symbols, ErrMsg);
Reid Spencercf6afc62004-11-14 21:56:59 +0000232
Gabor Greifa99be512007-07-05 17:07:56 +0000233 // If the bitcode parsed successfully
Reid Spencer766b7932004-11-15 01:20:11 +0000234 if ( MP ) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000235 for (std::vector<std::string>::iterator SI = symbols.begin(),
Reid Spencer766b7932004-11-15 01:20:11 +0000236 SE = symbols.end(); SI != SE; ++SI) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000237
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000238 std::pair<SymTabType::iterator,bool> Res =
Reid Spencer766b7932004-11-15 01:20:11 +0000239 symTab.insert(std::make_pair(*SI,filepos));
240
241 if (Res.second) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000242 symTabSize += SI->length() +
243 numVbrBytes(SI->length()) +
Reid Spencer766b7932004-11-15 01:20:11 +0000244 numVbrBytes(filepos);
245 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000246 }
Reid Spencer766b7932004-11-15 01:20:11 +0000247 // We don't need this module any more.
248 delete MP;
249 } else {
Chris Lattner7f6b4472008-04-01 04:26:46 +0000250 delete mFile;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000251 if (ErrMsg)
Gabor Greifa99be512007-07-05 17:07:56 +0000252 *ErrMsg = "Can't parse bitcode member: " + member.getPath().toString()
Reid Spencer0b5a5042006-08-25 17:43:11 +0000253 + ": " + *ErrMsg;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000254 return true;
Reid Spencer362cbf02004-11-06 08:51:45 +0000255 }
256 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000257
Chris Lattnere07c15c2007-05-06 06:18:07 +0000258 int hdrSize = fSize;
Reid Spencer362cbf02004-11-06 08:51:45 +0000259
Reid Spencercf6afc62004-11-14 21:56:59 +0000260 // Compute the fields of the header
Reid Spencer362cbf02004-11-06 08:51:45 +0000261 ArchiveMemberHeader Hdr;
Reid Spencercf6afc62004-11-14 21:56:59 +0000262 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
Reid Spencer362cbf02004-11-06 08:51:45 +0000263
264 // Write header to archive file
265 ARFile.write((char*)&Hdr, sizeof(Hdr));
Reid Spencer362cbf02004-11-06 08:51:45 +0000266
Reid Spencercf6afc62004-11-14 21:56:59 +0000267 // Write the long filename if its long
268 if (writeLongName) {
Reid Spencer1fce0912004-12-11 00:14:15 +0000269 ARFile.write(member.getPath().toString().data(),
270 member.getPath().toString().length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000271 }
272
Reid Spencercf6afc62004-11-14 21:56:59 +0000273 // Write the (possibly compressed) member's content to the file.
274 ARFile.write(data,fSize);
275
276 // Make sure the member is an even length
Jeff Cohene1337212004-12-20 03:23:46 +0000277 if ((ARFile.tellp() & 1) == 1)
Reid Spencercf6afc62004-11-14 21:56:59 +0000278 ARFile << ARFILE_PAD;
279
Reid Spencercf6afc62004-11-14 21:56:59 +0000280 // Close the mapped file if it was opened
Chris Lattner7f6b4472008-04-01 04:26:46 +0000281 delete mFile;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000282 return false;
Reid Spencer362cbf02004-11-06 08:51:45 +0000283}
284
Reid Spencer87f90722004-11-16 06:47:30 +0000285// Write out the LLVM symbol table as an archive member to the file.
Reid Spencer362cbf02004-11-06 08:51:45 +0000286void
Reid Spencer87f90722004-11-16 06:47:30 +0000287Archive::writeSymbolTable(std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000288
289 // Construct the symbol table's header
290 ArchiveMemberHeader Hdr;
291 Hdr.init();
292 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
293 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
294 char buffer[32];
Misha Brukman4b2afe62005-04-20 03:55:35 +0000295 sprintf(buffer, "%-8o", 0644);
296 memcpy(Hdr.mode,buffer,8);
Reid Spencer3468e572005-04-21 16:15:19 +0000297 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000298 memcpy(Hdr.uid,buffer,6);
Reid Spencer3468e572005-04-21 16:15:19 +0000299 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000300 memcpy(Hdr.gid,buffer,6);
Reid Spencercf6afc62004-11-14 21:56:59 +0000301 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
302 memcpy(Hdr.date,buffer,12);
303 sprintf(buffer,"%-10u",symTabSize);
304 memcpy(Hdr.size,buffer,10);
305
306 // Write the header
307 ARFile.write((char*)&Hdr, sizeof(Hdr));
308
Devang Patel59500c82008-11-21 20:00:59 +0000309#ifndef NDEBUG
Reid Spencercf6afc62004-11-14 21:56:59 +0000310 // Save the starting position of the symbol tables data content.
311 unsigned startpos = ARFile.tellp();
Devang Patel59500c82008-11-21 20:00:59 +0000312#endif
Reid Spencercf6afc62004-11-14 21:56:59 +0000313
Reid Spencercf6afc62004-11-14 21:56:59 +0000314 // Write out the symbols sequentially
315 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
316 I != E; ++I)
317 {
318 // Write out the file index
319 writeInteger(I->second, ARFile);
320 // Write out the length of the symbol
321 writeInteger(I->first.length(), ARFile);
322 // Write out the symbol
323 ARFile.write(I->first.data(), I->first.length());
Reid Spencer362cbf02004-11-06 08:51:45 +0000324 }
325
Devang Patel59500c82008-11-21 20:00:59 +0000326#ifndef NDEBUG
Reid Spencercf6afc62004-11-14 21:56:59 +0000327 // Now that we're done with the symbol table, get the ending file position
328 unsigned endpos = ARFile.tellp();
Devang Patel59500c82008-11-21 20:00:59 +0000329#endif
Reid Spencer362cbf02004-11-06 08:51:45 +0000330
Reid Spencercf6afc62004-11-14 21:56:59 +0000331 // Make sure that the amount we wrote is what we pre-computed. This is
332 // critical for file integrity purposes.
333 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
Reid Spencer362cbf02004-11-06 08:51:45 +0000334
Reid Spencercf6afc62004-11-14 21:56:59 +0000335 // Make sure the symbol table is even sized
336 if (symTabSize % 2 != 0 )
337 ARFile << ARFILE_PAD;
Reid Spencer362cbf02004-11-06 08:51:45 +0000338}
339
Reid Spencer87f90722004-11-16 06:47:30 +0000340// Write the entire archive to the file specified when the archive was created.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000341// This writes to a temporary file first. Options are for creating a symbol
342// table, flattening the file names (no directories, 15 chars max) and
Reid Spencer87f90722004-11-16 06:47:30 +0000343// compressing each archive member.
Reid Spencer3039b992006-07-07 19:09:14 +0000344bool
345Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000346 std::string* ErrMsg)
Reid Spencer3039b992006-07-07 19:09:14 +0000347{
Reid Spencercf6afc62004-11-14 21:56:59 +0000348 // Make sure they haven't opened up the file, not loaded it,
349 // but are now trying to write it which would wipe out the file.
Chris Lattner7f6b4472008-04-01 04:26:46 +0000350 if (members.empty() && mapfile && mapfile->getBufferSize() > 8) {
Reid Spencercd5561a2006-12-15 19:44:51 +0000351 if (ErrMsg)
352 *ErrMsg = "Can't write an archive not opened for writing";
353 return true;
354 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000355
356 // Create a temporary file to store the archive in
357 sys::Path TmpArchive = archPath;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000358 if (TmpArchive.createTemporaryFileOnDisk(ErrMsg))
359 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000360
361 // Make sure the temporary gets removed if we crash
362 sys::RemoveFileOnSignal(TmpArchive);
363
Reid Spencer3039b992006-07-07 19:09:14 +0000364 // Create archive file for output.
365 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
366 std::ios::binary;
367 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000368
Reid Spencer3039b992006-07-07 19:09:14 +0000369 // Check for errors opening or creating archive file.
Chris Lattner0c332312006-07-28 22:29:50 +0000370 if (!ArchiveFile.is_open() || ArchiveFile.bad()) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000371 if (TmpArchive.exists())
Reid Spencera229c5c2005-07-08 03:08:58 +0000372 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000373 if (ErrMsg)
374 *ErrMsg = "Error opening archive file: " + archPath.toString();
375 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000376 }
Reid Spencer3039b992006-07-07 19:09:14 +0000377
378 // If we're creating a symbol table, reset it now
379 if (CreateSymbolTable) {
380 symTabSize = 0;
381 symTab.clear();
382 }
383
384 // Write magic string to archive.
385 ArchiveFile << ARFILE_MAGIC;
386
387 // Loop over all member files, and write them out. Note that this also
388 // builds the symbol table, symTab.
Chris Lattner0c332312006-07-28 22:29:50 +0000389 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000390 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
391 TruncateNames, Compress, ErrMsg)) {
Reid Spencer3039b992006-07-07 19:09:14 +0000392 if (TmpArchive.exists())
393 TmpArchive.eraseFromDisk();
394 ArchiveFile.close();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000395 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000396 }
397 }
398
399 // Close archive file.
400 ArchiveFile.close();
401
402 // Write the symbol table
403 if (CreateSymbolTable) {
404 // At this point we have written a file that is a legal archive but it
405 // doesn't have a symbol table in it. To aid in faster reading and to
406 // ensure compatibility with other archivers we need to put the symbol
407 // table first in the file. Unfortunately, this means mapping the file
408 // we just wrote back in and copying it to the destination file.
Chris Lattner7f6b4472008-04-01 04:26:46 +0000409 sys::Path FinalFilePath = archPath;
Reid Spencer3039b992006-07-07 19:09:14 +0000410
411 // Map in the archive we just wrote.
Chris Lattner7f6b4472008-04-01 04:26:46 +0000412 {
Chris Lattner038112a2008-04-01 18:04:03 +0000413 OwningPtr<MemoryBuffer> arch(MemoryBuffer::getFile(TmpArchive.c_str()));
Chris Lattner7f6b4472008-04-01 04:26:46 +0000414 if (arch == 0) return true;
415 const char* base = arch->getBufferStart();
Reid Spencer3039b992006-07-07 19:09:14 +0000416
417 // Open another temporary file in order to avoid invalidating the
418 // mmapped data
Reid Spencer0ff2d312006-08-24 23:45:08 +0000419 if (FinalFilePath.createTemporaryFileOnDisk(ErrMsg))
420 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000421 sys::RemoveFileOnSignal(FinalFilePath);
422
423 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
Chris Lattner0c332312006-07-28 22:29:50 +0000424 if (!FinalFile.is_open() || FinalFile.bad()) {
Reid Spencer3039b992006-07-07 19:09:14 +0000425 if (TmpArchive.exists())
426 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000427 if (ErrMsg)
428 *ErrMsg = "Error opening archive file: " + FinalFilePath.toString();
429 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000430 }
431
432 // Write the file magic number
433 FinalFile << ARFILE_MAGIC;
434
435 // If there is a foreign symbol table, put it into the file now. Most
436 // ar(1) implementations require the symbol table to be first but llvm-ar
437 // can deal with it being after a foreign symbol table. This ensures
438 // compatibility with other ar(1) implementations as well as allowing the
439 // archive to store both native .o and LLVM .bc files, both indexed.
440 if (foreignST) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000441 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000442 FinalFile.close();
443 if (TmpArchive.exists())
444 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000445 return true;
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000446 }
Reid Spencer3039b992006-07-07 19:09:14 +0000447 }
448
449 // Put out the LLVM symbol table now.
450 writeSymbolTable(FinalFile);
451
452 // Copy the temporary file contents being sure to skip the file's magic
453 // number.
454 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
Chris Lattner7f6b4472008-04-01 04:26:46 +0000455 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
Reid Spencer3039b992006-07-07 19:09:14 +0000456
457 // Close up shop
458 FinalFile.close();
Chris Lattner7f6b4472008-04-01 04:26:46 +0000459 } // free arch.
Reid Spencer3039b992006-07-07 19:09:14 +0000460
461 // Move the final file over top of TmpArchive
Reid Spencer0ff2d312006-08-24 23:45:08 +0000462 if (FinalFilePath.renamePathOnDisk(TmpArchive, ErrMsg))
463 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000464 }
465
466 // Before we replace the actual archive, we need to forget all the
467 // members, since they point to data in that old archive. We need to do
468 // this because we cannot replace an open file on Windows.
469 cleanUpMemory();
470
Reid Spencer0ff2d312006-08-24 23:45:08 +0000471 if (TmpArchive.renamePathOnDisk(archPath, ErrMsg))
472 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000473
Owen Andersona5464f32008-05-24 05:42:29 +0000474 // Set correct read and write permissions after temporary file is moved
475 // to final destination path.
476 if (archPath.makeReadableOnDisk(ErrMsg))
477 return true;
478 if (archPath.makeWriteableOnDisk(ErrMsg))
479 return true;
480
Reid Spencer0ff2d312006-08-24 23:45:08 +0000481 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000482}