2007-05-06 21:49:28 +02:00
|
|
|
//===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-05-06 21:49:28 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the implementation of the Archive and ArchiveMember
|
|
|
|
// classes that is common to both reading and writing archives..
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ArchiveInternals.h"
|
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
|
|
|
#include "llvm/Module.h"
|
2011-01-10 03:34:23 +01:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2007-05-06 21:49:28 +02:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/Process.h"
|
2010-12-09 18:36:48 +01:00
|
|
|
#include "llvm/Support/system_error.h"
|
2008-02-20 12:08:44 +01:00
|
|
|
#include <memory>
|
|
|
|
#include <cstring>
|
2007-05-06 21:49:28 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
// getMemberSize - compute the actual physical size of the file member as seen
|
|
|
|
// on disk. This isn't the size of member's payload. Use getSize() for that.
|
|
|
|
unsigned
|
|
|
|
ArchiveMember::getMemberSize() const {
|
|
|
|
// Basically its the file size plus the header size
|
|
|
|
unsigned result = info.fileSize + sizeof(ArchiveMemberHeader);
|
|
|
|
|
|
|
|
// If it has a long filename, include the name length
|
|
|
|
if (hasLongFilename())
|
2009-08-24 00:45:37 +02:00
|
|
|
result += path.str().length() + 1;
|
2007-05-06 21:49:28 +02:00
|
|
|
|
|
|
|
// If its now odd lengthed, include the padding byte
|
|
|
|
if (result % 2 != 0 )
|
|
|
|
result++;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This default constructor is only use by the ilist when it creates its
|
|
|
|
// sentry node. We give it specific static values to make it stand out a bit.
|
|
|
|
ArchiveMember::ArchiveMember()
|
2008-07-28 23:51:04 +02:00
|
|
|
: parent(0), path("--invalid--"), flags(0), data(0)
|
2007-05-06 21:49:28 +02:00
|
|
|
{
|
|
|
|
info.user = sys::Process::GetCurrentUserId();
|
|
|
|
info.group = sys::Process::GetCurrentGroupId();
|
|
|
|
info.mode = 0777;
|
|
|
|
info.fileSize = 0;
|
|
|
|
info.modTime = sys::TimeValue::now();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is the constructor that the Archive class uses when it is building or
|
|
|
|
// reading an archive. It just defaults a few things and ensures the parent is
|
|
|
|
// set for the iplist. The Archive class fills in the ArchiveMember's data.
|
|
|
|
// This is required because correctly setting the data may depend on other
|
|
|
|
// things in the Archive.
|
|
|
|
ArchiveMember::ArchiveMember(Archive* PAR)
|
2008-07-28 23:51:04 +02:00
|
|
|
: parent(PAR), path(), flags(0), data(0)
|
2007-05-06 21:49:28 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method allows an ArchiveMember to be replaced with the data for a
|
|
|
|
// different file, presumably as an update to the member. It also makes sure
|
|
|
|
// the flags are reset correctly.
|
|
|
|
bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
|
2011-01-10 03:34:23 +01:00
|
|
|
bool Exists;
|
|
|
|
if (sys::fs::exists(newFile.str(), Exists) || !Exists) {
|
|
|
|
if (ErrMsg)
|
2007-05-06 21:49:28 +02:00
|
|
|
*ErrMsg = "Can not replace an archive member with a non-existent file";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = 0;
|
|
|
|
path = newFile;
|
|
|
|
|
|
|
|
// SVR4 symbol tables have an empty name
|
2009-08-24 00:45:37 +02:00
|
|
|
if (path.str() == ARFILE_SVR4_SYMTAB_NAME)
|
2007-05-06 21:49:28 +02:00
|
|
|
flags |= SVR4SymbolTableFlag;
|
|
|
|
else
|
|
|
|
flags &= ~SVR4SymbolTableFlag;
|
|
|
|
|
|
|
|
// BSD4.4 symbol tables have a special name
|
2009-08-24 00:45:37 +02:00
|
|
|
if (path.str() == ARFILE_BSD4_SYMTAB_NAME)
|
2007-05-06 21:49:28 +02:00
|
|
|
flags |= BSD4SymbolTableFlag;
|
|
|
|
else
|
|
|
|
flags &= ~BSD4SymbolTableFlag;
|
|
|
|
|
|
|
|
// LLVM symbol tables have a very specific name
|
2009-08-24 00:45:37 +02:00
|
|
|
if (path.str() == ARFILE_LLVM_SYMTAB_NAME)
|
2007-05-06 21:49:28 +02:00
|
|
|
flags |= LLVMSymbolTableFlag;
|
|
|
|
else
|
|
|
|
flags &= ~LLVMSymbolTableFlag;
|
|
|
|
|
|
|
|
// String table name
|
2009-08-24 00:45:37 +02:00
|
|
|
if (path.str() == ARFILE_STRTAB_NAME)
|
2007-05-06 21:49:28 +02:00
|
|
|
flags |= StringTableFlag;
|
|
|
|
else
|
|
|
|
flags &= ~StringTableFlag;
|
|
|
|
|
|
|
|
// If it has a slash then it has a path
|
2009-08-24 00:45:37 +02:00
|
|
|
bool hasSlash = path.str().find('/') != std::string::npos;
|
2007-05-06 21:49:28 +02:00
|
|
|
if (hasSlash)
|
|
|
|
flags |= HasPathFlag;
|
|
|
|
else
|
|
|
|
flags &= ~HasPathFlag;
|
|
|
|
|
|
|
|
// If it has a slash or its over 15 chars then its a long filename format
|
2009-08-24 00:45:37 +02:00
|
|
|
if (hasSlash || path.str().length() > 15)
|
2007-05-06 21:49:28 +02:00
|
|
|
flags |= HasLongFilenameFlag;
|
|
|
|
else
|
|
|
|
flags &= ~HasLongFilenameFlag;
|
|
|
|
|
|
|
|
// Get the signature and status info
|
|
|
|
const char* signature = (const char*) data;
|
2011-01-16 22:13:51 +01:00
|
|
|
SmallString<4> magic;
|
2007-05-06 21:49:28 +02:00
|
|
|
if (!signature) {
|
2011-01-16 22:13:51 +01:00
|
|
|
sys::fs::get_magic(path.str(), magic.capacity(), magic);
|
2007-05-06 21:49:28 +02:00
|
|
|
signature = magic.c_str();
|
|
|
|
const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
|
|
|
|
if (FSinfo)
|
|
|
|
info = *FSinfo;
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-13 07:29:34 +02:00
|
|
|
// Determine what kind of file it is.
|
2007-05-06 21:49:28 +02:00
|
|
|
switch (sys::IdentifyFileType(signature,4)) {
|
2009-07-13 07:29:34 +02:00
|
|
|
case sys::Bitcode_FileType:
|
|
|
|
flags |= BitcodeFlag;
|
|
|
|
break;
|
2007-05-06 21:49:28 +02:00
|
|
|
default:
|
2007-07-06 15:38:17 +02:00
|
|
|
flags &= ~BitcodeFlag;
|
2007-05-06 21:49:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Archive constructor - this is the only constructor that gets used for the
|
|
|
|
// Archive class. Everything else (default,copy) is deprecated. This just
|
|
|
|
// initializes and maps the file into memory, if requested.
|
2009-07-02 01:13:44 +02:00
|
|
|
Archive::Archive(const sys::Path& filename, LLVMContext& C)
|
2007-05-06 21:49:28 +02:00
|
|
|
: archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(),
|
2009-07-01 18:58:40 +02:00
|
|
|
symTabSize(0), firstFileOffset(0), modules(), foreignST(0), Context(C) {
|
2007-05-06 21:49:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2008-04-01 06:26:46 +02:00
|
|
|
Archive::mapToMemory(std::string* ErrMsg) {
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> File;
|
|
|
|
if (error_code ec = MemoryBuffer::getFile(archPath.c_str(), File)) {
|
2010-12-09 18:36:48 +01:00
|
|
|
if (ErrMsg)
|
|
|
|
*ErrMsg = ec.message();
|
2007-05-06 21:49:28 +02:00
|
|
|
return true;
|
2010-12-09 18:36:48 +01:00
|
|
|
}
|
2010-12-16 04:29:14 +01:00
|
|
|
mapfile = File.take();
|
2008-04-01 06:26:46 +02:00
|
|
|
base = mapfile->getBufferStart();
|
2007-05-06 21:49:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Archive::cleanUpMemory() {
|
|
|
|
// Shutdown the file mapping
|
2008-04-01 06:26:46 +02:00
|
|
|
delete mapfile;
|
|
|
|
mapfile = 0;
|
|
|
|
base = 0;
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2007-05-06 21:49:28 +02:00
|
|
|
// Forget the entire symbol table
|
|
|
|
symTab.clear();
|
|
|
|
symTabSize = 0;
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2007-05-06 21:49:28 +02:00
|
|
|
firstFileOffset = 0;
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2007-05-06 21:49:28 +02:00
|
|
|
// Free the foreign symbol table member
|
|
|
|
if (foreignST) {
|
|
|
|
delete foreignST;
|
|
|
|
foreignST = 0;
|
|
|
|
}
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2010-01-27 21:34:15 +01:00
|
|
|
// Delete any Modules and ArchiveMember's we've allocated as a result of
|
|
|
|
// symbol table searches.
|
2007-05-06 21:49:28 +02:00
|
|
|
for (ModuleMap::iterator I=modules.begin(), E=modules.end(); I != E; ++I ) {
|
|
|
|
delete I->second.first;
|
|
|
|
delete I->second.second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Archive destructor - just clean up memory
|
|
|
|
Archive::~Archive() {
|
|
|
|
cleanUpMemory();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void getSymbols(Module*M, std::vector<std::string>& symbols) {
|
|
|
|
// Loop over global variables
|
|
|
|
for (Module::global_iterator GI = M->global_begin(), GE=M->global_end(); GI != GE; ++GI)
|
2009-01-15 21:18:42 +01:00
|
|
|
if (!GI->isDeclaration() && !GI->hasLocalLinkage())
|
2007-05-06 21:49:28 +02:00
|
|
|
if (!GI->getName().empty())
|
|
|
|
symbols.push_back(GI->getName());
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2008-03-04 21:15:35 +01:00
|
|
|
// Loop over functions
|
2007-05-06 21:49:28 +02:00
|
|
|
for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
|
2009-01-15 21:18:42 +01:00
|
|
|
if (!FI->isDeclaration() && !FI->hasLocalLinkage())
|
2007-05-06 21:49:28 +02:00
|
|
|
if (!FI->getName().empty())
|
|
|
|
symbols.push_back(FI->getName());
|
2008-03-04 21:15:35 +01:00
|
|
|
|
|
|
|
// Loop over aliases
|
|
|
|
for (Module::alias_iterator AI = M->alias_begin(), AE = M->alias_end();
|
|
|
|
AI != AE; ++AI) {
|
2008-03-11 01:24:53 +01:00
|
|
|
if (AI->hasName())
|
|
|
|
symbols.push_back(AI->getName());
|
2008-03-04 21:15:35 +01:00
|
|
|
}
|
2007-05-06 21:49:28 +02:00
|
|
|
}
|
|
|
|
|
2007-07-05 19:07:56 +02:00
|
|
|
// Get just the externally visible defined symbols from the bitcode
|
|
|
|
bool llvm::GetBitcodeSymbols(const sys::Path& fName,
|
2009-07-02 01:13:44 +02:00
|
|
|
LLVMContext& Context,
|
2007-07-05 19:07:56 +02:00
|
|
|
std::vector<std::string>& symbols,
|
|
|
|
std::string* ErrMsg) {
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> Buffer;
|
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(fName.c_str(), Buffer)) {
|
2010-12-09 18:36:48 +01:00
|
|
|
if (ErrMsg) *ErrMsg = "Could not open file '" + fName.str() + "'" + ": "
|
|
|
|
+ ec.message();
|
2007-05-06 21:49:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2010-01-27 21:34:15 +01:00
|
|
|
Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
|
|
|
|
if (!M)
|
2007-05-06 21:49:28 +02:00
|
|
|
return true;
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2007-05-06 21:49:28 +02:00
|
|
|
// Get the symbols
|
|
|
|
getSymbols(M, symbols);
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2007-05-06 21:49:28 +02:00
|
|
|
// Done with the module.
|
2010-01-27 21:34:15 +01:00
|
|
|
delete M;
|
2007-05-06 21:49:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-27 21:34:15 +01:00
|
|
|
Module*
|
2010-04-19 18:15:31 +02:00
|
|
|
llvm::GetBitcodeSymbols(const char *BufPtr, unsigned Length,
|
2007-07-05 19:07:56 +02:00
|
|
|
const std::string& ModuleID,
|
2009-07-02 01:13:44 +02:00
|
|
|
LLVMContext& Context,
|
2007-07-05 19:07:56 +02:00
|
|
|
std::vector<std::string>& symbols,
|
|
|
|
std::string* ErrMsg) {
|
2010-01-27 21:34:15 +01:00
|
|
|
// Get the module.
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> Buffer(
|
2010-04-19 18:15:31 +02:00
|
|
|
MemoryBuffer::getMemBufferCopy(StringRef(BufPtr, Length),ModuleID.c_str()));
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2010-01-27 21:34:15 +01:00
|
|
|
Module *M = ParseBitcodeFile(Buffer.get(), Context, ErrMsg);
|
|
|
|
if (!M)
|
2007-05-06 21:49:28 +02:00
|
|
|
return 0;
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2007-05-06 21:49:28 +02:00
|
|
|
// Get the symbols
|
|
|
|
getSymbols(M, symbols);
|
2011-01-10 03:34:40 +01:00
|
|
|
|
2010-01-27 21:34:15 +01:00
|
|
|
// Done with the module. Note that it's the caller's responsibility to delete
|
|
|
|
// the Module.
|
|
|
|
return M;
|
2007-05-06 21:49:28 +02:00
|
|
|
}
|