mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-19 18:02:01 +00:00
The commands used were (roughly): hack/pin-dependency.sh github.com/opencontainers/runc v1.0.1 hack/lint-dependencies.sh # Follow its recommendations. hack/pin-dependency.sh github.com/cilium/ebpf v0.6.2 hack/pin-dependency.sh github.com/opencontainers/selinux v1.8.2 hack/pin-dependency.sh github.com/sirupsen/logrus v1.8.1 # Recheck. hack/lint-dependencies.sh GO111MODULE=on go mod edit -dropreplace github.com/willf/bitset hack/update-vendor.sh # Recheck. hack/lint-dependencies.sh hack/update-internal-modules.sh # Recheck. hack/lint-dependencies.sh Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
69 lines
1.3 KiB
Go
69 lines
1.3 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
|
|
}
|
|
|
|
// 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
|
|
}
|