blob: c5da1145384e17f80ca544a73b7036cd53797ad5 [file] [log] [blame]
Reid Spencer362cbf02004-11-06 08:51:45 +00001//===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Reid Spencer362cbf02004-11-06 08:51:45 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Reid Spencer362cbf02004-11-06 08:51:45 +00008//===----------------------------------------------------------------------===//
9//
Reid Spencercf6afc62004-11-14 21:56:59 +000010// This file contains the implementation of the Archive and ArchiveMember
11// classes that is common to both reading and writing archives..
Reid Spencer362cbf02004-11-06 08:51:45 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "ArchiveInternals.h"
Chris Lattnerc1d56242007-05-06 09:28:33 +000016#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencercf6afc62004-11-14 21:56:59 +000017#include "llvm/ModuleProvider.h"
Chris Lattnerf36c7b82007-02-07 23:53:17 +000018#include "llvm/Module.h"
Chris Lattnerc1d56242007-05-06 09:28:33 +000019#include "llvm/Support/MemoryBuffer.h"
Chris Lattner08389232008-04-01 02:58:05 +000020#include "llvm/System/MappedFile.h"
Reid Spencer8e827e82005-04-21 17:49:57 +000021#include "llvm/System/Process.h"
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000022#include <memory>
23#include <cstring>
Reid Spencer362cbf02004-11-06 08:51:45 +000024using namespace llvm;
25
Reid Spencercf6afc62004-11-14 21:56:59 +000026// getMemberSize - compute the actual physical size of the file member as seen
27// on disk. This isn't the size of member's payload. Use getSize() for that.
28unsigned
29ArchiveMember::getMemberSize() const {
30 // Basically its the file size plus the header size
31 unsigned result = info.fileSize + sizeof(ArchiveMemberHeader);
32
33 // If it has a long filename, include the name length
34 if (hasLongFilename())
Reid Spencer1fce0912004-12-11 00:14:15 +000035 result += path.toString().length() + 1;
Reid Spencercf6afc62004-11-14 21:56:59 +000036
37 // If its now odd lengthed, include the padding byte
Misha Brukman2b37d7c2005-04-21 21:13:18 +000038 if (result % 2 != 0 )
Reid Spencercf6afc62004-11-14 21:56:59 +000039 result++;
40
41 return result;
Reid Spencer362cbf02004-11-06 08:51:45 +000042}
43
Reid Spencercf6afc62004-11-14 21:56:59 +000044// This default constructor is only use by the ilist when it creates its
45// sentry node. We give it specific static values to make it stand out a bit.
Misha Brukman2b37d7c2005-04-21 21:13:18 +000046ArchiveMember::ArchiveMember()
Jeff Cohen943b9b62006-05-06 23:25:53 +000047 : next(0), prev(0), parent(0), path("--invalid--"), flags(0), data(0)
Reid Spencercf6afc62004-11-14 21:56:59 +000048{
Reid Spencer8e827e82005-04-21 17:49:57 +000049 info.user = sys::Process::GetCurrentUserId();
Misha Brukman2b37d7c2005-04-21 21:13:18 +000050 info.group = sys::Process::GetCurrentGroupId();
51 info.mode = 0777;
52 info.fileSize = 0;
Reid Spencercf6afc62004-11-14 21:56:59 +000053 info.modTime = sys::TimeValue::now();
54}
55
56// This is the constructor that the Archive class uses when it is building or
57// reading an archive. It just defaults a few things and ensures the parent is
Misha Brukman2b37d7c2005-04-21 21:13:18 +000058// set for the iplist. The Archive class fills in the ArchiveMember's data.
59// This is required because correctly setting the data may depend on other
Reid Spencercf6afc62004-11-14 21:56:59 +000060// things in the Archive.
61ArchiveMember::ArchiveMember(Archive* PAR)
62 : next(0), prev(0), parent(PAR), path(), flags(0), data(0)
63{
64}
65
Misha Brukman2b37d7c2005-04-21 21:13:18 +000066// This method allows an ArchiveMember to be replaced with the data for a
Reid Spencercf6afc62004-11-14 21:56:59 +000067// different file, presumably as an update to the member. It also makes sure
68// the flags are reset correctly.
Reid Spencer0ff2d312006-08-24 23:45:08 +000069bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
Reid Spencercd5561a2006-12-15 19:44:51 +000070 if (!newFile.exists()) {
71 if (ErrMsg)
72 *ErrMsg = "Can not replace an archive member with a non-existent file";
73 return true;
74 }
75
Reid Spencercf6afc62004-11-14 21:56:59 +000076 data = 0;
77 path = newFile;
78
Reid Spencer9a29db42004-11-20 07:29:40 +000079 // SVR4 symbol tables have an empty name
Reid Spencer1fce0912004-12-11 00:14:15 +000080 if (path.toString() == ARFILE_SVR4_SYMTAB_NAME)
Reid Spencer9a29db42004-11-20 07:29:40 +000081 flags |= SVR4SymbolTableFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +000082 else
Reid Spencer9a29db42004-11-20 07:29:40 +000083 flags &= ~SVR4SymbolTableFlag;
84
85 // BSD4.4 symbol tables have a special name
Reid Spencer1fce0912004-12-11 00:14:15 +000086 if (path.toString() == ARFILE_BSD4_SYMTAB_NAME)
Reid Spencer9a29db42004-11-20 07:29:40 +000087 flags |= BSD4SymbolTableFlag;
88 else
89 flags &= ~BSD4SymbolTableFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +000090
91 // LLVM symbol tables have a very specific name
Reid Spencer1fce0912004-12-11 00:14:15 +000092 if (path.toString() == ARFILE_LLVM_SYMTAB_NAME)
Reid Spencercf6afc62004-11-14 21:56:59 +000093 flags |= LLVMSymbolTableFlag;
94 else
95 flags &= ~LLVMSymbolTableFlag;
96
97 // String table name
Reid Spencer1fce0912004-12-11 00:14:15 +000098 if (path.toString() == ARFILE_STRTAB_NAME)
Reid Spencercf6afc62004-11-14 21:56:59 +000099 flags |= StringTableFlag;
100 else
101 flags &= ~StringTableFlag;
102
103 // If it has a slash then it has a path
Reid Spencer1fce0912004-12-11 00:14:15 +0000104 bool hasSlash = path.toString().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000105 if (hasSlash)
106 flags |= HasPathFlag;
107 else
108 flags &= ~HasPathFlag;
109
110 // If it has a slash or its over 15 chars then its a long filename format
Reid Spencer1fce0912004-12-11 00:14:15 +0000111 if (hasSlash || path.toString().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000112 flags |= HasLongFilenameFlag;
113 else
114 flags &= ~HasLongFilenameFlag;
115
116 // Get the signature and status info
Reid Spencercf6afc62004-11-14 21:56:59 +0000117 const char* signature = (const char*) data;
Chris Lattner252ad032006-07-28 22:03:44 +0000118 std::string magic;
Reid Spencercf6afc62004-11-14 21:56:59 +0000119 if (!signature) {
120 path.getMagicNumber(magic,4);
121 signature = magic.c_str();
Chris Lattner252ad032006-07-28 22:03:44 +0000122 std::string err;
Reid Spencera021d5d2007-04-07 19:51:45 +0000123 const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
Reid Spencer8475ec02007-03-29 19:05:44 +0000124 if (FSinfo)
125 info = *FSinfo;
126 else
Reid Spencer0ff2d312006-08-24 23:45:08 +0000127 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000128 }
129
130 // Determine what kind of file it is
131 switch (sys::IdentifyFileType(signature,4)) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000132 default:
Gabor Greife75ca3d2007-07-06 13:38:17 +0000133 flags &= ~BitcodeFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +0000134 break;
135 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000136 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000137}
138
139// Archive constructor - this is the only constructor that gets used for the
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000140// Archive class. Everything else (default,copy) is deprecated. This just
Reid Spencercf6afc62004-11-14 21:56:59 +0000141// initializes and maps the file into memory, if requested.
Chris Lattnerc1d56242007-05-06 09:28:33 +0000142Archive::Archive(const sys::Path& filename)
Reid Spencer1f465802004-11-16 06:47:07 +0000143 : archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(),
Chris Lattnerc1d56242007-05-06 09:28:33 +0000144 symTabSize(0), firstFileOffset(0), modules(), foreignST(0) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000145}
146
147bool
148Archive::mapToMemory(std::string* ErrMsg)
149{
150 mapfile = new sys::MappedFile();
Chris Lattnerbdbd2d72008-04-01 03:10:22 +0000151 if (mapfile->open(archPath, ErrMsg))
Reid Spencer0ff2d312006-08-24 23:45:08 +0000152 return true;
153 if (!(base = (char*) mapfile->map(ErrMsg)))
154 return true;
155 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000156}
157
Reid Spencer6ff72402005-11-30 05:21:10 +0000158void Archive::cleanUpMemory() {
Reid Spencercf6afc62004-11-14 21:56:59 +0000159 // Shutdown the file mapping
160 if (mapfile) {
Jeff Cohend19d89a2005-01-28 01:17:07 +0000161 mapfile->close();
Reid Spencercf6afc62004-11-14 21:56:59 +0000162 delete mapfile;
Reid Spencer6ff72402005-11-30 05:21:10 +0000163
164 mapfile = 0;
165 base = 0;
Reid Spencercf6afc62004-11-14 21:56:59 +0000166 }
Reid Spencer6ff72402005-11-30 05:21:10 +0000167
168 // Forget the entire symbol table
169 symTab.clear();
170 symTabSize = 0;
171
172 firstFileOffset = 0;
173
174 // Free the foreign symbol table member
175 if (foreignST) {
176 delete foreignST;
177 foreignST = 0;
178 }
179
Reid Spencercf6afc62004-11-14 21:56:59 +0000180 // Delete any ModuleProviders and ArchiveMember's we've allocated as a result
181 // of symbol table searches.
182 for (ModuleMap::iterator I=modules.begin(), E=modules.end(); I != E; ++I ) {
183 delete I->second.first;
184 delete I->second.second;
185 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000186}
187
Reid Spencer6ff72402005-11-30 05:21:10 +0000188// Archive destructor - just clean up memory
189Archive::~Archive() {
190 cleanUpMemory();
191}
192
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000193
194
195static void getSymbols(Module*M, std::vector<std::string>& symbols) {
196 // Loop over global variables
197 for (Module::global_iterator GI = M->global_begin(), GE=M->global_end(); GI != GE; ++GI)
198 if (!GI->isDeclaration() && !GI->hasInternalLinkage())
199 if (!GI->getName().empty())
200 symbols.push_back(GI->getName());
201
Anton Korobeynikovd58ceb22008-03-04 20:15:35 +0000202 // Loop over functions
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000203 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
204 if (!FI->isDeclaration() && !FI->hasInternalLinkage())
205 if (!FI->getName().empty())
206 symbols.push_back(FI->getName());
Anton Korobeynikovd58ceb22008-03-04 20:15:35 +0000207
208 // Loop over aliases
209 for (Module::alias_iterator AI = M->alias_begin(), AE = M->alias_end();
210 AI != AE; ++AI) {
Anton Korobeynikov7fcb6b62008-03-11 00:24:53 +0000211 if (AI->hasName())
212 symbols.push_back(AI->getName());
Anton Korobeynikovd58ceb22008-03-04 20:15:35 +0000213 }
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000214}
215
Gabor Greifa99be512007-07-05 17:07:56 +0000216// Get just the externally visible defined symbols from the bitcode
217bool llvm::GetBitcodeSymbols(const sys::Path& fName,
218 std::vector<std::string>& symbols,
219 std::string* ErrMsg) {
Chris Lattnerc1d56242007-05-06 09:28:33 +0000220 std::auto_ptr<MemoryBuffer> Buffer(
221 MemoryBuffer::getFileOrSTDIN(&fName.toString()[0],
222 fName.toString().size()));
223 if (!Buffer.get()) {
224 if (ErrMsg) *ErrMsg = "Could not open file '" + fName.toString() + "'";
225 return true;
226 }
227
228 ModuleProvider *MP = getBitcodeModuleProvider(Buffer.get(), ErrMsg);
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000229 if (!MP)
230 return true;
231
232 // Get the module from the provider
233 Module* M = MP->materializeModule();
234 if (M == 0) {
235 delete MP;
236 return true;
237 }
238
239 // Get the symbols
240 getSymbols(M, symbols);
241
242 // Done with the module.
243 delete MP;
244 return true;
245}
246
247ModuleProvider*
Gabor Greifa99be512007-07-05 17:07:56 +0000248llvm::GetBitcodeSymbols(const unsigned char *BufPtr, unsigned Length,
249 const std::string& ModuleID,
250 std::vector<std::string>& symbols,
251 std::string* ErrMsg) {
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000252 // Get the module provider
Chris Lattnerc1d56242007-05-06 09:28:33 +0000253 MemoryBuffer *Buffer =MemoryBuffer::getNewMemBuffer(Length, ModuleID.c_str());
254 memcpy((char*)Buffer->getBufferStart(), BufPtr, Length);
255
256 ModuleProvider *MP = getBitcodeModuleProvider(Buffer, ErrMsg);
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000257 if (!MP)
258 return 0;
259
260 // Get the module from the provider
261 Module* M = MP->materializeModule();
262 if (M == 0) {
263 delete MP;
264 return 0;
265 }
266
267 // Get the symbols
268 getSymbols(M, symbols);
269
270 // Done with the module. Note that ModuleProvider will delete the
271 // Module when it is deleted. Also note that its the caller's responsibility
272 // to delete the ModuleProvider.
273 return MP;
274}