]>
Commit | Line | Data |
---|---|---|
908eaf68 | 1 | #!/bin/bash |
6bf19c94 CH |
2 | # |
3 | # Copyright (C) 2009 Red Hat, Inc. | |
4 | # Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved. | |
5 | # | |
6 | # This program is free software; you can redistribute it and/or | |
7 | # modify it under the terms of the GNU General Public License as | |
8 | # published by the Free Software Foundation. | |
9 | # | |
10 | # This program is distributed in the hope that it would be useful, | |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
14 | # | |
15 | # You should have received a copy of the GNU General Public License | |
e8c212d6 | 16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
6bf19c94 CH |
17 | # |
18 | # | |
19 | # standard filters | |
20 | # | |
21 | ||
6bf19c94 CH |
22 | # ctime(3) dates |
23 | # | |
24 | _filter_date() | |
25 | { | |
26 | sed \ | |
79e40ab1 | 27 | -e 's/[A-Z][a-z][a-z] [A-z][a-z][a-z] *[0-9][0-9]* [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][0-9][0-9][0-9]$/DATE/' |
6bf19c94 CH |
28 | } |
29 | ||
15489c76 JC |
30 | _filter_generated_node_ids() |
31 | { | |
32 | sed -re 's/\#block[0-9]{3,}/NODE_NAME/' | |
33 | } | |
34 | ||
62284d17 | 35 | # replace occurrences of the actual TEST_DIR value with TEST_DIR |
6bf19c94 CH |
36 | _filter_testdir() |
37 | { | |
b135233b | 38 | sed -e "s#$TEST_DIR/#TEST_DIR/#g" |
6bf19c94 CH |
39 | } |
40 | ||
62284d17 SH |
41 | # replace occurrences of the actual IMGFMT value with IMGFMT |
42 | _filter_imgfmt() | |
43 | { | |
44 | sed -e "s#$IMGFMT#IMGFMT#g" | |
45 | } | |
46 | ||
86ce1f6e RS |
47 | # Replace error message when the format is not supported and delete |
48 | # the output lines after the first one | |
49 | _filter_qemu_img_check() | |
50 | { | |
51 | sed -e '/allocated.*fragmented.*compressed clusters/d' \ | |
52 | -e 's/qemu-img: This image format does not support checks/No errors were found on the image./' \ | |
53 | -e '/Image end offset: [0-9]\+/d' | |
54 | } | |
55 | ||
a06d5cc2 KW |
56 | # Removes \r from messages |
57 | _filter_win32() | |
58 | { | |
59 | sed -e 's/\r//g' | |
60 | } | |
61 | ||
6bf19c94 CH |
62 | # sanitize qemu-io output |
63 | _filter_qemu_io() | |
64 | { | |
c34b8012 | 65 | _filter_win32 | sed -e "s/[0-9]* ops\; [0-9/:. sec]* ([0-9/.inf]* [EPTGMKiBbytes]*\/sec and [0-9/.inf]* ops\/sec)/X ops\; XX:XX:XX.X (XXX YYY\/sec and XXX ops\/sec)/" \ |
9e0c3e8d | 66 | -e "s/: line [0-9][0-9]*: *[0-9][0-9]*\( Aborted\| Killed\)/:\1/" \ |
c34b8012 | 67 | -e "s/qemu-io> //g" |
6bf19c94 CH |
68 | } |
69 | ||
c09b437b SH |
70 | # replace occurrences of QEMU_PROG with "qemu" |
71 | _filter_qemu() | |
72 | { | |
9580498b | 73 | sed -e "s#\\(^\\|(qemu) \\)$(basename $QEMU_PROG):#\1QEMU_PROG:#" \ |
ac9524dc | 74 | -e 's#^QEMU [0-9]\+\.[0-9]\+\.[0-9]\+ monitor#QEMU X.Y.Z monitor#' \ |
4dd7b8d3 | 75 | -e '/main-loop: WARNING: I\/O thread spun for [0-9]\+ iterations/d' \ |
ac9524dc | 76 | -e $'s#\r##' # QEMU monitor uses \r\n line endings |
c09b437b SH |
77 | } |
78 | ||
a9b43397 KW |
79 | # replace problematic QMP output like timestamps |
80 | _filter_qmp() | |
81 | { | |
82 | _filter_win32 | \ | |
83 | sed -e 's#\("\(micro\)\?seconds": \)[0-9]\+#\1 TIMESTAMP#g' \ | |
cc20b07a HR |
84 | -e 's#^{"QMP":.*}$#QMP_VERSION#' \ |
85 | -e '/^ "QMP": {\s*$/, /^ }\s*$/ c\' \ | |
86 | -e ' QMP_VERSION' | |
a9b43397 KW |
87 | } |
88 | ||
69404d9e KW |
89 | # readline makes HMP command strings so long that git complains |
90 | _filter_hmp() | |
91 | { | |
92 | sed -e $'s/^\\((qemu) \\)\\?.*\e\\[D/\\1/g' \ | |
93 | -e $'s/\e\\[K//g' | |
94 | } | |
95 | ||
a752e478 VSO |
96 | # replace block job offset |
97 | _filter_block_job_offset() | |
98 | { | |
99 | sed -e 's/, "offset": [0-9]\+,/, "offset": OFFSET,/' | |
100 | } | |
101 | ||
24dfdfd0 FZ |
102 | # replace block job len |
103 | _filter_block_job_len() | |
104 | { | |
105 | sed -e 's/, "len": [0-9]\+,/, "len": LEN,/g' | |
106 | } | |
107 | ||
44673a0b HR |
108 | # replace actual image size (depends on the host filesystem) |
109 | _filter_actual_image_size() | |
110 | { | |
111 | sed -s 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g' | |
112 | } | |
113 | ||
6ffb4cb6 KW |
114 | # replace driver-specific options in the "Formatting..." line |
115 | _filter_img_create() | |
116 | { | |
117 | sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \ | |
118 | -e "s#$TEST_DIR#TEST_DIR#g" \ | |
119 | -e "s#$IMGFMT#IMGFMT#g" \ | |
46174339 | 120 | -e 's#nbd:127.0.0.1:10810#TEST_DIR/t.IMGFMT#g' \ |
6ffb4cb6 KW |
121 | -e "s# encryption=off##g" \ |
122 | -e "s# cluster_size=[0-9]\\+##g" \ | |
123 | -e "s# table_size=[0-9]\\+##g" \ | |
fe646693 | 124 | -e "s# compat=[^ ]*##g" \ |
6ffb4cb6 KW |
125 | -e "s# compat6=\\(on\\|off\\)##g" \ |
126 | -e "s# static=\\(on\\|off\\)##g" \ | |
127 | -e "s# zeroed_grain=\\(on\\|off\\)##g" \ | |
128 | -e "s# subformat='[^']*'##g" \ | |
129 | -e "s# adapter_type='[^']*'##g" \ | |
f249924e | 130 | -e "s# hwversion=[^ ]*##g" \ |
6ffb4cb6 KW |
131 | -e "s# lazy_refcounts=\\(on\\|off\\)##g" \ |
132 | -e "s# block_size=[0-9]\\+##g" \ | |
133 | -e "s# block_state_zero=\\(on\\|off\\)##g" \ | |
134 | -e "s# log_size=[0-9]\\+##g" \ | |
b7e875b2 | 135 | -e "s# refcount_bits=[0-9]\\+##g" \ |
307d9991 | 136 | -e "s# key-secret=[a-zA-Z0-9]\\+##g" \ |
bff55548 JS |
137 | -e "s# iter-time=[0-9]\\+##g" \ |
138 | -e "s# force_size=\\(on\\|off\\)##g" | |
6ffb4cb6 KW |
139 | } |
140 | ||
c2eb918e HT |
141 | _filter_img_info() |
142 | { | |
1cc6169b HR |
143 | if [[ "$1" == "--format-specific" ]]; then |
144 | local format_specific=1 | |
145 | shift | |
146 | else | |
147 | local format_specific=0 | |
148 | fi | |
149 | ||
150 | discard=0 | |
151 | regex_json_spec_start='^ *"format-specific": \{' | |
c2eb918e HT |
152 | sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \ |
153 | -e "s#$TEST_DIR#TEST_DIR#g" \ | |
154 | -e "s#$IMGFMT#IMGFMT#g" \ | |
a231cb27 | 155 | -e 's#nbd://127.0.0.1:10810$#TEST_DIR/t.IMGFMT#g' \ |
ae0c0a3d | 156 | -e 's#json.*vdisk-id.*vxhs"}}#TEST_DIR/t.IMGFMT#' \ |
c2eb918e HT |
157 | -e "/encrypted: yes/d" \ |
158 | -e "/cluster_size: [0-9]\\+/d" \ | |
159 | -e "/table_size: [0-9]\\+/d" \ | |
160 | -e "/compat: '[^']*'/d" \ | |
161 | -e "/compat6: \\(on\\|off\\)/d" \ | |
162 | -e "/static: \\(on\\|off\\)/d" \ | |
163 | -e "/zeroed_grain: \\(on\\|off\\)/d" \ | |
164 | -e "/subformat: '[^']*'/d" \ | |
165 | -e "/adapter_type: '[^']*'/d" \ | |
f249924e | 166 | -e "/hwversion: '[^']*'/d" \ |
c2eb918e HT |
167 | -e "/lazy_refcounts: \\(on\\|off\\)/d" \ |
168 | -e "/block_size: [0-9]\\+/d" \ | |
169 | -e "/block_state_zero: \\(on\\|off\\)/d" \ | |
f0603329 DB |
170 | -e "/log_size: [0-9]\\+/d" \ |
171 | -e "s/iters: [0-9]\\+/iters: 1024/" \ | |
1cc6169b HR |
172 | -e "s/uuid: [-a-f0-9]\\+/uuid: 00000000-0000-0000-0000-000000000000/" | \ |
173 | while IFS='' read -r line; do | |
174 | if [[ $format_specific == 1 ]]; then | |
175 | discard=0 | |
176 | elif [[ $line == "Format specific information:" ]]; then | |
177 | discard=1 | |
178 | elif [[ $line =~ $regex_json_spec_start ]]; then | |
179 | discard=2 | |
180 | regex_json_spec_end="^${line%%[^ ]*}\\},? *$" | |
181 | fi | |
182 | if [[ $discard == 0 ]]; then | |
183 | echo "$line" | |
184 | elif [[ $discard == 1 && ! $line ]]; then | |
185 | echo | |
186 | discard=0 | |
187 | elif [[ $discard == 2 && $line =~ $regex_json_spec_end ]]; then | |
188 | discard=0 | |
189 | fi | |
190 | done | |
c2eb918e HT |
191 | } |
192 | ||
d9ca2214 EB |
193 | # filter out offsets and file names from qemu-img map; good for both |
194 | # human and json output | |
f67ac71e HR |
195 | _filter_qemu_img_map() |
196 | { | |
197 | sed -e 's/\([0-9a-fx]* *[0-9a-fx]* *\)[0-9a-fx]* */\1/g' \ | |
d9ca2214 | 198 | -e 's/"offset": [0-9]\+/"offset": OFFSET/g' \ |
f67ac71e HR |
199 | -e 's/Mapped to *//' | _filter_testdir | _filter_imgfmt |
200 | } | |
201 | ||
60d44688 HR |
202 | _filter_nbd() |
203 | { | |
204 | # nbd.c error messages contain function names and line numbers that are | |
205 | # prone to change. Message ordering depends on timing between send and | |
206 | # receive callbacks sometimes, making them unreliable. | |
207 | # | |
208 | # Filter out the TCP port number since this changes between runs. | |
dd170c06 | 209 | sed -e '/nbd\/.*\.c:/d' \ |
02d2d860 | 210 | -e 's#127\.0\.0\.1:[0-9]*#127.0.0.1:PORT#g' \ |
4a940d14 | 211 | -e "s#?socket=$TEST_DIR#?socket=TEST_DIR#g" \ |
02d2d860 | 212 | -e 's#\(foo\|PORT/\?\|.sock\): Failed to .*$#\1#' |
60d44688 HR |
213 | } |
214 | ||
6bf19c94 | 215 | # make sure this script returns success |
a2d9c0c4 | 216 | true |