blob: e4185cb0fa2475779d10686ded2bf3d19a87a2e8 [file] [log] [blame]
Felipe Satelerb95f5522016-08-21 20:25:37 -03001#!/usr/bin/python3
Martin Pittb2ad12e2010-09-21 12:45:52 +02002# Simple udev rules syntax checker
3#
4# (C) 2010 Canonical Ltd.
5# Author: Martin Pitt <martin.pitt@ubuntu.com>
6#
Kay Sievers0228a7e2013-08-14 22:55:40 +02007# systemd is free software; you can redistribute it and/or modify it
8# under the terms of the GNU Lesser General Public License as published by
9# the Free Software Foundation; either version 2.1 of the License, or
Martin Pittb2ad12e2010-09-21 12:45:52 +020010# (at your option) any later version.
Kay Sievers0228a7e2013-08-14 22:55:40 +020011
12# systemd is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# Lesser General Public License for more details.
Martin Pittb2ad12e2010-09-21 12:45:52 +020016#
Kay Sievers0228a7e2013-08-14 22:55:40 +020017# You should have received a copy of the GNU Lesser General Public License
18# along with systemd; If not, see <http://www.gnu.org/licenses/>.
Martin Pittb2ad12e2010-09-21 12:45:52 +020019
20import re
21import sys
Martin Pitte8015e62015-01-20 20:50:35 +010022import os
23from glob import glob
Martin Pittb2ad12e2010-09-21 12:45:52 +020024
Martin Pitte8015e62015-01-20 20:50:35 +010025if len(sys.argv) > 1:
26 # explicit rule file list
27 rules_files = sys.argv[1:]
28else:
29 # take them from the build dir
30 root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
31 rules_dir = os.path.join(os.environ.get('top_srcdir', root_dir), 'rules')
32 if not os.path.isdir(rules_dir):
33 sys.stderr.write('No rules files given, and %s does not exist, aborting' % rules_dir)
34 sys.exit(2)
35 rules_files = glob(os.path.join(rules_dir, '*.rules'))
Martin Pittb2ad12e2010-09-21 12:45:52 +020036
37no_args_tests = re.compile('(ACTION|DEVPATH|KERNELS?|NAME|SYMLINK|SUBSYSTEMS?|DRIVERS?|TAG|RESULT|TEST)\s*(?:=|!)=\s*"([^"]*)"$')
38args_tests = re.compile('(ATTRS?|ENV|TEST){([a-zA-Z0-9/_.*%-]+)}\s*(?:=|!)=\s*"([^"]*)"$')
Kay Sieversf2b80522015-06-30 19:54:37 +020039no_args_assign = re.compile('(NAME|SYMLINK|OWNER|GROUP|MODE|TAG|PROGRAM|RUN|LABEL|GOTO|OPTIONS|IMPORT)\s*(?:\+=|:=|=)\s*"([^"]*)"$')
Kay Sievers5488ac82012-10-09 00:49:15 +020040args_assign = re.compile('(ATTR|ENV|IMPORT|RUN){([a-zA-Z0-9/_.*%-]+)}\s*(=|\+=)\s*"([^"]*)"$')
Martin Pittb2ad12e2010-09-21 12:45:52 +020041
42result = 0
43buffer = ''
Martin Pitte8015e62015-01-20 20:50:35 +010044for path in rules_files:
Martin Pittb2ad12e2010-09-21 12:45:52 +020045 lineno = 0
46 for line in open(path):
47 lineno += 1
48
49 # handle line continuation
50 if line.endswith('\\\n'):
51 buffer += line[:-2]
52 continue
53 else:
54 line = buffer + line
55 buffer = ''
56
57 # filter out comments and empty lines
58 line = line.strip()
59 if not line or line.startswith('#'):
60 continue
61
62 for clause in line.split(','):
63 clause = clause.strip()
64 if not (no_args_tests.match(clause) or args_tests.match(clause) or
65 no_args_assign.match(clause) or args_assign.match(clause)):
66
Kay Sieversbe903bf2011-05-31 02:18:33 +020067 print('Invalid line %s:%i: %s' % (path, lineno, line))
Martin Pittc6be83c2015-01-20 12:18:40 +010068 print(' clause: %s' % clause)
69 print('')
Martin Pittb2ad12e2010-09-21 12:45:52 +020070 result = 1
71 break
72
73sys.exit(result)