Skip to content

Commit 21be173

Browse files
authored
Merge pull request #192 from thaJeztah/ebpf_deprecated
v2: ebpf: replace deprecated prog.Attach/prog.Detach and fix closer
2 parents 680c246 + fefdccb commit 21be173

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

v2/ebpf.go

+15-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ package v2
1919
import (
2020
"github.com/cilium/ebpf"
2121
"github.com/cilium/ebpf/asm"
22+
"github.com/cilium/ebpf/link"
2223
"github.com/opencontainers/runtime-spec/specs-go"
2324
"github.com/pkg/errors"
2425
"golang.org/x/sys/unix"
@@ -42,12 +43,23 @@ func LoadAttachCgroupDeviceFilter(insts asm.Instructions, license string, dirFD
4243
if err != nil {
4344
return nilCloser, err
4445
}
45-
if err := prog.Attach(dirFD, ebpf.AttachCGroupDevice, unix.BPF_F_ALLOW_MULTI); err != nil {
46+
err = link.RawAttachProgram(link.RawAttachProgramOptions{
47+
Target: dirFD,
48+
Program: prog,
49+
Attach: ebpf.AttachCGroupDevice,
50+
Flags: unix.BPF_F_ALLOW_MULTI,
51+
})
52+
if err != nil {
4653
return nilCloser, errors.Wrap(err, "failed to call BPF_PROG_ATTACH (BPF_CGROUP_DEVICE, BPF_F_ALLOW_MULTI)")
4754
}
4855
closer := func() error {
49-
if err := prog.Detach(dirFD, ebpf.AttachCGroupDevice, unix.BPF_F_ALLOW_MULTI); err != nil {
50-
return errors.Wrap(err, "failed to call BPF_PROG_DETACH (BPF_CGROUP_DEVICE, BPF_F_ALLOW_MULTI)")
56+
err = link.RawDetachProgram(link.RawDetachProgramOptions{
57+
Target: dirFD,
58+
Program: prog,
59+
Attach: ebpf.AttachCGroupDevice,
60+
})
61+
if err != nil {
62+
return errors.Wrap(err, "failed to call BPF_PROG_DETACH (BPF_CGROUP_DEVICE)")
5163
}
5264
return nil
5365
}

0 commit comments

Comments
 (0)