blob: 20d9deec99ca481cde271e0c2dc9bef0e65138bd [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"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000019#include "llvm/Support/Process.h"
Michael J. Spencer333fb042010-12-09 17:36:48 +000020#include "llvm/Support/system_error.h"
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000021#include <memory>
22#include <cstring>
Reid Spencer362cbf02004-11-06 08:51:45 +000023using namespace llvm;
24
Reid Spencercf6afc62004-11-14 21:56:59 +000025// getMemberSize - compute the actual physical size of the file member as seen
26// on disk. This isn't the size of member's payload. Use getSize() for that.
27unsigned
28ArchiveMember::getMemberSize() const {
29 // Basically its the file size plus the header size
30 unsigned result = info.fileSize + sizeof(ArchiveMemberHeader);
31
32 // If it has a long filename, include the name length
33 if (hasLongFilename())
Chris Lattner74382b72009-08-23 22:45:37 +000034 result += path.str().length() + 1;
Reid Spencercf6afc62004-11-14 21:56:59 +000035
36 // If its now odd lengthed, include the padding byte
Misha Brukman2b37d7c2005-04-21 21:13:18 +000037 if (result % 2 != 0 )
Reid Spencercf6afc62004-11-14 21:56:59 +000038 result++;
39
40 return result;
Reid Spencer362cbf02004-11-06 08:51:45 +000041}
42
Reid Spencercf6afc62004-11-14 21:56:59 +000043// This default constructor is only use by the ilist when it creates its
44// sentry node. We give it specific static values to make it stand out a bit.
Misha Brukman2b37d7c2005-04-21 21:13:18 +000045ArchiveMember::ArchiveMember()
Dan Gohmanfed90b62008-07-28 21:51:04 +000046 : parent(0), path("--invalid--"), flags(0), data(0)
Reid Spencercf6afc62004-11-14 21:56:59 +000047{
Reid Spencer8e827e82005-04-21 17:49:57 +000048 info.user = sys::Process::GetCurrentUserId();
Misha Brukman2b37d7c2005-04-21 21:13:18 +000049 info.group = sys::Process::GetCurrentGroupId();
50 info.mode = 0777;
51 info.fileSize = 0;
Reid Spencercf6afc62004-11-14 21:56:59 +000052 info.modTime = sys::TimeValue::now();
53}
54
55// This is the constructor that the Archive class uses when it is building or
56// reading an archive. It just defaults a few things and ensures the parent is
Misha Brukman2b37d7c2005-04-21 21:13:18 +000057// set for the iplist. The Archive class fills in the ArchiveMember's data.
58// This is required because correctly setting the data may depend on other
Reid Spencercf6afc62004-11-14 21:56:59 +000059// things in the Archive.
60ArchiveMember::ArchiveMember(Archive* PAR)
Dan Gohmanfed90b62008-07-28 21:51:04 +000061 : parent(PAR), path(), flags(0), data(0)
Reid Spencercf6afc62004-11-14 21:56:59 +000062{
63}
64
Misha Brukman2b37d7c2005-04-21 21:13:18 +000065// This method allows an ArchiveMember to be replaced with the data for a
Reid Spencercf6afc62004-11-14 21:56:59 +000066// different file, presumably as an update to the member. It also makes sure
67// the flags are reset correctly.
Reid Spencer0ff2d312006-08-24 23:45:08 +000068bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
Reid Spencercd5561a2006-12-15 19:44:51 +000069 if (!newFile.exists()) {
70 if (ErrMsg)
71 *ErrMsg = "Can not replace an archive member with a non-existent file";
72 return true;
73 }
74
Reid Spencercf6afc62004-11-14 21:56:59 +000075 data = 0;
76 path = newFile;
77
Reid Spencer9a29db42004-11-20 07:29:40 +000078 // SVR4 symbol tables have an empty name
Chris Lattner74382b72009-08-23 22:45:37 +000079 if (path.str() == ARFILE_SVR4_SYMTAB_NAME)
Reid Spencer9a29db42004-11-20 07:29:40 +000080 flags |= SVR4SymbolTableFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +000081 else
Reid Spencer9a29db42004-11-20 07:29:40 +000082 flags &= ~SVR4SymbolTableFlag;
83
84 // BSD4.4 symbol tables have a special name
Chris Lattner74382b72009-08-23 22:45:37 +000085 if (path.str() == ARFILE_BSD4_SYMTAB_NAME)
Reid Spencer9a29db42004-11-20 07:29:40 +000086 flags |= BSD4SymbolTableFlag;
87 else
88 flags &= ~BSD4SymbolTableFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +000089
90 // LLVM symbol tables have a very specific name
Chris Lattner74382b72009-08-23 22:45:37 +000091 if (path.str() == ARFILE_LLVM_SYMTAB_NAME)
Reid Spencercf6afc62004-11-14 21:56:59 +000092 flags |= LLVMSymbolTableFlag;
93 else
94 flags &= ~LLVMSymbolTableFlag;
95
96 // String table name
Chris Lattner74382b72009-08-23 22:45:37 +000097 if (path.str() == ARFILE_STRTAB_NAME)
Reid Spencercf6afc62004-11-14 21:56:59 +000098 flags |= StringTableFlag;
99 else
100 flags &= ~StringTableFlag;
101
102 // If it has a slash then it has a path
Chris Lattner74382b72009-08-23 22:45:37 +0000103 bool hasSlash = path.str().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000104 if (hasSlash)
105 flags |= HasPathFlag;
106 else
107 flags &= ~HasPathFlag;
108
109 // If it has a slash or its over 15 chars then its a long filename format
Chris Lattner74382b72009-08-23 22:45:37 +0000110 if (hasSlash || path.str().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000111 flags |= HasLongFilenameFlag;
112 else
113 flags &= ~HasLongFilenameFlag;
114
115 // Get the signature and status info
Reid Spencercf6afc62004-11-14 21:56:59 +0000116 const char* signature = (const char*) data;
Chris Lattner252ad032006-07-28 22:03:44 +0000117 std::string magic;
Reid Spencercf6afc62004-11-14 21:56:59 +0000118 if (!signature) {
119 path.getMagicNumber(magic,4);
120 signature = magic.c_str();
Chris Lattner252ad032006-07-28 22:03:44 +0000121 std::string err;
Reid Spencera021d5d2007-04-07 19:51:45 +0000122 const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
Reid Spencer8475ec02007-03-29 19:05:44 +0000123 if (FSinfo)
124 info = *FSinfo;
125 else
Reid Spencer0ff2d312006-08-24 23:45:08 +0000126 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000127 }
128
Daniel Dunbar4892cb72009-07-13 05:29:34 +0000129 // Determine what kind of file it is.
Reid Spencercf6afc62004-11-14 21:56:59 +0000130 switch (sys::IdentifyFileType(signature,4)) {
Daniel Dunbar4892cb72009-07-13 05:29:34 +0000131 case sys::Bitcode_FileType:
132 flags |= BitcodeFlag;
133 break;
Reid Spencercf6afc62004-11-14 21:56:59 +0000134 default:
Gabor Greife75ca3d2007-07-06 13:38:17 +0000135 flags &= ~BitcodeFlag;
Reid Spencercf6afc62004-11-14 21:56:59 +0000136 break;
137 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000138 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000139}
140
141// Archive constructor - this is the only constructor that gets used for the
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000142// Archive class. Everything else (default,copy) is deprecated. This just
Reid Spencercf6afc62004-11-14 21:56:59 +0000143// initializes and maps the file into memory, if requested.
Owen Anderson4434ed42009-07-01 23:13:44 +0000144Archive::Archive(const sys::Path& filename, LLVMContext& C)
Reid Spencer1f465802004-11-16 06:47:07 +0000145 : archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(),
Owen Anderson8b477ed2009-07-01 16:58:40 +0000146 symTabSize(0), firstFileOffset(0), modules(), foreignST(0), Context(C) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000147}
148
149bool
Chris Lattner7f6b4472008-04-01 04:26:46 +0000150Archive::mapToMemory(std::string* ErrMsg) {
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000151 OwningPtr<MemoryBuffer> File;
152 if (error_code ec = MemoryBuffer::getFile(archPath.c_str(), File)) {
Michael J. Spencer333fb042010-12-09 17:36:48 +0000153 if (ErrMsg)
154 *ErrMsg = ec.message();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000155 return true;
Michael J. Spencer333fb042010-12-09 17:36:48 +0000156 }
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000157 mapfile = File.take();
Chris Lattner7f6b4472008-04-01 04:26:46 +0000158 base = mapfile->getBufferStart();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000159 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000160}
161
Reid Spencer6ff72402005-11-30 05:21:10 +0000162void Archive::cleanUpMemory() {
Reid Spencercf6afc62004-11-14 21:56:59 +0000163 // Shutdown the file mapping
Chris Lattner7f6b4472008-04-01 04:26:46 +0000164 delete mapfile;
165 mapfile = 0;
166 base = 0;
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
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000180 // Delete any Modules and ArchiveMember's we've allocated as a result of
181 // symbol table searches.
Reid Spencercf6afc62004-11-14 21:56:59 +0000182 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)
Rafael Espindolabb46f522009-01-15 20:18:42 +0000198 if (!GI->isDeclaration() && !GI->hasLocalLinkage())
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000199 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)
Rafael Espindolabb46f522009-01-15 20:18:42 +0000204 if (!FI->isDeclaration() && !FI->hasLocalLinkage())
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000205 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,
Owen Anderson4434ed42009-07-01 23:13:44 +0000218 LLVMContext& Context,
Gabor Greifa99be512007-07-05 17:07:56 +0000219 std::vector<std::string>& symbols,
220 std::string* ErrMsg) {
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000221 OwningPtr<MemoryBuffer> Buffer;
222 if (error_code ec = MemoryBuffer::getFileOrSTDIN(fName.c_str(), Buffer)) {
Michael J. Spencer333fb042010-12-09 17:36:48 +0000223 if (ErrMsg) *ErrMsg = "Could not open file '" + fName.str() + "'" + ": "
224 + ec.message();
Chris Lattnerc1d56242007-05-06 09:28:33 +0000225 return true;
226 }
227
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000228 Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
229 if (!M)
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000230 return true;
231
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000232 // Get the symbols
233 getSymbols(M, symbols);
234
235 // Done with the module.
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000236 delete M;
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000237 return true;
238}
239
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000240Module*
Benjamin Kramer9d44e702010-04-19 16:15:31 +0000241llvm::GetBitcodeSymbols(const char *BufPtr, unsigned Length,
Gabor Greifa99be512007-07-05 17:07:56 +0000242 const std::string& ModuleID,
Owen Anderson4434ed42009-07-01 23:13:44 +0000243 LLVMContext& Context,
Gabor Greifa99be512007-07-05 17:07:56 +0000244 std::vector<std::string>& symbols,
245 std::string* ErrMsg) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000246 // Get the module.
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000247 OwningPtr<MemoryBuffer> Buffer(
Benjamin Kramer9d44e702010-04-19 16:15:31 +0000248 MemoryBuffer::getMemBufferCopy(StringRef(BufPtr, Length),ModuleID.c_str()));
Chris Lattnerc1d56242007-05-06 09:28:33 +0000249
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000250 Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
251 if (!M)
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000252 return 0;
253
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000254 // Get the symbols
255 getSymbols(M, symbols);
256
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000257 // Done with the module. Note that it's the caller's responsibility to delete
258 // the Module.
259 return M;
Chris Lattnerf36c7b82007-02-07 23:53:17 +0000260}