Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 1 | // Copyright 2018 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Dan Willemsen | 2249dc8 | 2018-10-15 00:35:59 -0700 | [diff] [blame] | 15 | package symbol_inject |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 16 | |
| 17 | import ( |
| 18 | "bytes" |
Dan Willemsen | 0db18c2 | 2018-10-15 17:05:35 -0700 | [diff] [blame] | 19 | "encoding/binary" |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 20 | "fmt" |
| 21 | "io" |
| 22 | "math" |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 23 | ) |
| 24 | |
| 25 | var maxUint64 uint64 = math.MaxUint64 |
| 26 | |
| 27 | type cantParseError struct { |
| 28 | error |
| 29 | } |
| 30 | |
Dan Willemsen | 2249dc8 | 2018-10-15 00:35:59 -0700 | [diff] [blame] | 31 | func OpenFile(r io.ReaderAt) (*File, error) { |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 32 | file, err := elfSymbolsFromFile(r) |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 33 | if elfError, ok := err.(cantParseError); ok { |
| 34 | // Try as a mach-o file |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 35 | file, err = machoSymbolsFromFile(r) |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 36 | if _, ok := err.(cantParseError); ok { |
| 37 | // Try as a windows PE file |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 38 | file, err = peSymbolsFromFile(r) |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 39 | if _, ok := err.(cantParseError); ok { |
| 40 | // Can't parse as elf, macho, or PE, return the elf error |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 41 | return nil, elfError |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 42 | } |
| 43 | } |
| 44 | } |
| 45 | if err != nil { |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 46 | return nil, err |
| 47 | } |
| 48 | |
| 49 | file.r = r |
| 50 | |
| 51 | return file, err |
| 52 | } |
| 53 | |
Dan Willemsen | 0db18c2 | 2018-10-15 17:05:35 -0700 | [diff] [blame] | 54 | func InjectStringSymbol(file *File, w io.Writer, symbol, value, from string) error { |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 55 | offset, size, err := findSymbol(file, symbol) |
| 56 | if err != nil { |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 57 | return err |
| 58 | } |
| 59 | |
| 60 | if uint64(len(value))+1 > size { |
| 61 | return fmt.Errorf("value length %d overflows symbol size %d", len(value), size) |
| 62 | } |
| 63 | |
| 64 | if from != "" { |
| 65 | // Read the exsting symbol contents and verify they match the expected value |
| 66 | expected := make([]byte, size) |
| 67 | existing := make([]byte, size) |
| 68 | copy(expected, from) |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 69 | _, err := file.r.ReadAt(existing, int64(offset)) |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 70 | if err != nil { |
| 71 | return err |
| 72 | } |
| 73 | if bytes.Compare(existing, expected) != 0 { |
| 74 | return fmt.Errorf("existing symbol contents %q did not match expected value %q", |
| 75 | string(existing), string(expected)) |
| 76 | } |
| 77 | } |
| 78 | |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 79 | buf := make([]byte, size) |
| 80 | copy(buf, value) |
| 81 | |
Dan Willemsen | 0db18c2 | 2018-10-15 17:05:35 -0700 | [diff] [blame] | 82 | return copyAndInject(file.r, w, offset, buf) |
| 83 | } |
| 84 | |
| 85 | func InjectUint64Symbol(file *File, w io.Writer, symbol string, value uint64) error { |
| 86 | offset, size, err := findSymbol(file, symbol) |
| 87 | if err != nil { |
| 88 | return err |
| 89 | } |
| 90 | |
| 91 | if size != 8 { |
| 92 | return fmt.Errorf("symbol %q is not a uint64, it is %d bytes long", symbol, size) |
| 93 | } |
| 94 | |
| 95 | buf := make([]byte, 8) |
| 96 | binary.LittleEndian.PutUint64(buf, value) |
| 97 | |
| 98 | return copyAndInject(file.r, w, offset, buf) |
| 99 | } |
| 100 | |
| 101 | func copyAndInject(r io.ReaderAt, w io.Writer, offset uint64, buf []byte) (err error) { |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 102 | // Copy the first bytes up to the symbol offset |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 103 | _, err = io.Copy(w, io.NewSectionReader(r, 0, int64(offset))) |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 104 | |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 105 | // Write the injected value in the output file |
| 106 | if err == nil { |
| 107 | _, err = w.Write(buf) |
| 108 | } |
| 109 | |
| 110 | // Write the remainder of the file |
Dan Willemsen | 0db18c2 | 2018-10-15 17:05:35 -0700 | [diff] [blame] | 111 | pos := int64(offset) + int64(len(buf)) |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 112 | if err == nil { |
| 113 | _, err = io.Copy(w, io.NewSectionReader(r, pos, 1<<63-1-pos)) |
| 114 | } |
| 115 | |
| 116 | if err == io.EOF { |
| 117 | err = io.ErrUnexpectedEOF |
| 118 | } |
| 119 | |
| 120 | return err |
| 121 | } |
| 122 | |
| 123 | func findSymbol(file *File, symbolName string) (uint64, uint64, error) { |
| 124 | for i, symbol := range file.Symbols { |
| 125 | if symbol.Name == symbolName { |
| 126 | // Find the next symbol (n the same section with a higher address |
| 127 | var n int |
| 128 | for n = i; n < len(file.Symbols); n++ { |
| 129 | if file.Symbols[n].Section != symbol.Section { |
| 130 | n = len(file.Symbols) |
| 131 | break |
| 132 | } |
| 133 | if file.Symbols[n].Addr > symbol.Addr { |
| 134 | break |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | size := symbol.Size |
| 139 | if size == 0 { |
| 140 | var end uint64 |
| 141 | if n < len(file.Symbols) { |
| 142 | end = file.Symbols[n].Addr |
| 143 | } else { |
| 144 | end = symbol.Section.Size |
| 145 | } |
| 146 | |
| 147 | if end <= symbol.Addr || end > symbol.Addr+4096 { |
| 148 | return maxUint64, maxUint64, fmt.Errorf("symbol end address does not seem valid, %x:%x", symbol.Addr, end) |
| 149 | } |
| 150 | |
| 151 | size = end - symbol.Addr |
| 152 | } |
| 153 | |
| 154 | offset := symbol.Section.Offset + symbol.Addr |
| 155 | |
| 156 | return uint64(offset), uint64(size), nil |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | return maxUint64, maxUint64, fmt.Errorf("symbol not found") |
| 161 | } |
| 162 | |
| 163 | type File struct { |
Yabin Cui | 7f5f22b | 2022-08-31 16:23:43 -0700 | [diff] [blame] | 164 | r io.ReaderAt |
| 165 | Symbols []*Symbol |
| 166 | Sections []*Section |
| 167 | IsMachoFile bool |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | type Symbol struct { |
| 171 | Name string |
| 172 | Addr uint64 // Address of the symbol inside the section. |
| 173 | Size uint64 // Size of the symbol, if known. |
| 174 | Section *Section |
| 175 | } |
| 176 | |
| 177 | type Section struct { |
| 178 | Name string |
| 179 | Addr uint64 // Virtual address of the start of the section. |
| 180 | Offset uint64 // Offset into the file of the start of the section. |
| 181 | Size uint64 |
| 182 | } |
| 183 | |
Dan Willemsen | 2249dc8 | 2018-10-15 00:35:59 -0700 | [diff] [blame] | 184 | func DumpSymbols(r io.ReaderAt) error { |
Colin Cross | 8673b5b | 2018-03-01 11:20:25 -0800 | [diff] [blame] | 185 | err := dumpElfSymbols(r) |
| 186 | if elfError, ok := err.(cantParseError); ok { |
| 187 | // Try as a mach-o file |
| 188 | err = dumpMachoSymbols(r) |
| 189 | if _, ok := err.(cantParseError); ok { |
| 190 | // Try as a windows PE file |
| 191 | err = dumpPESymbols(r) |
| 192 | if _, ok := err.(cantParseError); ok { |
| 193 | // Can't parse as elf, macho, or PE, return the elf error |
| 194 | return elfError |
| 195 | } |
| 196 | } |
| 197 | } |
| 198 | return err |
Colin Cross | 5498f85 | 2018-01-03 23:39:54 -0800 | [diff] [blame] | 199 | } |