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
|
package generate
import "strings"
type TracepointKind int
const (
KindNone TracepointKind = iota
KindFd
KindOpen
KindPathname
KindName
KindRet
KindFcntl
KindNull
KindDup3
KindOpenByHandleAt
)
type RetClassification string
const (
Unclassified RetClassification = "UNCLASSIFIED"
ReadClassified RetClassification = "READ_CLASSIFIED"
WriteClassified RetClassification = "WRITE_CLASSIFIED"
TransferClassified RetClassification = "TRANSFER_CLASSIFIED"
)
type ClassificationResult struct {
Kind TracepointKind
PathnameField string // for KindPathname: "pathname", "path", "filename", or "name"
}
// ClassifyFormat determines the tracepoint kind for a parsed format section.
// It mirrors the Raku multi-dispatch: name-based ignores take priority,
// then name-only mappings, then each external field is tried in order until
// one matches a name+field or generic field pattern.
func ClassifyFormat(f *Format) ClassificationResult {
if len(f.ExternalFields) == 0 {
return ClassificationResult{Kind: KindNone}
}
if shouldIgnore(f.Name) {
return ClassificationResult{Kind: KindNone}
}
if r, ok := classifyNameOnly(f.Name); ok {
return r
}
for _, field := range f.ExternalFields {
if field.Name == "__syscall_nr" {
continue
}
if r, ok := classifyNameAndField(f.Name, field.Type, field.Name); ok {
return r
}
if r, ok := classifyByField(field.Type, field.Name); ok {
return r
}
}
return ClassificationResult{Kind: KindNone}
}
func shouldIgnore(name string) bool {
prefixIgnores := []string{
"sys_enter_mknod",
"sys_enter_execve",
"sys_enter_accept",
"sys_enter_listen",
"sys_enter_epoll",
}
for _, p := range prefixIgnores {
if strings.HasPrefix(name, p) {
return true
}
}
if strings.HasPrefix(name, "sys_enter_") {
containsIgnores := []string{"recv", "send", "sock", "inotify"}
for _, sub := range containsIgnores {
if strings.Contains(name, sub) {
return true
}
}
}
exactIgnores := map[string]bool{
"sys_enter_bind": true,
"sys_enter_setns": true,
"sys_enter_shutdown": true,
"sys_enter_connect": true,
"sys_enter_fanotify_init": true,
"sys_enter_getpeername": true,
}
return exactIgnores[name]
}
// classifyNameOnly handles tracepoints classified by name alone,
// independent of any field.
func classifyNameOnly(name string) (ClassificationResult, bool) {
switch name {
case "sys_enter_open_by_handle_at":
return ClassificationResult{Kind: KindOpenByHandleAt}, true
case "sys_enter_io_uring_enter":
return ClassificationResult{Kind: KindFd}, true
case "sys_enter_io_uring_register":
return ClassificationResult{Kind: KindFd}, true
case "sys_enter_fcntl":
return ClassificationResult{Kind: KindFcntl}, true
case "sys_enter_syslog":
return ClassificationResult{Kind: KindNull}, true
case "sys_enter_sync":
return ClassificationResult{Kind: KindNull}, true
case "sys_enter_msync":
return ClassificationResult{Kind: KindNull}, true
case "sys_enter_getcwd":
return ClassificationResult{Kind: KindNull}, true
}
if strings.HasPrefix(name, "sys_enter_io_") {
return ClassificationResult{Kind: KindNull}, true
}
return ClassificationResult{}, false
}
// classifyNameAndField handles tracepoints that need both the name and
// a specific field to classify.
func classifyNameAndField(name, fieldType, fieldName string) (ClassificationResult, bool) {
switch name {
case "sys_enter_dup":
if fieldType == "unsigned int" && fieldName == "fildes" {
return ClassificationResult{Kind: KindFd}, true
}
case "sys_enter_dup2":
if fieldType == "unsigned int" && fieldName == "oldfd" {
return ClassificationResult{Kind: KindFd}, true
}
case "sys_enter_dup3":
if fieldType == "unsigned int" && fieldName == "oldfd" {
return ClassificationResult{Kind: KindDup3}, true
}
case "sys_enter_name_to_handle_at":
if fieldType == "const char *" && fieldName == "name" {
return ClassificationResult{Kind: KindPathname, PathnameField: "name"}, true
}
case "sys_enter_copy_file_range":
if isFdType(fieldType) && fieldName == "fd_in" {
return ClassificationResult{Kind: KindFd}, true
}
}
if strings.HasPrefix(name, "sys_enter") &&
strings.Contains(name, "open") &&
fieldType == "const char *" && fieldName == "filename" {
return ClassificationResult{Kind: KindOpen}, true
}
return ClassificationResult{}, false
}
func classifyByField(fieldType, fieldName string) (ClassificationResult, bool) {
switch {
case fieldName == "fd" && isFdType(fieldType):
return ClassificationResult{Kind: KindFd}, true
case fieldType == "const char *" && fieldName == "newname":
return ClassificationResult{Kind: KindName}, true
case fieldType == "const char *" && fieldName == "pathname":
return ClassificationResult{Kind: KindPathname, PathnameField: "pathname"}, true
case fieldType == "const char *" && fieldName == "path":
return ClassificationResult{Kind: KindPathname, PathnameField: "path"}, true
case fieldType == "const char *" && fieldName == "filename":
return ClassificationResult{Kind: KindPathname, PathnameField: "filename"}, true
case fieldType == "long" && fieldName == "ret":
return ClassificationResult{Kind: KindRet}, true
}
return ClassificationResult{}, false
}
func isFdType(t string) bool {
return t == "unsigned int" || t == "unsigned long" || t == "int"
}
// ClassifyRet returns the RetClassification for a syscall exit name.
func ClassifyRet(name string) RetClassification {
syscall := strings.ToLower(strings.TrimPrefix(name, "sys_exit_"))
if c, ok := retClassifications[syscall]; ok {
return c
}
return Unclassified
}
var retClassifications = map[string]RetClassification{
"fgetxattr": ReadClassified,
"flistxattr": ReadClassified,
"getdents": ReadClassified,
"getdents64": ReadClassified,
"getxattr": ReadClassified,
"lgetxattr": ReadClassified,
"listxattr": ReadClassified,
"llistxattr": ReadClassified,
"pread64": ReadClassified,
"preadv": ReadClassified,
"preadv2": ReadClassified,
"process_vm_readv": ReadClassified,
"read": ReadClassified,
"readlink": ReadClassified,
"readlinkat": ReadClassified,
"readv": ReadClassified,
"recvmmsg": ReadClassified,
"recvmsg": ReadClassified,
"recvfrom": ReadClassified,
"syslog": ReadClassified,
"copy_file_range": TransferClassified,
"sendfile64": TransferClassified,
"splice": TransferClassified,
"tee": TransferClassified,
"vmsplice": TransferClassified,
"process_vm_writev": WriteClassified,
"pwrite64": WriteClassified,
"pwritev": WriteClassified,
"pwritev2": WriteClassified,
"sendmmsg": WriteClassified,
"sendmsg": WriteClassified,
"sendto": WriteClassified,
"write": WriteClassified,
"writev": WriteClassified,
}
|