blob: 57bc40f6aa0212c0f2e39aadc267a8b25059d475 [file] [log] [blame]
hwg6461fc62015-03-04 10:46:28 +08001#! /usr/bin/env python
2# -*- coding: utf-8 -*-
3
4# Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
5#
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 The Linux Foundation 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
Shunqian Zheng41c170c2018-07-18 11:10:26 +080033from __future__ import print_function
hwg6461fc62015-03-04 10:46:28 +080034import errno
35import re
36import os
37import sys
38import subprocess
39
hwg6461fc62015-03-04 10:46:28 +080040allowed_warnings = set([
Tao Huang67f163f2021-01-04 10:16:52 +080041 "pseudo_files.c:715", # fs/incfs/pseudo_files.c:715:10: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
Tao Huang6ee070a2020-06-01 15:14:06 +080042 "km_apphint.c:230", # drivers/staging/imgtec/rogue/km_apphint.c:230:48: warning: division 'sizeof (void *) / sizeof (void)' does not compute the number of array elements [-Wsizeof-pointer-div]
Tao Huangad61dfe2020-02-17 15:47:12 +080043 "file.c:3010", # fs/f2fs/file.c:3010:12: warning: 'f2fs_ioctl_check_project' defined but not used
44 "configfs.c:1488", # drivers/usb/gadget/configfs.c:1488:12: warning: 'configfs_composite_setup' defined but not used
45 "configfs.c:1513", # drivers/usb/gadget/configfs.c:1513:13: warning: 'configfs_composite_disconnect' defined but not used
Huang, Tao7a51384d2015-11-21 19:40:34 +080046 "posix-cpu-timers.c:1268", # kernel/time/posix-cpu-timers.c:1268:13: warning: 'now' may be used uninitialized in this function
Huang, Tao1af25682016-01-11 11:49:11 +080047 "af_unix.c:1036", # net/unix/af_unix.c:1036:20: warning: 'hash' may be used uninitialized in this function
Huang, Tao7a51384d2015-11-21 19:40:34 +080048 "sunxi_sram.c:214", # drivers/soc/sunxi/sunxi_sram.c:214:24: warning: 'device' may be used uninitialized in this function
49 "ks8851.c:298", # drivers/net/ethernet/micrel/ks8851.c:298:2: warning: 'rxb[0]' may be used uninitialized in this function
50 "ks8851.c:421", # drivers/net/ethernet/micrel/ks8851.c:421:20: warning: 'rxb[0]' may be used uninitialized in this function
Huang, Tao3d3618d2015-11-24 20:43:54 +080051 "compat_binfmt_elf.c:58", # fs/compat_binfmt_elf.c:58:13: warning: 'cputime_to_compat_timeval' defined but not used
Huang, Tao8c7f8df2017-03-31 15:15:45 +080052 "memcontrol.c:5337", # mm/memcontrol.c:5337:12: warning: initialization from incompatible pointer type
Tao Huangde428a62019-02-15 19:57:16 +080053 "atags_to_fdt.c:99", # arch/arm/boot/compressed/atags_to_fdt.c:99:1: warning: the frame size of 1032 bytes is larger than 1024 bytes
Jianqun Xucb39b5b2017-06-27 17:00:35 +080054 "drm_edid.c:3506", # drivers/gpu/drm/drm_edid.c:3506:13: warning: 'cea_db_is_hdmi_forum_vsdb' defined but not used
Tao Huang1079fa92018-03-28 18:48:44 +080055 # W=1
56 "bounds.c:15", # kernel/bounds.c:15:6: warning: no previous prototype for ‘foo’
57 "cpufeature.h:157", # arch/arm64/include/asm/cpufeature.h:157:68: warning: signed and unsigned type in conditional expression
58 "sched.h:1211", # include/linux/sched.h:1211:1: warning: type qualifiers ignored on function return type
Tao Huangfe8169a2018-09-13 15:17:27 +080059 "halphyrf_8188e_ce.c:2208", # drivers/net/wireless/rockchip_wlan/rtl8189es/hal/phydm/rtl8188e/halphyrf_8188e_ce.c:2208:1: warning: the frame size of 1056 bytes is larger than 1024 bytes
60 "halphyrf_8723b_ce.c:2879", # drivers/net/wireless/rockchip_wlan/rtl8723bu/hal/phydm/rtl8723b/halphyrf_8723b_ce.c:2879:1: warning: the frame size of 1056 bytes is larger than 1024 bytes
hwg6461fc62015-03-04 10:46:28 +080061 ])
62
63# Capture the name of the object file, can find it.
64ofile = None
65
Shunqian Zheng41c170c2018-07-18 11:10:26 +080066do_exit = False;
67
hwg6461fc62015-03-04 10:46:28 +080068warning_re = re.compile(r'''(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:''')
69def interpret_warning(line):
70 """Decode the message from gcc. The messages we care about have a filename, and a warning"""
71 line = line.rstrip('\n')
72 m = warning_re.match(line)
73 if m and m.group(2) not in allowed_warnings:
Shunqian Zheng41c170c2018-07-18 11:10:26 +080074 print ("error, forbidden warning:" + m.group(2))
hwg6461fc62015-03-04 10:46:28 +080075
76 # If there is a warning, remove any object if it exists.
77 if ofile:
78 try:
79 os.remove(ofile)
80 except OSError:
81 pass
Shunqian Zheng41c170c2018-07-18 11:10:26 +080082 global do_exit
83 do_exit = True;
hwg6461fc62015-03-04 10:46:28 +080084
85def run_gcc():
86 args = sys.argv[1:]
87 # Look for -o
88 try:
89 i = args.index('-o')
90 global ofile
91 ofile = args[i+1]
92 except (ValueError, IndexError):
93 pass
94
95 compiler = sys.argv[0]
96
97 try:
Tao Huangc7f27e02018-10-09 14:40:26 +080098 env = os.environ.copy()
99 env['LC_ALL'] = 'C'
100 proc = subprocess.Popen(args, stderr=subprocess.PIPE, env=env)
hwg6461fc62015-03-04 10:46:28 +0800101 for line in proc.stderr:
Shunqian Zheng41c170c2018-07-18 11:10:26 +0800102 print (line.decode("utf-8"), end="")
103 interpret_warning(line.decode("utf-8"))
104 if do_exit:
105 sys.exit(1)
hwg6461fc62015-03-04 10:46:28 +0800106
107 result = proc.wait()
108 except OSError as e:
109 result = e.errno
110 if result == errno.ENOENT:
Shunqian Zheng41c170c2018-07-18 11:10:26 +0800111 print (args[0] + ':' + e.strerror)
112 print ('Is your PATH set correctly?')
hwg6461fc62015-03-04 10:46:28 +0800113 else:
Shunqian Zheng41c170c2018-07-18 11:10:26 +0800114 print (' '.join(args) + str(e))
hwg6461fc62015-03-04 10:46:28 +0800115
116 return result
117
118if __name__ == '__main__':
119 status = run_gcc()
120 sys.exit(status)