blob: dc074daef75c3da0becd1a3cb43981ea92db28c6 [file] [log] [blame]
Martin Roth0ad5fbd2020-12-24 12:06:38 -07001#!/usr/bin/env sh
Martin Rothae39fc42016-07-29 14:20:55 -06002#
Patrick Georgi7333a112020-05-08 20:48:04 +02003# SPDX-License-Identifier: GPL-2.0-only
4
Martin Rothae39fc42016-07-29 14:20:55 -06005# DESCR: Check for non-ASCII and unprintable characters
6
Martin Rothd81debd2022-06-03 00:06:57 -06007LINTDIR="$(
8 cd -- "$(dirname "$0")" > /dev/null 2>&1 || return
9 pwd -P
10)"
11
12# shellcheck source=helper_functions.sh
13. "${LINTDIR}/helper_functions.sh"
Martin Rothae39fc42016-07-29 14:20:55 -060014
15INCLUDED_FILES='\.[chsS]$\|\.asl$\|\.cb$\|\.inc$\|Kconfig\|\.ld$|\.txt\|\.hex'
Martin Roth3748aae2018-09-02 18:49:12 -060016EXCLUDED_DIRS='^payloads/external/\|^src/vendorcode/\|^Documentation/'
Martin Rothae39fc42016-07-29 14:20:55 -060017EXCLUDED_FILES='to-wiki/towiki\.sh$\|vga/vga_font\|video/font\|PDCurses.*x11'
Martin Roth3748aae2018-09-02 18:49:12 -060018EXCLUDED_PHRASES='Copyright\|Ported to\|Intel®\|°C\|°F\|Athlon™\|Copyright.*©'
Martin Rothae39fc42016-07-29 14:20:55 -060019
Martin Rothd81debd2022-06-03 00:06:57 -060020# Exit if the code isn't in a git repo
21if [ "${IN_GIT_TREE}" -eq 0 ]; then
22 exit 0
Martin Rothae39fc42016-07-29 14:20:55 -060023fi
24
25# 1. Get the list of files to parse and send them through grep
26# 2. Find any characters that aren't TAB, or space (0x20) to ~ (0x7F)
27# LF (0x10) isn't included, as it ends the grep line
28# 3. Remove common phrases and names that have been found
29# 4. Run the result through grep again to highlight the issues that were
30# found. Without this step, the characters can be difficult to see.
Martin Roth300b25a2018-09-02 18:45:43 -060031# shellcheck disable=SC2046
Martin Rothd81debd2022-06-03 00:06:57 -060032${GREP_FILES} -lP "[^\t-~]" | \
Martin Roth300b25a2018-09-02 18:45:43 -060033 grep "$INCLUDED_FILES" | \
34 grep -v "$EXCLUDED_DIRS" | \
35 grep -v "$EXCLUDED_FILES" | \
36 xargs -I % \
37 grep -n "[^ -~]" % | \
38 grep -iv "$EXCLUDED_PHRASES" | \
39 grep --color='auto' "[^ -~]"