mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
d065934cd0
Instantiating "host" CPU and querying it using qom-get has been the only way of probing host CPU via QEMU until 2.9.0 implemented query-cpu-model-expansion for x86_64. Even though libvirt never really used the old way its result can be easily converted into the one produced by query-cpu-model-expansion. Thus we can reuse the original test data and possible get new data from hosts where QEMU does not support the new QMP command. Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
61 lines
1.4 KiB
Bash
Executable File
61 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Usage:
|
|
# ./cpu-gather.sh | ./cpu-parse.sh
|
|
|
|
data=`cat`
|
|
|
|
model=`sed -ne '/^model name[ ]*:/ {s/^[^:]*: \(.*\)/\1/p; q}' <<<"$data"`
|
|
|
|
fname=`sed -e 's/^ *//;
|
|
s/ *$//;
|
|
s/[ -]\+ \+/ /g;
|
|
s/(\([Rr]\|[Tt][Mm]\))//g;
|
|
s/.*\(Intel\|AMD\) //;
|
|
s/ \(Duo\|Quad\|II X[0-9]\+\) / /;
|
|
s/ \(CPU\|Processor\)\>//;
|
|
s/ @.*//;
|
|
s/ APU .*//;
|
|
s/ \(v[0-9]\|SE\)$//;
|
|
s/ /-/g' <<<"$model"`
|
|
fname="x86_64-cpuid-$fname"
|
|
|
|
xml()
|
|
{
|
|
hex='\(0x[0-9a-f]\+\)'
|
|
match="$hex $hex: eax=$hex ebx=$hex ecx=$hex edx=$hex"
|
|
subst="<cpuid eax_in='\\1' ecx_in='\\2' eax='\\3' ebx='\\4' ecx='\\5' edx='\\6'\\/>"
|
|
|
|
echo "<!-- $model -->"
|
|
echo "<cpudata arch='x86'>"
|
|
sed -ne "s/^ *$match$/ $subst/p"
|
|
echo "</cpudata>"
|
|
}
|
|
|
|
json()
|
|
{
|
|
first=true
|
|
sed -ne '/{"QMP".*/d;
|
|
/{"return": {}}/d;
|
|
/{"timestamp":.*/d;
|
|
/^{/p' <<<"$data" | \
|
|
while read; do
|
|
$first || echo
|
|
first=false
|
|
json_reformat <<<"$REPLY" | tr -s '\n'
|
|
done
|
|
}
|
|
|
|
xml <<<"$data" >$fname.xml
|
|
echo $fname.xml
|
|
|
|
json <<<"$data" >$fname.json
|
|
if [[ -s $fname.json ]]; then
|
|
echo $fname.json
|
|
if ! grep -q model-expansion $fname.json; then
|
|
$(dirname $0)/cpu-convert.py $fname.json
|
|
fi
|
|
else
|
|
rm $fname.json
|
|
fi
|