Skip to content

Commit

Permalink
tetragon: Update kprobe/tracepoint event action definitions
Browse files Browse the repository at this point in the history
Catching up with kprobe/tracepoint event action enum definitions.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
  • Loading branch information
olsajiri committed Oct 7, 2023
1 parent 191488f commit 495d8b9
Show file tree
Hide file tree
Showing 11 changed files with 229 additions and 139 deletions.
3 changes: 3 additions & 0 deletions api/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,9 @@ RuntimeHookRequest synchronously propagates information to the agent about run-t
| KPROBE_ACTION_DNSLOOKUP | 8 | GetURL action issue a DNS lookup against an URL from userspace. |
| KPROBE_ACTION_NOPOST | 9 | NoPost action suppresses the transmission of the event to userspace. |
| KPROBE_ACTION_SIGNAL | 10 | Signal action sends specified signal to the process. |
| KPROBE_ACTION_TRACKSOCK | 11 | TrackSock action tracks socket. |
| KPROBE_ACTION_UNTRACKSOCK | 12 | UntrackSock action un-tracks socket. |
| KPROBE_ACTION_NOTIFYKILLER | 13 | NotifyKiller action notifies killer sensor. |



Expand Down
104 changes: 61 additions & 43 deletions api/v1/tetragon/tetragon.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions api/v1/tetragon/tetragon.proto
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,12 @@ enum KprobeAction {
KPROBE_ACTION_NOPOST = 9;
// Signal action sends specified signal to the process.
KPROBE_ACTION_SIGNAL = 10;
// TrackSock action tracks socket.
KPROBE_ACTION_TRACKSOCK = 11;
// UntrackSock action un-tracks socket.
KPROBE_ACTION_UNTRACKSOCK = 12;
// NotifyKiller action notifies killer sensor.
KPROBE_ACTION_NOTIFYKILLER = 13;
}

message ProcessKprobe {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 495d8b9

Please sign in to comment.