2020-03-10 08:09:25 -04:00
|
|
|
package ebpf
|
|
|
|
|
|
|
|
import (
|
2020-07-24 03:53:45 -04:00
|
|
|
"fmt"
|
|
|
|
|
2020-03-10 08:09:25 -04:00
|
|
|
"github.com/cilium/ebpf/asm"
|
2020-07-24 03:53:45 -04:00
|
|
|
"github.com/cilium/ebpf/internal/btf"
|
2020-03-10 08:09:25 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// link resolves bpf-to-bpf calls.
|
|
|
|
//
|
2020-07-24 03:53:45 -04:00
|
|
|
// Each library may contain multiple functions / labels, and is only linked
|
|
|
|
// if prog references one of these functions.
|
2020-03-10 08:09:25 -04:00
|
|
|
//
|
2020-07-24 03:53:45 -04:00
|
|
|
// Libraries also linked.
|
|
|
|
func link(prog *ProgramSpec, libs []*ProgramSpec) error {
|
|
|
|
var (
|
|
|
|
linked = make(map[*ProgramSpec]bool)
|
|
|
|
pending = []asm.Instructions{prog.Instructions}
|
|
|
|
insns asm.Instructions
|
|
|
|
)
|
|
|
|
for len(pending) > 0 {
|
|
|
|
insns, pending = pending[0], pending[1:]
|
|
|
|
for _, lib := range libs {
|
|
|
|
if linked[lib] {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
needed, err := needSection(insns, lib.Instructions)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("linking %s: %w", lib.Name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !needed {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
linked[lib] = true
|
|
|
|
prog.Instructions = append(prog.Instructions, lib.Instructions...)
|
|
|
|
pending = append(pending, lib.Instructions)
|
|
|
|
|
|
|
|
if prog.BTF != nil && lib.BTF != nil {
|
|
|
|
if err := btf.ProgramAppend(prog.BTF, lib.BTF); err != nil {
|
|
|
|
return fmt.Errorf("linking BTF of %s: %w", lib.Name, err)
|
|
|
|
}
|
|
|
|
}
|
2020-03-10 08:09:25 -04:00
|
|
|
}
|
|
|
|
}
|
2020-07-24 03:53:45 -04:00
|
|
|
|
|
|
|
return nil
|
2020-03-10 08:09:25 -04:00
|
|
|
}
|
|
|
|
|
2020-07-24 03:53:45 -04:00
|
|
|
func needSection(insns, section asm.Instructions) (bool, error) {
|
2020-03-10 08:09:25 -04:00
|
|
|
// A map of symbols to the libraries which contain them.
|
|
|
|
symbols, err := section.SymbolOffsets()
|
|
|
|
if err != nil {
|
2020-07-24 03:53:45 -04:00
|
|
|
return false, err
|
2020-03-10 08:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, ins := range insns {
|
|
|
|
if ins.Reference == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-07-24 03:53:45 -04:00
|
|
|
if ins.OpCode.JumpOp() != asm.Call || ins.Src != asm.PseudoCall {
|
2020-03-10 08:09:25 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if ins.Constant != -1 {
|
|
|
|
// This is already a valid call, no need to link again.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := symbols[ins.Reference]; !ok {
|
|
|
|
// Symbol isn't available in this section
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we know that at least one function in the
|
2020-07-24 03:53:45 -04:00
|
|
|
// library is called from insns, so we have to link it.
|
|
|
|
return true, nil
|
2020-03-10 08:09:25 -04:00
|
|
|
}
|
|
|
|
|
2020-07-24 03:53:45 -04:00
|
|
|
// None of the functions in the section are called.
|
|
|
|
return false, nil
|
2020-03-10 08:09:25 -04:00
|
|
|
}
|