blob: 9d5b025b05719a3a1b721b4d5a21f411ecf85645 [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//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer362cbf02004-11-06 08:51:45 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Reid Spencer362cbf02004-11-06 08:51:45 +00008//===----------------------------------------------------------------------===//
9//
Reid Spencercf6afc62004-11-14 21:56:59 +000010// Builds up an LLVM archive file (.a) containing LLVM bytecode.
Reid Spencer362cbf02004-11-06 08:51:45 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "ArchiveInternals.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000015#include "llvm/Bytecode/Reader.h"
Reid Spencercf6afc62004-11-14 21:56:59 +000016#include "llvm/Support/Compressor.h"
17#include "llvm/System/Signals.h"
Reid Spencer3468e572005-04-21 16:15:19 +000018#include "llvm/System/Process.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000019#include <fstream>
Bill Wendlinga21900d2006-11-28 22:49:32 +000020#include <ostream>
Reid Spencercf6afc62004-11-14 21:56:59 +000021#include <iomanip>
Reid Spencer362cbf02004-11-06 08:51:45 +000022using namespace llvm;
23
Reid Spencercf6afc62004-11-14 21:56:59 +000024// Write an integer using variable bit rate encoding. This saves a few bytes
25// per entry in the symbol table.
26inline void writeInteger(unsigned num, std::ofstream& ARFile) {
27 while (1) {
28 if (num < 0x80) { // done?
29 ARFile << (unsigned char)num;
30 return;
31 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +000032
Reid Spencercf6afc62004-11-14 21:56:59 +000033 // Nope, we are bigger than a character, output the next 7 bits and set the
34 // high bit to say that there is more coming...
35 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
36 num >>= 7; // Shift out 7 bits now...
37 }
38}
39
40// Compute how many bytes are taken by a given VBR encoded value. This is needed
41// to pre-compute the size of the symbol table.
42inline unsigned numVbrBytes(unsigned num) {
Reid Spencercf6afc62004-11-14 21:56:59 +000043
Reid Spencer87f90722004-11-16 06:47:30 +000044 // Note that the following nested ifs are somewhat equivalent to a binary
45 // search. We split it in half by comparing against 2^14 first. This allows
Misha Brukman2b37d7c2005-04-21 21:13:18 +000046 // most reasonable values to be done in 2 comparisons instead of 1 for
Reid Spencer87f90722004-11-16 06:47:30 +000047 // small ones and four for large ones. We expect this to access file offsets
Misha Brukman2b37d7c2005-04-21 21:13:18 +000048 // 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 +000049 // so this approach is reasonable.
50 if (num < 1<<14)
51 if (num < 1<<7)
52 return 1;
53 else
54 return 2;
55 if (num < 1<<21)
56 return 3;
57
58 if (num < 1<<28)
59 return 4;
60 return 5; // anything >= 2^28 takes 5 bytes
Reid Spencercf6afc62004-11-14 21:56:59 +000061}
62
63// Create an empty archive.
Misha Brukman2b37d7c2005-04-21 21:13:18 +000064Archive*
Reid Spencercf6afc62004-11-14 21:56:59 +000065Archive::CreateEmpty(const sys::Path& FilePath ) {
Reid Spencer0ff2d312006-08-24 23:45:08 +000066 Archive* result = new Archive(FilePath);
Reid Spencer362cbf02004-11-06 08:51:45 +000067 return result;
68}
69
Misha Brukman2b37d7c2005-04-21 21:13:18 +000070// Fill the ArchiveMemberHeader with the information from a member. If
Reid Spencer87f90722004-11-16 06:47:30 +000071// TruncateNames is true, names are flattened to 15 chars or less. The sz field
Misha Brukman2b37d7c2005-04-21 21:13:18 +000072// is provided here instead of coming from the mbr because the member might be
73// stored compressed and the compressed size is not the ArchiveMember's size.
74// Furthermore compressed files have negative size fields to identify them as
Reid Spencer87f90722004-11-16 06:47:30 +000075// compressed.
Reid Spencercf6afc62004-11-14 21:56:59 +000076bool
77Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
78 int sz, bool TruncateNames) const {
Reid Spencer362cbf02004-11-06 08:51:45 +000079
Reid Spencercf6afc62004-11-14 21:56:59 +000080 // Set the permissions mode, uid and gid
81 hdr.init();
82 char buffer[32];
83 sprintf(buffer, "%-8o", mbr.getMode());
84 memcpy(hdr.mode,buffer,8);
85 sprintf(buffer, "%-6u", mbr.getUser());
86 memcpy(hdr.uid,buffer,6);
87 sprintf(buffer, "%-6u", mbr.getGroup());
88 memcpy(hdr.gid,buffer,6);
89
Reid Spencercf6afc62004-11-14 21:56:59 +000090 // Set the last modification date
91 uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime();
92 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
93 memcpy(hdr.date,buffer,12);
94
Reid Spencerd4543da2004-11-17 18:28:29 +000095 // Get rid of trailing blanks in the name
Reid Spencer1fce0912004-12-11 00:14:15 +000096 std::string mbrPath = mbr.getPath().toString();
Reid Spencerd4543da2004-11-17 18:28:29 +000097 size_t mbrLen = mbrPath.length();
98 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
99 mbrPath.erase(mbrLen-1,1);
100 mbrLen--;
101 }
102
Reid Spencercf6afc62004-11-14 21:56:59 +0000103 // Set the name field in one of its various flavors.
104 bool writeLongName = false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000105 if (mbr.isStringTable()) {
106 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
Reid Spencer9a29db42004-11-20 07:29:40 +0000107 } else if (mbr.isSVR4SymbolTable()) {
108 memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16);
109 } else if (mbr.isBSD4SymbolTable()) {
110 memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16);
Reid Spencercf6afc62004-11-14 21:56:59 +0000111 } else if (mbr.isLLVMSymbolTable()) {
112 memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
113 } else if (TruncateNames) {
114 const char* nm = mbrPath.c_str();
115 unsigned len = mbrPath.length();
116 size_t slashpos = mbrPath.rfind('/');
117 if (slashpos != std::string::npos) {
118 nm += slashpos + 1;
119 len -= slashpos +1;
120 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000121 if (len > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000122 len = 15;
Reid Spencer87f90722004-11-16 06:47:30 +0000123 memcpy(hdr.name,nm,len);
Reid Spencercf6afc62004-11-14 21:56:59 +0000124 hdr.name[len] = '/';
125 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
Reid Spencerd4543da2004-11-17 18:28:29 +0000126 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000127 hdr.name[mbrPath.length()] = '/';
128 } else {
129 std::string nm = "#1/";
130 nm += utostr(mbrPath.length());
Reid Spencerd4543da2004-11-17 18:28:29 +0000131 memcpy(hdr.name,nm.data(),nm.length());
Reid Spencer96ce3352004-11-17 16:14:21 +0000132 if (sz < 0)
133 sz -= mbrPath.length();
134 else
135 sz += mbrPath.length();
Reid Spencercf6afc62004-11-14 21:56:59 +0000136 writeLongName = true;
137 }
Reid Spencer96ce3352004-11-17 16:14:21 +0000138
139 // Set the size field
140 if (sz < 0) {
141 buffer[0] = '-';
142 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
143 } else {
144 sprintf(buffer, "%-10u", (unsigned)sz);
145 }
146 memcpy(hdr.size,buffer,10);
147
Reid Spencercf6afc62004-11-14 21:56:59 +0000148 return writeLongName;
149}
150
Reid Spencer87f90722004-11-16 06:47:30 +0000151// Insert a file into the archive before some other member. This also takes care
152// of extracting the necessary flags and information from the file.
Reid Spencer0ff2d312006-08-24 23:45:08 +0000153bool
154Archive::addFileBefore(const sys::Path& filePath, iterator where,
155 std::string* ErrMsg) {
Reid Spencercd5561a2006-12-15 19:44:51 +0000156 if (!filePath.exists()) {
157 if (ErrMsg)
158 *ErrMsg = "Can not add a non-existent file to archive";
159 return true;
160 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000161
162 ArchiveMember* mbr = new ArchiveMember(this);
163
164 mbr->data = 0;
165 mbr->path = filePath;
Reid Spencer5ba2b702007-03-29 16:48:16 +0000166 if (mbr->path.getFileStatus(mbr->info, false, ErrMsg))
Reid Spencer0ff2d312006-08-24 23:45:08 +0000167 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000168
169 unsigned flags = 0;
Reid Spencer1fce0912004-12-11 00:14:15 +0000170 bool hasSlash = filePath.toString().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000171 if (hasSlash)
172 flags |= ArchiveMember::HasPathFlag;
Reid Spencer1fce0912004-12-11 00:14:15 +0000173 if (hasSlash || filePath.toString().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000174 flags |= ArchiveMember::HasLongFilenameFlag;
175 std::string magic;
176 mbr->path.getMagicNumber(magic,4);
177 switch (sys::IdentifyFileType(magic.c_str(),4)) {
178 case sys::BytecodeFileType:
179 flags |= ArchiveMember::BytecodeFlag;
180 break;
181 case sys::CompressedBytecodeFileType:
182 flags |= ArchiveMember::CompressedBytecodeFlag;
183 break;
184 default:
185 break;
186 }
187 mbr->flags = flags;
188 members.insert(where,mbr);
Reid Spencer0ff2d312006-08-24 23:45:08 +0000189 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000190}
191
Reid Spencer87f90722004-11-16 06:47:30 +0000192// Write one member out to the file.
Reid Spencer3039b992006-07-07 19:09:14 +0000193bool
Reid Spencercf6afc62004-11-14 21:56:59 +0000194Archive::writeMember(
195 const ArchiveMember& member,
196 std::ofstream& ARFile,
197 bool CreateSymbolTable,
198 bool TruncateNames,
Reid Spencer3039b992006-07-07 19:09:14 +0000199 bool ShouldCompress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000200 std::string* ErrMsg
Reid Spencercf6afc62004-11-14 21:56:59 +0000201) {
202
203 unsigned filepos = ARFile.tellp();
204 filepos -= 8;
205
206 // Get the data and its size either from the
207 // member's in-memory data or directly from the file.
208 size_t fSize = member.getSize();
209 const char* data = (const char*)member.getData();
210 sys::MappedFile* mFile = 0;
211 if (!data) {
Reid Spencer751ca6b2006-08-22 16:07:44 +0000212 mFile = new sys::MappedFile();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000213 if (mFile->open(member.getPath(), sys::MappedFile::READ_ACCESS, ErrMsg))
214 return true;
215 if (!(data = (const char*) mFile->map(ErrMsg)))
216 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000217 fSize = mFile->size();
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000218 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000219
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000220 // Now that we have the data in memory, update the
Reid Spencercf6afc62004-11-14 21:56:59 +0000221 // symbol table if its a bytecode file.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000222 if (CreateSymbolTable &&
Reid Spencercf6afc62004-11-14 21:56:59 +0000223 (member.isBytecode() || member.isCompressedBytecode())) {
224 std::vector<std::string> symbols;
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000225 std::string FullMemberName = archPath.toString() + "(" +
226 member.getPath().toString()
Reid Spencerd4543da2004-11-17 18:28:29 +0000227 + ")";
Chris Lattnerf2e292c2007-02-07 21:41:02 +0000228 ModuleProvider* MP =
229 GetBytecodeSymbols((const unsigned char*)data,fSize,
230 FullMemberName, symbols,
231 Compressor::decompressToNewBuffer, ErrMsg);
Reid Spencercf6afc62004-11-14 21:56:59 +0000232
Reid Spencer766b7932004-11-15 01:20:11 +0000233 // If the bytecode parsed successfully
234 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 {
Reid Spencer3039b992006-07-07 19:09:14 +0000250 if (mFile != 0) {
251 mFile->close();
252 delete mFile;
253 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000254 if (ErrMsg)
Reid Spencer0b5a5042006-08-25 17:43:11 +0000255 *ErrMsg = "Can't parse bytecode member: " + member.getPath().toString()
256 + ": " + *ErrMsg;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000257 return true;
Reid Spencer362cbf02004-11-06 08:51:45 +0000258 }
259 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000260
Reid Spencercf6afc62004-11-14 21:56:59 +0000261 // Determine if we actually should compress this member
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000262 bool willCompress =
263 (ShouldCompress &&
264 !member.isCompressed() &&
Reid Spencer9a29db42004-11-20 07:29:40 +0000265 !member.isCompressedBytecode() &&
266 !member.isLLVMSymbolTable() &&
267 !member.isSVR4SymbolTable() &&
268 !member.isBSD4SymbolTable());
Reid Spencer362cbf02004-11-06 08:51:45 +0000269
Reid Spencercf6afc62004-11-14 21:56:59 +0000270 // Perform the compression. Note that if the file is uncompressed bytecode
271 // then we turn the file into compressed bytecode rather than treating it as
272 // compressed data. This is necessary since it allows us to determine that the
273 // file contains bytecode instead of looking like a regular compressed data
274 // member. A compressed bytecode file has its content compressed but has a
275 // magic number of "llvc". This acounts for the +/-4 arithmetic in the code
276 // below.
277 int hdrSize;
278 if (willCompress) {
279 char* output = 0;
280 if (member.isBytecode()) {
281 data +=4;
282 fSize -= 4;
283 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000284 fSize = Compressor::compressToNewBuffer(data,fSize,output,ErrMsg);
Reid Spencer3039b992006-07-07 19:09:14 +0000285 if (fSize == 0)
Reid Spencer0ff2d312006-08-24 23:45:08 +0000286 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000287 data = output;
288 if (member.isBytecode())
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000289 hdrSize = -fSize-4;
Reid Spencercf6afc62004-11-14 21:56:59 +0000290 else
291 hdrSize = -fSize;
292 } else {
293 hdrSize = fSize;
294 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000295
Reid Spencercf6afc62004-11-14 21:56:59 +0000296 // Compute the fields of the header
Reid Spencer362cbf02004-11-06 08:51:45 +0000297 ArchiveMemberHeader Hdr;
Reid Spencercf6afc62004-11-14 21:56:59 +0000298 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
Reid Spencer362cbf02004-11-06 08:51:45 +0000299
300 // Write header to archive file
301 ARFile.write((char*)&Hdr, sizeof(Hdr));
Reid Spencer362cbf02004-11-06 08:51:45 +0000302
Reid Spencercf6afc62004-11-14 21:56:59 +0000303 // Write the long filename if its long
304 if (writeLongName) {
Reid Spencer1fce0912004-12-11 00:14:15 +0000305 ARFile.write(member.getPath().toString().data(),
306 member.getPath().toString().length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000307 }
308
309 // Make sure we write the compressed bytecode magic number if we should.
310 if (willCompress && member.isBytecode())
311 ARFile.write("llvc",4);
312
313 // Write the (possibly compressed) member's content to the file.
314 ARFile.write(data,fSize);
315
316 // Make sure the member is an even length
Jeff Cohene1337212004-12-20 03:23:46 +0000317 if ((ARFile.tellp() & 1) == 1)
Reid Spencercf6afc62004-11-14 21:56:59 +0000318 ARFile << ARFILE_PAD;
319
320 // Free the compressed data, if necessary
321 if (willCompress) {
322 free((void*)data);
323 }
324
325 // Close the mapped file if it was opened
326 if (mFile != 0) {
Jeff Cohend19d89a2005-01-28 01:17:07 +0000327 mFile->close();
Reid Spencercf6afc62004-11-14 21:56:59 +0000328 delete mFile;
329 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000330 return false;
Reid Spencer362cbf02004-11-06 08:51:45 +0000331}
332
Reid Spencer87f90722004-11-16 06:47:30 +0000333// Write out the LLVM symbol table as an archive member to the file.
Reid Spencer362cbf02004-11-06 08:51:45 +0000334void
Reid Spencer87f90722004-11-16 06:47:30 +0000335Archive::writeSymbolTable(std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000336
337 // Construct the symbol table's header
338 ArchiveMemberHeader Hdr;
339 Hdr.init();
340 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
341 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
342 char buffer[32];
Misha Brukman4b2afe62005-04-20 03:55:35 +0000343 sprintf(buffer, "%-8o", 0644);
344 memcpy(Hdr.mode,buffer,8);
Reid Spencer3468e572005-04-21 16:15:19 +0000345 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000346 memcpy(Hdr.uid,buffer,6);
Reid Spencer3468e572005-04-21 16:15:19 +0000347 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000348 memcpy(Hdr.gid,buffer,6);
Reid Spencercf6afc62004-11-14 21:56:59 +0000349 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
350 memcpy(Hdr.date,buffer,12);
351 sprintf(buffer,"%-10u",symTabSize);
352 memcpy(Hdr.size,buffer,10);
353
354 // Write the header
355 ARFile.write((char*)&Hdr, sizeof(Hdr));
356
357 // Save the starting position of the symbol tables data content.
358 unsigned startpos = ARFile.tellp();
359
Reid Spencercf6afc62004-11-14 21:56:59 +0000360 // Write out the symbols sequentially
361 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
362 I != E; ++I)
363 {
364 // Write out the file index
365 writeInteger(I->second, ARFile);
366 // Write out the length of the symbol
367 writeInteger(I->first.length(), ARFile);
368 // Write out the symbol
369 ARFile.write(I->first.data(), I->first.length());
Reid Spencer362cbf02004-11-06 08:51:45 +0000370 }
371
Reid Spencercf6afc62004-11-14 21:56:59 +0000372 // Now that we're done with the symbol table, get the ending file position
373 unsigned endpos = ARFile.tellp();
Reid Spencer362cbf02004-11-06 08:51:45 +0000374
Reid Spencercf6afc62004-11-14 21:56:59 +0000375 // Make sure that the amount we wrote is what we pre-computed. This is
376 // critical for file integrity purposes.
377 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
Reid Spencer362cbf02004-11-06 08:51:45 +0000378
Reid Spencercf6afc62004-11-14 21:56:59 +0000379 // Make sure the symbol table is even sized
380 if (symTabSize % 2 != 0 )
381 ARFile << ARFILE_PAD;
Reid Spencer362cbf02004-11-06 08:51:45 +0000382}
383
Reid Spencer87f90722004-11-16 06:47:30 +0000384// Write the entire archive to the file specified when the archive was created.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000385// This writes to a temporary file first. Options are for creating a symbol
386// table, flattening the file names (no directories, 15 chars max) and
Reid Spencer87f90722004-11-16 06:47:30 +0000387// compressing each archive member.
Reid Spencer3039b992006-07-07 19:09:14 +0000388bool
389Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000390 std::string* ErrMsg)
Reid Spencer3039b992006-07-07 19:09:14 +0000391{
Reid Spencercf6afc62004-11-14 21:56:59 +0000392 // Make sure they haven't opened up the file, not loaded it,
393 // but are now trying to write it which would wipe out the file.
Reid Spencercd5561a2006-12-15 19:44:51 +0000394 if (members.empty() && mapfile->size() > 8) {
395 if (ErrMsg)
396 *ErrMsg = "Can't write an archive not opened for writing";
397 return true;
398 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000399
400 // Create a temporary file to store the archive in
401 sys::Path TmpArchive = archPath;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000402 if (TmpArchive.createTemporaryFileOnDisk(ErrMsg))
403 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000404
405 // Make sure the temporary gets removed if we crash
406 sys::RemoveFileOnSignal(TmpArchive);
407
Reid Spencer3039b992006-07-07 19:09:14 +0000408 // Create archive file for output.
409 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
410 std::ios::binary;
411 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000412
Reid Spencer3039b992006-07-07 19:09:14 +0000413 // Check for errors opening or creating archive file.
Chris Lattner0c332312006-07-28 22:29:50 +0000414 if (!ArchiveFile.is_open() || ArchiveFile.bad()) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000415 if (TmpArchive.exists())
Reid Spencera229c5c2005-07-08 03:08:58 +0000416 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000417 if (ErrMsg)
418 *ErrMsg = "Error opening archive file: " + archPath.toString();
419 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000420 }
Reid Spencer3039b992006-07-07 19:09:14 +0000421
422 // If we're creating a symbol table, reset it now
423 if (CreateSymbolTable) {
424 symTabSize = 0;
425 symTab.clear();
426 }
427
428 // Write magic string to archive.
429 ArchiveFile << ARFILE_MAGIC;
430
431 // Loop over all member files, and write them out. Note that this also
432 // builds the symbol table, symTab.
Chris Lattner0c332312006-07-28 22:29:50 +0000433 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000434 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
435 TruncateNames, Compress, ErrMsg)) {
Reid Spencer3039b992006-07-07 19:09:14 +0000436 if (TmpArchive.exists())
437 TmpArchive.eraseFromDisk();
438 ArchiveFile.close();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000439 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000440 }
441 }
442
443 // Close archive file.
444 ArchiveFile.close();
445
446 // Write the symbol table
447 if (CreateSymbolTable) {
448 // At this point we have written a file that is a legal archive but it
449 // doesn't have a symbol table in it. To aid in faster reading and to
450 // ensure compatibility with other archivers we need to put the symbol
451 // table first in the file. Unfortunately, this means mapping the file
452 // we just wrote back in and copying it to the destination file.
453
454 // Map in the archive we just wrote.
Reid Spencer751ca6b2006-08-22 16:07:44 +0000455 sys::MappedFile arch;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000456 if (arch.open(TmpArchive, sys::MappedFile::READ_ACCESS, ErrMsg))
457 return true;
Reid Spencer751ca6b2006-08-22 16:07:44 +0000458 const char* base;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000459 if (!(base = (const char*) arch.map(ErrMsg)))
460 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000461
462 // Open another temporary file in order to avoid invalidating the
463 // mmapped data
464 sys::Path FinalFilePath = archPath;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000465 if (FinalFilePath.createTemporaryFileOnDisk(ErrMsg))
466 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000467 sys::RemoveFileOnSignal(FinalFilePath);
468
469 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
Chris Lattner0c332312006-07-28 22:29:50 +0000470 if (!FinalFile.is_open() || FinalFile.bad()) {
Reid Spencer3039b992006-07-07 19:09:14 +0000471 if (TmpArchive.exists())
472 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000473 if (ErrMsg)
474 *ErrMsg = "Error opening archive file: " + FinalFilePath.toString();
475 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000476 }
477
478 // Write the file magic number
479 FinalFile << ARFILE_MAGIC;
480
481 // If there is a foreign symbol table, put it into the file now. Most
482 // ar(1) implementations require the symbol table to be first but llvm-ar
483 // can deal with it being after a foreign symbol table. This ensures
484 // compatibility with other ar(1) implementations as well as allowing the
485 // archive to store both native .o and LLVM .bc files, both indexed.
486 if (foreignST) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000487 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000488 FinalFile.close();
489 if (TmpArchive.exists())
490 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000491 return true;
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000492 }
Reid Spencer3039b992006-07-07 19:09:14 +0000493 }
494
495 // Put out the LLVM symbol table now.
496 writeSymbolTable(FinalFile);
497
498 // Copy the temporary file contents being sure to skip the file's magic
499 // number.
500 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
501 arch.size()-sizeof(ARFILE_MAGIC)+1);
502
503 // Close up shop
504 FinalFile.close();
505 arch.close();
506
507 // Move the final file over top of TmpArchive
Reid Spencer0ff2d312006-08-24 23:45:08 +0000508 if (FinalFilePath.renamePathOnDisk(TmpArchive, ErrMsg))
509 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000510 }
511
512 // Before we replace the actual archive, we need to forget all the
513 // members, since they point to data in that old archive. We need to do
514 // this because we cannot replace an open file on Windows.
515 cleanUpMemory();
516
Reid Spencer0ff2d312006-08-24 23:45:08 +0000517 if (TmpArchive.renamePathOnDisk(archPath, ErrMsg))
518 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000519
Reid Spencer0ff2d312006-08-24 23:45:08 +0000520 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000521}