blob: f503aa2edf3bb869daf9bc5043b9ad0f4e1cadfe [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001#! /usr/bin/env python
2# -*- coding: utf-8 -*-
3
Duy Truong790f06d2013-02-13 16:38:12 -08004# Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07005#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution.
Duy Truong790f06d2013-02-13 16:38:12 -080013# * Neither the name of The Linux Foundation nor
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070014# the names of its contributors may be used to endorse or promote
15# products derived from this software without specific prior written
16# permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30# Invoke gcc, looking for warnings, and causing a failure if there are
31# non-whitelisted warnings.
32
33import errno
34import re
35import os
36import sys
37import subprocess
38
39# Note that gcc uses unicode, which may depend on the locale. TODO:
40# force LANG to be set to en_US.UTF-8 to get consistent warnings.
41
42allowed_warnings = set([
Sridhar Parasuram32cd2e92012-06-11 10:22:19 -070043 "return_address.c:62",
Sridhar Gujjef2bed4e2014-07-07 14:25:22 +053044 "hci_conn.c:407",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070045 ])
46
47# Capture the name of the object file, can find it.
48ofile = None
49
50warning_re = re.compile(r'''(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:''')
51def interpret_warning(line):
52 """Decode the message from gcc. The messages we care about have a filename, and a warning"""
53 line = line.rstrip('\n')
54 m = warning_re.match(line)
55 if m and m.group(2) not in allowed_warnings:
56 print "error, forbidden warning:", m.group(2)
57
58 # If there is a warning, remove any object if it exists.
59 if ofile:
60 try:
61 os.remove(ofile)
62 except OSError:
63 pass
64 sys.exit(1)
65
66def run_gcc():
67 args = sys.argv[1:]
68 # Look for -o
69 try:
70 i = args.index('-o')
71 global ofile
72 ofile = args[i+1]
73 except (ValueError, IndexError):
74 pass
75
76 compiler = sys.argv[0]
77
78 try:
79 proc = subprocess.Popen(args, stderr=subprocess.PIPE)
80 for line in proc.stderr:
81 print line,
82 interpret_warning(line)
83
84 result = proc.wait()
85 except OSError as e:
86 result = e.errno
87 if result == errno.ENOENT:
88 print args[0] + ':',e.strerror
89 print 'Is your PATH set correctly?'
90 else:
91 print ' '.join(args), str(e)
92
93 return result
94
95if __name__ == '__main__':
96 status = run_gcc()
97 sys.exit(status)