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