mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
57dc742c76
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/KimMachineGun/automemlimit/releases) - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.2.4...v0.2.5) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
103 lines
2 KiB
Go
103 lines
2 KiB
Go
package internal
|
|
|
|
import (
|
|
"debug/elf"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
type SafeELFFile struct {
|
|
*elf.File
|
|
}
|
|
|
|
// NewSafeELFFile reads an ELF safely.
|
|
//
|
|
// Any panic during parsing is turned into an error. This is necessary since
|
|
// there are a bunch of unfixed bugs in debug/elf.
|
|
//
|
|
// https://github.com/golang/go/issues?q=is%3Aissue+is%3Aopen+debug%2Felf+in%3Atitle
|
|
func NewSafeELFFile(r io.ReaderAt) (safe *SafeELFFile, err error) {
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
return
|
|
}
|
|
|
|
safe = nil
|
|
err = fmt.Errorf("reading ELF file panicked: %s", r)
|
|
}()
|
|
|
|
file, err := elf.NewFile(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &SafeELFFile{file}, nil
|
|
}
|
|
|
|
// OpenSafeELFFile reads an ELF from a file.
|
|
//
|
|
// It works like NewSafeELFFile, with the exception that safe.Close will
|
|
// close the underlying file.
|
|
func OpenSafeELFFile(path string) (safe *SafeELFFile, err error) {
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
return
|
|
}
|
|
|
|
safe = nil
|
|
err = fmt.Errorf("reading ELF file panicked: %s", r)
|
|
}()
|
|
|
|
file, err := elf.Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &SafeELFFile{file}, nil
|
|
}
|
|
|
|
// Symbols is the safe version of elf.File.Symbols.
|
|
func (se *SafeELFFile) Symbols() (syms []elf.Symbol, err error) {
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
return
|
|
}
|
|
|
|
syms = nil
|
|
err = fmt.Errorf("reading ELF symbols panicked: %s", r)
|
|
}()
|
|
|
|
syms, err = se.File.Symbols()
|
|
return
|
|
}
|
|
|
|
// DynamicSymbols is the safe version of elf.File.DynamicSymbols.
|
|
func (se *SafeELFFile) DynamicSymbols() (syms []elf.Symbol, err error) {
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
return
|
|
}
|
|
|
|
syms = nil
|
|
err = fmt.Errorf("reading ELF dynamic symbols panicked: %s", r)
|
|
}()
|
|
|
|
syms, err = se.File.DynamicSymbols()
|
|
return
|
|
}
|
|
|
|
// SectionsByType returns all sections in the file with the specified section type.
|
|
func (se *SafeELFFile) SectionsByType(typ elf.SectionType) []*elf.Section {
|
|
sections := make([]*elf.Section, 0, 1)
|
|
for _, section := range se.Sections {
|
|
if section.Type == typ {
|
|
sections = append(sections, section)
|
|
}
|
|
}
|
|
return sections
|
|
}
|