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
|
# Handle varying sizes of procfs buffers.
set test "PROCFS_BUFFER"
if {![installtest_p]} { untested $test; return }
proc proc_read_value { test path} {
set value "<unknown>"
if [catch {open $path RDONLY} channel] {
fail "$test $channel"
} else {
set value [read -nonewline $channel]
close $channel
pass "$test read $value"
}
return $value
}
proc proc_write_value { test path value } {
if [catch {open $path WRONLY} channel] {
fail "$test $channel"
} else {
puts -nonewline $channel $value
close $channel
pass "$test wrote $value"
}
}
proc proc_read_write_counted { test maxsize } {
set path "/proc/systemtap/$test/command"
set fullstring "abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz123456789"
# Read the file
set value [proc_read_value $test $path]
set value2 [string range $fullstring 0 [expr $maxsize - 2]]
if { $value == $value2 } {
pass "$test received correct initial value"
} else {
fail "$test received incorrect initial value: $value ($value2)"
}
# Write a new value.
proc_write_value $test $path $fullstring
return 0;
}
# Expect 32 byte return from reading procfs file.
proc proc_read_write_32 {} {
global test
proc_read_write_counted $test 32
}
# Expect 16 byte return from reading procfs file.
proc proc_read_write_16 {} {
global test
proc_read_write_counted $test 16
}
set script1 {
global values[10]
global idx = 0
probe procfs.read {
$value = "abcdefghijklmno"
$value .= "ABCDEFGHIJKLMNO"
$value .= "pqrstuvwxyz1234"
}
probe procfs.write {
values[idx] = $value
idx++
}
probe begin {
printf("systemtap starting probe\n")
}
probe end {
printf("systemtap ending probe\n")
for (i = 0; i < idx; i++) {
printf("value%d=%s\n", i, values[i])
}
}
}
# Output strings in 16 and 32 byte chunks.
set output_string_16 "value0=abcdefghijklmno\r\nvalue1=ABCDEFGHIJKLMNO\r\nvalue2=pqrstuvwxyz1234\r\nvalue3=56789\r\n"
set output_string_32 "value0=abcdefghijklmnoABCDEFGHIJKLMNOp\r\nvalue1=qrstuvwxyz123456789\r\n"
# By default, setting MAXSTRINGLEN should set the size of
# procfs read and write buffers.
set test "PROCFS_BUFFER1"
stap_run $test proc_read_write_32 $output_string_32 -DMAXSTRINGLEN=32 -e $script1 -m $test
exec /bin/rm -f ${test}.ko
# Try with MAXSTRINGLEN=32 and STP_PROCFS_BUFSIZE=16
set test "PROCFS_BUFFER2"
stap_run $test proc_read_write_16 $output_string_16 -DMAXSTRINGLEN=32 -DSTP_PROCFS_BUFSIZE=16 -e $script1 -m $test
exec /bin/rm -f ${test}.ko
# Try with MAXSTRINGLEN=16 and STP_PROCFS_BUFSIZE=32. Note that in
# this case, even though the procfs buffer is 32 bytes in size, since
# strings can only hold 16 bytes, the expected output is the same as
# in the previous test.
set test "PROCFS_BUFFER3"
stap_run $test proc_read_write_32 $output_string_16 -DMAXSTRINGLEN=16 -DSTP_PROCFS_BUFSIZE=32 -e $script1 -m $test
exec /bin/rm -f ${test}.ko
# script2 has a '.maxsize(32). override
set script2 {
global values[10]
global idx = 0
probe procfs.read.maxsize(32) {
$value = "abcdefghijklmno"
$value .= "ABCDEFGHIJKLMNO"
$value .= "pqrstuvwxyz1234"
}
probe procfs.write {
values[idx] = $value
idx++
}
probe begin {
printf("systemtap starting probe\n")
}
probe end {
printf("systemtap ending probe\n")
for (i = 0; i < idx; i++) {
printf("value%d=%s\n", i, values[i])
}
}
}
# By default, setting MAXSTRINGLEN should set the size of
# procfs read and write buffers. But script2 has a '.maxsize(32)'
# override.
set test "PROCFS_BUFFER4"
stap_run $test proc_read_write_32 $output_string_16 -DMAXSTRINGLEN=16 -e $script2 -m $test
exec /bin/rm -f ${test}.ko
# The script2 '.maxsize(32)' override should override even setting
# STP_PROCFS_BUFSIZE.
set test "PROCFS_BUFFER5"
stap_run $test proc_read_write_32 $output_string_16 -DMAXSTRINGLEN=16 -DSTP_PROCFS_BUFSIZE=64 -e $script2 -m $test
exec /bin/rm -f ${test}.ko
# script3 has a maxsize override and a default size file
set script3 {
global values[10]
global idx = 0
probe procfs("default").read {
$value = "abcdefghijklmno"
$value .= "ABCDEFGHIJKLMNO"
$value .= "pqrstuvwxyz1234"
}
probe procfs.read.maxsize(32) {
$value = "abcdefghijklmno"
$value .= "ABCDEFGHIJKLMNO"
$value .= "pqrstuvwxyz1234"
}
probe procfs.write {
values[idx] = $value
idx++
}
probe begin {
printf("systemtap starting probe\n")
}
probe end {
printf("systemtap ending probe\n")
for (i = 0; i < idx; i++) {
printf("value%d=%s\n", i, values[i])
}
}
}
proc proc_read_write_default_32 {} {
global test
set path "/proc/systemtap/$test/default"
set value2 "abcdefghijklmno"
# Read the file
set value [proc_read_value $test $path]
if { $value == $value2 } {
pass "$test received correct initial value"
} else {
fail "$test received incorrect initial value: $value ($value2)"
}
proc_read_write_counted $test 32
}
set test "PROCFS_BUFFER6"
stap_run $test proc_read_write_default_32 $output_string_16 -DMAXSTRINGLEN=16 -e $script3 -m $test
exec /bin/rm -f ${test}.ko
set script4 {
global large_strings[10]
# Put more data than we can really handle into $value
probe procfs.read.maxsize(2048) {
$value = large_strings[0]
for (i = 1; i < 10; i+=1) {
$value .= large_strings[i]
}
}
probe begin {
# build up several maximum length strings
max = 512
for (i = 0; i < max/64; i+=1) {
for (j = 0; j < 10; j++) {
if (i < (max/64 - 1)) {
large_strings[j] .= sprintf("%3d:12345678901234567890123456789012345678901234567890123456789\n",
i + (j * (max/64)))
}
else {
large_strings[j] .= sprintf("%3d:1234567890123456789012345678901234567890123456789012345678\n",
i + (j * (max/64)))
}
}
}
printf("systemtap starting probe\n")
}
probe end {
printf("systemtap ending probe\n")
}
}
proc proc_read_big {} {
global test
global test_string
set path "/proc/systemtap/$test/command"
# Read the file
set value [proc_read_value $test $path]
# set value2 [string range $fullstring 0 [expr $maxsize - 2]]
if { $value == $test_string } {
pass "$test received correct initial value"
} else {
fail "$test received incorrect initial value: $value ($test_string)"
}
return 0;
}
set test_string \
" 0:12345678901234567890123456789012345678901234567890123456789
1:12345678901234567890123456789012345678901234567890123456789
2:12345678901234567890123456789012345678901234567890123456789
3:12345678901234567890123456789012345678901234567890123456789
4:12345678901234567890123456789012345678901234567890123456789
5:12345678901234567890123456789012345678901234567890123456789
6:12345678901234567890123456789012345678901234567890123456789
7:1234567890123456789012345678901234567890123456789012345678
8:12345678901234567890123456789012345678901234567890123456789
9:12345678901234567890123456789012345678901234567890123456789
10:12345678901234567890123456789012345678901234567890123456789
11:12345678901234567890123456789012345678901234567890123456789
12:12345678901234567890123456789012345678901234567890123456789
13:12345678901234567890123456789012345678901234567890123456789
14:12345678901234567890123456789012345678901234567890123456789
15:1234567890123456789012345678901234567890123456789012345678
16:12345678901234567890123456789012345678901234567890123456789
17:12345678901234567890123456789012345678901234567890123456789
18:12345678901234567890123456789012345678901234567890123456789
19:12345678901234567890123456789012345678901234567890123456789
20:12345678901234567890123456789012345678901234567890123456789
21:12345678901234567890123456789012345678901234567890123456789
22:12345678901234567890123456789012345678901234567890123456789
23:1234567890123456789012345678901234567890123456789012345678
24:12345678901234567890123456789012345678901234567890123456789
25:12345678901234567890123456789012345678901234567890123456789
26:12345678901234567890123456789012345678901234567890123456789
27:12345678901234567890123456789012345678901234567890123456789
28:12345678901234567890123456789012345678901234567890123456789
29:12345678901234567890123456789012345678901234567890123456789
30:12345678901234567890123456789012345678901234567890123456789
31:1234567890123456789012345678901234567890123456789012345678
32"
# Test outputting 2K worth of data in one shot.
set test "PROCFS_BUFFER7"
stap_run $test proc_read_big "" -DMAXSTRINGLEN=512 -e $script4 -m $test
exec /bin/rm -f ${test}.ko
|