funcgraph

package
v0.1.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 23, 2025 License: MIT Imports: 34 Imported by: 0

Documentation

Index

Constants

View Source
const (
	MaxParaLen    = funcgraphTraceConstantPARA_LEN
	MaxTraceCount = int(funcgraphTraceConstantMAX_TRACES)
)
View Source
const (
	MaxRegParas = 6
)

Variables

View Source
var ErrNotFoundKsym = errors.New("no found sym")
View Source
var RegToStr = []string{"rdi", "rsi", "rdx", "rcx", "r8", "r9"}
View Source
var RetReg = "rax"

Functions

func AllKSyms added in v0.1.7

func AllKSyms() iter.Seq[Symbol]

func ByteSliceToString

func ByteSliceToString(s []byte) string

func FlushBTFSpec added in v0.1.7

func FlushBTFSpec()

func FuncsFromFile

func FuncsFromFile(pattern string) map[Symbol]struct{}

func LoadBTFSpec added in v0.1.7

func LoadBTFSpec(mod string) (*btf.Spec, error)

func NewDumpOption

func NewDumpOption() (*dumpOption, error)

func ShowBtfFunc

func ShowBtfFunc(fn *btf.Func) (s string)

Types

type Addr

type Addr struct {
	Base  uint32 `parser:"@Number"`
	Index uint32 `parser:"Separator @Number"`
	Scale int32  `parser:"Separator @Number"`
	Imm   int32  `parser:"Separator @Number"`
}

type Arg added in v0.1.0

type Arg struct {
	Name   string
	Kind   ArgKind
	IdxOff uint32
	Size   int
	Typ    btf.Type
}

type ArgKind added in v0.1.0

type ArgKind = funcgraphArgKind
const (
	REG       ArgKind = funcgraphArgKindREG
	STACK     ArgKind = funcgraphArgKindSTACK
	ADDR      ArgKind = funcgraphArgKindADDR
	RET_REG   ArgKind = funcgraphArgKindRET_REG
	RET_STACK ArgKind = funcgraphArgKindRET_STACK
	REG_PTR   ArgKind = funcgraphArgKindREG_PTR
	STACK_PTR ArgKind = funcgraphArgKindSTACK_PTR
)

type CastType added in v0.0.7

type CastType struct {
	Moudle string `parser:"(@Ident Colon)?"`
	Name   string `parser:"@Ident"`
}

type Compare

type Compare struct {
	Operator  string `parser:"Whitespace@Operator"`
	Threshold Value  `parser:"Whitespace@(String|Number)"`
}

type DataExpr

type DataExpr struct {
	Dereference bool     `parser:"@DereferenceOperator?"`
	Typ         CastType `parser:"(LeftEdge Struct Whitespace @@ Whitespace DereferenceOperator RightEdge)?"`
	First       Primary  `parser:"@@"`
	Fields      []Field  `parser:"@@*"`
	ShowString  bool     `parser:"@ShowString?"`
	CompareInfo Compare  `parser:"@@?"`
}

func (DataExpr) String added in v0.1.0

func (d DataExpr) String() string

type Event

type Event uint8
const (
	CallEvent Event = iota
	StartEvent
	EntryEvent
	RetEvent
)

type EventStat

type EventStat uint8
const (
	CallSucess EventStat = iota
	CallDrop
	StartSucess
	StartDrop
	EntrySucess
	EntryDrop
	RetSucess
	RetDrop
)

type Field

type Field struct {
	Name  string `parser:"ArrowOperator@(Ident (Period Ident)*)"`
	Index Value  `parser:"(LeftBracket @Number RightBracket)?"`
}

type FuncEvent

type FuncEvent struct {
	Type     uint8
	Task     uint64
	CpuId    uint32
	Depth    uint64
	SeqId    uint64
	Ip       uint64
	Id       uint32
	Time     uint64
	Para     [funcgraphTraceConstantPARA_LEN]uint64
	DataLen  uint32
	DataOff  [MaxTraceCount]int32
	Data     *[]uint8
	Duration uint64
	Ret      [funcgraphTraceConstantPARA_LEN]uint64
}

type FuncEvents

type FuncEvents []FuncEvent

func (*FuncEvents) Add

func (es *FuncEvents) Add(e FuncEvent)

func (*FuncEvents) Reset

func (es *FuncEvents) Reset()

type FuncExpr

type FuncExpr struct {
	Module string     `parser:"(@Ident Colon)?"`
	Name   string     `parser:"@Ident"`
	Datas  []DataExpr `parser:"(LeftEdge@@(Whitespace? Separator Whitespace? @@)*RightEdge)?"`
}

func ParseFuncWithPara

func ParseFuncWithPara(s string) (*FuncExpr, error)

type FuncGraph

type FuncGraph struct {
	// contains filtered or unexported fields
}

func NewFuncGraph

func NewFuncGraph(opt *Option) (*FuncGraph, error)

func (*FuncGraph) Init

func (fg *FuncGraph) Init() error

func (*FuncGraph) Run

func (fg *FuncGraph) Run() error

type FuncInfo

type FuncInfo struct {
	IsEntry bool
	Symbol

	Btfinfo *btf.Func
	// contains filtered or unexported fields
}

func (*FuncInfo) GenTraceData added in v0.1.0

func (f *FuncInfo) GenTraceData(dataExpr DataExpr) error

func (*FuncInfo) InitArgsRet added in v0.1.0

func (f *FuncInfo) InitArgsRet()

func (*FuncInfo) ShowPara added in v0.1.0

func (f *FuncInfo) ShowPara(e *FuncEvent, opt *dumpOption, dst *bytes.Buffer)

func (*FuncInfo) ShowRet added in v0.1.0

func (f *FuncInfo) ShowRet(e *FuncEvent, opt *dumpOption, dst *bytes.Buffer)

func (*FuncInfo) ShowRetTrace added in v0.1.0

func (f *FuncInfo) ShowRetTrace(e *FuncEvent, opt *dumpOption, dst *bytes.Buffer)

func (*FuncInfo) ShowTrace added in v0.1.0

func (f *FuncInfo) ShowTrace(e *FuncEvent, opt *dumpOption, dst *bytes.Buffer)

func (*FuncInfo) String added in v0.1.0

func (f *FuncInfo) String() string

type Option

type Option struct {
	EntryFuncs        []string
	AllowFuncs        []string
	DenyFuncs         []string
	EntryFuncsOfDwarf map[Symbol]struct{}
	AllowFuncsOfDwarf map[Symbol]struct{}
	EntryFuncExprs    []*FuncExpr
	AllowFuncExprs    []*FuncExpr
	AllowPids         []int
	DenyPids          []int
	AllowComms        []string
	DenyComms         []string
	Verbose           bool
	BpfLog            bool
	DryRun            bool
	MaxTraceSize      uint32
	MaxRingSize       uint32
	Mode              string
	Target            string
	InheritChild      bool
	Duration          uint64
	Depth             uint64
}

type Primary

type Primary struct {
	Name string `parser:"@Ident"`
	Addr Addr   `parser:"| LeftEdge @@ RightEdge"`
}

type Symbol

type Symbol struct {
	Addr   uint64
	Name   string
	Module string
	// contains filtered or unexported fields
}

func SymbolByAddr added in v0.1.7

func SymbolByAddr(addr uint64) (Symbol, error)

type TraceData

type TraceData struct {
	IdxOff uint32

	CmpOperator uint8
	Target      uint64
	TargetStr   string
	// contains filtered or unexported fields
}

type Value

type Value struct {
	// contains filtered or unexported fields
}

func (*Value) Capture added in v0.0.8

func (v *Value) Capture(values []string) error

func (Value) ShowSignNumber added in v0.0.8

func (v Value) ShowSignNumber() (int64, error)

func (Value) ShowString added in v0.0.8

func (v Value) ShowString() (string, error)

func (Value) ShowUnsignNumber added in v0.0.8

func (v Value) ShowUnsignNumber() (uint64, error)

func (Value) String

func (v Value) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL