blob: d3d393dce9eb2392ad720a85ebd19b7b3a379b7d [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001#! /usr/bin/env python
2# -*- coding: utf-8 -*-
3
Rohit Vaswani116bcf02012-02-02 16:01:39 -08004# Copyright (c) 2011-2012, Code Aurora Forum. 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.
13# * Neither the name of Code Aurora nor
14# 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([
Rohit Vaswani116bcf02012-02-02 16:01:39 -080043 "alignment.c:298",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070044 "alignment.c:720",
45 "async.c:122",
46 "async.c:270",
Rohit Vaswani3d2c2892012-02-28 13:56:18 -080047 "block.c:835",
48 "block.c:836",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070049 "dir.c:43",
50 "dm.c:1053",
51 "dm.c:1080",
52 "dm-table.c:1120",
53 "dm-table.c:1126",
54 "drm_edid.c:1303",
55 "eventpoll.c:1143",
56 "f_mass_storage.c:3368",
57 "inode.c:72",
58 "inode.c:73",
59 "inode.c:74",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070060 "msm_sdcc.c:126",
61 "msm_sdcc.c:128",
Rohit Vaswani660d3ff2012-02-09 15:56:26 -080062 "nf_conntrack_core.c:1579",
63 "nf_conntrack_core.c:1580",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070064 "nf_conntrack_netlink.c:790",
Rohit Vaswani660d3ff2012-02-09 15:56:26 -080065 "nf_conntrack_proto.c:210",
66 "nf_conntrack_proto.c:345",
67 "nf_conntrack_proto.c:370",
68 "nf_nat_core.c:528",
69 "nf_nat_core.c:739",
70 "nf_nat_core.c:740",
71 "nf_nat_core.c:741",
72 "nf_nat_core.c:742",
73 "nf_nat_core.c:751",
74 "nf_nat_core.c:753",
75 "nf_nat_core.c:756",
76 "nf_nat_ftp.c:123",
77 "nf_nat_pptp.c:285",
78 "nf_nat_pptp.c:288",
79 "nf_nat_pptp.c:291",
80 "nf_nat_pptp.c:294",
81 "nf_nat_sip.c:550",
82 "nf_nat_sip.c:551",
83 "nf_nat_sip.c:552",
84 "nf_nat_sip.c:553",
85 "nf_nat_sip.c:555",
86 "nf_nat_sip.c:556",
87 "nf_nat_sip.c:554",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070088 "nf_nat_standalone.c:118",
Rohit Vaswani660d3ff2012-02-09 15:56:26 -080089 "nf_nat_tftp.c:46",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070090 "return_address.c:62",
Rohit Vaswani116bcf02012-02-02 16:01:39 -080091 "sch_generic.c:678",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070092 "soc-core.c:1719",
93 "xt_log.h:50",
94 "vx6953.c:3124",
95 ])
96
97# Capture the name of the object file, can find it.
98ofile = None
99
100warning_re = re.compile(r'''(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:''')
101def interpret_warning(line):
102 """Decode the message from gcc. The messages we care about have a filename, and a warning"""
103 line = line.rstrip('\n')
104 m = warning_re.match(line)
105 if m and m.group(2) not in allowed_warnings:
106 print "error, forbidden warning:", m.group(2)
107
108 # If there is a warning, remove any object if it exists.
109 if ofile:
110 try:
111 os.remove(ofile)
112 except OSError:
113 pass
114 sys.exit(1)
115
116def run_gcc():
117 args = sys.argv[1:]
118 # Look for -o
119 try:
120 i = args.index('-o')
121 global ofile
122 ofile = args[i+1]
123 except (ValueError, IndexError):
124 pass
125
126 compiler = sys.argv[0]
127
128 try:
129 proc = subprocess.Popen(args, stderr=subprocess.PIPE)
130 for line in proc.stderr:
131 print line,
132 interpret_warning(line)
133
134 result = proc.wait()
135 except OSError as e:
136 result = e.errno
137 if result == errno.ENOENT:
138 print args[0] + ':',e.strerror
139 print 'Is your PATH set correctly?'
140 else:
141 print ' '.join(args), str(e)
142
143 return result
144
145if __name__ == '__main__':
146 status = run_gcc()
147 sys.exit(status)