2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-26 03:58:15 +00:00
bind/util/check-includes.pl
Ondřej Surý 58bd26b6cf Update the copyright information in all files in the repository
This commit converts the license handling to adhere to the REUSE
specification.  It specifically:

1. Adds used licnses to LICENSES/ directory

2. Add "isc" template for adding the copyright boilerplate

3. Changes all source files to include copyright and SPDX license
   header, this includes all the C sources, documentation, zone files,
   configuration files.  There are notes in the doc/dev/copyrights file
   on how to add correct headers to the new files.

4. Handle the rest that can't be modified via .reuse/dep5 file.  The
   binary (or otherwise unmodifiable) files could have license places
   next to them in <foo>.license file, but this would lead to cluttered
   repository and most of the files handled in the .reuse/dep5 file are
   system test files.
2022-01-11 09:05:02 +01:00

272 lines
8.1 KiB
Perl

#! /usr/bin/perl -ws
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
#
# SPDX-License-Identifier: MPL-2.0
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
#
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
# Rudimentary, primarily for use by the developers.
# This just evolved with no serious attempt at making it
# bulletproof or foolproof. Or pretty even. Probably would
# have done it differently if it were actually designed as opposed
# to just growing as a multi-tentacled thing as various messages
# were either added or selectively silenced.
# XXX many warnings should not be made unless the header will be a public file
use strict;
use vars qw($debug $isc_includes $dns_includes
$omapi_includes);
$isc_includes = "-Ilib/isc/include";
$dns_includes = "-Ilib/dns/include -Ilib/dns/dst/include";
$omapi_includes = "-Ilib/omapi/include";
$0 =~ s%.*/%%;
die "Usage: $0 [-debug] headerfile ...\n" unless @ARGV > 0;
unless (-f 'configure.in') {
die "$0: run from top of bind9 source tree\n";
}
undef $/;
my @files = @ARGV;
# Outer loop runs once for each file.
for (<>) {
my ($file, $tmpfile, $objfile);
$file = shift @files;
unless ($file =~ /\.h$/) {
print "$0: skipping non-header file $file\n";
next;
}
die "$0: $file: no such file\n" unless -f $file;
# header file fragments; ignore
# XXX rdatastruct itself is moderately tricky.
next if $file =~ m%/rdatastruct(pre|suf)\.h$%;
# From external sources; ignore.
next if $file =~ m%lib/dns/sec/(dnssafe|openssl)%m;
($tmpfile = $file) =~ s%(.*/)?%/tmp/%;
$tmpfile =~ s/\.h$/.c/;
($objfile = $tmpfile) =~ s/\.c$/\.o/;;
$file =~ m%(.*/)?(.*)/(.*)\.h%;
my $symbol = uc "\Q$2_$3_H\E";
$symbol =~ s/\\-/_/g;
if (! m%^\#ifndef\ $symbol\n
\#define\ $symbol\ 1\n
(.*\n)+
\#endif\ /\*\ $symbol\ \*/\n
\n*\Z%mx) {
print "$file has non-conforming wrapper for symbol $symbol\n"
unless $file =~ m%confparser_p\.h%;
}
my $nocomment = '^(?!\s+/?\*)';
# check use of macros without having included proper header for them.
if (/^(\Uisc\E_LANG_(BEGIN|END)DECLS)$/m &&
! m%^#include <isc/lang\.h>$%m) {
print "$file has $1 without <isc/lang.h>\n";
}
if (/$nocomment.*ISC_EVENTCLASS_/m && ! m%^#include <isc/eventclass\.h>%m) {
print "$file has ISC_EVENTCLASS_ without <isc/eventclass.h>\n"
unless $file =~ m%isc/eventclass.h%;
}
if ($file !~ m%isc/magic\.h$%) {
print "$file has ISC_MAGIC_VALID without <isc/magic.h>\n"
if /$nocomment.*ISC_MAGIC_VALID/m && ! m%^#include <isc/magic.h>%m;
print "$file could use ISC_MAGIC_VALID\n" if /^$nocomment.*->magic ==/m;
}
if (/$nocomment.*(ISC|DNS|DST)_R_/m &&
! m%^#include <\L$1\E/result.h>%m) {
print "$file has $1_R_ without <\L$1\E/result.h>\n"
unless $file =~ m%\L$1\E/result.h%m;
}
if (/^$nocomment(?!#define)[a-z].*([a-zA-Z0-9]\([^;]*\);)/m &&
! m%^#include <isc/lang.h>%m) {
print "$file has declarations without <isc/lang.h>\n";
}
#
# First see whether it can be compiled without any additional includes.
# Only bother doing this for files that will be installed as public
# headers (thus weeding out, for example, all of the dns/rdata/*/*.h)
#
if ($file =~ m%/include/% && system("cp $file $tmpfile") == 0) {
if (compile($file, $tmpfile, $objfile) != 0) {
print "$file does not compile stand-alone\n";
}
}
my $prefix = '';
my ($elided, $comment, $prefix_extend, $body);
while (1) {
eval {
# 1 23 4 5 6 78
if (m%(\A\Q$prefix\E((.*\n)*?))(\#include .*(<.*?>)(.*)\n)((.*\n)*)%) {
$elided = $5;
$prefix_extend = $2 . $4;
$comment = $6;
$body = $1 . $7;
} else {
$elided = ""; # stop processing this file.
}
};
if ($@ ne "") {
print "$file processing failed: $@\n";
last;
}
last if $elided eq "";
print STDERR "$file checking $elided\n" if $debug;
# Can mark in the header file when a #include should stay even
# though it might not appear that way otherwise.
next if $comment =~ /require|provide|extend|define|contract|ensure/i;
#
# Special exceptions.
# XXXDCL some of these should be perhaps generalized (ie, look for
# ISC_(LINK|LIST)_ when using <isc/list.h>.
#
if (($file =~ m%isc/log\.h$% && $elided eq "<syslog.h>") ||
($file =~ m%isc/print\.h$% && $elided =~ /^<std(arg|def)\.h>$/) ||
($file =~ m%isc/string\.h$% && $elided eq "<string.h>") ||
($file =~ m%isc/types\.h$% &&
$elided =~ m%^<isc/(boolean|int|offset)\.h>$%) ||
($file =~ m%isc/netdb\.h$% &&
$elided =~ m%^<(netdb|isc/net)\.h>$%)) {
next;
}
if ($elided =~ m%^<(isc|dns|dst)/result.h>$%) {
my $dir = $1;
if (! /$nocomment.*\U$dir\E_R_/m) {
unless ($dir eq "isc" && /$nocomment.*isc_result_t/m) {
# No {foo}_R_, but it is acceptable to include isc/result.h for
# isc_result_t ... but not both isc/result.h and isc/types.h.
# The later check will determine isc/result.h to be redundant,
# so only the ISC_R_ aspect has to be pointed out.
print "$file has <$dir/result.h> without \U$dir\E_R_\n";
next;
}
} else {
# There is an {foo}_R_; this is a necessary include.
next;
}
}
if ($elided eq "<isc/lang.h>") {
if (! /^\Uisc\E_LANG_BEGINDECLS$/m) {
print "$file includes <isc/lang.h> but " .
"has no \Uisc\E_LANG_BEGINDECLS\n";
} elsif (! /^\Uisc\E_LANG_ENDDECLS$/m) {
print "$file has \Uisc\E_LANG_BEGINDECLS but " .
"has no \Uisc\E_LANG_ENDDECLS\n";
} elsif (! /^$nocomment(?!#define)[a-z].*([a-zA-Z0-9]\()/m) {
print "$file has <isc/lang.h> apparently not function declarations\n";
}
next;
}
if ($elided eq "<isc/eventclass.h>") {
if (! /$nocomment.*ISC_EVENTCLASS_/m) {
print "$file has <isc/eventclass.h> without ISC_EVENTCLASS_\n";
}
next;
}
if ($elided eq "<isc/resultclass.h>") {
if (! /$nocomment.*ISC_RESULTCLASS_/m) {
print "$file has <isc/resultclass.h> without ISC_RESULTCLASS_\n";
}
next;
}
if ($elided =~ "<(isc|dns)/types.h>") {
my $dir = $1;
if (! /^$nocomment.*$dir\_\S+\_t\s/m) {
print "$file has <$dir/types.h> but apparently no $dir\_*_t uses\n";
} elsif ($dir ne "isc" && m%^#include <isc/types.h>%m) {
print "$file has <$dir/types.h> and redundant <isc/types.h>\n";
}
# ... otherwise the types.h file is needed for the relevant _t types
# it defines, even if this header file accidentally picks it up by
# including another header that itself included types.h.
# So skip the elision test in any event.
# XXX would be good to test for files that need types.h but don't
# include it.
next;
}
if ($elided eq "<isc/magic.h>") {
if (! /^$nocomment.*ISC_MAGIC_VALID/m) {
print "$file has <isc/magic.h> but no ISC_MAGIC_VALID\n";
}
next;
}
open(TMP, "> $tmpfile");
print TMP "$body";
close(TMP);
print "$file elided $elided, compiling\n" if $debug;
if (compile($file, $tmpfile, $objfile) == 0) {
print "$file does not need $elided\n";
}
} continue {
$prefix .= $prefix_extend;
}
}
sub
compile() {
my ($original, $source, $objfile) = @_;
my $includes;
my $stderr = $debug ? "" : "2>/dev/null";
if ($original =~ m%lib/(isc|tests)/%) {
$includes = $isc_includes;
} elsif ($original =~ m%lib/dns/%) {
$includes = "$isc_includes $dns_includes";
} elsif ($original =~ m%lib/omapi/%) {
$includes = "$isc_includes $dns_includes $omapi_includes";
} else {
$includes = "";
}
system("cc $includes -c $source -o $objfile $stderr");
unlink($source, $objfile);
return ($?);
}