blob: d17f6b5036f387eabff37585634cf42486d20b20 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- ArchiveWriter.cpp - Write LLVM archive files ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Builds up an LLVM archive file (.a) containing LLVM bitcode.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ArchiveInternals.h"
15#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattner54d19d42008-04-01 04:26:46 +000016#include "llvm/ADT/OwningPtr.h"
17#include "llvm/Support/MemoryBuffer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/System/Signals.h"
19#include "llvm/System/Process.h"
20#include "llvm/ModuleProvider.h"
21#include <fstream>
22#include <ostream>
23#include <iomanip>
24using namespace llvm;
25
26// Write an integer using variable bit rate encoding. This saves a few bytes
27// per entry in the symbol table.
Dan Gohman089efff2008-05-13 00:00:25 +000028static inline void writeInteger(unsigned num, std::ofstream& ARFile) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029 while (1) {
30 if (num < 0x80) { // done?
31 ARFile << (unsigned char)num;
32 return;
33 }
34
35 // 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 Gohman089efff2008-05-13 00:00:25 +000044static inline unsigned numVbrBytes(unsigned num) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045
46 // 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
48 // most reasonable values to be done in 2 comparisons instead of 1 for
49 // small ones and four for large ones. We expect this to access file offsets
50 // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range,
51 // so this approach is reasonable.
Anton Korobeynikov53422f62008-02-20 11:10:28 +000052 if (num < 1<<14) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053 if (num < 1<<7)
54 return 1;
55 else
56 return 2;
Anton Korobeynikov53422f62008-02-20 11:10:28 +000057 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
64}
65
66// Create an empty archive.
Owen Anderson92adb182009-07-01 23:13:44 +000067Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
Owen Anderson25209b42009-07-01 16:58:40 +000068 Archive* result = new Archive(FilePath, C);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069 return result;
70}
71
72// Fill the ArchiveMemberHeader with the information from a member. If
73// TruncateNames is true, names are flattened to 15 chars or less. The sz field
74// 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
77// compressed.
78bool
79Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
80 int sz, bool TruncateNames) const {
81
82 // 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
92 // 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
97 // Get rid of trailing blanks in the name
Chris Lattnerb1aa85b2009-08-23 22:45:37 +000098 std::string mbrPath = mbr.getPath().str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 size_t mbrLen = mbrPath.length();
100 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
101 mbrPath.erase(mbrLen-1,1);
102 mbrLen--;
103 }
104
105 // Set the name field in one of its various flavors.
106 bool writeLongName = false;
107 if (mbr.isStringTable()) {
108 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
109 } 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);
113 } 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 }
123 if (len > 15)
124 len = 15;
125 memcpy(hdr.name,nm,len);
126 hdr.name[len] = '/';
127 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
128 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
129 hdr.name[mbrPath.length()] = '/';
130 } else {
131 std::string nm = "#1/";
132 nm += utostr(mbrPath.length());
133 memcpy(hdr.name,nm.data(),nm.length());
134 if (sz < 0)
135 sz -= mbrPath.length();
136 else
137 sz += mbrPath.length();
138 writeLongName = true;
139 }
140
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
150 return writeLongName;
151}
152
153// 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.
155bool
156Archive::addFileBefore(const sys::Path& filePath, iterator where,
157 std::string* ErrMsg) {
158 if (!filePath.exists()) {
159 if (ErrMsg)
160 *ErrMsg = "Can not add a non-existent file to archive";
161 return true;
162 }
163
164 ArchiveMember* mbr = new ArchiveMember(this);
165
166 mbr->data = 0;
167 mbr->path = filePath;
168 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
Duncan Sandsb735b4a2009-06-11 08:09:49 +0000169 if (!FSInfo) {
170 delete mbr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 return true;
Duncan Sandsb735b4a2009-06-11 08:09:49 +0000172 }
173 mbr->info = *FSInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174
175 unsigned flags = 0;
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000176 bool hasSlash = filePath.str().find('/') != std::string::npos;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 if (hasSlash)
178 flags |= ArchiveMember::HasPathFlag;
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000179 if (hasSlash || filePath.str().length() > 15)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 flags |= ArchiveMember::HasLongFilenameFlag;
181 std::string magic;
182 mbr->path.getMagicNumber(magic,4);
183 switch (sys::IdentifyFileType(magic.c_str(),4)) {
184 case sys::Bitcode_FileType:
185 flags |= ArchiveMember::BitcodeFlag;
186 break;
187 default:
188 break;
189 }
190 mbr->flags = flags;
191 members.insert(where,mbr);
192 return false;
193}
194
195// Write one member out to the file.
196bool
197Archive::writeMember(
198 const ArchiveMember& member,
199 std::ofstream& ARFile,
200 bool CreateSymbolTable,
201 bool TruncateNames,
202 bool ShouldCompress,
203 std::string* ErrMsg
204) {
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 Lattner54d19d42008-04-01 04:26:46 +0000212 const char *data = (const char*)member.getData();
213 MemoryBuffer *mFile = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 if (!data) {
Chris Lattnerfc003612008-04-01 18:04:03 +0000215 mFile = MemoryBuffer::getFile(member.getPath().c_str(), ErrMsg);
Chris Lattner54d19d42008-04-01 04:26:46 +0000216 if (mFile == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 return true;
Chris Lattner54d19d42008-04-01 04:26:46 +0000218 data = mFile->getBufferStart();
219 fSize = mFile->getBufferSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 }
221
222 // Now that we have the data in memory, update the
223 // symbol table if its a bitcode file.
224 if (CreateSymbolTable && member.isBitcode()) {
225 std::vector<std::string> symbols;
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000226 std::string FullMemberName = archPath.str() + "(" + member.getPath().str()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 + ")";
228 ModuleProvider* MP =
229 GetBitcodeSymbols((const unsigned char*)data,fSize,
Owen Anderson25209b42009-07-01 16:58:40 +0000230 FullMemberName, Context, symbols, ErrMsg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231
232 // If the bitcode parsed successfully
233 if ( MP ) {
234 for (std::vector<std::string>::iterator SI = symbols.begin(),
235 SE = symbols.end(); SI != SE; ++SI) {
236
237 std::pair<SymTabType::iterator,bool> Res =
238 symTab.insert(std::make_pair(*SI,filepos));
239
240 if (Res.second) {
241 symTabSize += SI->length() +
242 numVbrBytes(SI->length()) +
243 numVbrBytes(filepos);
244 }
245 }
246 // We don't need this module any more.
247 delete MP;
248 } else {
Chris Lattner54d19d42008-04-01 04:26:46 +0000249 delete mFile;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 if (ErrMsg)
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000251 *ErrMsg = "Can't parse bitcode member: " + member.getPath().str()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000252 + ": " + *ErrMsg;
253 return true;
254 }
255 }
256
257 int hdrSize = fSize;
258
259 // Compute the fields of the header
260 ArchiveMemberHeader Hdr;
261 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
262
263 // Write header to archive file
264 ARFile.write((char*)&Hdr, sizeof(Hdr));
265
266 // Write the long filename if its long
267 if (writeLongName) {
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000268 ARFile.write(member.getPath().str().data(),
269 member.getPath().str().length());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 }
271
272 // Write the (possibly compressed) member's content to the file.
273 ARFile.write(data,fSize);
274
275 // Make sure the member is an even length
276 if ((ARFile.tellp() & 1) == 1)
277 ARFile << ARFILE_PAD;
278
279 // Close the mapped file if it was opened
Chris Lattner54d19d42008-04-01 04:26:46 +0000280 delete mFile;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 return false;
282}
283
284// Write out the LLVM symbol table as an archive member to the file.
285void
286Archive::writeSymbolTable(std::ofstream& ARFile) {
287
288 // Construct the symbol table's header
289 ArchiveMemberHeader Hdr;
290 Hdr.init();
291 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
292 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
293 char buffer[32];
294 sprintf(buffer, "%-8o", 0644);
295 memcpy(Hdr.mode,buffer,8);
296 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
297 memcpy(Hdr.uid,buffer,6);
298 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
299 memcpy(Hdr.gid,buffer,6);
300 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
301 memcpy(Hdr.date,buffer,12);
302 sprintf(buffer,"%-10u",symTabSize);
303 memcpy(Hdr.size,buffer,10);
304
305 // Write the header
306 ARFile.write((char*)&Hdr, sizeof(Hdr));
307
Devang Patel4354f5c2008-11-21 20:00:59 +0000308#ifndef NDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 // Save the starting position of the symbol tables data content.
310 unsigned startpos = ARFile.tellp();
Devang Patel4354f5c2008-11-21 20:00:59 +0000311#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312
313 // Write out the symbols sequentially
314 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
315 I != E; ++I)
316 {
317 // Write out the file index
318 writeInteger(I->second, ARFile);
319 // Write out the length of the symbol
320 writeInteger(I->first.length(), ARFile);
321 // Write out the symbol
322 ARFile.write(I->first.data(), I->first.length());
323 }
324
Devang Patel4354f5c2008-11-21 20:00:59 +0000325#ifndef NDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326 // Now that we're done with the symbol table, get the ending file position
327 unsigned endpos = ARFile.tellp();
Devang Patel4354f5c2008-11-21 20:00:59 +0000328#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329
330 // Make sure that the amount we wrote is what we pre-computed. This is
331 // critical for file integrity purposes.
332 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
333
334 // Make sure the symbol table is even sized
335 if (symTabSize % 2 != 0 )
336 ARFile << ARFILE_PAD;
337}
338
339// Write the entire archive to the file specified when the archive was created.
340// This writes to a temporary file first. Options are for creating a symbol
341// table, flattening the file names (no directories, 15 chars max) and
342// compressing each archive member.
343bool
344Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
345 std::string* ErrMsg)
346{
347 // Make sure they haven't opened up the file, not loaded it,
348 // but are now trying to write it which would wipe out the file.
Chris Lattner54d19d42008-04-01 04:26:46 +0000349 if (members.empty() && mapfile && mapfile->getBufferSize() > 8) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 if (ErrMsg)
351 *ErrMsg = "Can't write an archive not opened for writing";
352 return true;
353 }
354
355 // Create a temporary file to store the archive in
356 sys::Path TmpArchive = archPath;
357 if (TmpArchive.createTemporaryFileOnDisk(ErrMsg))
358 return true;
359
360 // Make sure the temporary gets removed if we crash
361 sys::RemoveFileOnSignal(TmpArchive);
362
363 // Create archive file for output.
364 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
365 std::ios::binary;
366 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
367
368 // Check for errors opening or creating archive file.
369 if (!ArchiveFile.is_open() || ArchiveFile.bad()) {
370 if (TmpArchive.exists())
371 TmpArchive.eraseFromDisk();
372 if (ErrMsg)
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000373 *ErrMsg = "Error opening archive file: " + archPath.str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 return true;
375 }
376
377 // If we're creating a symbol table, reset it now
378 if (CreateSymbolTable) {
379 symTabSize = 0;
380 symTab.clear();
381 }
382
383 // Write magic string to archive.
384 ArchiveFile << ARFILE_MAGIC;
385
386 // Loop over all member files, and write them out. Note that this also
387 // builds the symbol table, symTab.
388 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
389 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
390 TruncateNames, Compress, ErrMsg)) {
391 if (TmpArchive.exists())
392 TmpArchive.eraseFromDisk();
393 ArchiveFile.close();
394 return true;
395 }
396 }
397
398 // Close archive file.
399 ArchiveFile.close();
400
401 // Write the symbol table
402 if (CreateSymbolTable) {
403 // At this point we have written a file that is a legal archive but it
404 // doesn't have a symbol table in it. To aid in faster reading and to
405 // ensure compatibility with other archivers we need to put the symbol
406 // table first in the file. Unfortunately, this means mapping the file
407 // we just wrote back in and copying it to the destination file.
Chris Lattner54d19d42008-04-01 04:26:46 +0000408 sys::Path FinalFilePath = archPath;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409
410 // Map in the archive we just wrote.
Chris Lattner54d19d42008-04-01 04:26:46 +0000411 {
Chris Lattnerfc003612008-04-01 18:04:03 +0000412 OwningPtr<MemoryBuffer> arch(MemoryBuffer::getFile(TmpArchive.c_str()));
Chris Lattner54d19d42008-04-01 04:26:46 +0000413 if (arch == 0) return true;
414 const char* base = arch->getBufferStart();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415
416 // Open another temporary file in order to avoid invalidating the
417 // mmapped data
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 if (FinalFilePath.createTemporaryFileOnDisk(ErrMsg))
419 return true;
420 sys::RemoveFileOnSignal(FinalFilePath);
421
422 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
423 if (!FinalFile.is_open() || FinalFile.bad()) {
424 if (TmpArchive.exists())
425 TmpArchive.eraseFromDisk();
426 if (ErrMsg)
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000427 *ErrMsg = "Error opening archive file: " + FinalFilePath.str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 return true;
429 }
430
431 // Write the file magic number
432 FinalFile << ARFILE_MAGIC;
433
434 // If there is a foreign symbol table, put it into the file now. Most
435 // ar(1) implementations require the symbol table to be first but llvm-ar
436 // can deal with it being after a foreign symbol table. This ensures
437 // compatibility with other ar(1) implementations as well as allowing the
438 // archive to store both native .o and LLVM .bc files, both indexed.
439 if (foreignST) {
440 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
441 FinalFile.close();
442 if (TmpArchive.exists())
443 TmpArchive.eraseFromDisk();
444 return true;
445 }
446 }
447
448 // Put out the LLVM symbol table now.
449 writeSymbolTable(FinalFile);
450
451 // Copy the temporary file contents being sure to skip the file's magic
452 // number.
453 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
Chris Lattner54d19d42008-04-01 04:26:46 +0000454 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455
456 // Close up shop
457 FinalFile.close();
Chris Lattner54d19d42008-04-01 04:26:46 +0000458 } // free arch.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459
460 // Move the final file over top of TmpArchive
461 if (FinalFilePath.renamePathOnDisk(TmpArchive, ErrMsg))
462 return true;
463 }
464
465 // Before we replace the actual archive, we need to forget all the
466 // members, since they point to data in that old archive. We need to do
467 // this because we cannot replace an open file on Windows.
468 cleanUpMemory();
469
470 if (TmpArchive.renamePathOnDisk(archPath, ErrMsg))
471 return true;
472
Owen Andersondc3bf4b2008-05-24 05:42:29 +0000473 // Set correct read and write permissions after temporary file is moved
474 // to final destination path.
475 if (archPath.makeReadableOnDisk(ErrMsg))
476 return true;
477 if (archPath.makeWriteableOnDisk(ErrMsg))
478 return true;
479
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 return false;
481}