summaryrefslogtreecommitdiff
path: root/doc/scripts
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-26 19:27:22 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-26 19:27:22 +0100
commitfa6d55606de66d6060c4e777196c6fa9188fe9a4 (patch)
tree15acf240f6aaa111c31d58a82239f5d81578b022 /doc/scripts
parent36686ccdd862dfb0357f14b0ed8a673b7d57b1ce (diff)
downloadgnutls-fa6d55606de66d6060c4e777196c6fa9188fe9a4.tar.gz
Prior to release verify that the exported functions in the .map file match the headers.
Diffstat (limited to 'doc/scripts')
-rwxr-xr-xdoc/scripts/getfuncs-map.pl90
1 files changed, 90 insertions, 0 deletions
diff --git a/doc/scripts/getfuncs-map.pl b/doc/scripts/getfuncs-map.pl
new file mode 100755
index 0000000000..9e5bb7e74a
--- /dev/null
+++ b/doc/scripts/getfuncs-map.pl
@@ -0,0 +1,90 @@
+eval '(exit $?0)' && eval 'exec perl -wST "$0" ${1+"$@"}'
+ & eval 'exec perl -wST "$0" $argv:q'
+ if 0;
+
+# Copyright (C) 2011-2012 Free Software Foundation, Inc.
+# Copyright (C) 2013 Nikos Mavrogiannopoulos
+#
+# This file is part of GnuTLS.
+#
+# This file 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; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This file 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.
+#
+# You should have received a copy of the GNU General Public License
+# along with this file; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+# given a header file in stdin it will print all functions
+
+my %known_false_positives = (
+ 'gnutls_srp_1024_group_generator' => 1,
+ 'gnutls_srp_1024_group_prime' => 1,
+ 'gnutls_srp_1536_group_generator' => 1,
+ 'gnutls_srp_1536_group_prime' => 1,
+ 'gnutls_srp_2048_group_generator' => 1,
+ 'gnutls_srp_2048_group_prime' => 1,
+ 'gnutls_srp_3072_group_generator' => 1,
+ 'gnutls_srp_3072_group_prime' => 1,
+ 'gnutls_srp_4096_group_generator' => 1,
+ 'gnutls_srp_4096_group_prime' => 1,
+ 'gnutls_transport_set_int' => 1,
+ 'gnutls_strdup' => 1,
+ 'gnutls_realloc' => 1,
+ 'gnutls_free' => 1,
+ 'gnutls_malloc' => 1,
+ 'gnutls_calloc' => 1,
+ 'gnutls_secure_malloc' => 1,
+ 'gnutls_secure_calloc' => 1
+);
+
+my %known_false_negatives = (
+ 'gnutls_transport_set_int' => 1,
+);
+
+sub function_print {
+ my $func_name;
+ my $prototype = shift @_;
+ my $check;
+
+#print STDERR $prototype;
+ if ($prototype =~ m/^\s*([A-Za-z0-9_]+)\;$/) {
+# if ($prototype =~ m/^(.*)/) {
+ $func_name = $1;
+ } else {
+ $func_name = '';
+ }
+
+ $check = $known_false_positives{$func_name};
+ return if (defined $check && $check == 1);
+
+ if ($func_name ne '' && ($func_name =~ m/^gnutls_.*/ || $func_name =~ m/^dane_.*/)) {
+ print $func_name . "\n";
+ }
+
+ return;
+}
+
+my $line;
+my $lineno = 0;
+while ($line=<STDIN>) {
+
+ next if ($line eq '');
+# print STDERR "line($lineno): $line";
+
+ #skip comments
+# if ($line =~ m/^\s*/) {
+ function_print($line);
+# }
+ $lineno++;
+}
+
+for (keys %known_false_negatives) {
+ print $_ . "\n";
+}