summaryrefslogtreecommitdiff
path: root/bin/dmitest
blob: 4f368101649988bac6a3e4c90ed171e2dcc5ccdf (plain)
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 
#!/usr/bin/env python3 # # This file is part of Checkbox. # # Copyright 2014 Canonical Ltd. # # Checkbox is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3, # as published by the Free Software Foundation. # # Checkbox is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Checkbox. If not, see <http://www.gnu.org/licenses/>. # # Test for sane dmidecode output, particularly with respect to # various manufacturer information fields. Also, verify that the # system reports a chassis type that suits its class (server or # desktop/laptop) # # By: Rod Smith """Script to test dmidecode output for sanity. :param --dmifile: Input filename; optional. If specified, file is used instead of dmidecode output. :param --test_versions: Include chassis, system, and base boad version numbers among tests. :param --test_serials: Include system and base board serial numbers among tests. :param --cpu_only: Don't perform usual tests, except for CPU test. Note that the desktop/server specification is ignored if this option is used. :param desktop: SUT is a desktop or laptop :param server: SUT is a server """ import re import subprocess import sys from argparse import ArgumentParser def find_in_section(stream, section, label, strings, find_empty): """Search for a set of strings on a line in the output. :param stream: input text stream (dmidecode output) :param section: section label in which to search (e.g., "Chassis Information") :param label: label of line on which to search (e.g., "Type:") :param strings: set of strings for which to search (e.g., ["server", "blade"]) :param find_empty: if True, matches empty label field (as if '""' were passed as a strings value) :returns found: True if one or more of strings was found on "label" line in "section" section, or if "label" line is empty AND find_empty is True; False otherwise """ start_looking = False found = False empty = True for line in stream: if line == section: start_looking = True if start_looking and re.search(label, line): print("\n" + section) print(line.strip()) empty = len(line.strip()) == len(label) if empty and find_empty: found = True for s in strings: if re.search(s, line, flags=re.IGNORECASE): found = True break start_looking = False return found def standard_tests(args, stream): """ Perform the standard set of tests. :param args: Arguments passed to script :param stream: Input stream containing dmidecode output :returns retval: Number of problems found """ retval = 0 """ NOTE: System type is encoded in both the "Chassis Information" and "Base Board Type" sections. The former is more reliable, so we do a whitelist test on it -- the type MUST be specified correctly. The "Base Board Type" section is less reliable, so rather than flag large numbers of systems for having "Unknown", "Other", or something similar here, we just flag it when it's at odds with the type passed on the command line. Also, the "Base Board Type" may specify a desktop or tower system on servers shipped in those form factors, so we don't flag that combination as an error. """ if args.system_type == 'server': if not find_in_section(stream, 'Chassis Information', 'Type:', ['server', 'rack mount', 'blade', 'expansion chassis', 'multi-system'], False): print("*** Incorrect or unknown server chassis type!") retval += 1 if find_in_section(stream, 'Base Board Information', 'Type:', ['portable', 'notebook', 'space-saving', 'all in one'], False): print("*** Incorrect server base board type!") retval += 1 else: if not find_in_section(stream, 'Chassis Information', 'Type:', ['notebook', 'portable', 'laptop', 'desktop', 'lunch box', 'space-saving', 'tower', 'all in one', 'hand held'], False): print("*** Incorrect or unknown desktop chassis type!") retval += 1 if find_in_section(stream, 'Base Board Information', 'Type:', ['rack mount', 'server', 'multi-system', 'interconnect board'], False): print("*** Incorrect desktop base board type!") retval += 1 if find_in_section(stream, 'Chassis Information', 'Manufacturer:', ['empty', 'chassis manufacture', 'null', 'insyde', 'to be filled by o\.e\.m\.', 'no enclosure', '\.\.\.\.\.'], True): print("*** Invalid chassis manufacturer!") retval += 1 if find_in_section(stream, 'System Information', 'Manufacturer:', ['system manufacture', 'insyde', 'standard', 'to be filled by o\.e\.m\.', 'no enclosure'], True): print("*** Invalid system manufacturer!") retval += 1 if find_in_section(stream, 'Base Board Information', 'Manufacturer:', ['to be filled by o\.e\.m\.'], True): print("*** Invalid base board manufacturer!") retval += 1 if find_in_section(stream, 'System Information', 'Product Name:', ['system product name', 'to be filled by o\.e\.m\.'], False): print("*** Invalid system product name!") retval += 1 if find_in_section(stream, 'Base Board Information', 'Product Name:', ['base board product name', 'to be filled by o\.e\.m\.'], False): print("*** Invalid base board product name!") retval += 1 return retval def version_tests(args, stream): """ Perform the version tests. :param args: Arguments passed to script :param stream: Input stream containing dmidecode output :returns retval: Number of problems found """ retval = 0 if find_in_section(stream, 'Chassis Information', 'Version:', ['to be filled by o\.e\.m\.', 'empty'], False): print("*** Invalid chassis version!") retval += 1 if find_in_section(stream, 'System Information', 'Version:', ['to be filled by o\.e\.m\.', '\(none\)', 'null', 'system version', 'not applicable', '\.\.\.\.\.'], False): print("*** Invalid system information version!") retval += 1 if find_in_section(stream, 'Base Board Information', 'Version:', ['base board version', 'empty', 'to be filled by o\.e\.m\.'], False): print("*** Invalid base board version!") retval += 1 return retval def serial_tests(args, stream): """ Perform the serial number tests. :param args: Arguments passed to script :param stream: Input stream containing dmidecode output :returns retval: Number of problems found """ retval = 0 if find_in_section(stream, 'System Information', 'Serial Number:', ['to be filled by o\.e\.m\.', 'system serial number', '\.\.\.\.\.'], False): print("*** Invalid system information serial number!") retval += 1 if find_in_section(stream, 'Base Board Information', 'Serial Number:', ['n/a', 'base board serial number', 'to be filled by o\.e\.m\.', 'empty', '\.\.\.'], False): print("*** Invalid base board serial number!") retval += 1 return retval def main(): """Main function.""" parser = ArgumentParser("dmitest") parser.add_argument('system_type', help="System type ('server' or 'desktop').", choices=['server', 'desktop']) parser.add_argument('--dmifile', help="File to use in lieu of dmidecode.") parser.add_argument('--test_versions', action="store_true", help="Set to check version information") parser.add_argument('--test_serials', action="store_true", help="Set to check serial number information") parser.add_argument('--cpu_only', action="store_true", help="Set to not perform standard tests, " + "just the CPU validity test") args = parser.parse_args() # Command to retrieve DMI information COMMAND = "dmidecode" try: if args.dmifile: print("Reading " + args.dmifile + " as DMI data") stream = subprocess.check_output(['cat', args.dmifile], universal_newlines=True).splitlines() else: stream = subprocess.check_output(COMMAND, universal_newlines=True).splitlines() except subprocess.CalledProcessError as err: print("Error running {}: {}".format(COMMAND, err)) return 1 retval = 0 if not args.cpu_only: retval += standard_tests(args, stream) if args.test_versions: retval += version_tests(args, stream) if args.test_serials: retval += serial_tests(args, stream) if find_in_section(stream, 'Processor Information', 'Version:', ['sample'], False): print("*** Invalid processor information!") retval += 1 # In review of dmidecode data on 10/23/2014, no conspicuous problems # found in BIOS Information section's Vendor, Version, or Release Date # fields. Therefore, no tests based on these fields have been written. if retval > 0: if retval == 1: print("\nFailed 1 test (see above)") else: print("\nFailed {0} tests (see above)".format(retval)) else: print("\nPassed all tests") return retval if __name__ == "__main__": sys.exit(main())