1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
package link
import (
"errors"
"math"
"os"
"os/exec"
"testing"
"github.com/go-quicktest/qt"
"github.com/cilium/ebpf"
"github.com/cilium/ebpf/internal/testutils"
)
func TestUprobeMulti(t *testing.T) {
testutils.SkipIfNotSupported(t, haveBPFLinkUprobeMulti())
prog := mustLoadProgram(t, ebpf.Kprobe, ebpf.AttachTraceUprobeMulti, "")
// uprobe
um, err := bashEx.UprobeMulti(bashSyms, prog, nil)
if err != nil {
t.Fatal(err)
}
testLink(t, um, prog)
_ = um.Close()
// uretprobe
um, err = bashEx.UretprobeMulti(bashSyms, prog, nil)
if err != nil {
t.Fatal(err)
}
testLink(t, um, prog)
_ = um.Close()
}
func TestUprobeMultiInput(t *testing.T) {
testutils.SkipIfNotSupported(t, haveBPFLinkUprobeMulti())
prog := mustLoadProgram(t, ebpf.Kprobe, ebpf.AttachTraceUprobeMulti, "")
// Always doing same test for both uprobe and uretprobe
// One of symbols or offsets must be given.
_, err := bashEx.UprobeMulti([]string{}, prog, nil)
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
_, err = bashEx.UretprobeMulti([]string{}, prog, nil)
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// One address, two cookies.
_, err = bashEx.UprobeMulti([]string{}, prog, &UprobeMultiOptions{
Addresses: []uint64{1},
Cookies: []uint64{2, 3},
})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
_, err = bashEx.UretprobeMulti([]string{}, prog, &UprobeMultiOptions{
Addresses: []uint64{1},
Cookies: []uint64{2, 3},
})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// Two addresses, one refctr offset.
_, err = bashEx.UprobeMulti([]string{}, prog, &UprobeMultiOptions{
Addresses: []uint64{1, 2},
RefCtrOffsets: []uint64{4},
})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
_, err = bashEx.UretprobeMulti([]string{}, prog, &UprobeMultiOptions{
Addresses: []uint64{1, 2},
RefCtrOffsets: []uint64{4},
})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// It's either symbols or addresses.
_, err = bashEx.UprobeMulti(bashSyms, prog, &UprobeMultiOptions{
Addresses: []uint64{1},
})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
_, err = bashEx.UretprobeMulti(bashSyms, prog, &UprobeMultiOptions{
Addresses: []uint64{1},
})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// No addresses and no symbols
_, err = bashEx.UprobeMulti([]string{}, prog, nil)
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
_, err = bashEx.UretprobeMulti([]string{}, prog, nil)
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// PID not found
_, err = bashEx.UprobeMulti(bashSyms, prog, &UprobeMultiOptions{
// pid_t is int32, overflowing it will return EINVAL.
PID: math.MaxInt32,
})
qt.Assert(t, qt.ErrorIs(err, os.ErrNotExist))
_, err = bashEx.UretprobeMulti(bashSyms, prog, &UprobeMultiOptions{
PID: math.MaxInt32,
})
qt.Assert(t, qt.ErrorIs(err, os.ErrNotExist))
}
func TestUprobeMultiResolveOk(t *testing.T) {
addrSym1, err := bashEx.address(bashSyms[0], 0, 0)
qt.Assert(t, qt.IsNil(err))
addrSym2, err := bashEx.address(bashSyms[1], 0, 0)
qt.Assert(t, qt.IsNil(err))
addrSym3, err := bashEx.address(bashSyms[2], 0, 0)
qt.Assert(t, qt.IsNil(err))
addrs, err := bashEx.addresses(bashSyms, nil, nil)
qt.Assert(t, qt.IsNil(err))
qt.Assert(t, qt.DeepEquals(addrs, []uint64{addrSym1, addrSym2, addrSym3}))
addrs, err = bashEx.addresses(bashSyms, nil, []uint64{5, 10, 11})
qt.Assert(t, qt.IsNil(err))
qt.Assert(t, qt.DeepEquals(addrs, []uint64{addrSym1 + 5, addrSym2 + 10, addrSym3 + 11}))
addrs, err = bashEx.addresses(bashSyms, []uint64{1, 2, 3}, nil)
qt.Assert(t, qt.IsNil(err))
qt.Assert(t, qt.DeepEquals(addrs, []uint64{1, 2, 3}))
}
func TestUprobeMultiResolveFail(t *testing.T) {
// No input
_, err := bashEx.addresses(nil, nil, nil)
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// Different dimensions for Addresses and Offsets
_, err = bashEx.addresses(nil, []uint64{100, 200}, []uint64{5, 10, 11})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
// Different dimensions for symbols and Offsets
_, err = bashEx.addresses(bashSyms, nil, []uint64{5, 10})
qt.Assert(t, qt.ErrorIs(err, errInvalidInput))
}
func TestUprobeMultiCookie(t *testing.T) {
testutils.SkipIfNotSupported(t, haveBPFLinkUprobeMulti())
prog := mustLoadProgram(t, ebpf.Kprobe, ebpf.AttachTraceUprobeMulti, "")
// uprobe
um, err := bashEx.UprobeMulti(bashSyms, prog,
&UprobeMultiOptions{
Cookies: []uint64{1, 2, 3},
})
if err != nil {
t.Fatal(err)
}
_ = um.Close()
// uretprobe
um, err = bashEx.UretprobeMulti(bashSyms, prog,
&UprobeMultiOptions{
Cookies: []uint64{3, 2, 1},
})
if err != nil {
t.Fatal(err)
}
_ = um.Close()
}
func TestUprobeMultiProgramCall(t *testing.T) {
testutils.SkipIfNotSupported(t, haveBPFLinkUprobeMulti())
// We execute 'bash --help'
args := []string{"--help"}
elf := "/bin/bash"
test := func(retprobe bool, expected uint32) {
m, p := newUpdaterMapProg(t, ebpf.Kprobe, ebpf.AttachTraceUprobeMulti)
var err error
// Load the executable.
ex, err := OpenExecutable(elf)
if err != nil {
t.Fatal(err)
}
var um Link
// Open UprobeMulti on the executable for the given symbol
// and attach it to the ebpf program created above.
if retprobe {
um, err = ex.UretprobeMulti(bashSyms, p, nil)
} else {
um, err = ex.UprobeMulti(bashSyms, p, nil)
}
if errors.Is(err, ErrNoSymbol) {
// Assume bash_Syms symbols always exist and skip the test
// if the symbol can't be found as certain OS (eg. Debian)
// strip binaries.
t.Skipf("executable %s appear to be stripped, skipping", elf)
}
if err != nil {
t.Fatal(err)
}
// Trigger ebpf program call.
trigger := func(t *testing.T) {
if err := exec.Command(elf, args...).Run(); err != nil {
t.Fatal(err)
}
}
trigger(t)
// Detach link.
if err := um.Close(); err != nil {
t.Fatal(err)
}
assertMapValueGE(t, m, 0, expected)
// Reset map value to 0 at index 0.
if err := m.Update(uint32(0), uint32(0), ebpf.UpdateExist); err != nil {
t.Fatal(err)
}
// Retrigger the ebpf program call.
trigger(t)
// Assert that this time the value has not been updated.
assertMapValue(t, m, 0, 0)
}
// all 3 uprobes should trigger for entry uprobes
test(false, 3)
// We have return uprobe installed on main, _start and check_dev_tty
// functions, but only check_dev_tty is triggered, because 'bash --help'
// calls exit(0).
test(true, 1)
}
func TestHaveBPFLinkUprobeMulti(t *testing.T) {
testutils.CheckFeatureTest(t, haveBPFLinkUprobeMulti)
}
|