blob: f4f8a4349ef819cd6b574f369a618b45efdf5bbc [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"
Chris Lattnerf36c7b82007-02-07 23:53:17 +000017#include "llvm/Module.h"
Chris Lattnerc1d56242007-05-06 09:28:33 +000018#include "llvm/Support/MemoryBuffer.h"
Reid Spencer8e827e82005-04-21 17:49:57 +000019#include "llvm/System/Process.h"
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000020#include <memory>
21#include <cstring>
Reid Spencer362cbf02004-11-06 08:51:45 +000022using namespace llvm;
23
Reid Spencercf6afc62004-11-14 21:56:59 +000024// getMemberSize - compute the actual physical size of the file member as seen
25// on disk. This isn't the size of member's payload. Use getSize() for that.
26unsigned
27ArchiveMember::getMemberSize() const {
28 // Basically its the file size plus the header size
29 unsigned result = info.fileSize + sizeof(ArchiveMemberHeader);
30
31 // If it has a long filename, include the name length
32 if (hasLongFilename())
Chris Lattner74382b72009-08-23 22:45:37 +000033 result += path.str().length() + 1;
Reid Spencercf6afc62004-11-14 21:56:59 +000034
35 // If its now odd lengthed, include the padding byte
Misha Brukman2b37d7c2005-04-21 21:13:18 +000036 if (result % 2 != 0 )
Reid Spencercf6afc62004-11-14 21:56:59 +000037 result++;
38
39 return result;
Reid Spencer362cbf02004-11-06 08:51:45 +000040}
41
Reid Spencercf6afc62004-11-14 21:56:59 +000042// This default constructor is only use by the ilist when it creates its
43// sentry node. We give it specific static values to make it stand out a bit.
Misha Brukman2b37d7c2005-04-21 21:13:18 +000044ArchiveMember::ArchiveMember()
Dan Gohmanfed90b62008-07-28 21:51:04 +000045 : parent(0), path("--invalid--"), flags(0), data(0)
Reid Spencercf6afc62004-11-14 21:56:59 +000046{
Reid Spencer8e827e82005-04-21 17:49:57 +000047 info.user = sys::Process::GetCurrentUserId();
Misha Brukman2b37d7c2005-04-21 21:13:18 +000048 info.group = sys::Process::GetCurrentGroupId();
49 info.mode = 0777;
50 info.fileSize = 0;
Reid Spencercf6afc62004-11-14 21:56:59 +000051 info.modTime = sys::TimeValue::now();
52}
53
54// This is the constructor that the Archive class uses when it is building or
55// reading an archive. It just defaults a few things and ensures the parent is
Misha Brukman2b37d7c2005-04-21 21:13:18 +000056// set for the iplist. The Archive class fills in the ArchiveMember's data.
57// This is required because correctly setting the data may depend on other
Reid Spencercf6afc62004-11-14 21:56:59 +000058// things in the Archive.
59ArchiveMember::ArchiveMember(Archive* PAR)
Dan Gohmanfed90b62008-07-28 21:51:04 +000060 : parent(PAR), path(), flags(0), data(0)
Reid Spencercf6afc62004-11-14 21:56:59 +000061{
62}
63
Misha Brukman2b37d7c2005-04-21 21:13:18 +000064// This method allows an ArchiveMember to be replaced with the data for a
Reid Spencercf6afc62004-11-14 21:56:59 +000065// different file, presumably as an update to the member. It also makes sure
66// the flags are reset correctly.
Reid Spencer0ff2d312006-08-24 23:45:08 +000067bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
Reid Spencercd5561a2006-12-15 19:44:51 +000068 if (!newFile.exists()) {
69 if (ErrMsg)
70 *ErrMsg = "Can not replace an archive member with a non-existent file";
71 return true;
72 }
73
Reid Spencercf6afc62004-11-14 21:56:59 +000074 data = 0;
75 path = newFile;
76
Reid Spencer9a29db42004-11-20 07:29:40 +000077 // SVR4 symbol tables have an empty name
Chris Lattner74382b72009-08-23 22:45:37 +000078 if (path.str() == ARFILE_SVR4_SYMTAB_NAME)
Reid Spencer9a29db42004-11-20 07:29:40 +000079 flags |= SVR4SymbolTableFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +000080 else
Reid Spencer9a29db42004-11-20 07:29:40 +000081 flags &= ~SVR4SymbolTableFlag;
82
83 // BSD4.4 symbol tables have a special name
Chris Lattner74382b72009-08-23 22:45:37 +000084 if (path.str() == ARFILE_BSD4_SYMTAB_NAME)
Reid Spencer9a29db42004-11-20 07:29:40 +000085 flags |= BSD4SymbolTableFlag;
86 else
87 flags &= ~BSD4SymbolTableFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +000088
89 // LLVM symbol tables have a very specific name
Chris Lattner74382b72009-08-23 22:45:37 +000090 if (path.str() == ARFILE_LLVM_SYMTAB_NAME)
Reid Spencercf6afc62004-11-14 21:56:59 +000091 flags |= LLVMSymbolTableFlag;
92 else
93 flags &= ~LLVMSymbolTableFlag;
94
95 // String table name
Chris Lattner74382b72009-08-23 22:45:37 +000096 if (path.str() == ARFILE_STRTAB_NAME)
Reid Spencercf6afc62004-11-14 21:56:59 +000097 flags |= StringTableFlag;
98 else
99 flags &= ~StringTableFlag;
100
101 // If it has a slash then it has a path
Chris Lattner74382b72009-08-23 22:45:37 +0000102 bool hasSlash = path.str().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000103 if (hasSlash)
104 flags |= HasPathFlag;
105 else
106 flags &= ~HasPathFlag;
107
108 // If it has a slash or its over 15 chars then its a long filename format
Chris Lattner74382b72009-08-23 22:45:37 +0000109 if (hasSlash || path.str().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000110 flags |= HasLongFilenameFlag;
111 else
112 flags &= ~HasLongFilenameFlag;
113
114 // Get the signature and status info
Reid Spencercf6afc62004-11-14 21:56:59 +0000115 const char* signature = (const char*) data;
Chris Lattner252ad032006-07-28 22:03:44 +0000116 std::string magic;
Reid Spencercf6afc62004-11-14 21:56:59 +0000117 if (!signature) {
118 path.getMagicNumber(magic,4);
119 signature = magic.c_str();
Chris Lattner252ad032006-07-28 22:03:44 +0000120 std::string err;
Reid Spencera021d5d2007-04-07 19:51:45 +0000121 const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
Reid Spencer8475ec02007-03-29 19:05:44 +0000122 if (FSinfo)
123 info = *FSinfo;
124 else
Reid Spencer0ff2d312006-08-24 23:45:08 +0000125 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000126 }
127
Daniel Dunbar4892cb72009-07-13 05:29:34 +0000128 // Determine what kind of file it is.
Reid Spencercf6afc62004-11-14 21:56:59 +0000129 switch (sys::IdentifyFileType(signature,4)) {
Daniel Dunbar4892cb72009-07-13 05:29:34 +0000130 case sys::Bitcode_FileType:
131 flags |= BitcodeFlag;
132 break;
Reid Spencercf6afc62004-11-14 21:56:59 +0000133 default:
Gabor Greife75ca3d2007-07-06 13:38:17 +0000134 flags &= ~BitcodeFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +0000135 break;
136 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000137 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000138}
139
140// Archive constructor - this is the only constructor that gets used for the
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000141// Archive class. Everything else (default,copy) is deprecated. This just
Reid Spencercf6afc62004-11-14 21:56:59 +0000142// initializes and maps the file into memory, if requested.
Owen Anderson4434ed42009-07-01 23:13:44 +0000143Archive::Archive(const sys::Path& filename, LLVMContext& C)
Reid Spencer1f465802004-11-16 06:47:07 +0000144 : archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(),
Owen Anderson8b477ed2009-07-01 16:58:40 +0000145 symTabSize(0), firstFileOffset(0), modules(), foreignST(0), Context(C) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000146}
147
148bool
Chris Lattner7f6b4472008-04-01 04:26:46 +0000149Archive::mapToMemory(std::string* ErrMsg) {
Chris Lattner038112a2008-04-01 18:04:03 +0000150 mapfile = MemoryBuffer::getFile(archPath.c_str(), ErrMsg);
Chris Lattner7f6b4472008-04-01 04:26:46 +0000151 if (mapfile == 0)
Reid Spencer0ff2d312006-08-24 23:45:08 +0000152 return true;
Chris Lattner7f6b4472008-04-01 04:26:46 +0000153 base = mapfile->getBufferStart();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000154 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000155}
156
Reid Spencer6ff72402005-11-30 05:21:10 +0000157void Archive::cleanUpMemory() {
Reid Spencercf6afc62004-11-14 21:56:59 +0000158 // Shutdown the file mapping
Chris Lattner7f6b4472008-04-01 04:26:46 +0000159 delete mapfile;
160 mapfile = 0;
161 base = 0;
Reid Spencer6ff72402005-11-30 05:21:10 +0000162
163 // Forget the entire symbol table
164 symTab.clear();
165 symTabSize = 0;
166
167 firstFileOffset = 0;
168
169 // Free the foreign symbol table member
170 if (foreignST) {
171 delete foreignST;
172 foreignST = 0;
173 }
174
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000175 // Delete any Modules and ArchiveMember's we've allocated as a result of
176 // symbol table searches.
Reid Spencercf6afc62004-11-14 21:56:59 +0000177 for (ModuleMap::iterator I=modules.begin(), E=modules.end(); I != E; ++I ) {
178 delete I->second.first;
179 delete I->second.second;
180 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000181}
182
Reid Spencer6ff72402005-11-30 05:21:10 +0000183// Archive destructor - just clean up memory
184Archive::~Archive() {
185 cleanUpMemory();
186}
187
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000188
189
190static void getSymbols(Module*M, std::vector<std::string>& symbols) {
191 // Loop over global variables
192 for (Module::global_iterator GI = M->global_begin(), GE=M->global_end(); GI != GE; ++GI)
Rafael Espindolabb46f522009-01-15 20:18:42 +0000193 if (!GI->isDeclaration() && !GI->hasLocalLinkage())
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000194 if (!GI->getName().empty())
195 symbols.push_back(GI->getName());
196
Anton Korobeynikovd58ceb22008-03-04 20:15:35 +0000197 // Loop over functions
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000198 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
Rafael Espindolabb46f522009-01-15 20:18:42 +0000199 if (!FI->isDeclaration() && !FI->hasLocalLinkage())
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000200 if (!FI->getName().empty())
201 symbols.push_back(FI->getName());
Anton Korobeynikovd58ceb22008-03-04 20:15:35 +0000202
203 // Loop over aliases
204 for (Module::alias_iterator AI = M->alias_begin(), AE = M->alias_end();
205 AI != AE; ++AI) {
Anton Korobeynikov7fcb6b62008-03-11 00:24:53 +0000206 if (AI->hasName())
207 symbols.push_back(AI->getName());
Anton Korobeynikovd58ceb22008-03-04 20:15:35 +0000208 }
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000209}
210
Gabor Greifa99be512007-07-05 17:07:56 +0000211// Get just the externally visible defined symbols from the bitcode
212bool llvm::GetBitcodeSymbols(const sys::Path& fName,
Owen Anderson4434ed42009-07-01 23:13:44 +0000213 LLVMContext& Context,
Gabor Greifa99be512007-07-05 17:07:56 +0000214 std::vector<std::string>& symbols,
215 std::string* ErrMsg) {
Chris Lattnerc1d56242007-05-06 09:28:33 +0000216 std::auto_ptr<MemoryBuffer> Buffer(
Chris Lattner038112a2008-04-01 18:04:03 +0000217 MemoryBuffer::getFileOrSTDIN(fName.c_str()));
Chris Lattnerc1d56242007-05-06 09:28:33 +0000218 if (!Buffer.get()) {
Chris Lattner74382b72009-08-23 22:45:37 +0000219 if (ErrMsg) *ErrMsg = "Could not open file '" + fName.str() + "'";
Chris Lattnerc1d56242007-05-06 09:28:33 +0000220 return true;
221 }
222
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000223 Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
224 if (!M)
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000225 return true;
226
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000227 // Get the symbols
228 getSymbols(M, symbols);
229
230 // Done with the module.
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000231 delete M;
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000232 return true;
233}
234
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000235Module*
Gabor Greifa99be512007-07-05 17:07:56 +0000236llvm::GetBitcodeSymbols(const unsigned char *BufPtr, unsigned Length,
237 const std::string& ModuleID,
Owen Anderson4434ed42009-07-01 23:13:44 +0000238 LLVMContext& Context,
Gabor Greifa99be512007-07-05 17:07:56 +0000239 std::vector<std::string>& symbols,
240 std::string* ErrMsg) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000241 // Get the module.
242 std::auto_ptr<MemoryBuffer> Buffer(
243 MemoryBuffer::getNewMemBuffer(Length, ModuleID.c_str()));
Chris Lattnerc1d56242007-05-06 09:28:33 +0000244 memcpy((char*)Buffer->getBufferStart(), BufPtr, Length);
245
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000246 Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
247 if (!M)
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000248 return 0;
249
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000250 // Get the symbols
251 getSymbols(M, symbols);
252
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000253 // Done with the module. Note that it's the caller's responsibility to delete
254 // the Module.
255 return M;
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000256}