]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/find-doc-nits
Fix 80-test_ssl_old.t: only count the ciphers if there are any.
[thirdparty/openssl.git] / util / find-doc-nits
CommitLineData
1bc74519 1#! /usr/bin/env perl
05ea606a
RS
2# Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
3#
4# Licensed under the OpenSSL license (the "License"). You may not use
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
1bc74519
RS
9
10require 5.10.0;
11use warnings;
12use strict;
13use Pod::Checker;
14use File::Find;
169a8e39 15use File::Basename;
71a8b855 16use File::Spec::Functions;
35ea640a 17use Getopt::Std;
71a8b855
RS
18use lib catdir(dirname($0), "perl");
19use OpenSSL::Util::Pod;
35ea640a 20
71a8b855 21# Options.
35ea640a 22our($opt_s);
71a8b855
RS
23our($opt_u);
24our($opt_h);
25our($opt_n);
9e183d22 26our($opt_l);
71a8b855
RS
27
28sub help()
29{
30 print <<EOF;
31Find small errors (nits) in documentation. Options:
9e183d22 32 -l Print bogus links
71a8b855
RS
33 -n Print nits in POD pages
34 -s Also print missing sections in POD pages (implies -n)
35 -u List undocumented functions
36 -h Print this help message
37EOF
38 exit;
39}
1bc74519 40
05ea606a
RS
41my $temp = '/tmp/docnits.txt';
42my $OUT;
43
169a8e39
RL
44my %mandatory_sections =
45 ( '*' => [ 'NAME', 'DESCRIPTION', 'COPYRIGHT' ],
3dfda1a6
RS
46 1 => [ 'SYNOPSIS', 'OPTIONS' ],
47 3 => [ 'SYNOPSIS', 'RETURN VALUES' ],
169a8e39
RL
48 5 => [ ],
49 7 => [ ] );
169a8e39 50
35ea640a
RS
51# Cross-check functions in the NAME and SYNOPSIS section.
52sub name_synopsis()
53{
54 my $id = shift;
55 my $filename = shift;
56 my $contents = shift;
57
35ea640a
RS
58 # Get NAME section and all words in it.
59 return unless $contents =~ /=head1 NAME(.*)=head1 SYNOPSIS/ms;
60 my $tmp = $1;
61 $tmp =~ tr/\n/ /;
62 $tmp =~ s/-.*//g;
63 $tmp =~ s/,//g;
fbba5d11
RS
64
65 my $dirname = dirname($filename);
66 my $simplename = basename($filename);
67 $simplename =~ s/.pod$//;
68 my $foundfilename = 0;
69 my %foundfilenames = ();
35ea640a
RS
70 my %names;
71 foreach my $n ( split ' ', $tmp ) {
72 $names{$n} = 1;
fbba5d11
RS
73 $foundfilename++ if $n eq $simplename;
74 $foundfilenames{$n} = 1
75 if -f "$dirname/$n.pod" && $n ne $simplename;
35ea640a 76 }
fbba5d11
RS
77 print "$id the following exist as other .pod files:\n",
78 join(" ", sort keys %foundfilenames), "\n"
79 if %foundfilenames;
80 print "$id $simplename (filename) missing from NAME section\n",
81 unless $foundfilename;
35ea640a
RS
82
83 # Find all functions in SYNOPSIS
84 return unless $contents =~ /=head1 SYNOPSIS(.*)=head1 DESCRIPTION/ms;
85 my $syn = $1;
86 foreach my $line ( split /\n+/, $syn ) {
8162f6f5 87 my $sym;
c952780c
RS
88 $line =~ s/STACK_OF\([^)]+\)/int/g;
89 $line =~ s/__declspec\([^)]+\)//;
121677b4
RS
90 if ( $line =~ /env (\S*)=/ ) {
91 # environment variable env NAME=...
92 $sym = $1;
93 } elsif ( $line =~ /typedef.*\(\*(\S+)\)\(.*/ ) {
94 # a callback function: typedef ... (*NAME)(...
95 $sym = $1;
96 } elsif ( $line =~ /typedef.* (\S+);/ ) {
97 # a simple typedef: typedef ... NAME;
8162f6f5 98 $sym = $1;
d4ea9659
RS
99 } elsif ( $line =~ /enum (\S*) {/ ) {
100 # an enumeration: enum ... {
101 $sym = $1;
c952780c 102 } elsif ( $line =~ /#define ([A-Za-z0-9_]+)/ ) {
8162f6f5
RS
103 $sym = $1;
104 } elsif ( $line =~ /([A-Za-z0-9_]+)\(/ ) {
105 $sym = $1;
106 }
107 else {
108 next;
109 }
110 print "$id $sym missing from NAME section\n"
111 unless defined $names{$sym};
112 $names{$sym} = 2;
aebb9aac
RS
113
114 # Do some sanity checks on the prototype.
115 print "$id prototype missing spaces around commas: $line\n"
116 if ( $line =~ /[a-z0-9],[^ ]/ );
35ea640a
RS
117 }
118
119 foreach my $n ( keys %names ) {
120 next if $names{$n} == 2;
121 print "$id $n missing from SYNOPSIS\n";
122 }
123}
124
1bc74519
RS
125sub check()
126{
169a8e39
RL
127 my $filename = shift;
128 my $dirname = basename(dirname($filename));
843666ff 129
1bc74519
RS
130 my $contents = '';
131 {
132 local $/ = undef;
169a8e39 133 open POD, $filename or die "Couldn't open $filename, $!";
1bc74519
RS
134 $contents = <POD>;
135 close POD;
136 }
843666ff
RS
137
138 my $id = "${filename}:1:";
35ea640a 139
4692340e 140 &name_synopsis($id, $filename, $contents)
8162f6f5 141 unless $contents =~ /=for comment generic/
99d63d46 142 or $filename =~ m@man[157]/@;
35ea640a
RS
143
144 print "$id doesn't start with =pod\n"
05ea606a 145 if $contents !~ /^=pod/;
35ea640a 146 print "$id doesn't end with =cut\n"
05ea606a 147 if $contents !~ /=cut\n$/;
35ea640a 148 print "$id more than one cut line.\n"
05ea606a 149 if $contents =~ /=cut.*=cut/ms;
35ea640a 150 print "$id missing copyright\n"
05ea606a 151 if $contents !~ /Copyright .* The OpenSSL Project Authors/;
35ea640a 152 print "$id copyright not last\n"
05ea606a 153 if $contents =~ /head1 COPYRIGHT.*=head/ms;
35ea640a 154 print "$id head2 in All uppercase\n"
843666ff 155 if $contents =~ /head2\s+[A-Z ]+\n/;
35ea640a
RS
156 print "$id extra space after head\n"
157 if $contents =~ /=head\d\s\s+/;
158 print "$id period in NAME section\n"
159 if $contents =~ /=head1 NAME.*\.\n.*=head1 SYNOPSIS/ms;
160 print "$id POD markup in NAME section\n"
161 if $contents =~ /=head1 NAME.*[<>].*=head1 SYNOPSIS/ms;
843666ff
RS
162
163 # Look for multiple consecutive openssl #include lines.
164 # Consecutive because of files like md5.pod. Sometimes it's okay
165 # or necessary, as in ssl/SSL_set1_host.pod
166 if ( $contents !~ /=for comment multiple includes/ ) {
167 if ( $contents =~ /=head1 SYNOPSIS(.*)=head1 DESCRIPTION/ms ) {
168 my $count = 0;
169 foreach my $line ( split /\n+/, $1 ) {
170 if ( $line =~ m@include <openssl/@ ) {
171 if ( ++$count == 2 ) {
35ea640a 172 print "$id has multiple includes\n";
843666ff
RS
173 }
174 } else {
175 $count = 0;
176 }
177 }
178 }
179 }
05ea606a 180
35ea640a
RS
181 return unless $opt_s;
182
843666ff
RS
183 # Find what section this page is in. If run from "." assume
184 # section 3.
99d63d46
RS
185 my $section = 3;
186 $section = $1 if $dirname =~ /man([1-9])/;
169a8e39
RL
187
188 foreach ((@{$mandatory_sections{'*'}}, @{$mandatory_sections{$section}})) {
3dfda1a6 189 print "$id: missing $_ head1 section\n"
169a8e39
RL
190 if $contents !~ /^=head1\s+${_}\s*$/m;
191 }
192
35ea640a
RS
193 open my $OUT, '>', $temp
194 or die "Can't open $temp, $!";
169a8e39 195 podchecker($filename, $OUT);
35ea640a
RS
196 close $OUT;
197 open $OUT, '<', $temp
198 or die "Can't read $temp, $!";
199 while ( <$OUT> ) {
200 next if /\(section\) in.*deprecated/;
201 print;
202 }
203 close $OUT;
204 unlink $temp || warn "Can't remove $temp, $!";
05ea606a 205}
1bc74519 206
71a8b855
RS
207my %dups;
208
209sub parsenum()
210{
211 my $file = shift;
212 my @apis;
213
214 open my $IN, '<', $file
215 or die "Can't open $file, $!, stopped";
216
217 while ( <$IN> ) {
218 next if /\bNOEXIST\b/;
219 next if /\bEXPORT_VAR_AS_FUNC\b/;
220 push @apis, $1 if /([^\s]+).\s/;
221 }
222
223 close $IN;
224
225 print "# Found ", scalar(@apis), " in $file\n";
226 return sort @apis;
227}
228
229sub getdocced()
230{
231 my $dir = shift;
232 my %return;
233
234 foreach my $pod ( glob("$dir/*.pod") ) {
235 my %podinfo = extract_pod_info($pod);
236 foreach my $n ( @{$podinfo{names}} ) {
237 $return{$n} = $pod;
238 print "# Duplicate $n in $pod and $dups{$n}\n"
239 if defined $dups{$n} && $dups{$n} ne $pod;
240 $dups{$n} = $pod;
241 }
242 }
243
244 return %return;
245}
246
247my %docced;
248
249sub printem()
250{
251 my $libname = shift;
252 my $numfile = shift;
253 my $count = 0;
254
255 foreach my $func ( &parsenum($numfile) ) {
256 next if $docced{$func};
257
258 # Skip ASN1 utilities
259 next if $func =~ /^ASN1_/;
260
261 print "$libname:$func\n";
262 $count++;
263 }
264 print "# Found $count missing from $numfile\n\n";
265}
266
267
9e183d22
RS
268# Collection of links in each POD file.
269# filename => [ "foo(1)", "bar(3)", ... ]
270my %link_collection = ();
271# Collection of names in each POD file.
272# "name(s)" => filename
273my %name_collection = ();
274
275sub collectnames {
276 my $filename = shift;
277 $filename =~ m|man(\d)/|;
278 my $section = $1;
279 my $simplename = basename($filename, ".pod");
280 my $id = "${filename}:1:";
281
282 my $contents = '';
283 {
284 local $/ = undef;
285 open POD, $filename or die "Couldn't open $filename, $!";
286 $contents = <POD>;
287 close POD;
288 }
289
290 $contents =~ /=head1 NAME([^=]*)=head1 /ms;
291 my $tmp = $1;
292 unless (defined $tmp) {
293 print "$id weird name section\n";
294 return;
295 }
296 $tmp =~ tr/\n/ /;
297 $tmp =~ s/-.*//g;
298
299 my @names = map { s/\s+//g; $_ } split(/,/, $tmp);
300 unless (grep { $simplename eq $_ } @names) {
301 print "$id missing $simplename\n";
302 push @names, $simplename;
303 }
304 foreach my $name (@names) {
305 next if $name eq "";
306 my $name_sec = "$name($section)";
307 if (! exists $name_collection{$name_sec}) {
308 $name_collection{$name_sec} = $filename;
309 } else { #elsif ($filename ne $name_collection{$name_sec}) {
310 print "$id $name_sec also in $name_collection{$name_sec}\n";
311 }
312 }
313
314 my @foreign_names =
315 map { map { s/\s+//g; $_ } split(/,/, $_) }
316 $contents =~ /=for\s+comment\s+foreign\s+manuals:\s*(.*)\n\n/;
317 foreach (@foreign_names) {
318 $name_collection{$_} = undef; # It still exists!
319 }
320
321 my @links = $contents =~ /L<
322 # if the link is of the form L<something|name(s)>,
323 # then remove 'something'. Note that 'something'
324 # may contain POD codes as well...
325 (?:(?:[^\|]|<[^>]*>)*\|)?
326 # we're only interested in referenses that have
327 # a one digit section number
328 ([^\/>\(]+\(\d\))
329 /gx;
330 $link_collection{$filename} = [ @links ];
331}
332
333sub checklinks {
334 foreach my $filename (sort keys %link_collection) {
335 foreach my $link (@{$link_collection{$filename}}) {
336 print "${filename}:1: reference to non-existing $link\n"
337 unless exists $name_collection{$link};
338 }
339 }
340}
341
342getopts('lnshu');
35ea640a 343
71a8b855
RS
344&help() if ( $opt_h );
345
9e183d22
RS
346die "Need one of -l -n -s or -u flags.\n"
347 unless $opt_l or $opt_n or $opt_s or $opt_u;
3dfda1a6 348
71a8b855
RS
349if ( $opt_n or $opt_s ) {
350 foreach (@ARGV ? @ARGV : glob('doc/*/*.pod')) {
351 &check($_);
352 }
353}
9e183d22
RS
354
355if ( $opt_l ) {
356 foreach (@ARGV ? @ARGV : glob('doc/*/*.pod')) {
357 collectnames($_);
358 }
359 checklinks();
360}
361
71a8b855
RS
362if ( $opt_u ) {
363 my %temp = &getdocced('doc/man3');
364 foreach ( keys %temp ) {
365 $docced{$_} = $temp{$_};
366 }
367 &printem('crypto', 'util/libcrypto.num');
368 &printem('ssl', 'util/libssl.num');
1bc74519 369}
05ea606a 370
35ea640a 371exit;