File acpi_validate of Package acpica
202
1
#!/bin/bash
2
#
3
# Copyright (c) 2012 SUSE Linux Products GmbH
4
# Thomas Renninger <trenn@suse.de>
5
#
6
# This program is free software; you can redistribute it and/or modify it
7
# under the terms and conditions of the GNU General Public License,
8
# version 2, as published by the Free Software Foundation.
9
#
10
# This program is distributed in the hope it will be useful, but WITHOUT
11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13
# more details.
14
#
15
# You should have received a copy of the GNU General Public License along with
16
# this program; if not, write to the Free Software Foundation, Inc.,
17
# 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
#
19
20
OUTPUT_DIR="$PWD"
21
VERBOSE=0
22
# Disable remarks and resource checks. The latter often/mostly generates
23
# false positive warnings. Can be overridden via -c option
24
COMPILE_OPTIONS="-sa -cr -vr -in"
25
DISASSEMBLE_OPTIONS="-in"
26
OUTPUT="/dev/null"
27
ACPIDUMP=""
28
MUST_BE_ROOT=1
29
30
function usage()
31
{
32
echo "acpi_validate [ -o output_dir ] [ -v ] [ -a acpidump ]"
33
echo " [ -c compile_options ] [ -d disassemble_options ]"
34
echo
35
echo "This tool extracts, disassembles and recompiles ACPI BIOS tables."
36
echo "The disassembled files will be copied into the local or specified"
37
echo "output directory (-o option)."
38
echo
39
echo "The underlying iasl compiler verifies and may complain about"
40
echo "correctness of some of the BIOS tables."
41
echo "These can give a pointer to possible malfunction of the system."
42
echo
43
echo "If you think you found a bug in the iasl compiler or related tools,"
44
echo "you can ask here for help: devel@acpica.org"
45
echo "You may also want to ask there if you are not sure whether it really"
46
echo "is a BIOS bug."
47
echo
48
echo "If you are sure you found a BIOS issue, complain to your hardware vendor."
49
echo "The iasl compiler typically provides a description of the warning/error in a way,"
50
echo "so that BIOS authors can easily fix it."
51
echo
52
echo "Options"
53
echo " -o output_dir: Copy tables to this directory instead of local one"
54
echo " -v: : be more verbose"
55
echo " -a acpidump : Use this acpidump file"
56
echo " instead of the tables from the local machine"
57
echo " -d options : Pass iasl disassemble options"
58
echo " -c options : Pass iasl compile options"
59
echo " will override -sa -cr -vr (default options)"
60
echo " -h : Show help"
61
exit 1
62
}
63
64
while getopts hva:o:c:d: name ; do
65
case $name in
66
o)
67
OUTPUT_DIR="$OPTARG"
68
if [ ! -d "$OUTPUT_DIR" ];then
69
mkdir "$OUTPUT_DIR"
70
if [[ $? != 0 ]];then
71
echo "Cannot create directory $OUTPUT_DIR"
72
exit 1
73
fi
74
elif [ ! -w "$OUTPUT_DIR" ];then
75
echo "Cannot write into directory $OUTPUT_DIR"
76
exit 1
77
fi
78
79
[[ $VERBOSE == 1 ]] && echo "Installing for architecture: $OUTPUT_DIR"
80
;;
81
a)
82
ACPIDUMP="$OPTARG"
83
if [ ! -r "$ACPIDUMP" ];then
84
echo "$ACPIDUMP does not exist"
85
exit 1
86
fi
87
[[ $VERBOSE == 1 ]] && echo "acpidump file: $ACPIDUMP"
88
MUST_BE_ROOT=0
89
;;
90
c)
91
COMPILE_OPTIONS="$OPTARG"
92
[[ $VERBOSE == 1 ]] && echo "Compile options: $COMPILE_OPTIONS"
93
;;
94
c)
95
DISASSEMBLE_OPTIONS="$OPTARG"
96
[[ $VERBOSE == 1 ]] && echo "Disassemble options: $DISASSEMBLE_OPTIONS"
97
;;
98
v)
99
VERBOSE=1
100
OUTPUT="1"
101
;;
102
?)
103
usage
104
;;
105
esac
106
done
107
shift $(($OPTIND -1))
108
109
if [[ $MUST_BE_ROOT == 1 ]] && [ "$(id -u)" != "0" ]; then
110
echo "This script must be run as root"
111
echo "(or use -a acpidump option and pass already dumped acpi tables)"
112
exit 1
113
fi
114
115
shopt -s nocasematch
116
TEMP_DIR=$(mktemp -d)
117
[[ $VERBOSE == 1 ]] && echo "Using temporary directory: $TEMP_DIR"
118
119
if [ -r "$ACPIDUMP" ];then
120
cp "$ACPIDUMP" "$TEMP_DIR"/acpidump
121
fi
122
123
pushd "$TEMP_DIR" >/dev/null
124
125
mkdir log
126
mkdir err
127
if [ ! -r acpidump ];then
128
acpidump >acpidump
129
fi
130
acpixtract -a acpidump >&$OUTPUT 2>&1
131
132
133
# ACPICA changed from uppercase to lowercase, try to find both:
134
SDTs=$(ls [SD]DST*.dat 2>/dev/null)
135
SDTs="${SDTs}$(ls [sd]sdt*.dat 2>/dev/null)"
136
137
for file in *.dat;do
138
table=${file/.dat/}
139
# Enable case insensitive pattern matching
140
141
case $file in
142
[DS]SDT*.dat | [sd]sdt*.dat)
143
# Use other [sd]sdt*.dat tables to reference possible
144
# external symbols. Pass the table itself for disassembling
145
# comma separted.
146
# For example you we have:
147
# dsdt.dat ssdt1 ssdt2.dat
148
# and the current table to disassemble is ssdt1.dat the
149
# command has to be:
150
# iasl -e dsdt.dat,ssdt2.dat -d ssdt1.dat
151
152
# Get rid of the table which gets disassembled
153
# could have leading or trailing whitespace depending whether
154
# it is at the end or the beginning of the list
155
REF_TABLE_LIST=${SDTs/[[:space:]]$file/}
156
REF_TABLE_LIST=${REF_TABLE_LIST/$file[[:space:]]/}
157
# Convert the whitespace list into a comma separated one:
158
REF_TABLE_LIST=${REF_TABLE_LIST//[[:space:]]/,}
159
if [ "$REF_TABLE_LIST" != "" ];then
160
FINAL_DISASSEMBLE_OPTIONS="-e ${REF_TABLE_LIST} $DISASSEMBLE_OPTIONS"
161
else
162
FINAL_DISASSEMBLE_OPTIONS="$DISASSEMBLE_OPTIONS"
163
fi
164
echo "stdout and stderr of $file disassembling:" >log/${table}.log
165
[[ $VERBOSE == 1 ]] && echo "iasl $FINAL_DISASSEMBLE_OPTIONS -d $file 1>>log/${table}.log 2>&1"
166
iasl $FINAL_DISASSEMBLE_OPTIONS -d $file 1>>log/${table}.log 2>&1
167
[[ $VERBOSE == 1 ]] && echo "iasl $COMPILE_OPTIONS ${table}.dsl 1>>log/${table}.log 2>>err/${table}.err"
168
iasl $COMPILE_OPTIONS ${table}.dsl 1>>log/${table}.log 2>>err/${table}.err
169
;;
170
*.dat)
171
iasl -d $file 1>log/${table}.log 2>&1
172
iasl -sa ${table}.dsl 1>log/${table}.log 2>err/${table}.err
173
;;
174
esac
175
done
176
177
# remove empty error files
178
rm $(find err -size 0)
179
ERR_TABLES=$(ls err)
180
ERR_TABLES=${ERR_TABLES//.err/}
181
182
popd >/dev/null
183
cp -r "$TEMP_DIR"/* "$OUTPUT_DIR"
184
185
if [[ $VERBOSE == 1 ]];then
186
echo "Temporary directory (undeleted): $TEMP_DIR"
187
else
188
rm -rf "$TEMP_DIR"
189
fi
190
191
if [ "$ERR_TABLES" = "" ];then
192
echo "No errors or warnings detected"
193
exit 0
194
else
195
echo "These tables have warnings or errors (details in "$OUTPUT_DIR"/err directory):"
196
for err in $ERR_TABLES;do
197
echo -n $err $'\t'
198
sed -n -e 's/Compilation complete. \(.* Errors, .* Warnings\).*/\1/p' "$OUTPUT_DIR"/log/$err.log
199
done
200
exit 1
201
fi
202