| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- package ebpftracer
- import (
- "errors"
- "github.com/coroot/coroot-node-agent/common"
- "github.com/coroot/coroot-node-agent/ebpftracer/tracer/inject"
- klog "github.com/sirupsen/logrus"
- "io/ioutil"
- "runtime"
- "strings"
- "debug/elf"
- "fmt"
- "path/filepath"
- "github.com/cilium/ebpf/link"
- "github.com/coroot/coroot-node-agent/proc"
- "golang.org/x/arch/arm64/arm64asm"
- "golang.org/x/arch/x86/x86asm"
- )
- const (
- // goServeHTTP = "net/http.serverHandler.ServeHTTP"
- // binPath = "/root/code/jdk8u/build/linux-x86_64-normal-server-release/jdk/lib/amd64/libnio.so"
- symbolsocketRead0 = "Java_sun_nio_ch_FileDispatcherImpl_read0"
- )
- func (t *Tracer) AttachJavaNioReadUprobes(pid uint32, codeType common.CodeType) ([]link.Link, error) {
- if t.DisableL7Tracing() {
- return nil, nil
- }
- var links []link.Link
- var bpath = ""
- // JavaAOT 逻辑
- if codeType.IsJavaAotCode() {
- bpath = proc.Path(uint32(pid), "exe")
- } else {
- version := UsePIDToGetJDKVersion(pid)
- klog.Infof("[attach] java version is %s", version)
- bpath = getSoPath(pid, "libnio.so")
- if bpath == "" {
- return nil, errors.New("can not find nio.so")
- }
- }
- klog.Infof("[attach] find the nio.so path is %s", bpath)
- ex, err := link.OpenExecutable(bpath)
- if err != nil {
- return nil, err
- }
- ef, err := elf.Open(bpath)
- if err != nil {
- return nil, err
- //PID: int(pid),
- }
- defer ef.Close()
- symbols, err := ef.DynamicSymbols()
- if err != nil {
- if errors.Is(err, elf.ErrNoSymbols) {
- return nil, err
- }
- return nil, err
- }
- textSection := ef.Section(".text")
- if textSection == nil {
- return nil, errors.New("can not find .text section")
- }
- textSectionData, err := textSection.Data()
- if err != nil {
- return nil, err
- }
- textSectionLen := uint64(len(textSectionData) - 1)
- // opt := link.UprobeOptions{
- // Offset: 61,
- // }
- // upread02, err := ex.Uprobe(symbolsocketRead0, t.uprobes["uprobe_ret_Java_sun_nio_ch_FileDispatcherImpl_read0"], &opt)
- // if err != nil {
- // return nil
- // }
- // links = append(links, upread01)
- for _, s := range symbols {
- if elf.ST_TYPE(s.Info) != elf.STT_FUNC || s.Size == 0 {
- continue
- }
- switch s.Name {
- case symbolsocketRead0:
- default:
- continue
- }
- address := s.Value
- for _, p := range ef.Progs {
- if p.Type != elf.PT_LOAD || (p.Flags&elf.PF_X) == 0 {
- continue
- }
- if p.Vaddr <= s.Value && s.Value < (p.Vaddr+p.Memsz) {
- address = s.Value - p.Vaddr + p.Off
- break
- }
- }
- klog.Infof("[attach] java symbol name is %s", s.Name)
- switch s.Name {
- case symbolsocketRead0:
- sStart := s.Value - textSection.Addr
- sEnd := sStart + s.Size
- if sEnd > textSectionLen {
- continue
- }
- sBytes := textSectionData[sStart:sEnd]
- returnOffsets := getCallNextMoveOffsets(ef.Machine, sBytes)
- if len(returnOffsets) == 0 {
- return nil, fmt.Errorf("failed to attach uprobe_ret_Java_sun_nio_ch_FileDispatcherImpl_read0 uprobe")
- }
- for _, offset := range returnOffsets {
- l, err := ex.Uprobe(s.Name, t.uprobes["uprobe_ret_Java_sun_nio_ch_FileDispatcherImpl_read0"], &link.UprobeOptions{Address: address, Offset: uint64(offset), PID: int(pid)})
- if err != nil {
- return nil, fmt.Errorf("failed to attach uprobe_ret_Java_sun_nio_ch_FileDispatcherImpl_read0 uprobe")
- }
- links = append(links, l)
- }
- }
- }
- if len(links) == 0 {
- return nil, fmt.Errorf("no links found for %s", bpath)
- }
- klog.WithField("pid", pid).Infof("[attach] libnio attached!")
- return links, nil
- }
- func (t *Tracer) AttachJavaNetWriteUprobes(pid uint32) ([]link.Link, error) {
- if t.DisableL7Tracing() {
- return nil, nil
- }
- // 关闭横向串联
- if t.DisableE2ETracing() {
- return nil, nil
- }
- //inject
- originFunc := "Java_java_net_SocketOutputStream_socketWrite0"
- uProbeData := inject.UprobeData{
- Offset: 53,
- Func: originFunc,
- ELFPath: "/root/cwlibnet.so",
- }
- if runtime.GOARCH == "arm64" {
- uProbeData = inject.UprobeData{
- Offset: 8,
- Func: "CW_" + originFunc,
- ELFPath: "/root/cwlibnet.so",
- }
- }
- jvmInjector := &inject.JvmInjector{
- Pid: int(pid),
- ReleaseLibNetInfo: inject.LibNetInfo{
- LibName: "libnet.so",
- FuncSymbol: inject.InstInfo{
- SymName: originFunc,
- },
- },
- DebugLibNetInfo: inject.LibNetInfo{
- // TODO 根据版本设置
- LibName: filepath.Base(uProbeData.ELFPath),
- // TODO 根据版本设置
- LibPath: uProbeData.ELFPath,
- FuncSymbol: inject.InstInfo{
- SymName: uProbeData.Func,
- },
- },
- RecodeInfo: inject.LibNetInfo{FuncSymbol: inject.InstInfo{SymName: "CW_RECODE_" + originFunc}},
- Uprobe: uProbeData,
- }
- err := inject.JvmInject(jvmInjector)
- if err != nil {
- return nil, err
- }
- var links []link.Link
- ex, err := link.OpenExecutable(jvmInjector.Uprobe.ELFPath)
- if err != nil {
- return nil, err
- }
- opt := link.UprobeOptions{
- Offset: uint64(jvmInjector.Uprobe.Offset),
- PID: int(pid),
- }
- upread02, err := ex.Uprobe(jvmInjector.Uprobe.Func, t.uprobes["uprobe_Java_java_net_SocketOutputStream_socketWrite0"], &opt)
- if err != nil {
- return nil, err
- }
- links = append(links, upread02)
- if len(links) == 0 {
- return nil, errors.New("can not find uprobe_Java_net_SocketOutputStream_socketWrite0")
- }
- klog.WithField("pid", pid).Infoln("[jvm] libnet attached")
- return links, nil
- }
- func getCallNextMoveOffsets(machine elf.Machine, instructions []byte) []int {
- var res []int
- firstCall := 0
- switch machine {
- case elf.EM_X86_64:
- for i := 0; i < len(instructions); {
- ins, err := x86asm.Decode(instructions[i:], 64)
- if err == nil && ins.Op == x86asm.CALL {
- if firstCall == 0 {
- firstCall = 1
- } else {
- i += ins.Len
- res = append(res, i)
- return res
- }
- }
- i += ins.Len
- }
- case elf.EM_AARCH64:
- for i := 0; i < len(instructions); {
- ins, err := arm64asm.Decode(instructions[i:])
- if err == nil && ins.Op == arm64asm.BL {
- if firstCall == 0 {
- firstCall = 1
- } else {
- i += 4
- res = append(res, i)
- return res
- }
- }
- i += 4
- }
- }
- return res
- }
- func getSoPath(pid uint32, soname string) string {
- // 获取进程的maps文件路径
- mapsPath := fmt.Sprintf("/proc/%d/maps", pid)
- // 读取maps文件内容
- mapsData, err := ioutil.ReadFile(mapsPath)
- if err != nil {
- fmt.Println("lookup so error.")
- return ""
- }
- lines := strings.Split(string(mapsData), "\n")
- for _, line := range lines {
- fields := strings.Fields(line)
- if len(fields) >= 6 {
- perms := fields[1]
- path := fields[len(fields)-1]
- if strings.Contains(perms, "x") && filepath.Ext(path) == ".so" {
- if strings.Contains(path, soname) {
- return path
- }
- }
- }
- }
- return ""
- }
|