scripts: Add script to verify Android configurations

Android kernel trees include some config fragments of options that are
required to be set or unset.  This script compares a specific full
.config with these fragments to determine which configs are possibly
missing. An exemption file for the current msm-3.18 kernel tip is
included with this commit for perf and debug defconfigs. Errors related
to configs in these files are ignored.

Change-Id: I66e65dbc01081921f6695ec626594ec022a3f3c0
Signed-off-by: David Brown <davidb@codeaurora.org>
Signed-off-by: Ian Maund <imaund@codeaurora.org>
This commit is contained in:
David Brown 2014-11-14 21:47:34 -08:00 committed by David Keitel
parent 0bba5777ad
commit f57edcbf72
3 changed files with 264 additions and 0 deletions

View file

@ -0,0 +1,57 @@
CP15_BARRIER_EMULATION
DEVKMEM
DEVMEM
HID_A4TECH
HID_ACRUX
HID_BELKIN
HID_CHERRY
HID_CHICONY
HID_CYPRESS
HID_DRAGONRISE
HID_EMS_FF
HID_EZKEY
HID_GREENASIA
HID_GYRATION
HID_HOLTEK
HID_KENSINGTON
HID_KEYTOUCH
HID_KYE
HID_LCPOWER
HID_LOGITECH
HID_MONTEREY
HID_NTRIG
HID_ORTEK
HID_PANTHERLORD
HID_PETALYNX
HID_PICOLCD
HID_PRIMAX
HID_PRODIKEYS
HID_ROCCAT
HID_SAITEK
HID_SAMSUNG
HID_SMARTJOYPLUS
HID_SONY
HID_SPEEDLINK
HID_SUNPLUS
HID_THRUSTMASTER
HID_TIVO
HID_TOPSEED
HID_TWINHAN
HID_UCLOGIC
HID_WACOM
HID_WALTOP
HID_WIIMOTE
HID_ZEROPLUS
HID_ZYDACRON
JOYSTICK_XPAD_FF
JOYSTICK_XPAD_LEDS
KSM
MODULES
PSTORE
SETEND_EMULATION
TABLET_USB_ACECAD
TABLET_USB_AIPTEK
TABLET_USB_GTCO
TABLET_USB_HANWANG
TABLET_USB_KBTAB
USB_OTG_WAKELOCK

View file

@ -0,0 +1,60 @@
CGROUP_DEBUG
CP15_BARRIER_EMULATION
DEVKMEM
DEVMEM
HID_A4TECH
HID_ACRUX
HID_BELKIN
HID_CHERRY
HID_CHICONY
HID_CYPRESS
HID_DRAGONRISE
HID_EMS_FF
HID_EZKEY
HID_GREENASIA
HID_GYRATION
HID_HOLTEK
HID_KENSINGTON
HID_KEYTOUCH
HID_KYE
HID_LCPOWER
HID_LOGITECH
HID_MONTEREY
HID_NTRIG
HID_ORTEK
HID_PANTHERLORD
HID_PETALYNX
HID_PICOLCD
HID_PRIMAX
HID_PRODIKEYS
HID_ROCCAT
HID_SAITEK
HID_SAMSUNG
HID_SMARTJOYPLUS
HID_SONY
HID_SPEEDLINK
HID_SUNPLUS
HID_THRUSTMASTER
HID_TIVO
HID_TOPSEED
HID_TWINHAN
HID_UCLOGIC
HID_WACOM
HID_WALTOP
HID_WIIMOTE
HID_ZEROPLUS
HID_ZYDACRON
JOYSTICK_XPAD_FF
JOYSTICK_XPAD_LEDS
KSM
MODULES
PM_DEBUG
PSTORE
SETEND_EMULATION
SUSPEND_TIME
TABLET_USB_ACECAD
TABLET_USB_AIPTEK
TABLET_USB_GTCO
TABLET_USB_HANWANG
TABLET_USB_KBTAB
USB_OTG_WAKELOCK

147
scripts/check-config.py Executable file
View file

@ -0,0 +1,147 @@
#! /usr/bin/env python
# Copyright (c) 2015, The Linux Foundation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of The Linux Foundation nor
# the names of its contributors may be used to endorse or promote
# products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""
Android kernel configuration validator.
The Android kernel reference trees contain some config stubs of
configuration options that are required for Android to function
correctly, and additional ones that are recommended.
This script can help compare these base configs with the ".config"
output of the compiler to determine if the proper configs are defined.
"""
from collections import namedtuple
from optparse import OptionParser
import re
import sys
version = "check-config.py, version 0.0.1"
req_re = re.compile(r'''^CONFIG_(.*)=(.*)$''')
forb_re = re.compile(r'''^# CONFIG_(.*) is not set$''')
comment_re = re.compile(r'''^(#.*|)$''')
Enabled = namedtuple('Enabled', ['name', 'value'])
Disabled = namedtuple('Disabled', ['name'])
def walk_config(name):
with open(name, 'r') as fd:
for line in fd:
line = line.rstrip()
m = req_re.match(line)
if m:
yield Enabled(m.group(1), m.group(2))
continue
m = forb_re.match(line)
if m:
yield Disabled(m.group(1))
continue
m = comment_re.match(line)
if m:
continue
print "WARNING: Unknown .config line: ", line
class Checker():
def __init__(self):
self.required = {}
self.exempted = set()
self.forbidden = set()
def add_required(self, fname):
for ent in walk_config(fname):
if type(ent) is Enabled:
self.required[ent.name] = ent.value
elif type(ent) is Disabled:
if ent.name in self.required:
del self.required[ent.name]
self.forbidden.add(ent.name)
def add_exempted(self, fname):
with open(fname, 'r') as fd:
for line in fd:
line = line.rstrip()
self.exempted.add(line)
def check(self, path):
failure = False
# Don't run this for mdm targets
if re.search('mdm', path):
print "Not applicable to mdm targets... bypassing"
else:
for ent in walk_config(path):
# Go to the next iteration if this config is exempt
if ent.name in self.exempted:
continue
if type(ent) is Enabled:
if ent.name in self.forbidden:
print "error: Config should not be present: %s" %ent.name
failure = True
if ent.name in self.required and ent.value != self.required[ent.name]:
print "error: Config has wrong value: %s %s expecting: %s" \
%(ent.name, ent.value, self.required[ent.name])
failure = True
elif type(ent) is Disabled:
if ent.name in self.required:
print "error: Config should be present, but is disabled: %s" %ent.name
failure = True
if failure:
sys.exit(1)
def main():
usage = """%prog [options] path/to/.config"""
parser = OptionParser(usage=usage, version=version)
parser.add_option('-r', '--required', dest="required",
action="append")
parser.add_option('-e', '--exempted', dest="exempted",
action="append")
(options, args) = parser.parse_args()
if len(args) != 1:
parser.error("Expecting a single path argument to .config")
elif options.required is None or options.exempted is None:
parser.error("Expecting a file containing required configurations")
ch = Checker()
for r in options.required:
ch.add_required(r)
for e in options.exempted:
ch.add_exempted(e)
ch.check(args[0])
if __name__ == '__main__':
main()