#!/bin/sh # This file is part of the coreboot project. # # Copyright (C) 2010 coresystems GmbH # Copyright (C) 2016 Google Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # # DESCR: Check that files in have valid license headers # $1 is an optional command line parameter containing directories to check # regex list of files and directories to exclude from the search HEADER_EXCLUDED="\ ^src/vendorcode/|\ ^util/kconfig/|\ ^util/romcc/tests|\ ^util/romcc/results|\ ^util/gitconfig|\ Kconfig|\ \|\ \|\ \|\ Changelog|\ TODO|\ EXAMPLE|\ \.txt$|\ \.jpg$|\ \.cksum$|\ \.bin$|\ \.hex$|\ \.patch$|\ _shipped$|\ /microcode-[^/]*.h$|\ /sdram-.*\.inc$|\ Makefile\.inc\ " #space separated list of directories to test if [ "$1" = "" ]; then HEADER_DIRS="src util" else HEADER_DIRS="$1" fi LC_ALL=C export LC_ALL #get initial list from git, removing HEADER_EXCLUDED files. #make a copy to check for the old style header later. headerlist=$(git ls-files $HEADER_DIRS | egrep -v "($HEADER_EXCLUDED)") #update headerlist by removing files that match the license string check_for_license() { headerlist=$(grep -iL "$1" $headerlist 2>/dev/null) } #search the files for license headers check_for_license "GNU General Public License" check_for_license 'IS PROVIDED .*"AS IS"' check_for_license "IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE" check_for_license '"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES' for file in $headerlist; do #verify the file exists, and has content that requires a header if [ -f "$file" ] && [ "$(wc -l < "$file")" -ne 0 ]; then echo "$file has no recognized license header." fi done