gllvm/shared/extractor.go

795 lines
23 KiB
Go
Raw Normal View History

2017-08-26 01:34:03 +02:00
//
// OCCAM
//
// Copyright (c) 2017, SRI International
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of SRI International nor the names of its contributors may
// be used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
package shared
import (
2018-05-10 23:30:22 +02:00
"bytes"
2017-06-29 21:38:04 +02:00
"debug/elf"
"debug/macho"
"flag"
"fmt"
"os"
2018-05-10 23:30:22 +02:00
"os/exec"
"path"
"path/filepath"
2017-06-29 21:38:04 +02:00
"runtime"
"sort"
"strconv"
"strings"
)
// ExtractionArgs encapsulate the results of parsing the commandline options
type ExtractionArgs struct {
Failure bool // indicates failure in parsing the cmd line args
Verbose bool // inform the user of what is going on
WriteManifest bool // write a manifest of bitcode files used
SortBitcodeFiles bool // sort the arguments to linking and archiving (debugging too)
BuildBitcodeModule bool // buld an archive rather than a module
KeepTemp bool // keep temporary linking folder
StrictExtract bool // turn extraction failures into errors
LinkArgSize int // maximum size of a llvm-link command line
InputType int
ObjectTypeInArchive int // Type of file that can be put into an archive
2018-05-11 01:25:44 +02:00
InputFile string
OutputFile string
LlvmLinkerName string
2019-10-22 19:47:34 +02:00
LlvmArchiverName string
ArchiverName string
ArArgs []string
2020-08-03 22:46:52 +02:00
Extractor func(string) ([]string, bool)
}
// for printing out the parsed arguments, some have been skipped.
func (ea ExtractionArgs) String() string {
format :=
`
ea.Verbose: %v
ea.WriteManifest: %v
ea.SortBitcodeFiles: %v
ea.BuildBitcodeModule: %v
ea.KeepTemp: %v
ea.LinkArgSize: %v
ea.InputFile: %v
ea.OutputFile: %v
ea.LlvmArchiverName: %v
ea.LlvmLinkerName: %v
ea.ArchiverName: %v
ea.StrictExtract: %v
`
return fmt.Sprintf(format, ea.Verbose, ea.WriteManifest, ea.SortBitcodeFiles, ea.BuildBitcodeModule,
ea.KeepTemp, ea.LinkArgSize, ea.InputFile, ea.OutputFile, ea.LlvmArchiverName,
ea.LlvmLinkerName, ea.ArchiverName, ea.StrictExtract)
}
// ParseSwitches parses the command line into an ExtractionArgs object.
func ParseSwitches(args []string) (ea ExtractionArgs) {
var flagSet *flag.FlagSet = flag.NewFlagSet(args[0], flag.ContinueOnError)
flagSet.BoolVar(&ea.Verbose, "v", false, "verbose mode")
flagSet.BoolVar(&ea.WriteManifest, "m", false, "write the manifest")
flagSet.BoolVar(&ea.SortBitcodeFiles, "s", false, "sort the bitcode files")
flagSet.BoolVar(&ea.BuildBitcodeModule, "b", false, "build a bitcode module")
flagSet.StringVar(&ea.OutputFile, "o", "", "the output file")
flagSet.StringVar(&ea.LlvmArchiverName, "a", "llvm-ar", "the llvm archiver (i.e. llvm-ar)")
flagSet.StringVar(&ea.ArchiverName, "r", "ar", "the system archiver (i.e. ar)")
flagSet.StringVar(&ea.LlvmLinkerName, "l", "llvm-link", "the llvm linker (i.e. llvm-link)")
flagSet.IntVar(&ea.LinkArgSize, "n", 0, "maximum llvm-link command line size (in bytes)")
flagSet.BoolVar(&ea.KeepTemp, "t", false, "keep temporary linking folder")
flagSet.BoolVar(&ea.StrictExtract, "S", false, "exit with an error if extraction fails")
err := flagSet.Parse(args[1:])
if err != nil {
ea.Failure = true
return
}
ea.LlvmArchiverName = resolveTool("llvm-ar", LLVMARName, ea.LlvmArchiverName)
ea.LlvmLinkerName = resolveTool("llvm-link", LLVMLINKName, ea.LlvmLinkerName)
inputFiles := flagSet.Args()
if len(inputFiles) != 1 {
LogError("Can currently only deal with exactly one input file, sorry. You gave me %v input files.\n", len(inputFiles))
ea.Failure = true
return
}
ea.InputFile = inputFiles[0]
if _, err := os.Stat(ea.InputFile); os.IsNotExist(err) {
LogError("The input file %s does not exist.", ea.InputFile)
ea.Failure = true
return
}
realPath, err := filepath.EvalSymlinks(ea.InputFile)
if err != nil {
LogError("There was an error getting the real path of %s.", ea.InputFile)
ea.Failure = true
return
}
ea.InputFile = realPath
ea.InputType, _ = getFileType(realPath)
LogInfo("%v", ea)
return
}
// Extract extracts the LLVM bitcode according to the arguments it is passed.
func Extract(args []string) (exitCode int) {
exitCode = 1
ea := ParseSwitches(args)
if ea.Failure {
return
}
// Set arguments according to runtime OS
success := setPlatform(&ea)
if !success {
return
}
// Create output filename if not given
setOutputFile(&ea)
switch ea.InputType {
case fileTypeELFEXECUTABLE,
fileTypeELFSHARED,
fileTypeELFOBJECT,
fileTypeMACHEXECUTABLE,
fileTypeMACHSHARED,
fileTypeMACHOBJECT:
success = handleExecutable(ea)
case fileTypeARCHIVE:
success = handleArchive(ea)
case fileTypeTHINARCHIVE:
success = handleThinArchive(ea)
case fileTypeERROR:
default:
LogError("Incorrect input file type %v.", ea.InputType)
return
}
if success {
exitCode = 0
}
return
}
// Set arguments according to runtime OS
func setPlatform(ea *ExtractionArgs) (success bool) {
switch platform := runtime.GOOS; platform {
case osFREEBSD, osLINUX:
ea.Extractor = extractSectionUnix
if ea.Verbose {
ea.ArArgs = append(ea.ArArgs, "xv")
} else {
ea.ArArgs = append(ea.ArArgs, "x")
}
2017-06-30 20:54:59 +02:00
ea.ObjectTypeInArchive = fileTypeELFOBJECT
success = true
case osDARWIN:
ea.Extractor = extractSectionDarwin
ea.ArArgs = append(ea.ArArgs, "-x")
if ea.Verbose {
ea.ArArgs = append(ea.ArArgs, "-v")
}
2017-06-30 20:54:59 +02:00
ea.ObjectTypeInArchive = fileTypeMACHOBJECT
success = true
default:
LogError("Unsupported platform: %s.", platform)
}
return
}
// Create output filename if not given
func setOutputFile(ea *ExtractionArgs) {
if ea.OutputFile == "" {
if ea.InputType == fileTypeARCHIVE || ea.InputType == fileTypeTHINARCHIVE {
var ext string
if ea.BuildBitcodeModule {
ext = ".a.bc"
} else {
ext = ".bca"
}
ea.OutputFile = strings.TrimSuffix(ea.InputFile, ".a") + ext
} else {
ea.OutputFile = ea.InputFile + ".bc"
}
}
}
2018-05-09 23:57:10 +02:00
func resolveTool(defaultPath string, envPath string, usrPath string) (path string) {
if usrPath != defaultPath {
2018-05-09 23:57:10 +02:00
path = usrPath
2018-05-09 23:21:17 +02:00
} else {
if LLVMToolChainBinDir != "" {
if envPath != "" {
path = filepath.Join(LLVMToolChainBinDir, envPath)
} else {
path = filepath.Join(LLVMToolChainBinDir, defaultPath)
}
2018-05-09 23:57:10 +02:00
} else {
if envPath != "" {
path = envPath
} else {
path = defaultPath
}
2018-05-09 23:21:17 +02:00
}
}
2018-05-09 23:57:10 +02:00
LogDebug("defaultPath = %s", defaultPath)
LogDebug("envPath = %s", envPath)
LogDebug("usrPath = %s", usrPath)
LogDebug("path = %s", path)
2018-05-09 23:21:17 +02:00
return
}
func handleExecutable(ea ExtractionArgs) (success bool) {
// get the list of bitcode paths
2020-08-04 15:43:46 +02:00
var artifactPaths []string
artifactPaths, success = ea.Extractor(ea.InputFile)
if !success && ea.StrictExtract {
return
}
if len(artifactPaths) < 20 {
// naert: to avoid saturating the log when dealing with big file lists
2018-05-10 22:44:59 +02:00
LogInfo("handleExecutable: artifactPaths = %v\n", artifactPaths)
}
2018-02-06 00:23:04 +01:00
if len(artifactPaths) == 0 {
return
2018-02-06 00:23:04 +01:00
}
filesToLink := make([]string, len(artifactPaths))
for i, artPath := range artifactPaths {
filesToLink[i] = resolveBitcodePath(artPath)
}
// Sort the bitcode files
if ea.SortBitcodeFiles {
LogWarning("Sorting bitcode files.")
sort.Strings(filesToLink)
sort.Strings(artifactPaths)
}
// Deduplicate any files to link
dedupeStrings(&filesToLink)
// Write manifest
if ea.WriteManifest {
if !writeManifest(ea, filesToLink, artifactPaths) {
return
}
}
2017-06-26 21:42:47 +02:00
success = linkBitcodeFiles(ea, filesToLink)
return
}
func handleThinArchive(ea ExtractionArgs) (success bool) {
// List bitcode files to link
var artifactFiles []string
var objectFiles []string
var bcFiles []string
2019-10-22 19:47:34 +02:00
objectFiles = listArchiveFiles(ea, ea.InputFile)
LogInfo("handleThinArchive: ExtractionArgs = %v\nobjectFiles = %v\n", ea, objectFiles)
for index, obj := range objectFiles {
LogInfo("obj = '%v'\n", obj)
if len(obj) > 0 {
2020-08-04 15:43:46 +02:00
var artifacts []string
artifacts, success = ea.Extractor(obj)
if !success && ea.StrictExtract {
2020-08-03 22:55:38 +02:00
return
}
LogInfo("\t%v\n", artifacts)
artifactFiles = append(artifactFiles, artifacts...)
for _, bc := range artifacts {
bcPath := resolveBitcodePath(bc)
if bcPath != "" {
bcFiles = append(bcFiles, bcPath)
}
}
} else {
LogDebug("\tskipping empty entry at index %v\n", index)
}
}
LogInfo("bcFiles: %v\n", bcFiles)
LogInfo("len(bcFiles) = %v\n", len(bcFiles))
if len(bcFiles) > 0 {
// Sort the bitcode files
if ea.SortBitcodeFiles {
LogWarning("Sorting bitcode files.")
sort.Strings(bcFiles)
sort.Strings(artifactFiles)
}
// Build archive
if ea.BuildBitcodeModule {
success = linkBitcodeFiles(ea, bcFiles)
} else {
success = archiveBcFiles(ea, bcFiles)
}
if !success {
return
}
// Write manifest
if ea.WriteManifest {
success = writeManifest(ea, bcFiles, artifactFiles)
}
} else {
LogError("No bitcode files found\n")
success = false
}
return
}
func listArchiveFiles(ea ExtractionArgs, inputFile string) (contents []string) {
var arArgs []string
arArgs = append(arArgs, "-t")
arArgs = append(arArgs, inputFile)
output, err := runCmd(ea.ArchiverName, arArgs)
if err != nil {
LogWarning("ar command: %v %v", ea.ArchiverName, arArgs)
LogError("Failed to extract contents from archive %s because: %v.\n", inputFile, err)
return
}
contents = strings.Split(output, "\n")
return
}
func extractFile(ea ExtractionArgs, archive string, filename string, instance int) (success bool) {
var arArgs []string
if runtime.GOOS != osDARWIN {
arArgs = append(arArgs, "xN")
arArgs = append(arArgs, strconv.Itoa(instance))
} else {
2018-05-25 23:59:56 +02:00
if instance > 1 {
LogWarning("Cannot extract instance %v of %v from archive %s for instance > 1.\n", instance, filename, archive)
return
2018-05-25 23:59:56 +02:00
}
arArgs = append(arArgs, "x")
}
arArgs = append(arArgs, archive)
arArgs = append(arArgs, filename)
_, err := runCmd(ea.ArchiverName, arArgs)
if err != nil {
LogWarning("The archiver %v failed to extract instance %v of %v from archive %s because: %v.\n", ea.ArchiverName, instance, filename, archive, err)
return
}
success = true
return
}
func fetchTOC(ea ExtractionArgs, inputFile string) map[string]int {
toc := make(map[string]int)
2019-10-22 19:47:34 +02:00
contents := listArchiveFiles(ea, inputFile)
for _, item := range contents {
//iam: this is a hack to make get-bc work on libcurl.a
if item != "" && !strings.HasPrefix(item, "__.SYMDEF") {
toc[item]++
}
}
return toc
}
func extractFiles(ea ExtractionArgs, inputFile string, toc map[string]int) (success bool, artifactFiles []string, bcFiles []string) {
for obj, instance := range toc {
for i := 1; i <= instance; i++ {
if obj != "" && extractFile(ea, inputFile, obj, i) {
var artifacts []string
artifacts, success = ea.Extractor(obj)
if !success && ea.StrictExtract {
2020-10-13 18:52:46 +02:00
LogError("Failed to extract obj = %v occurrence = %v from %v", obj, i, inputFile)
return
}
LogInfo("\t%v\n", artifacts)
artifactFiles = append(artifactFiles, artifacts...)
for _, bc := range artifacts {
bcPath := resolveBitcodePath(bc)
if bcPath != "" {
bcFiles = append(bcFiles, bcPath)
}
}
}
}
}
// indicate overall success (we have already failed if using strict extract)
success = true
return
}
// handleArchive processes an archive, and creates either a bitcode archive, or a module, depending on the flags used.
//
// Archives are strange beasts. handleArchive processes the archive by:
//
// 1. first creating a table of contents of the archive, which maps file names (in the archive) to the number of
// times a file with that name is stored in the archive.
//
// 2. for each OCCURRENCE of a file (name and count) it extracts the section from the object file, and adds the
// bitcode paths to the bitcode list.
//
// 3. it then either links all these bitcode files together using llvm-link, or else is creates a bitcode
// archive using llvm-ar
//
// iam: 5/1/2018
func handleArchive(ea ExtractionArgs) (success bool) {
// List bitcode files to link
var bcFiles []string
var artifactFiles []string
inputFile, _ := filepath.Abs(ea.InputFile)
LogInfo("handleArchive: ExtractionArgs = %v\n", ea)
// Create tmp dir
tmpDirName, err := os.MkdirTemp("", "gllvm")
if err != nil {
LogError("The temporary directory in which to extract object files could not be created.")
return
}
defer CheckDefer(func() error { return os.RemoveAll(tmpDirName) })
homeDir, err := os.Getwd()
if err != nil {
LogError("Could not ascertain our whereabouts: %v", err)
return
}
err = os.Chdir(tmpDirName)
if err != nil {
LogError("Could not cd to %v because: %v", tmpDirName, err)
return
}
//1. fetch the Table of Contents (TOC)
2019-10-22 19:47:34 +02:00
toc := fetchTOC(ea, inputFile)
LogDebug("Table of Contents of %v:\n%v\n", inputFile, toc)
//2. extract the files from the TOC
success, artifactFiles, bcFiles = extractFiles(ea, inputFile, toc)
//extractFiles has already complained
if !success {
return
}
err = os.Chdir(homeDir)
if err != nil {
LogError("Could not cd to %v because: %v", homeDir, err)
return
}
LogDebug("handleArchive: walked %v\nartifactFiles:\n%v\nbcFiles:\n%v\n", tmpDirName, artifactFiles, bcFiles)
2020-10-13 18:50:47 +02:00
//3. link or archive those puppies
if len(bcFiles) > 0 {
// Sort the bitcode files
if ea.SortBitcodeFiles {
LogWarning("Sorting bitcode files.")
sort.Strings(bcFiles)
sort.Strings(artifactFiles)
}
// Build archive
if ea.BuildBitcodeModule {
success = linkBitcodeFiles(ea, bcFiles)
} else {
success = archiveBcFiles(ea, bcFiles)
}
if !success {
//hopefully the failure has already been reported...
return
}
// Write manifest
if ea.WriteManifest {
success = writeManifest(ea, bcFiles, artifactFiles)
}
} else {
LogError("No bitcode files found\n")
return
}
return
2017-06-26 21:42:47 +02:00
}
func archiveBcFiles(ea ExtractionArgs, bcFiles []string) (success bool) {
// We do not want full paths in the archive, so we need to chdir into each
// bitcode's folder. Handle this by calling llvm-ar once for all bitcode
// files in the same directory
dirToBcMap := make(map[string][]string)
for _, bcFile := range bcFiles {
dirName, baseName := path.Split(bcFile)
dirToBcMap[dirName] = append(dirToBcMap[dirName], baseName)
}
// Call llvm-ar from each directory
absOutputFile, _ := filepath.Abs(ea.OutputFile)
for dir, bcFilesInDir := range dirToBcMap {
var args []string
var err error
args = append(args, "rs", absOutputFile)
args = append(args, bcFilesInDir...)
success, err = execCmd(ea.LlvmArchiverName, args, dir)
2019-10-22 19:47:34 +02:00
LogInfo("ea.LlvmArchiverName = %s, args = %v, dir = %s\n", ea.LlvmArchiverName, args, dir)
if !success {
LogError("There was an error creating the bitcode archive: %v.\n", err)
return
}
}
informUser("Built bitcode archive: %s.\n", ea.OutputFile)
success = true
return
}
2018-05-10 22:44:59 +02:00
func getsize(stringslice []string) (totalLength int) {
totalLength = 0
for _, s := range stringslice {
totalLength += len(s)
}
return totalLength
}
2018-05-10 23:30:22 +02:00
func formatStdOut(stdout bytes.Buffer, usefulIndex int) string {
infoArr := strings.Split(stdout.String(), "\n")[usefulIndex]
ret := strings.Fields(infoArr)
return ret[0]
}
func fetchArgMax(ea ExtractionArgs) (argMax int) {
if ea.LinkArgSize == 0 {
getArgMax := exec.Command("getconf", "ARG_MAX")
var argMaxStr bytes.Buffer
getArgMax.Stdout = &argMaxStr
err := getArgMax.Run()
if err != nil {
LogError("getconf ARG_MAX failed with %s\n", err)
}
argMax, err = strconv.Atoi(formatStdOut(argMaxStr, 0))
if err != nil {
LogError("string conversion for argMax failed with %s\n", err)
}
argMax = int(0.9 * float32(argMax)) // keeping a comfort margin
} else {
argMax = ea.LinkArgSize
2018-05-10 22:44:59 +02:00
}
LogInfo("argMax = %v\n", argMax)
return
}
func linkBitcodeFilesIncrementally(ea ExtractionArgs, filesToLink []string, argMax int, linkArgs []string) (success bool) {
var tmpFileList []string
// Create tmp dir
tmpDirName, err := os.MkdirTemp(".", "glinking")
if err != nil {
LogError("The temporary directory in which to put temporary linking files could not be created.")
return
}
2018-05-11 16:30:19 +02:00
if !ea.KeepTemp { // delete temporary folder after used unless told otherwise
LogInfo("Temporary folder will be deleted")
defer CheckDefer(func() error { return os.RemoveAll(tmpDirName) })
} else {
LogInfo("Keeping the temporary folder")
}
2018-05-10 22:44:59 +02:00
tmpFile, err := os.CreateTemp(tmpDirName, "tmp")
if err != nil {
LogError("The temporary linking file could not be created.")
return
}
tmpFileList = append(tmpFileList, tmpFile.Name())
linkArgs = append(linkArgs, "-o", tmpFile.Name())
LogInfo("llvm-link argument size : %d", getsize(filesToLink))
for _, file := range filesToLink {
linkArgs = append(linkArgs, file)
if getsize(linkArgs) > argMax {
LogInfo("Linking command size exceeding system capacity : splitting the command")
success, err = execCmd(ea.LlvmLinkerName, linkArgs, "")
if !success || err != nil {
LogError("There was an error linking input files into %s because %v, on file %s.\n", ea.OutputFile, err, file)
success = false
return
}
linkArgs = nil
if ea.Verbose {
linkArgs = append(linkArgs, "-v")
}
tmpFile, err = os.CreateTemp(tmpDirName, "tmp")
if err != nil {
LogError("Could not generate a temp file in %s because %v.\n", tmpDirName, err)
success = false
return
}
tmpFileList = append(tmpFileList, tmpFile.Name())
linkArgs = append(linkArgs, "-o", tmpFile.Name())
2018-05-10 23:30:22 +02:00
}
2018-05-11 16:30:19 +02:00
}
success, err = execCmd(ea.LlvmLinkerName, linkArgs, "")
if !success || err != nil {
LogError("There was an error linking input files into %s because %v.\n", tmpFile.Name(), err)
success = false
return
}
linkArgs = nil
if ea.Verbose {
linkArgs = append(linkArgs, "-v")
}
2021-06-29 20:04:57 +02:00
// Append any custom llvm-link flags requested by the user.
// We only do this for the last llvm-link invocation.
linkArgs = append(linkArgs, LLVMLINKFlags...)
linkArgs = append(linkArgs, tmpFileList...)
2018-05-10 23:30:22 +02:00
linkArgs = append(linkArgs, "-o", ea.OutputFile)
2018-05-10 23:30:22 +02:00
success, err = execCmd(ea.LlvmLinkerName, linkArgs, "")
if !success {
LogError("There was an error linking input files into %s because %v.\n", ea.OutputFile, err)
return
}
LogInfo("Bitcode file extracted to: %s, from files %v \n", ea.OutputFile, tmpFileList)
success = true
return
}
2018-05-10 23:30:22 +02:00
func linkBitcodeFiles(ea ExtractionArgs, filesToLink []string) (success bool) {
var linkArgs []string
// Extracting the command line max size from the environment if it is not specified
argMax := fetchArgMax(ea)
if ea.Verbose {
linkArgs = append(linkArgs, "-v")
}
2021-06-29 20:04:57 +02:00
if getsize(filesToLink) > argMax { //command line size too large for the OS (necessitated by chromium)
return linkBitcodeFilesIncrementally(ea, filesToLink, argMax, linkArgs)
}
2020-03-24 20:55:59 +01:00
var err error
2021-06-29 20:04:57 +02:00
// Append any custom llvm-link flags requested by the user.
// N.B. that we do this specially for the incremental link case.
linkArgs = append(linkArgs, LLVMLINKFlags...)
2020-03-24 20:55:59 +01:00
linkArgs = append(linkArgs, "-o", ea.OutputFile)
linkArgs = append(linkArgs, filesToLink...)
success, err = execCmd(ea.LlvmLinkerName, linkArgs, "")
if !success {
LogError("There was an error linking input files into %s because %v.\n", ea.OutputFile, err)
return
}
informUser("Bitcode file extracted to: %s.\n", ea.OutputFile)
success = true
return
}
func extractSectionDarwin(inputFile string) (contents []string, success bool) {
machoFile, err := macho.Open(inputFile)
if err != nil {
LogError("Mach-O file %s could not be read.", inputFile)
return
}
2017-06-30 20:54:59 +02:00
section := machoFile.Section(DarwinSectionName)
2018-02-06 00:27:50 +01:00
if section == nil {
LogError("The %s section of %s is missing!\n", DarwinSectionName, inputFile)
2018-02-06 00:27:50 +01:00
return
2018-02-06 00:23:04 +01:00
}
sectionContents, errContents := section.Data()
if errContents != nil {
LogError("Error reading the %s section of Mach-O file %s.", DarwinSectionName, inputFile)
return
}
contents = strings.Split(strings.TrimSuffix(string(sectionContents), "\n"), "\n")
success = true
return
}
func extractSectionUnix(inputFile string) (contents []string, success bool) {
elfFile, err := elf.Open(inputFile)
if err != nil {
LogError("ELF file %s could not be read.", inputFile)
2018-04-17 00:23:59 +02:00
return
2018-04-17 00:45:06 +02:00
}
2017-06-30 20:54:59 +02:00
section := elfFile.Section(ELFSectionName)
2018-04-17 00:21:30 +02:00
if section == nil {
LogError("Error reading the %s section of ELF file %s.", ELFSectionName, inputFile)
2018-04-17 00:23:59 +02:00
return
2018-04-17 00:21:30 +02:00
}
sectionContents, errContents := section.Data()
if errContents != nil {
LogError("Error reading the %s section of ELF file %s.", ELFSectionName, inputFile)
2018-04-17 00:23:59 +02:00
return
}
contents = strings.Split(strings.TrimSuffix(string(sectionContents), "\n"), "\n")
success = true
return
}
2017-06-26 21:42:47 +02:00
// Return the actual path to the bitcode file, or an empty string if it does not exist
func resolveBitcodePath(bcPath string) string {
if _, err := os.Stat(bcPath); os.IsNotExist(err) {
// If the bitcode file does not exist, try to find it in the store
if LLVMBitcodeStorePath != "" {
// Compute absolute path hash
absBcPath, _ := filepath.Abs(bcPath)
storeBcPath := path.Join(LLVMBitcodeStorePath, getHashedPath(absBcPath))
if _, err := os.Stat(storeBcPath); os.IsNotExist(err) {
return ""
}
2017-06-29 23:19:12 +02:00
return storeBcPath
}
LogWarning("Failed to find the file %v\n", bcPath)
2017-06-29 23:25:55 +02:00
return ""
2017-06-29 23:44:39 +02:00
}
2017-06-29 23:25:55 +02:00
return bcPath
2017-06-26 21:42:47 +02:00
}
func writeManifest(ea ExtractionArgs, bcFiles []string, artifactFiles []string) (success bool) {
manifestFilename := ea.OutputFile + ".llvm.manifest"
//only go into the gory details if we have a store around.
if LLVMBitcodeStorePath != "" {
section1 := "Physical location of extracted files:\n" + strings.Join(bcFiles, "\n") + "\n\n"
section2 := "Build-time location of extracted files:\n" + strings.Join(artifactFiles, "\n")
contents := []byte(section1 + section2)
if err := os.WriteFile(manifestFilename, contents, 0644); err != nil {
LogError("There was an error while writing the manifest file: ", err)
return
}
} else {
contents := []byte("\n" + strings.Join(bcFiles, "\n") + "\n")
if err := os.WriteFile(manifestFilename, contents, 0644); err != nil {
LogError("There was an error while writing the manifest file: ", err)
return
}
}
informUser("Manifest file written to %s.\n", manifestFilename)
success = true
return
2017-06-26 21:42:47 +02:00
}