blob: 8aa5d5bd77968ce3ee3271c7aeb58cc0248f7060 [file] [log] [blame]
Chris Lattner5b183222007-05-06 19:49:28 +00001//===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner5b183222007-05-06 19:49:28 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the implementation of the Archive and ArchiveMember
11// classes that is common to both reading and writing archives..
12//
13//===----------------------------------------------------------------------===//
14
15#include "ArchiveInternals.h"
16#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattner5b183222007-05-06 19:49:28 +000017#include "llvm/Module.h"
Michael J. Spencer58df2e02011-01-10 02:34:23 +000018#include "llvm/Support/FileSystem.h"
Chris Lattner5b183222007-05-06 19:49:28 +000019#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000020#include "llvm/Support/Process.h"
Michael J. Spencer7b6fef82010-12-09 17:36:48 +000021#include "llvm/Support/system_error.h"
Anton Korobeynikov579f0712008-02-20 11:08:44 +000022#include <memory>
23#include <cstring>
Chris Lattner5b183222007-05-06 19:49:28 +000024using namespace llvm;
25
26// 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())
Chris Lattnerc521f542009-08-23 22:45:37 +000035 result += path.str().length() + 1;
Chris Lattner5b183222007-05-06 19:49:28 +000036
37 // If its now odd lengthed, include the padding byte
38 if (result % 2 != 0 )
39 result++;
40
41 return result;
42}
43
44// 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.
46ArchiveMember::ArchiveMember()
Dan Gohman804c95d2008-07-28 21:51:04 +000047 : parent(0), path("--invalid--"), flags(0), data(0)
Chris Lattner5b183222007-05-06 19:49:28 +000048{
49 info.user = sys::Process::GetCurrentUserId();
50 info.group = sys::Process::GetCurrentGroupId();
51 info.mode = 0777;
52 info.fileSize = 0;
53 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
58// 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
60// things in the Archive.
61ArchiveMember::ArchiveMember(Archive* PAR)
Dan Gohman804c95d2008-07-28 21:51:04 +000062 : parent(PAR), path(), flags(0), data(0)
Chris Lattner5b183222007-05-06 19:49:28 +000063{
64}
65
66// This method allows an ArchiveMember to be replaced with the data for a
67// different file, presumably as an update to the member. It also makes sure
68// the flags are reset correctly.
69bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
Michael J. Spencer58df2e02011-01-10 02:34:23 +000070 bool Exists;
71 if (sys::fs::exists(newFile.str(), Exists) || !Exists) {
72 if (ErrMsg)
Chris Lattner5b183222007-05-06 19:49:28 +000073 *ErrMsg = "Can not replace an archive member with a non-existent file";
74 return true;
75 }
76
77 data = 0;
78 path = newFile;
79
80 // SVR4 symbol tables have an empty name
Chris Lattnerc521f542009-08-23 22:45:37 +000081 if (path.str() == ARFILE_SVR4_SYMTAB_NAME)
Chris Lattner5b183222007-05-06 19:49:28 +000082 flags |= SVR4SymbolTableFlag;
83 else
84 flags &= ~SVR4SymbolTableFlag;
85
86 // BSD4.4 symbol tables have a special name
Chris Lattnerc521f542009-08-23 22:45:37 +000087 if (path.str() == ARFILE_BSD4_SYMTAB_NAME)
Chris Lattner5b183222007-05-06 19:49:28 +000088 flags |= BSD4SymbolTableFlag;
89 else
90 flags &= ~BSD4SymbolTableFlag;
91
92 // LLVM symbol tables have a very specific name
Chris Lattnerc521f542009-08-23 22:45:37 +000093 if (path.str() == ARFILE_LLVM_SYMTAB_NAME)
Chris Lattner5b183222007-05-06 19:49:28 +000094 flags |= LLVMSymbolTableFlag;
95 else
96 flags &= ~LLVMSymbolTableFlag;
97
98 // String table name
Chris Lattnerc521f542009-08-23 22:45:37 +000099 if (path.str() == ARFILE_STRTAB_NAME)
Chris Lattner5b183222007-05-06 19:49:28 +0000100 flags |= StringTableFlag;
101 else
102 flags &= ~StringTableFlag;
103
104 // If it has a slash then it has a path
Chris Lattnerc521f542009-08-23 22:45:37 +0000105 bool hasSlash = path.str().find('/') != std::string::npos;
Chris Lattner5b183222007-05-06 19:49:28 +0000106 if (hasSlash)
107 flags |= HasPathFlag;
108 else
109 flags &= ~HasPathFlag;
110
111 // If it has a slash or its over 15 chars then its a long filename format
Chris Lattnerc521f542009-08-23 22:45:37 +0000112 if (hasSlash || path.str().length() > 15)
Chris Lattner5b183222007-05-06 19:49:28 +0000113 flags |= HasLongFilenameFlag;
114 else
115 flags &= ~HasLongFilenameFlag;
116
117 // Get the signature and status info
118 const char* signature = (const char*) data;
119 std::string magic;
120 if (!signature) {
121 path.getMagicNumber(magic,4);
122 signature = magic.c_str();
123 std::string err;
124 const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
125 if (FSinfo)
126 info = *FSinfo;
127 else
128 return true;
129 }
130
Daniel Dunbar78be93a2009-07-13 05:29:34 +0000131 // Determine what kind of file it is.
Chris Lattner5b183222007-05-06 19:49:28 +0000132 switch (sys::IdentifyFileType(signature,4)) {
Daniel Dunbar78be93a2009-07-13 05:29:34 +0000133 case sys::Bitcode_FileType:
134 flags |= BitcodeFlag;
135 break;
Chris Lattner5b183222007-05-06 19:49:28 +0000136 default:
Gabor Greif3d3fc322007-07-06 13:38:17 +0000137 flags &= ~BitcodeFlag;
Chris Lattner5b183222007-05-06 19:49:28 +0000138 break;
139 }
140 return false;
141}
142
143// Archive constructor - this is the only constructor that gets used for the
144// Archive class. Everything else (default,copy) is deprecated. This just
145// initializes and maps the file into memory, if requested.
Owen Anderson2a154432009-07-01 23:13:44 +0000146Archive::Archive(const sys::Path& filename, LLVMContext& C)
Chris Lattner5b183222007-05-06 19:49:28 +0000147 : archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(),
Owen Anderson6773d382009-07-01 16:58:40 +0000148 symTabSize(0), firstFileOffset(0), modules(), foreignST(0), Context(C) {
Chris Lattner5b183222007-05-06 19:49:28 +0000149}
150
151bool
Chris Lattnerd4310a22008-04-01 04:26:46 +0000152Archive::mapToMemory(std::string* ErrMsg) {
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000153 OwningPtr<MemoryBuffer> File;
154 if (error_code ec = MemoryBuffer::getFile(archPath.c_str(), File)) {
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000155 if (ErrMsg)
156 *ErrMsg = ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000157 return true;
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000158 }
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000159 mapfile = File.take();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000160 base = mapfile->getBufferStart();
Chris Lattner5b183222007-05-06 19:49:28 +0000161 return false;
162}
163
164void Archive::cleanUpMemory() {
165 // Shutdown the file mapping
Chris Lattnerd4310a22008-04-01 04:26:46 +0000166 delete mapfile;
167 mapfile = 0;
168 base = 0;
Chris Lattner5b183222007-05-06 19:49:28 +0000169
170 // Forget the entire symbol table
171 symTab.clear();
172 symTabSize = 0;
173
174 firstFileOffset = 0;
175
176 // Free the foreign symbol table member
177 if (foreignST) {
178 delete foreignST;
179 foreignST = 0;
180 }
181
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000182 // Delete any Modules and ArchiveMember's we've allocated as a result of
183 // symbol table searches.
Chris Lattner5b183222007-05-06 19:49:28 +0000184 for (ModuleMap::iterator I=modules.begin(), E=modules.end(); I != E; ++I ) {
185 delete I->second.first;
186 delete I->second.second;
187 }
188}
189
190// Archive destructor - just clean up memory
191Archive::~Archive() {
192 cleanUpMemory();
193}
194
195
196
197static void getSymbols(Module*M, std::vector<std::string>& symbols) {
198 // Loop over global variables
199 for (Module::global_iterator GI = M->global_begin(), GE=M->global_end(); GI != GE; ++GI)
Rafael Espindola6de96a12009-01-15 20:18:42 +0000200 if (!GI->isDeclaration() && !GI->hasLocalLinkage())
Chris Lattner5b183222007-05-06 19:49:28 +0000201 if (!GI->getName().empty())
202 symbols.push_back(GI->getName());
203
Anton Korobeynikovd72ade32008-03-04 20:15:35 +0000204 // Loop over functions
Chris Lattner5b183222007-05-06 19:49:28 +0000205 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
Rafael Espindola6de96a12009-01-15 20:18:42 +0000206 if (!FI->isDeclaration() && !FI->hasLocalLinkage())
Chris Lattner5b183222007-05-06 19:49:28 +0000207 if (!FI->getName().empty())
208 symbols.push_back(FI->getName());
Anton Korobeynikovd72ade32008-03-04 20:15:35 +0000209
210 // Loop over aliases
211 for (Module::alias_iterator AI = M->alias_begin(), AE = M->alias_end();
212 AI != AE; ++AI) {
Anton Korobeynikov2591afc2008-03-11 00:24:53 +0000213 if (AI->hasName())
214 symbols.push_back(AI->getName());
Anton Korobeynikovd72ade32008-03-04 20:15:35 +0000215 }
Chris Lattner5b183222007-05-06 19:49:28 +0000216}
217
Gabor Greife16561c2007-07-05 17:07:56 +0000218// Get just the externally visible defined symbols from the bitcode
219bool llvm::GetBitcodeSymbols(const sys::Path& fName,
Owen Anderson2a154432009-07-01 23:13:44 +0000220 LLVMContext& Context,
Gabor Greife16561c2007-07-05 17:07:56 +0000221 std::vector<std::string>& symbols,
222 std::string* ErrMsg) {
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000223 OwningPtr<MemoryBuffer> Buffer;
224 if (error_code ec = MemoryBuffer::getFileOrSTDIN(fName.c_str(), Buffer)) {
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000225 if (ErrMsg) *ErrMsg = "Could not open file '" + fName.str() + "'" + ": "
226 + ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000227 return true;
228 }
229
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000230 Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
231 if (!M)
Chris Lattner5b183222007-05-06 19:49:28 +0000232 return true;
233
Chris Lattner5b183222007-05-06 19:49:28 +0000234 // Get the symbols
235 getSymbols(M, symbols);
236
237 // Done with the module.
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000238 delete M;
Chris Lattner5b183222007-05-06 19:49:28 +0000239 return true;
240}
241
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000242Module*
Benjamin Kramer3576b742010-04-19 16:15:31 +0000243llvm::GetBitcodeSymbols(const char *BufPtr, unsigned Length,
Gabor Greife16561c2007-07-05 17:07:56 +0000244 const std::string& ModuleID,
Owen Anderson2a154432009-07-01 23:13:44 +0000245 LLVMContext& Context,
Gabor Greife16561c2007-07-05 17:07:56 +0000246 std::vector<std::string>& symbols,
247 std::string* ErrMsg) {
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000248 // Get the module.
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000249 OwningPtr<MemoryBuffer> Buffer(
Benjamin Kramer3576b742010-04-19 16:15:31 +0000250 MemoryBuffer::getMemBufferCopy(StringRef(BufPtr, Length),ModuleID.c_str()));
Chris Lattner5b183222007-05-06 19:49:28 +0000251
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000252 Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
253 if (!M)
Chris Lattner5b183222007-05-06 19:49:28 +0000254 return 0;
255
Chris Lattner5b183222007-05-06 19:49:28 +0000256 // Get the symbols
257 getSymbols(M, symbols);
258
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000259 // Done with the module. Note that it's the caller's responsibility to delete
260 // the Module.
261 return M;
Chris Lattner5b183222007-05-06 19:49:28 +0000262}