Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 1 | //===-- ArchiveWriter.cpp - Write LLVM archive files ----------------------===// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 5 | // This file was developed by Reid Spencer and is distributed under the |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 10 | // Builds up an LLVM archive file (.a) containing LLVM bytecode. |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ArchiveInternals.h" |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 15 | #include "llvm/Bytecode/Reader.h" |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Compressor.h" |
| 17 | #include "llvm/System/Signals.h" |
Reid Spencer | 3468e57 | 2005-04-21 16:15:19 +0000 | [diff] [blame] | 18 | #include "llvm/System/Process.h" |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 19 | #include <fstream> |
| 20 | #include <iostream> |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 21 | #include <iomanip> |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 22 | |
| 23 | using namespace llvm; |
| 24 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 25 | // Write an integer using variable bit rate encoding. This saves a few bytes |
| 26 | // per entry in the symbol table. |
| 27 | inline void writeInteger(unsigned num, std::ofstream& ARFile) { |
| 28 | while (1) { |
| 29 | if (num < 0x80) { // done? |
| 30 | ARFile << (unsigned char)num; |
| 31 | return; |
| 32 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 33 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 34 | // Nope, we are bigger than a character, output the next 7 bits and set the |
| 35 | // high bit to say that there is more coming... |
| 36 | ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F)); |
| 37 | num >>= 7; // Shift out 7 bits now... |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | // Compute how many bytes are taken by a given VBR encoded value. This is needed |
| 42 | // to pre-compute the size of the symbol table. |
| 43 | inline unsigned numVbrBytes(unsigned num) { |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 44 | |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 45 | // Note that the following nested ifs are somewhat equivalent to a binary |
| 46 | // search. We split it in half by comparing against 2^14 first. This allows |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 47 | // most reasonable values to be done in 2 comparisons instead of 1 for |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 48 | // small ones and four for large ones. We expect this to access file offsets |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 49 | // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range, |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 50 | // so this approach is reasonable. |
| 51 | if (num < 1<<14) |
| 52 | if (num < 1<<7) |
| 53 | return 1; |
| 54 | else |
| 55 | return 2; |
| 56 | if (num < 1<<21) |
| 57 | return 3; |
| 58 | |
| 59 | if (num < 1<<28) |
| 60 | return 4; |
| 61 | return 5; // anything >= 2^28 takes 5 bytes |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | // Create an empty archive. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 65 | Archive* |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 66 | Archive::CreateEmpty(const sys::Path& FilePath ) { |
| 67 | Archive* result = new Archive(FilePath,false); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 68 | return result; |
| 69 | } |
| 70 | |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 71 | // Fill the ArchiveMemberHeader with the information from a member. If |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 72 | // TruncateNames is true, names are flattened to 15 chars or less. The sz field |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 73 | // is provided here instead of coming from the mbr because the member might be |
| 74 | // stored compressed and the compressed size is not the ArchiveMember's size. |
| 75 | // Furthermore compressed files have negative size fields to identify them as |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 76 | // compressed. |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 77 | bool |
| 78 | Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr, |
| 79 | int sz, bool TruncateNames) const { |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 80 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 81 | // Set the permissions mode, uid and gid |
| 82 | hdr.init(); |
| 83 | char buffer[32]; |
| 84 | sprintf(buffer, "%-8o", mbr.getMode()); |
| 85 | memcpy(hdr.mode,buffer,8); |
| 86 | sprintf(buffer, "%-6u", mbr.getUser()); |
| 87 | memcpy(hdr.uid,buffer,6); |
| 88 | sprintf(buffer, "%-6u", mbr.getGroup()); |
| 89 | memcpy(hdr.gid,buffer,6); |
| 90 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 91 | // Set the last modification date |
| 92 | uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime(); |
| 93 | sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch)); |
| 94 | memcpy(hdr.date,buffer,12); |
| 95 | |
Reid Spencer | d4543da | 2004-11-17 18:28:29 +0000 | [diff] [blame] | 96 | // Get rid of trailing blanks in the name |
Reid Spencer | 1fce091 | 2004-12-11 00:14:15 +0000 | [diff] [blame] | 97 | std::string mbrPath = mbr.getPath().toString(); |
Reid Spencer | d4543da | 2004-11-17 18:28:29 +0000 | [diff] [blame] | 98 | size_t mbrLen = mbrPath.length(); |
| 99 | while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') { |
| 100 | mbrPath.erase(mbrLen-1,1); |
| 101 | mbrLen--; |
| 102 | } |
| 103 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 104 | // Set the name field in one of its various flavors. |
| 105 | bool writeLongName = false; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 106 | if (mbr.isStringTable()) { |
| 107 | memcpy(hdr.name,ARFILE_STRTAB_NAME,16); |
Reid Spencer | 9a29db4 | 2004-11-20 07:29:40 +0000 | [diff] [blame] | 108 | } else if (mbr.isSVR4SymbolTable()) { |
| 109 | memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16); |
| 110 | } else if (mbr.isBSD4SymbolTable()) { |
| 111 | memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 112 | } else if (mbr.isLLVMSymbolTable()) { |
| 113 | memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16); |
| 114 | } else if (TruncateNames) { |
| 115 | const char* nm = mbrPath.c_str(); |
| 116 | unsigned len = mbrPath.length(); |
| 117 | size_t slashpos = mbrPath.rfind('/'); |
| 118 | if (slashpos != std::string::npos) { |
| 119 | nm += slashpos + 1; |
| 120 | len -= slashpos +1; |
| 121 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 122 | if (len > 15) |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 123 | len = 15; |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 124 | memcpy(hdr.name,nm,len); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 125 | hdr.name[len] = '/'; |
| 126 | } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) { |
Reid Spencer | d4543da | 2004-11-17 18:28:29 +0000 | [diff] [blame] | 127 | memcpy(hdr.name,mbrPath.c_str(),mbrPath.length()); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 128 | hdr.name[mbrPath.length()] = '/'; |
| 129 | } else { |
| 130 | std::string nm = "#1/"; |
| 131 | nm += utostr(mbrPath.length()); |
Reid Spencer | d4543da | 2004-11-17 18:28:29 +0000 | [diff] [blame] | 132 | memcpy(hdr.name,nm.data(),nm.length()); |
Reid Spencer | 96ce335 | 2004-11-17 16:14:21 +0000 | [diff] [blame] | 133 | if (sz < 0) |
| 134 | sz -= mbrPath.length(); |
| 135 | else |
| 136 | sz += mbrPath.length(); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 137 | writeLongName = true; |
| 138 | } |
Reid Spencer | 96ce335 | 2004-11-17 16:14:21 +0000 | [diff] [blame] | 139 | |
| 140 | // Set the size field |
| 141 | if (sz < 0) { |
| 142 | buffer[0] = '-'; |
| 143 | sprintf(&buffer[1],"%-9u",(unsigned)-sz); |
| 144 | } else { |
| 145 | sprintf(buffer, "%-10u", (unsigned)sz); |
| 146 | } |
| 147 | memcpy(hdr.size,buffer,10); |
| 148 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 149 | return writeLongName; |
| 150 | } |
| 151 | |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 152 | // Insert a file into the archive before some other member. This also takes care |
| 153 | // of extracting the necessary flags and information from the file. |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 154 | void |
| 155 | Archive::addFileBefore(const sys::Path& filePath, iterator where) { |
| 156 | assert(filePath.exists() && "Can't add a non-existent file"); |
| 157 | |
| 158 | ArchiveMember* mbr = new ArchiveMember(this); |
| 159 | |
| 160 | mbr->data = 0; |
| 161 | mbr->path = filePath; |
Chris Lattner | 252ad03 | 2006-07-28 22:03:44 +0000 | [diff] [blame] | 162 | std::string err; |
| 163 | if (mbr->path.getFileStatus(mbr->info, &err)) |
| 164 | throw err; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 165 | |
| 166 | unsigned flags = 0; |
Reid Spencer | 1fce091 | 2004-12-11 00:14:15 +0000 | [diff] [blame] | 167 | bool hasSlash = filePath.toString().find('/') != std::string::npos; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 168 | if (hasSlash) |
| 169 | flags |= ArchiveMember::HasPathFlag; |
Reid Spencer | 1fce091 | 2004-12-11 00:14:15 +0000 | [diff] [blame] | 170 | if (hasSlash || filePath.toString().length() > 15) |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 171 | flags |= ArchiveMember::HasLongFilenameFlag; |
| 172 | std::string magic; |
| 173 | mbr->path.getMagicNumber(magic,4); |
| 174 | switch (sys::IdentifyFileType(magic.c_str(),4)) { |
| 175 | case sys::BytecodeFileType: |
| 176 | flags |= ArchiveMember::BytecodeFlag; |
| 177 | break; |
| 178 | case sys::CompressedBytecodeFileType: |
| 179 | flags |= ArchiveMember::CompressedBytecodeFlag; |
| 180 | break; |
| 181 | default: |
| 182 | break; |
| 183 | } |
| 184 | mbr->flags = flags; |
| 185 | members.insert(where,mbr); |
| 186 | } |
| 187 | |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 188 | // Write one member out to the file. |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 189 | bool |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 190 | Archive::writeMember( |
| 191 | const ArchiveMember& member, |
| 192 | std::ofstream& ARFile, |
| 193 | bool CreateSymbolTable, |
| 194 | bool TruncateNames, |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 195 | bool ShouldCompress, |
| 196 | std::string* error |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 197 | ) { |
| 198 | |
| 199 | unsigned filepos = ARFile.tellp(); |
| 200 | filepos -= 8; |
| 201 | |
| 202 | // Get the data and its size either from the |
| 203 | // member's in-memory data or directly from the file. |
| 204 | size_t fSize = member.getSize(); |
| 205 | const char* data = (const char*)member.getData(); |
| 206 | sys::MappedFile* mFile = 0; |
| 207 | if (!data) { |
Reid Spencer | 751ca6b | 2006-08-22 16:07:44 +0000 | [diff] [blame^] | 208 | std::string ErrMsg; |
| 209 | mFile = new sys::MappedFile(); |
| 210 | if (mFile->open(member.getPath(), sys::MappedFile::READ_ACCESS, &ErrMsg)) |
| 211 | throw ErrMsg; |
| 212 | if (data = (const char*) mFile->map(&ErrMsg)) |
| 213 | throw ErrMsg; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 214 | fSize = mFile->size(); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 215 | } |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 216 | |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 217 | // Now that we have the data in memory, update the |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 218 | // symbol table if its a bytecode file. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 219 | if (CreateSymbolTable && |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 220 | (member.isBytecode() || member.isCompressedBytecode())) { |
| 221 | std::vector<std::string> symbols; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 222 | std::string FullMemberName = archPath.toString() + "(" + |
| 223 | member.getPath().toString() |
Reid Spencer | d4543da | 2004-11-17 18:28:29 +0000 | [diff] [blame] | 224 | + ")"; |
Reid Spencer | 766b793 | 2004-11-15 01:20:11 +0000 | [diff] [blame] | 225 | ModuleProvider* MP = GetBytecodeSymbols( |
Reid Spencer | d4543da | 2004-11-17 18:28:29 +0000 | [diff] [blame] | 226 | (const unsigned char*)data,fSize,FullMemberName, symbols); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 227 | |
Reid Spencer | 766b793 | 2004-11-15 01:20:11 +0000 | [diff] [blame] | 228 | // If the bytecode parsed successfully |
| 229 | if ( MP ) { |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 230 | for (std::vector<std::string>::iterator SI = symbols.begin(), |
Reid Spencer | 766b793 | 2004-11-15 01:20:11 +0000 | [diff] [blame] | 231 | SE = symbols.end(); SI != SE; ++SI) { |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 232 | |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 233 | std::pair<SymTabType::iterator,bool> Res = |
Reid Spencer | 766b793 | 2004-11-15 01:20:11 +0000 | [diff] [blame] | 234 | symTab.insert(std::make_pair(*SI,filepos)); |
| 235 | |
| 236 | if (Res.second) { |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 237 | symTabSize += SI->length() + |
| 238 | numVbrBytes(SI->length()) + |
Reid Spencer | 766b793 | 2004-11-15 01:20:11 +0000 | [diff] [blame] | 239 | numVbrBytes(filepos); |
| 240 | } |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 241 | } |
Reid Spencer | 766b793 | 2004-11-15 01:20:11 +0000 | [diff] [blame] | 242 | // We don't need this module any more. |
| 243 | delete MP; |
| 244 | } else { |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 245 | if (mFile != 0) { |
| 246 | mFile->close(); |
| 247 | delete mFile; |
| 248 | } |
| 249 | if (error) |
| 250 | *error = "Can't parse bytecode member: " + member.getPath().toString(); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 251 | } |
| 252 | } |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 253 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 254 | // Determine if we actually should compress this member |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 255 | bool willCompress = |
| 256 | (ShouldCompress && |
| 257 | !member.isCompressed() && |
Reid Spencer | 9a29db4 | 2004-11-20 07:29:40 +0000 | [diff] [blame] | 258 | !member.isCompressedBytecode() && |
| 259 | !member.isLLVMSymbolTable() && |
| 260 | !member.isSVR4SymbolTable() && |
| 261 | !member.isBSD4SymbolTable()); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 262 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 263 | // Perform the compression. Note that if the file is uncompressed bytecode |
| 264 | // then we turn the file into compressed bytecode rather than treating it as |
| 265 | // compressed data. This is necessary since it allows us to determine that the |
| 266 | // file contains bytecode instead of looking like a regular compressed data |
| 267 | // member. A compressed bytecode file has its content compressed but has a |
| 268 | // magic number of "llvc". This acounts for the +/-4 arithmetic in the code |
| 269 | // below. |
| 270 | int hdrSize; |
| 271 | if (willCompress) { |
| 272 | char* output = 0; |
| 273 | if (member.isBytecode()) { |
| 274 | data +=4; |
| 275 | fSize -= 4; |
| 276 | } |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 277 | fSize = Compressor::compressToNewBuffer(data,fSize,output,error); |
| 278 | if (fSize == 0) |
| 279 | return false; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 280 | data = output; |
| 281 | if (member.isBytecode()) |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 282 | hdrSize = -fSize-4; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 283 | else |
| 284 | hdrSize = -fSize; |
| 285 | } else { |
| 286 | hdrSize = fSize; |
| 287 | } |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 288 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 289 | // Compute the fields of the header |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 290 | ArchiveMemberHeader Hdr; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 291 | bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 292 | |
| 293 | // Write header to archive file |
| 294 | ARFile.write((char*)&Hdr, sizeof(Hdr)); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 295 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 296 | // Write the long filename if its long |
| 297 | if (writeLongName) { |
Reid Spencer | 1fce091 | 2004-12-11 00:14:15 +0000 | [diff] [blame] | 298 | ARFile.write(member.getPath().toString().data(), |
| 299 | member.getPath().toString().length()); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | // Make sure we write the compressed bytecode magic number if we should. |
| 303 | if (willCompress && member.isBytecode()) |
| 304 | ARFile.write("llvc",4); |
| 305 | |
| 306 | // Write the (possibly compressed) member's content to the file. |
| 307 | ARFile.write(data,fSize); |
| 308 | |
| 309 | // Make sure the member is an even length |
Jeff Cohen | e133721 | 2004-12-20 03:23:46 +0000 | [diff] [blame] | 310 | if ((ARFile.tellp() & 1) == 1) |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 311 | ARFile << ARFILE_PAD; |
| 312 | |
| 313 | // Free the compressed data, if necessary |
| 314 | if (willCompress) { |
| 315 | free((void*)data); |
| 316 | } |
| 317 | |
| 318 | // Close the mapped file if it was opened |
| 319 | if (mFile != 0) { |
Jeff Cohen | d19d89a | 2005-01-28 01:17:07 +0000 | [diff] [blame] | 320 | mFile->close(); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 321 | delete mFile; |
| 322 | } |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 323 | return true; |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 324 | } |
| 325 | |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 326 | // Write out the LLVM symbol table as an archive member to the file. |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 327 | void |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 328 | Archive::writeSymbolTable(std::ofstream& ARFile) { |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 329 | |
| 330 | // Construct the symbol table's header |
| 331 | ArchiveMemberHeader Hdr; |
| 332 | Hdr.init(); |
| 333 | memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16); |
| 334 | uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime(); |
| 335 | char buffer[32]; |
Misha Brukman | 4b2afe6 | 2005-04-20 03:55:35 +0000 | [diff] [blame] | 336 | sprintf(buffer, "%-8o", 0644); |
| 337 | memcpy(Hdr.mode,buffer,8); |
Reid Spencer | 3468e57 | 2005-04-21 16:15:19 +0000 | [diff] [blame] | 338 | sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId()); |
Misha Brukman | 4b2afe6 | 2005-04-20 03:55:35 +0000 | [diff] [blame] | 339 | memcpy(Hdr.uid,buffer,6); |
Reid Spencer | 3468e57 | 2005-04-21 16:15:19 +0000 | [diff] [blame] | 340 | sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId()); |
Misha Brukman | 4b2afe6 | 2005-04-20 03:55:35 +0000 | [diff] [blame] | 341 | memcpy(Hdr.gid,buffer,6); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 342 | sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch)); |
| 343 | memcpy(Hdr.date,buffer,12); |
| 344 | sprintf(buffer,"%-10u",symTabSize); |
| 345 | memcpy(Hdr.size,buffer,10); |
| 346 | |
| 347 | // Write the header |
| 348 | ARFile.write((char*)&Hdr, sizeof(Hdr)); |
| 349 | |
| 350 | // Save the starting position of the symbol tables data content. |
| 351 | unsigned startpos = ARFile.tellp(); |
| 352 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 353 | // Write out the symbols sequentially |
| 354 | for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end(); |
| 355 | I != E; ++I) |
| 356 | { |
| 357 | // Write out the file index |
| 358 | writeInteger(I->second, ARFile); |
| 359 | // Write out the length of the symbol |
| 360 | writeInteger(I->first.length(), ARFile); |
| 361 | // Write out the symbol |
| 362 | ARFile.write(I->first.data(), I->first.length()); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 363 | } |
| 364 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 365 | // Now that we're done with the symbol table, get the ending file position |
| 366 | unsigned endpos = ARFile.tellp(); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 367 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 368 | // Make sure that the amount we wrote is what we pre-computed. This is |
| 369 | // critical for file integrity purposes. |
| 370 | assert(endpos - startpos == symTabSize && "Invalid symTabSize computation"); |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 371 | |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 372 | // Make sure the symbol table is even sized |
| 373 | if (symTabSize % 2 != 0 ) |
| 374 | ARFile << ARFILE_PAD; |
Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 377 | // Write the entire archive to the file specified when the archive was created. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 378 | // This writes to a temporary file first. Options are for creating a symbol |
| 379 | // table, flattening the file names (no directories, 15 chars max) and |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 380 | // compressing each archive member. |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 381 | bool |
| 382 | Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress, |
| 383 | std::string* error) |
| 384 | { |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 385 | // Make sure they haven't opened up the file, not loaded it, |
| 386 | // but are now trying to write it which would wipe out the file. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 387 | assert(!(members.empty() && mapfile->size() > 8) && |
Reid Spencer | 87f9072 | 2004-11-16 06:47:30 +0000 | [diff] [blame] | 388 | "Can't write an archive not opened for writing"); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 389 | |
| 390 | // Create a temporary file to store the archive in |
| 391 | sys::Path TmpArchive = archPath; |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 392 | TmpArchive.createTemporaryFileOnDisk(); |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 393 | |
| 394 | // Make sure the temporary gets removed if we crash |
| 395 | sys::RemoveFileOnSignal(TmpArchive); |
| 396 | |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 397 | // Create archive file for output. |
| 398 | std::ios::openmode io_mode = std::ios::out | std::ios::trunc | |
| 399 | std::ios::binary; |
| 400 | std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 401 | |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 402 | // Check for errors opening or creating archive file. |
Chris Lattner | 0c33231 | 2006-07-28 22:29:50 +0000 | [diff] [blame] | 403 | if (!ArchiveFile.is_open() || ArchiveFile.bad()) { |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 404 | if (TmpArchive.exists()) |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 405 | TmpArchive.eraseFromDisk(); |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 406 | if (error) |
| 407 | *error = "Error opening archive file: " + archPath.toString(); |
| 408 | return false; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 409 | } |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 410 | |
| 411 | // If we're creating a symbol table, reset it now |
| 412 | if (CreateSymbolTable) { |
| 413 | symTabSize = 0; |
| 414 | symTab.clear(); |
| 415 | } |
| 416 | |
| 417 | // Write magic string to archive. |
| 418 | ArchiveFile << ARFILE_MAGIC; |
| 419 | |
| 420 | // Loop over all member files, and write them out. Note that this also |
| 421 | // builds the symbol table, symTab. |
Chris Lattner | 0c33231 | 2006-07-28 22:29:50 +0000 | [diff] [blame] | 422 | for (MembersList::iterator I = begin(), E = end(); I != E; ++I) { |
| 423 | if (!writeMember(*I, ArchiveFile, CreateSymbolTable, |
| 424 | TruncateNames, Compress, error)) { |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 425 | if (TmpArchive.exists()) |
| 426 | TmpArchive.eraseFromDisk(); |
| 427 | ArchiveFile.close(); |
| 428 | return false; |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | // Close archive file. |
| 433 | ArchiveFile.close(); |
| 434 | |
| 435 | // Write the symbol table |
| 436 | if (CreateSymbolTable) { |
| 437 | // At this point we have written a file that is a legal archive but it |
| 438 | // doesn't have a symbol table in it. To aid in faster reading and to |
| 439 | // ensure compatibility with other archivers we need to put the symbol |
| 440 | // table first in the file. Unfortunately, this means mapping the file |
| 441 | // we just wrote back in and copying it to the destination file. |
| 442 | |
| 443 | // Map in the archive we just wrote. |
Reid Spencer | 751ca6b | 2006-08-22 16:07:44 +0000 | [diff] [blame^] | 444 | sys::MappedFile arch; |
| 445 | std::string ErrMsg; |
| 446 | if (arch.open(TmpArchive, sys::MappedFile::READ_ACCESS, &ErrMsg)) |
| 447 | throw ErrMsg; |
| 448 | const char* base; |
| 449 | if (!(base = (const char*) arch.map(&ErrMsg))) |
| 450 | throw ErrMsg; |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 451 | |
| 452 | // Open another temporary file in order to avoid invalidating the |
| 453 | // mmapped data |
| 454 | sys::Path FinalFilePath = archPath; |
| 455 | FinalFilePath.createTemporaryFileOnDisk(); |
| 456 | sys::RemoveFileOnSignal(FinalFilePath); |
| 457 | |
| 458 | std::ofstream FinalFile(FinalFilePath.c_str(), io_mode); |
Chris Lattner | 0c33231 | 2006-07-28 22:29:50 +0000 | [diff] [blame] | 459 | if (!FinalFile.is_open() || FinalFile.bad()) { |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 460 | if (TmpArchive.exists()) |
| 461 | TmpArchive.eraseFromDisk(); |
| 462 | if (error) |
| 463 | *error = "Error opening archive file: " + FinalFilePath.toString(); |
| 464 | return false; |
| 465 | } |
| 466 | |
| 467 | // Write the file magic number |
| 468 | FinalFile << ARFILE_MAGIC; |
| 469 | |
| 470 | // If there is a foreign symbol table, put it into the file now. Most |
| 471 | // ar(1) implementations require the symbol table to be first but llvm-ar |
| 472 | // can deal with it being after a foreign symbol table. This ensures |
| 473 | // compatibility with other ar(1) implementations as well as allowing the |
| 474 | // archive to store both native .o and LLVM .bc files, both indexed. |
| 475 | if (foreignST) { |
Reid Spencer | 8d8a7ff | 2006-07-07 20:56:50 +0000 | [diff] [blame] | 476 | if (!writeMember(*foreignST, FinalFile, false, false, false, error)) { |
| 477 | FinalFile.close(); |
| 478 | if (TmpArchive.exists()) |
| 479 | TmpArchive.eraseFromDisk(); |
| 480 | return false; |
| 481 | } |
Reid Spencer | 3039b99 | 2006-07-07 19:09:14 +0000 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | // Put out the LLVM symbol table now. |
| 485 | writeSymbolTable(FinalFile); |
| 486 | |
| 487 | // Copy the temporary file contents being sure to skip the file's magic |
| 488 | // number. |
| 489 | FinalFile.write(base + sizeof(ARFILE_MAGIC)-1, |
| 490 | arch.size()-sizeof(ARFILE_MAGIC)+1); |
| 491 | |
| 492 | // Close up shop |
| 493 | FinalFile.close(); |
| 494 | arch.close(); |
| 495 | |
| 496 | // Move the final file over top of TmpArchive |
| 497 | FinalFilePath.renamePathOnDisk(TmpArchive); |
| 498 | } |
| 499 | |
| 500 | // Before we replace the actual archive, we need to forget all the |
| 501 | // members, since they point to data in that old archive. We need to do |
| 502 | // this because we cannot replace an open file on Windows. |
| 503 | cleanUpMemory(); |
| 504 | |
| 505 | TmpArchive.renamePathOnDisk(archPath); |
| 506 | |
| 507 | return true; |
Reid Spencer | cf6afc6 | 2004-11-14 21:56:59 +0000 | [diff] [blame] | 508 | } |