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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
|
package benchutil
import (
"fmt"
"math/rand"
"syscall"
"ior/internal/types"
)
const (
defaultMixSeed int64 = 1
defaultStreamTime uint64 = 1
defaultBasePid uint32 = 1000
defaultBaseTid uint32 = 2000
defaultBaseFd int32 = 64
)
type MixEvent uint8
const (
MixRead MixEvent = iota + 1
MixWrite
MixOpen
MixClose
MixStat
MixSync
MixFsync
MixAccess
MixMkdir
MixUnlink
MixRename
MixLink
MixFcntl
MixDup3
MixOpenByHandleAt
)
type MixEntry struct {
Event MixEvent
Weight int
}
type EventMix struct {
Entries []MixEntry
Seed int64
}
var ReadHeavy = EventMix{
Entries: []MixEntry{
{Event: MixRead, Weight: 30},
{Event: MixWrite, Weight: 30},
{Event: MixOpen, Weight: 10},
{Event: MixClose, Weight: 10},
{Event: MixStat, Weight: 10},
{Event: MixSync, Weight: 10},
},
Seed: defaultMixSeed,
}
var WriteHeavy = EventMix{
Entries: []MixEntry{
{Event: MixWrite, Weight: 40},
{Event: MixFsync, Weight: 20},
{Event: MixRead, Weight: 15},
{Event: MixOpen, Weight: 5},
{Event: MixClose, Weight: 5},
{Event: MixStat, Weight: 15},
},
Seed: defaultMixSeed,
}
var MetadataHeavy = EventMix{
Entries: []MixEntry{
{Event: MixStat, Weight: 15},
{Event: MixAccess, Weight: 15},
{Event: MixOpen, Weight: 12},
{Event: MixClose, Weight: 13},
{Event: MixMkdir, Weight: 10},
{Event: MixUnlink, Weight: 10},
{Event: MixRename, Weight: 8},
{Event: MixLink, Weight: 7},
{Event: MixRead, Weight: 5},
{Event: MixWrite, Weight: 5},
},
Seed: defaultMixSeed,
}
var DiverseAllTypes = EventMix{
Entries: []MixEntry{
{Event: MixOpen, Weight: 1},
{Event: MixRead, Weight: 1},
{Event: MixSync, Weight: 1},
{Event: MixStat, Weight: 1},
{Event: MixRename, Weight: 1},
{Event: MixFcntl, Weight: 1},
{Event: MixDup3, Weight: 1},
{Event: MixOpenByHandleAt, Weight: 1},
{Event: MixClose, Weight: 1},
},
Seed: defaultMixSeed,
}
func (m EventMix) GenerateStream(gen EventGenerator, n, numThreads int) ([][]byte, error) {
if n <= 0 {
return nil, nil
}
threadCount := numThreads
if threadCount < 1 {
threadCount = 1
}
entries := m.activeEntries()
totalWeight := sumWeights(entries)
rng := rand.New(rand.NewSource(m.seed()))
stream := make([][]byte, 0, n*2)
nextTime := defaultStreamTime
for i := 0; i < n; i++ {
threadIdx := i % threadCount
pid := defaultBasePid + uint32(threadIdx)
tid := defaultBaseTid + uint32(threadIdx)
fd := fdFor(threadIdx, i)
event := choose(entries, totalWeight, rng)
enter, exit, err := event.pair(gen, nextTime, pid, tid, fd, i)
if err != nil {
return nil, fmt.Errorf("generate event %v pair: %w", event, err)
}
stream = append(stream, enter, exit)
nextTime += gen.pairDelta() + 1
}
return stream, nil
}
func choose(entries []MixEntry, totalWeight int, rng *rand.Rand) MixEvent {
if totalWeight <= 0 {
return MixRead
}
roll := rng.Intn(totalWeight)
for _, entry := range entries {
if entry.Weight <= 0 {
continue
}
if roll < entry.Weight {
return entry.Event
}
roll -= entry.Weight
}
return entries[len(entries)-1].Event
}
func fdFor(threadIdx, seq int) int32 {
return defaultBaseFd + int32(threadIdx*100+seq%100)
}
func (m EventMix) activeEntries() []MixEntry {
active := make([]MixEntry, 0, len(m.Entries))
for _, entry := range m.Entries {
if entry.Weight > 0 {
active = append(active, entry)
}
}
if len(active) == 0 {
return DiverseAllTypes.Entries
}
return active
}
func (m EventMix) seed() int64 {
if m.Seed == 0 {
return defaultMixSeed
}
return m.Seed
}
func sumWeights(entries []MixEntry) int {
total := 0
for _, entry := range entries {
total += entry.Weight
}
return total
}
// pair generates a matched enter/exit raw event pair for the mix event type.
// fd/seq provide per-call identity for fd-based and path-based events.
func (e MixEvent) pair(gen EventGenerator, time uint64, pid, tid uint32, fd int32, seq int) ([]byte, []byte, error) {
switch e {
case MixRead, MixWrite, MixFsync:
return e.pairFd(gen, time, pid, tid, fd)
case MixOpen:
return gen.OpenPair(time, pid, tid)
case MixClose:
return pairClose(gen, time, pid, tid, fd)
case MixStat, MixAccess, MixMkdir, MixUnlink:
return e.pairPath(gen, time, pid, tid, tid, seq)
case MixSync:
return gen.NullPair(time, pid, tid, types.SYS_ENTER_SYNC, types.SYS_EXIT_SYNC)
case MixRename, MixLink:
return e.pairName(gen, time, pid, tid, tid, seq)
case MixFcntl:
return gen.FcntlPair(time, pid, tid, uint32(fd), syscall.F_SETFL, syscall.O_NONBLOCK, types.SYS_EXIT_FCNTL, 0)
case MixDup3:
return gen.Dup3Pair(time, pid, tid, fd, syscall.O_CLOEXEC, types.SYS_EXIT_DUP3, int64(fd+1))
case MixOpenByHandleAt:
return pairOpenByHandleAt(gen, time, pid, tid, fd)
default:
return gen.NullPair(time, pid, tid, types.SYS_ENTER_SYNC, types.SYS_EXIT_SYNC)
}
}
// pairFd generates fd-based pairs for read/write/fsync-like events.
func (e MixEvent) pairFd(gen EventGenerator, time uint64, pid, tid uint32, fd int32) ([]byte, []byte, error) {
switch e {
case MixRead:
return gen.FdPair(time, pid, tid, fd, types.SYS_ENTER_READ, types.SYS_EXIT_READ, 128)
case MixWrite:
return gen.FdPair(time, pid, tid, fd, types.SYS_ENTER_WRITE, types.SYS_EXIT_WRITE, 256)
default: // MixFsync
return gen.FdPair(time, pid, tid, fd, types.SYS_ENTER_FSYNC, types.SYS_EXIT_FSYNC, 0)
}
}
// pairPath generates path-based pairs for stat/access/mkdir/unlink-like events.
func (e MixEvent) pairPath(gen EventGenerator, time uint64, pid, tid uint32, seqTid uint32, seq int) ([]byte, []byte, error) {
name := mixEventPathName(e, seqTid, seq)
enterEv, exitEv := mixEventPathTraceIDs(e)
return gen.PathPair(time, pid, tid, name, enterEv, exitEv, 0)
}
// mixEventPathTraceIDs returns the enter/exit TraceId constants for a path-based mix event.
func mixEventPathTraceIDs(e MixEvent) (types.TraceId, types.TraceId) {
switch e {
case MixStat:
return types.SYS_ENTER_NEWSTAT, types.SYS_EXIT_NEWSTAT
case MixAccess:
return types.SYS_ENTER_ACCESS, types.SYS_EXIT_ACCESS
case MixMkdir:
return types.SYS_ENTER_MKDIR, types.SYS_EXIT_MKDIR
default: // MixUnlink
return types.SYS_ENTER_UNLINK, types.SYS_EXIT_UNLINK
}
}
// mixEventPathName returns the synthetic /tmp path for path-based mix events.
func mixEventPathName(e MixEvent, tid uint32, seq int) string {
switch e {
case MixStat:
return fmt.Sprintf("/tmp/ior-stat-%d-%d", tid, seq)
case MixAccess:
return fmt.Sprintf("/tmp/ior-access-%d-%d", tid, seq)
case MixMkdir:
return fmt.Sprintf("/tmp/ior-mkdir-%d-%d", tid, seq)
default: // MixUnlink
return fmt.Sprintf("/tmp/ior-unlink-%d-%d", tid, seq)
}
}
// pairName generates name-pair (two-path) events for rename/link-like events.
func (e MixEvent) pairName(gen EventGenerator, time uint64, pid, tid uint32, seqTid uint32, seq int) ([]byte, []byte, error) {
if e == MixRename {
oldname := fmt.Sprintf("/tmp/ior-old-%d-%d", seqTid, seq)
newname := fmt.Sprintf("/tmp/ior-new-%d-%d", seqTid, seq)
return gen.NamePair(time, pid, tid, oldname, newname, types.SYS_ENTER_RENAME, types.SYS_EXIT_RENAME, 0)
}
oldname := fmt.Sprintf("/tmp/ior-link-old-%d-%d", seqTid, seq)
newname := fmt.Sprintf("/tmp/ior-link-new-%d-%d", seqTid, seq)
return gen.NamePair(time, pid, tid, oldname, newname, types.SYS_ENTER_LINK, types.SYS_EXIT_LINK, 0)
}
// pairClose generates a close syscall pair (not available as a single gen helper).
func pairClose(gen EventGenerator, time uint64, pid, tid uint32, fd int32) ([]byte, []byte, error) {
_, enter, err := gen.EnterFdEvent(time, pid, tid, fd, types.SYS_ENTER_CLOSE)
if err != nil {
return nil, nil, err
}
_, exit, err := gen.ExitFdEvent(time+gen.pairDelta(), pid, tid, fd, types.SYS_EXIT_CLOSE)
if err != nil {
return nil, nil, err
}
return enter, exit, nil
}
// pairOpenByHandleAt generates an open_by_handle_at pair using enter and ret events.
func pairOpenByHandleAt(gen EventGenerator, time uint64, pid, tid uint32, fd int32) ([]byte, []byte, error) {
_, enter, err := gen.EnterOpenByHandleAtEvent(time, pid, tid, syscall.O_RDWR)
if err != nil {
return nil, nil, err
}
_, exit, err := gen.ExitRetEvent(time+gen.pairDelta(), pid, tid, types.SYS_EXIT_OPEN_BY_HANDLE_AT, int64(fd))
if err != nil {
return nil, nil, err
}
return enter, exit, nil
}
|