Source file src/cmd/link/internal/ld/link.go

     1  // Derived from Inferno utils/6l/l.h and related files.
     2  // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/l.h
     3  //
     4  //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
     5  //	Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
     6  //	Portions Copyright © 1997-1999 Vita Nuova Limited
     7  //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
     8  //	Portions Copyright © 2004,2006 Bruce Ellis
     9  //	Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net)
    10  //	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
    11  //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    12  //
    13  // Permission is hereby granted, free of charge, to any person obtaining a copy
    14  // of this software and associated documentation files (the "Software"), to deal
    15  // in the Software without restriction, including without limitation the rights
    16  // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    17  // copies of the Software, and to permit persons to whom the Software is
    18  // furnished to do so, subject to the following conditions:
    19  //
    20  // The above copyright notice and this permission notice shall be included in
    21  // all copies or substantial portions of the Software.
    22  //
    23  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    24  // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    25  // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    26  // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    27  // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    28  // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    29  // THE SOFTWARE.
    30  
    31  package ld
    32  
    33  import (
    34  	"bufio"
    35  	"cmd/internal/objabi"
    36  	"cmd/link/internal/loader"
    37  	"cmd/link/internal/sym"
    38  	"debug/elf"
    39  	"fmt"
    40  )
    41  
    42  type Shlib struct {
    43  	Path string
    44  	Hash []byte
    45  	Deps []string
    46  	File *elf.File
    47  	// For every symbol defined in the shared library, record its address
    48  	// in the original shared library address space.
    49  	symAddr map[string]uint64
    50  	// For relocations in the shared library, map from the address
    51  	// (in the shared library address space) at which that
    52  	// relocation applies to the target symbol.  We only keep
    53  	// track of a single kind of relocation: a standard absolute
    54  	// address relocation with no addend. These were R_ADDR
    55  	// relocations when the shared library was built.
    56  	relocTarget map[uint64]string
    57  }
    58  
    59  // A relocation that applies to part of the shared library.
    60  type shlibReloc struct {
    61  	// Address (in the shared library address space) the relocation applies to.
    62  	addr uint64
    63  	// Target symbol name.
    64  	target string
    65  }
    66  
    67  type shlibRelocs []shlibReloc
    68  
    69  func (s shlibRelocs) Len() int           { return len(s) }
    70  func (s shlibRelocs) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    71  func (s shlibRelocs) Less(i, j int) bool { return s[i].addr < s[j].addr }
    72  
    73  // Link holds the context for writing object code from a compiler
    74  // or for reading that input into the linker.
    75  type Link struct {
    76  	Target
    77  	ErrorReporter
    78  	ArchSyms
    79  
    80  	outSem chan int // limits the number of output writers
    81  	Out    *OutBuf
    82  
    83  	version int // current version number for static/file-local symbols
    84  
    85  	Debugvlog int
    86  	Bso       *bufio.Writer
    87  
    88  	Loaded bool // set after all inputs have been loaded as symbols
    89  
    90  	compressDWARF bool
    91  
    92  	Libdir       []string
    93  	Library      []*sym.Library
    94  	LibraryByPkg map[string]*sym.Library
    95  	Shlibs       []Shlib
    96  	Textp        []loader.Sym
    97  	Moduledata   loader.Sym
    98  
    99  	PackageFile  map[string]string
   100  	PackageShlib map[string]string
   101  
   102  	tramps []loader.Sym // trampolines
   103  
   104  	compUnits []*sym.CompilationUnit // DWARF compilation units
   105  	runtimeCU *sym.CompilationUnit   // One of the runtime CUs, the last one seen.
   106  
   107  	loader  *loader.Loader
   108  	cgodata []cgodata // cgo directives to load, three strings are args for loadcgo
   109  
   110  	datap  []loader.Sym
   111  	dynexp []loader.Sym
   112  
   113  	// Elf symtab variables.
   114  	numelfsym int // starts at 0, 1 is reserved
   115  
   116  	// These are symbols that created and written by the linker.
   117  	// Rather than creating a symbol, and writing all its data into the heap,
   118  	// you can create a symbol, and just a generation function will be called
   119  	// after the symbol's been created in the output mmap.
   120  	generatorSyms map[loader.Sym]generatorFunc
   121  }
   122  
   123  type cgodata struct {
   124  	file       string
   125  	pkg        string
   126  	directives [][]string
   127  }
   128  
   129  func (ctxt *Link) Logf(format string, args ...interface{}) {
   130  	fmt.Fprintf(ctxt.Bso, format, args...)
   131  	ctxt.Bso.Flush()
   132  }
   133  
   134  func addImports(ctxt *Link, l *sym.Library, pn string) {
   135  	pkg := objabi.PathToPrefix(l.Pkg)
   136  	for _, imp := range l.Autolib {
   137  		lib := addlib(ctxt, pkg, pn, imp.Pkg, imp.Fingerprint)
   138  		if lib != nil {
   139  			l.Imports = append(l.Imports, lib)
   140  		}
   141  	}
   142  	l.Autolib = nil
   143  }
   144  
   145  // Allocate a new version (i.e. symbol namespace).
   146  func (ctxt *Link) IncVersion() int {
   147  	ctxt.version++
   148  	return ctxt.version - 1
   149  }
   150  
   151  // returns the maximum version number
   152  func (ctxt *Link) MaxVersion() int {
   153  	return ctxt.version
   154  }
   155  
   156  // generatorFunc is a convenience type.
   157  // Some linker-created Symbols are large and shouldn't really live in the heap.
   158  // Such Symbols can define a generator function. Their bytes can be generated
   159  // directly in the output mmap.
   160  //
   161  // Relocations are applied prior to emitting generator Symbol contents.
   162  // Generator Symbols that require relocations can be written in two passes.
   163  // The first pass, at Symbol creation time, adds only relocations.
   164  // The second pass, at content generation time, adds the rest.
   165  // See generateFunctab for an example.
   166  //
   167  // Generator functions shouldn't grow the Symbol size.
   168  // Generator functions must be safe for concurrent use.
   169  //
   170  // Generator Symbols have their Data set to the mmapped area when the
   171  // generator is called.
   172  type generatorFunc func(*Link, loader.Sym)
   173  
   174  // createGeneratorSymbol is a convenience method for creating a generator
   175  // symbol.
   176  func (ctxt *Link) createGeneratorSymbol(name string, version int, t sym.SymKind, size int64, gen generatorFunc) loader.Sym {
   177  	ldr := ctxt.loader
   178  	s := ldr.LookupOrCreateSym(name, version)
   179  	ldr.SetIsGeneratedSym(s, true)
   180  	sb := ldr.MakeSymbolUpdater(s)
   181  	sb.SetType(t)
   182  	sb.SetSize(size)
   183  	ctxt.generatorSyms[s] = gen
   184  	return s
   185  }
   186  

View as plain text