]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/find-doc-nits
Reduce optimization in hppa builds
[thirdparty/openssl.git] / util / find-doc-nits
CommitLineData
1bc74519 1#! /usr/bin/env perl
da1c088f 2# Copyright 2002-2023 The OpenSSL Project Authors. All Rights Reserved.
05ea606a 3#
9059ab42 4# Licensed under the Apache License 2.0 (the "License"). You may not use
05ea606a
RS
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;
a397aca4 13
1624ebdb 14use Carp qw(:DEFAULT cluck);
1bc74519
RS
15use Pod::Checker;
16use File::Find;
169a8e39 17use File::Basename;
71a8b855 18use File::Spec::Functions;
35ea640a 19use Getopt::Std;
1624ebdb
RL
20use FindBin;
21use lib "$FindBin::Bin/perl";
22
71a8b855 23use OpenSSL::Util::Pod;
35ea640a 24
1624ebdb
RL
25use lib '.';
26use configdata;
27
a397aca4
RS
28# Set to 1 for debug output
29my $debug = 0;
705128b0 30
71a8b855 31# Options.
8d50b9c1 32our($opt_d);
b5283535
MC
33our($opt_e);
34our($opt_s);
a03749a8 35our($opt_o);
71a8b855 36our($opt_h);
9e183d22 37our($opt_l);
414823d2 38our($opt_m);
8d50b9c1 39our($opt_n);
274d1bee 40our($opt_p);
8d50b9c1 41our($opt_u);
b5283535 42our($opt_v);
e75138ab 43our($opt_c);
71a8b855 44
185ec4be 45# Print usage message and exit.
fbad6e79 46sub help {
71a8b855
RS
47 print <<EOF;
48Find small errors (nits) in documentation. Options:
5be56c49 49 -c List undocumented commands, undocumented options and unimplemented options.
8d50b9c1 50 -d Detailed list of undocumented (implies -u)
b5283535 51 -e Detailed list of new undocumented (implies -v)
185ec4be 52 -h Print this help message
9e183d22 53 -l Print bogus links
414823d2 54 -m Name(s) of manuals to focus on. Default: man1,man3,man5,man7
71a8b855 55 -n Print nits in POD pages
185ec4be 56 -o Causes -e/-v to count symbols added since 1.1.1 as new (implies -v)
ee4afacd 57 -u Count undocumented functions
b5283535 58 -v Count new undocumented functions
71a8b855
RS
59EOF
60 exit;
61}
1bc74519 62
414823d2 63getopts('cdehlm:nouv');
185ec4be
RS
64
65help() if $opt_h;
66$opt_u = 1 if $opt_d;
67$opt_v = 1 if $opt_o || $opt_e;
68die "Cannot use both -u and -v"
69 if $opt_u && $opt_v;
70die "Cannot use both -d and -e"
71 if $opt_d && $opt_e;
72
73# We only need to check c, l, n, u and v.
74# Options d, e, o imply one of the above.
75die "Need one of -[cdehlnouv] flags.\n"
76 unless $opt_c or $opt_l or $opt_n or $opt_u or $opt_v;
77
78
05ea606a
RS
79my $temp = '/tmp/docnits.txt';
80my $OUT;
fbad6e79 81my $status = 0;
05ea606a 82
414823d2
DDO
83$opt_m = "man1,man3,man5,man7" unless $opt_m;
84die "Argument of -m option may contain only man1, man3, man5, and/or man7"
85 unless $opt_m =~ /^(man[1357][, ]?)*$/;
86my @sections = ( split /[, ]/, $opt_m );
87
a397aca4 88my %mandatory_sections = (
a2b6865b
MC
89 '*' => [ 'NAME', 'COPYRIGHT' ],
90 1 => [ 'DESCRIPTION', 'SYNOPSIS', 'OPTIONS' ],
91 3 => [ 'DESCRIPTION', 'SYNOPSIS', 'RETURN VALUES' ],
92 5 => [ 'DESCRIPTION' ],
a397aca4 93 7 => [ ]
8270c479
RL
94 );
95
96# Symbols that we ignored.
3b1bfd21 97# They are reserved macros that we currently don't document
8270c479
RL
98my $ignored = qr/(?| ^i2d_
99 | ^d2i_
100 | ^DEPRECATEDIN
3b1bfd21 101 | ^OSSL_DEPRECATED
8270c479
RL
102 | \Q_fnsig(3)\E$
103 | ^IMPLEMENT_
104 | ^_?DECLARE_
89b46350
MC
105 | ^sk_
106 | ^SKM_DEFINE_STACK_OF_INTERNAL
282de1cc 107 | ^lh_
5317b6ee 108 | ^DEFINE_LHASH_OF_(INTERNAL|DEPRECATED)
8270c479 109 )/x;
a397aca4 110
b1415dc1
RL
111# A common regexp for C symbol names
112my $C_symbol = qr/\b[[:alpha:]][_[:alnum:]]*\b/;
113
1624ebdb
RL
114# Collect all POD files, both internal and public, and regardless of location
115# We collect them in a hash table with each file being a key, so we can attach
116# tags to them. For example, internal docs will have the word "internal"
117# attached to them.
118my %files = ();
119# We collect files names on the fly, on known tag basis
120my %collected_tags = ();
121# We cache results based on tags
122my %collected_results = ();
123
124# files OPTIONS
125#
126# Example:
127#
128# files(TAGS => 'manual');
129# files(TAGS => [ 'manual', 'man1' ]);
130#
131# This function returns an array of files corresponding to a set of tags
132# given with the options "TAGS". The value of this option can be a single
133# word, or an array of several words, which work as inclusive or exclusive
134# selectors. Inclusive selectors are used to add one more set of files to
135# the returned array, while exclusive selectors limit the set of files added
136# to the array. The recognised tag values are:
137#
138# 'public_manual' - inclusive selector, adds public manuals to the
139# returned array of files.
140# 'internal_manual' - inclusive selector, adds internal manuals to the
141# returned array of files.
142# 'manual' - inclusive selector, adds any manual to the returned
143# array of files. This is really a shorthand for
144# 'public_manual' and 'internal_manual' combined.
145# 'public_header' - inclusive selector, adds public headers to the
146# returned array of files.
147# 'header' - inclusive selector, adds any header file to the
148# returned array of files. Since we currently only
149# care about public headers, this is exactly
150# equivalent to 'public_header', but is present for
151# consistency.
152#
153# 'man1', 'man3', 'man5', 'man7'
154# - exclusive selectors, only applicable together with
155# any of the manual selectors. If any of these are
156# present, only the manuals from the given sections
414823d2 157# will be included. If none of these are present,
1624ebdb
RL
158# the manuals from all sections will be returned.
159#
160# All returned manual files come from configdata.pm.
161# All returned header files come from looking inside
162# "$config{sourcedir}/include/openssl"
163#
164sub files {
165 my %opts = ( @_ ); # Make a copy of the arguments
166
167 $opts{TAGS} = [ $opts{TAGS} ] if ref($opts{TAGS}) eq '';
168
169 croak "No tags given, or not an array"
170 unless exists $opts{TAGS} && ref($opts{TAGS}) eq 'ARRAY';
171
172 my %tags = map { $_ => 1 } @{$opts{TAGS}};
173 $tags{public_manual} = 1
174 if $tags{manual} && ($tags{public} // !$tags{internal});
175 $tags{internal_manual} = 1
176 if $tags{manual} && ($tags{internal} // !$tags{public});
177 $tags{public_header} = 1
178 if $tags{header} && ($tags{public} // !$tags{internal});
179 delete $tags{manual};
180 delete $tags{header};
181 delete $tags{public};
182 delete $tags{internal};
183
184 my $tags_as_key = join(':', sort keys %tags);
185
186 cluck "DEBUG[files]: This is how we got here!" if $debug;
187 print STDERR "DEBUG[files]: tags: $tags_as_key\n" if $debug;
188
189 my %tags_to_collect = ( map { $_ => 1 }
190 grep { !exists $collected_tags{$_} }
191 keys %tags );
192
193 if ($tags_to_collect{public_manual}) {
194 print STDERR "DEBUG[files]: collecting public manuals\n"
195 if $debug;
196
197 # The structure in configdata.pm is that $unified_info{mandocs}
198 # contains lists of man files, and in turn, $unified_info{depends}
199 # contains hash tables showing which POD file each of those man
200 # files depend on. We use that information to find the POD files,
201 # and to attach the man section they belong to as tags
202 foreach my $mansect ( @sections ) {
203 foreach ( map { @{$unified_info{depends}->{$_}} }
204 @{$unified_info{mandocs}->{$mansect}} ) {
205 $files{$_} = { $mansect => 1, public_manual => 1 };
206 }
207 }
208 $collected_tags{public_manual} = 1;
209 }
210
211 if ($tags_to_collect{internal_manual}) {
212 print STDERR "DEBUG[files]: collecting internal manuals\n"
213 if $debug;
214
215 # We don't have the internal docs in configdata.pm. However, they
216 # are all in the source tree, so they're easy to find.
217 foreach my $mansect ( @sections ) {
218 foreach ( glob(catfile($config{sourcedir},
219 'doc', 'internal', $mansect, '*.pod')) ) {
220 $files{$_} = { $mansect => 1, internal_manual => 1 };
221 }
222 }
223 $collected_tags{internal_manual} = 1;
224 }
225
226 if ($tags_to_collect{public_header}) {
227 print STDERR "DEBUG[files]: collecting public headers\n"
228 if $debug;
229
230 foreach ( glob(catfile($config{sourcedir},
231 'include', 'openssl', '*.h')) ) {
232 $files{$_} = { public_header => 1 };
233 }
234 }
235
236 my @result = @{$collected_results{$tags_as_key} // []};
237
238 if (!@result) {
239 # Produce a result based on caller tags
240 foreach my $type ( ( 'public_manual', 'internal_manual' ) ) {
241 next unless $tags{$type};
242
243 # If caller asked for specific sections, we care about sections.
244 # Otherwise, we give back all of them.
245 my @selected_sections =
246 grep { $tags{$_} } @sections;
247 @selected_sections = @sections unless @selected_sections;
248
249 foreach my $section ( ( @selected_sections ) ) {
250 push @result,
251 ( sort { basename($a) cmp basename($b) }
252 grep { $files{$_}->{$type} && $files{$_}->{$section} }
253 keys %files );
254 }
255 }
256 if ($tags{public_header}) {
257 push @result,
258 ( sort { basename($a) cmp basename($b) }
259 grep { $files{$_}->{public_header} }
260 keys %files );
261 }
262
263 if ($debug) {
264 print STDERR "DEBUG[files]: result:\n";
265 print STDERR "DEBUG[files]: $_\n" foreach @result;
266 }
267 $collected_results{$tags_as_key} = [ @result ];
268 }
269
270 return @result;
271}
169a8e39 272
fbad6e79
RS
273# Print error message, set $status.
274sub err {
275 print join(" ", @_), "\n";
276 $status = 1
277}
278
35ea640a 279# Cross-check functions in the NAME and SYNOPSIS section.
fbad6e79 280sub name_synopsis {
35ea640a
RS
281 my $id = shift;
282 my $filename = shift;
283 my $contents = shift;
284
35ea640a
RS
285 # Get NAME section and all words in it.
286 return unless $contents =~ /=head1 NAME(.*)=head1 SYNOPSIS/ms;
287 my $tmp = $1;
288 $tmp =~ tr/\n/ /;
ad090d57 289 err($id, "Trailing comma before - in NAME")
fbad6e79 290 if $tmp =~ /, *-/;
2bcb232e 291 $tmp =~ s/ -.*//g;
fbad6e79
RS
292 err($id, "POD markup among the names in NAME")
293 if $tmp =~ /[<>]/;
2bcb232e 294 $tmp =~ s/ */ /g;
ad090d57 295 err($id, "Missing comma in NAME")
fbad6e79 296 if $tmp =~ /[^,] /;
fbba5d11
RS
297
298 my $dirname = dirname($filename);
1624ebdb
RL
299 my $section = basename($dirname);
300 my $simplename = basename($filename, ".pod");
fbba5d11
RS
301 my $foundfilename = 0;
302 my %foundfilenames = ();
35ea640a 303 my %names;
23ab880d
RL
304 foreach my $n ( split ',', $tmp ) {
305 $n =~ s/^\s+//;
306 $n =~ s/\s+$//;
ad090d57 307 err($id, "The name '$n' contains white-space")
23ab880d 308 if $n =~ /\s/;
35ea640a 309 $names{$n} = 1;
fbba5d11
RS
310 $foundfilename++ if $n eq $simplename;
311 $foundfilenames{$n} = 1
1624ebdb
RL
312 if ( ( grep { basename($_) eq "$n.pod" }
313 files(TAGS => [ 'manual', $section ]) )
314 && $n ne $simplename );
35ea640a 315 }
ad090d57 316 err($id, "The following exist as other .pod files:",
fbad6e79 317 sort keys %foundfilenames)
fbba5d11 318 if %foundfilenames;
fbad6e79 319 err($id, "$simplename (filename) missing from NAME section")
fbba5d11 320 unless $foundfilename;
35ea640a
RS
321
322 # Find all functions in SYNOPSIS
323 return unless $contents =~ /=head1 SYNOPSIS(.*)=head1 DESCRIPTION/ms;
324 my $syn = $1;
8eca4617 325 my $ignore_until = undef; # If defined, this is a regexp
d3cb5904
RL
326 # Remove all non-code lines
327 $syn =~ s/^(?:\s*?|\S.*?)$//msg;
328 # Remove all comments
329 $syn =~ s/\/\*.*?\*\///msg;
330 while ( $syn ) {
331 # "env" lines end at a newline.
332 # Preprocessor lines start with a # and end at a newline.
333 # Other lines end with a semicolon, and may cover more than
334 # one physical line.
335 if ( $syn !~ /^ \s*(env .*?|#.*?|.*?;)\s*$/ms ) {
336 err($id, "Can't parse rest of synopsis:\n$syn\n(declarations not ending with a semicolon (;)?)");
337 last;
338 }
339 my $line = $1;
340 $syn = $';
341
8eca4617
RL
342 print STDERR "DEBUG[name_synopsis] \$line = '$line'\n" if $debug;
343
344 # Special code to skip over documented structures
345 if ( defined $ignore_until) {
346 next if $line !~ /$ignore_until/;
347 $ignore_until = undef;
348 next;
349 }
350 if ( $line =~ /^\s*(?:typedef\s+)?struct(?:\s+\S+)\s*\{/ ) {
351 $ignore_until = qr/\}.*?;/;
352 next;
353 }
354
8162f6f5 355 my $sym;
31d3a759 356 my $is_prototype = 1;
de3379c9 357 $line =~ s/LHASH_OF\([^)]+\)/int/g;
c952780c 358 $line =~ s/STACK_OF\([^)]+\)/int/g;
4460ad90 359 $line =~ s/SPARSE_ARRAY_OF\([^)]+\)/int/g;
c952780c 360 $line =~ s/__declspec\([^)]+\)//;
93e32043
RL
361
362 ## We don't prohibit that space, to allow typedefs looking like
363 ## this:
364 ##
365 ## typedef int (fantastically_long_name_breaks_80char_limit)
366 ## (fantastically_long_name_breaks_80char_limit *something);
367 ##
368 #if ( $line =~ /typedef.*\(\*?\S+\)\s+\(/ ) {
369 # # a callback function with whitespace before the argument list:
370 # # typedef ... (*NAME) (...
371 # # typedef ... (NAME) (...
372 # err($id, "Function typedef has space before arg list: $line");
373 #}
374
121677b4
RS
375 if ( $line =~ /env (\S*)=/ ) {
376 # environment variable env NAME=...
377 $sym = $1;
b1415dc1 378 } elsif ( $line =~ /typedef.*\(\*?($C_symbol)\)\s*\(/ ) {
0ed78e78 379 # a callback function pointer: typedef ... (*NAME)(...
93e32043 380 # a callback function signature: typedef ... (NAME)(...
0ed78e78 381 $sym = $1;
b1415dc1 382 } elsif ( $line =~ /typedef.*($C_symbol)\s*\(/ ) {
0ed78e78 383 # a callback function signature: typedef ... NAME(...
121677b4 384 $sym = $1;
b1415dc1 385 } elsif ( $line =~ /typedef.*($C_symbol);/ ) {
121677b4 386 # a simple typedef: typedef ... NAME;
31d3a759 387 $is_prototype = 0;
8162f6f5 388 $sym = $1;
b1415dc1 389 } elsif ( $line =~ /enum ($C_symbol) \{/ ) {
d4ea9659
RS
390 # an enumeration: enum ... {
391 $sym = $1;
b1415dc1 392 } elsif ( $line =~ /#\s*(?:define|undef) ($C_symbol)/ ) {
31d3a759 393 $is_prototype = 0;
8162f6f5 394 $sym = $1;
b1415dc1 395 } elsif ( $line =~ /^[^\(]*?\(\*($C_symbol)\s*\(/ ) {
8eca4617
RL
396 # a function returning a function pointer: TYPE (*NAME(args))(args)
397 $sym = $1;
b1415dc1 398 } elsif ( $line =~ /^[^\(]*?($C_symbol)\s*\(/ ) {
8eca4617 399 # a simple function declaration
8162f6f5
RS
400 $sym = $1;
401 }
402 else {
403 next;
404 }
8eca4617
RL
405
406 print STDERR "DEBUG[name_synopsis] \$sym = '$sym'\n" if $debug;
407
fbad6e79 408 err($id, "$sym missing from NAME section")
8162f6f5
RS
409 unless defined $names{$sym};
410 $names{$sym} = 2;
aebb9aac
RS
411
412 # Do some sanity checks on the prototype.
ad090d57 413 err($id, "Prototype missing spaces around commas: $line")
93e32043 414 if $is_prototype && $line =~ /[a-z0-9],[^\s]/;
35ea640a
RS
415 }
416
417 foreach my $n ( keys %names ) {
418 next if $names{$n} == 2;
fbad6e79 419 err($id, "$n missing from SYNOPSIS")
35ea640a
RS
420 }
421}
422
39a117d1 423# Check if SECTION ($3) is located before BEFORE ($4)
fbad6e79 424sub check_section_location {
39a117d1 425 my $id = shift;
cc838ee2 426 my $contents = shift;
95f92d57
JL
427 my $section = shift;
428 my $before = shift;
cc838ee2 429
485d3361
RS
430 return unless $contents =~ /=head1 $section/
431 and $contents =~ /=head1 $before/;
fbad6e79 432 err($id, "$section should appear before $before section")
95f92d57 433 if $contents =~ /=head1 $before.*=head1 $section/ms;
cc838ee2
PY
434}
435
485d3361
RS
436# Check if a =head1 is duplicated, or a =headX is duplicated within a
437# =head1. Treats =head2 =head3 as equivalent -- it doesn't reset the head3
438# sets if it finds a =head2 -- but that is good enough for now. Also check
439# for proper capitalization, trailing periods, etc.
fbad6e79 440sub check_head_style {
485d3361
RS
441 my $id = shift;
442 my $contents = shift;
443 my %head1;
444 my %subheads;
445
446 foreach my $line ( split /\n+/, $contents ) {
447 next unless $line =~ /^=head/;
448 if ( $line =~ /head1/ ) {
ad090d57 449 err($id, "Duplicate section $line")
485d3361
RS
450 if defined $head1{$line};
451 $head1{$line} = 1;
452 %subheads = ();
453 } else {
ad090d57 454 err($id, "Duplicate subsection $line")
485d3361
RS
455 if defined $subheads{$line};
456 $subheads{$line} = 1;
457 }
ad090d57 458 err($id, "Period in =head")
485d3361 459 if $line =~ /\.[^\w]/ or $line =~ /\.$/;
fbad6e79 460 err($id, "not all uppercase in =head1")
485d3361 461 if $line =~ /head1.*[a-z]/;
ad090d57 462 err($id, "All uppercase in subhead")
485d3361
RS
463 if $line =~ /head[234][ A-Z0-9]+$/;
464 }
465}
466
705128b0
RL
467# Because we have options and symbols with extra markup, we need
468# to take that into account, so we need a regexp that extracts
469# markup chunks, including recursive markup.
470# please read up on /(?R)/ in perlre(1)
471# (note: order is important, (?R) needs to come before .)
472# (note: non-greedy is important, or something like 'B<foo> and B<bar>'
473# will be captured as one item)
474my $markup_re =
475 qr/( # Capture group
476 [BIL]< # The start of what we recurse on
79c44b4e 477 (?:(?-1)|.)*? # recurse the whole regexp (referring to
705128b0
RL
478 # the last opened capture group, i.e. the
479 # start of this regexp), or pick next
480 # character. Do NOT be greedy!
481 > # The end of what we recurse on
482 )/x; # (the x allows this sort of split up regexp)
483
484# Options must start with a dash, followed by a letter, possibly
485# followed by letters, digits, dashes and underscores, and the last
486# character must be a letter or a digit.
487# We do also accept the single -? or -n, where n is a digit
488my $option_re =
489 qr/(?:
490 \? # Single question mark
491 |
492 \d # Single digit
493 |
494 - # Single dash (--)
495 |
496 [[:alpha:]](?:[-_[:alnum:]]*?[[:alnum:]])?
497 )/x;
498
499# Helper function to check if a given $thing is properly marked up
500# option. It returns one of these values:
a397aca4
RS
501# undef if it's not an option
502# "" if it's a malformed option
503# $unwrapped the option with the outermost B<> wrapping removed.
705128b0
RL
504sub normalise_option {
505 my $id = shift;
506 my $filename = shift;
507 my $thing = shift;
508
509 my $unwrapped = $thing;
510 my $unmarked = $thing;
511
512 # $unwrapped is the option with the outer B<> markup removed
513 $unwrapped =~ s/^B<//;
514 $unwrapped =~ s/>$//;
515 # $unmarked is the option with *all* markup removed
516 $unmarked =~ s/[BIL]<|>//msg;
517
518
519 # If we found an option, check it, collect it
520 if ( $unwrapped =~ /^\s*-/ ) {
521 return $unwrapped # return option with outer B<> removed
522 if $unmarked =~ /^-${option_re}$/;
523 return ""; # Malformed option
524 }
525 return undef; # Something else
526}
527
528# Checks of command option (man1) formatting. The man1 checks are
529# restricted to the SYNOPSIS and OPTIONS sections, the rest is too
530# free form, we simply cannot be too strict there.
531
532sub option_check {
533 my $id = shift;
534 my $filename = shift;
535 my $contents = shift;
536
537 my $synopsis = ($contents =~ /=head1\s+SYNOPSIS(.*?)=head1/s, $1);
538
539 # Some pages have more than one OPTIONS section, let's make sure
540 # to get them all
541 my $options = '';
542 while ( $contents =~ /=head1\s+[A-Z ]*?OPTIONS$(.*?)(?==head1)/msg ) {
543 $options .= $1;
544 }
545
546 # Look for options with no or incorrect markup
547 while ( $synopsis =~
548 /(?<![-<[:alnum:]])-(?:$markup_re|.)*(?![->[:alnum:]])/msg ) {
549 err($id, "Malformed option [1] in SYNOPSIS: $&");
550 }
551
9c158280 552 my @synopsis;
705128b0
RL
553 while ( $synopsis =~ /$markup_re/msg ) {
554 my $found = $&;
9c158280 555 push @synopsis, $found if $found =~ /^B<-/;
705128b0
RL
556 print STDERR "$id:DEBUG[option_check] SYNOPSIS: found $found\n"
557 if $debug;
558 my $option_uw = normalise_option($id, $filename, $found);
559 err($id, "Malformed option [2] in SYNOPSIS: $found")
560 if defined $option_uw && $option_uw eq '';
561 }
562
563 # In OPTIONS, we look for =item paragraphs.
564 # (?=^\s*$) detects an empty line.
9c158280 565 my @options;
705128b0
RL
566 while ( $options =~ /=item\s+(.*?)(?=^\s*$)/msg ) {
567 my $item = $&;
568
569 while ( $item =~ /(\[\s*)?($markup_re)/msg ) {
570 my $found = $2;
571 print STDERR "$id:DEBUG[option_check] OPTIONS: found $&\n"
572 if $debug;
573 err($id, "Unexpected bracket in OPTIONS =item: $item")
574 if ($1 // '') ne '' && $found =~ /^B<\s*-/;
575
576 my $option_uw = normalise_option($id, $filename, $found);
577 err($id, "Malformed option in OPTIONS: $found")
578 if defined $option_uw && $option_uw eq '';
9c158280
DDO
579 if ($found =~ /^B<-/) {
580 push @options, $found;
581 err($id, "OPTIONS entry $found missing from SYNOPSIS")
582 unless (grep /^\Q$found\E$/, @synopsis)
583 || $id =~ /(openssl|-options)\.pod:1:$/;
584 }
705128b0
RL
585 }
586 }
9c158280
DDO
587 foreach (@synopsis) {
588 my $option = $_;
589 err($id, "SYNOPSIS entry $option missing from OPTIONS")
590 unless (grep /^\Q$option\E$/, @options);
591 }
705128b0
RL
592}
593
594# Normal symbol form
595my $symbol_re = qr/[[:alpha:]_][_[:alnum:]]*?/;
596
597# Checks of function name (man3) formatting. The man3 checks are
598# easier than the man1 checks, we only check the names followed by (),
599# and only the names that have POD markup.
705128b0
RL
600sub functionname_check {
601 my $id = shift;
602 my $filename = shift;
603 my $contents = shift;
604
605 while ( $contents =~ /($markup_re)\(\)/msg ) {
606 print STDERR "$id:DEBUG[functionname_check] SYNOPSIS: found $&\n"
607 if $debug;
608
609 my $symbol = $1;
610 my $unmarked = $symbol;
611 $unmarked =~ s/[BIL]<|>//msg;
612
613 err($id, "Malformed symbol: $symbol")
8270c479 614 unless $symbol =~ /^B<.*?>$/ && $unmarked =~ /^${symbol_re}$/
705128b0
RL
615 }
616
617 # We can't do the kind of collecting coolness that option_check()
618 # does, because there are too many things that can't be found in
619 # name repositories like the NAME sections, such as symbol names
620 # with a variable part (typically marked up as B<foo_I<TYPE>_bar>
621}
622
60a7817c
RS
623# This is from http://man7.org/linux/man-pages/man7/man-pages.7.html
624my %preferred_words = (
490c8711 625 '16bit' => '16-bit',
8c1cbc72 626 'a.k.a.' => 'aka',
60a7817c
RS
627 'bitmask' => 'bit mask',
628 'builtin' => 'built-in',
629 #'epoch' => 'Epoch', # handled specially, below
52b0bb38 630 'fall-back' => 'fallback',
60a7817c
RS
631 'file name' => 'filename',
632 'file system' => 'filesystem',
633 'host name' => 'hostname',
634 'i-node' => 'inode',
635 'lower case' => 'lowercase',
636 'lower-case' => 'lowercase',
490c8711
GN
637 'manpage' => 'man page',
638 'non-blocking' => 'nonblocking',
639 'non-default' => 'nondefault',
640 'non-empty' => 'nonempty',
641 'non-negative' => 'nonnegative',
60a7817c
RS
642 'non-zero' => 'nonzero',
643 'path name' => 'pathname',
490c8711 644 'pre-allocated' => 'preallocated',
60a7817c 645 'pseudo-terminal' => 'pseudoterminal',
60a7817c 646 'real time' => 'real-time',
490c8711
GN
647 'realtime' => 'real-time',
648 'reserved port' => 'privileged port',
60a7817c
RS
649 'runtime' => 'run time',
650 'saved group ID'=> 'saved set-group-ID',
651 'saved set-GID' => 'saved set-group-ID',
60a7817c 652 'saved set-UID' => 'saved set-user-ID',
490c8711 653 'saved user ID' => 'saved set-user-ID',
60a7817c 654 'set-GID' => 'set-group-ID',
60a7817c 655 'set-UID' => 'set-user-ID',
490c8711 656 'setgid' => 'set-group-ID',
60a7817c 657 'setuid' => 'set-user-ID',
490c8711 658 'sub-system' => 'subsystem',
60a7817c
RS
659 'super block' => 'superblock',
660 'super-block' => 'superblock',
490c8711
GN
661 'super user' => 'superuser',
662 'super-user' => 'superuser',
663 'system port' => 'privileged port',
60a7817c
RS
664 'time stamp' => 'timestamp',
665 'time zone' => 'timezone',
666 'upper case' => 'uppercase',
667 'upper-case' => 'uppercase',
668 'useable' => 'usable',
60a7817c 669 'user name' => 'username',
490c8711 670 'userspace' => 'user space',
60a7817c
RS
671 'zeroes' => 'zeros'
672);
673
a397aca4 674# Search manpage for words that have a different preferred use.
60a7817c
RS
675sub wording {
676 my $id = shift;
677 my $contents = shift;
678
679 foreach my $k ( keys %preferred_words ) {
9c0586d5
RS
680 # Sigh, trademark
681 next if $k eq 'file system'
682 and $contents =~ /Microsoft Encrypted File System/;
ad090d57 683 err($id, "Found '$k' should use '$preferred_words{$k}'")
60a7817c
RS
684 if $contents =~ /\b\Q$k\E\b/i;
685 }
ad090d57 686 err($id, "Found 'epoch' should use 'Epoch'")
60a7817c 687 if $contents =~ /\bepoch\b/;
4b537191
RS
688 if ( $id =~ m@man1/@ ) {
689 err($id, "found 'tool' in NAME, should use 'command'")
690 if $contents =~ /=head1 NAME.*\btool\b.*=head1 SYNOPSIS/s;
691 err($id, "found 'utility' in NAME, should use 'command'")
692 if $contents =~ /NAME.*\butility\b.*=head1 SYNOPSIS/s;
693
694 }
60a7817c
RS
695}
696
a397aca4 697# Perform all sorts of nit/error checks on a manpage
fbad6e79 698sub check {
8270c479
RL
699 my %podinfo = @_;
700 my $filename = $podinfo{filename};
169a8e39 701 my $dirname = basename(dirname($filename));
8270c479 702 my $contents = $podinfo{contents};
843666ff 703
9a2f78e1
DDO
704 # Find what section this page is in; presume 3.
705 my $mansect = 3;
706 $mansect = $1 if $filename =~ /man([1-9])/;
707
843666ff 708 my $id = "${filename}:1:";
fbad6e79 709 check_head_style($id, $contents);
35ea640a 710
39a117d1 711 # Check ordering of some sections in man3
9a2f78e1 712 if ( $mansect == 3 ) {
fbad6e79
RS
713 check_section_location($id, $contents, "RETURN VALUES", "EXAMPLES");
714 check_section_location($id, $contents, "SEE ALSO", "HISTORY");
715 check_section_location($id, $contents, "EXAMPLES", "SEE ALSO");
39a117d1
RS
716 }
717
9a2f78e1 718 # Make sure every link has a man section number.
6e4618a0
RS
719 while ( $contents =~ /$markup_re/msg ) {
720 my $target = $1;
76fde1db
RL
721 next unless $target =~ /^L<(.*)>$/; # Skip if not L<...>
722 $target = $1; # Peal away L< and >
723 $target =~ s/\/[^\/]*$//; # Peal away possible anchor
724 $target =~ s/.*\|//g; # Peal away possible link text
725 next if $target eq ''; # Skip if links within page, or
6e4618a0 726 next if $target =~ /::/; # links to a Perl module, or
76fde1db
RL
727 next if $target =~ /^https?:/; # is a URL link, or
728 next if $target =~ /\([1357]\)$/; # it has a section
9a2f78e1 729 err($id, "Missing man section number (likely, $mansect) in L<$target>")
6e4618a0 730 }
1903a9b7
RS
731 # Check for proper links to commands.
732 while ( $contents =~ /L<([^>]*)\(1\)(?:\/.*)?>/g ) {
733 my $target = $1;
734 next if $target =~ /openssl-?/;
1624ebdb
RL
735 next if ( grep { basename($_) eq "$target.pod" }
736 files(TAGS => [ 'manual', 'man1' ]) );
1903a9b7 737 next if $target =~ /ps|apropos|sha1sum|procmail|perl/;
414823d2 738 err($id, "Bad command link L<$target(1)>") if grep /man1/, @sections;
1903a9b7 739 }
6e4618a0
RS
740 # Check for proper in-man-3 API links.
741 while ( $contents =~ /L<([^>]*)\(3\)(?:\/.*)?>/g ) {
742 my $target = $1;
743 err($id, "Bad L<$target>")
744 unless $target =~ /^[_[:alpha:]][_[:alnum:]]*$/
745 }
746
8270c479 747 unless ( $contents =~ /^=for openssl generic/ms ) {
9a2f78e1 748 if ( $mansect == 3 ) {
705128b0
RL
749 name_synopsis($id, $filename, $contents);
750 functionname_check($id, $filename, $contents);
9a2f78e1 751 } elsif ( $mansect == 1 ) {
705128b0
RL
752 option_check($id, $filename, $contents)
753 }
754 }
35ea640a 755
60a7817c
RS
756 wording($id, $contents);
757
ad090d57 758 err($id, "Doesn't start with =pod")
05ea606a 759 if $contents !~ /^=pod/;
ad090d57 760 err($id, "Doesn't end with =cut")
05ea606a 761 if $contents !~ /=cut\n$/;
ad090d57 762 err($id, "More than one cut line.")
05ea606a 763 if $contents =~ /=cut.*=cut/ms;
fbad6e79 764 err($id, "EXAMPLE not EXAMPLES section.")
cda77422 765 if $contents =~ /=head1 EXAMPLE[^S]/;
fbad6e79 766 err($id, "WARNING not WARNINGS section.")
5e0d9c86 767 if $contents =~ /=head1 WARNING[^S]/;
ad090d57 768 err($id, "Missing copyright")
05ea606a 769 if $contents !~ /Copyright .* The OpenSSL Project Authors/;
ad090d57 770 err($id, "Copyright not last")
05ea606a 771 if $contents =~ /head1 COPYRIGHT.*=head/ms;
fbad6e79 772 err($id, "head2 in All uppercase")
843666ff 773 if $contents =~ /head2\s+[A-Z ]+\n/;
ad090d57 774 err($id, "Extra space after head")
35ea640a 775 if $contents =~ /=head\d\s\s+/;
ad090d57 776 err($id, "Period in NAME section")
35ea640a 777 if $contents =~ /=head1 NAME.*\.\n.*=head1 SYNOPSIS/ms;
fbad6e79 778 err($id, "Duplicate $1 in L<>")
5a3371e2 779 if $contents =~ /L<([^>]*)\|([^>]*)>/ && $1 eq $2;
fbad6e79 780 err($id, "Bad =over $1")
2f61bc2e 781 if $contents =~ /=over([^ ][^24])/;
fbad6e79 782 err($id, "Possible version style issue")
e90fc053 783 if $contents =~ /OpenSSL version [019]/;
843666ff 784
bb82531f 785 if ( $contents !~ /=for openssl multiple includes/ ) {
a95d7574
RS
786 # Look for multiple consecutive openssl #include lines
787 # (non-consecutive lines are okay; see man3/MD5.pod).
843666ff
RS
788 if ( $contents =~ /=head1 SYNOPSIS(.*)=head1 DESCRIPTION/ms ) {
789 my $count = 0;
790 foreach my $line ( split /\n+/, $1 ) {
791 if ( $line =~ m@include <openssl/@ ) {
ad090d57 792 err($id, "Has multiple includes")
fbad6e79 793 if ++$count == 2;
843666ff
RS
794 } else {
795 $count = 0;
796 }
797 }
798 }
799 }
05ea606a 800
35ea640a
RS
801 open my $OUT, '>', $temp
802 or die "Can't open $temp, $!";
bf57cab7
RL
803 err($id, "POD errors")
804 if podchecker($filename, $OUT) != 0;
35ea640a
RS
805 close $OUT;
806 open $OUT, '<', $temp
807 or die "Can't read $temp, $!";
808 while ( <$OUT> ) {
809 next if /\(section\) in.*deprecated/;
810 print;
811 }
812 close $OUT;
813 unlink $temp || warn "Can't remove $temp, $!";
a95d7574 814
9a2f78e1 815 # Find what section this page is in; presume 3.
a95d7574
RS
816 my $section = 3;
817 $section = $1 if $dirname =~ /man([1-9])/;
818
a397aca4 819 foreach ( (@{$mandatory_sections{'*'}}, @{$mandatory_sections{$section}}) ) {
ad090d57 820 err($id, "Missing $_ head1 section")
a95d7574
RS
821 if $contents !~ /^=head1\s+${_}\s*$/m;
822 }
05ea606a 823}
1bc74519 824
8270c479
RL
825# Information database ###############################################
826
827# Map of links in each POD file; filename => [ "foo(1)", "bar(3)", ... ]
828my %link_map = ();
829# Map of names in each POD file or from "missing" files; possible values are:
830# If found in a POD files, "name(s)" => filename
831# If found in a "missing" file or external, "name(s)" => ''
832my %name_map = ();
833
834# State of man-page names.
835# %state is affected by loading util/*.num and util/*.syms
836# Values may be one of:
837# 'crypto' : belongs in libcrypto (loaded from libcrypto.num)
838# 'ssl' : belongs in libssl (loaded from libssl.num)
839# 'other' : belongs in libcrypto or libssl (loaded from other.syms)
840# 'internal' : Internal
841# 'public' : Public (generic name or external documentation)
842# Any of these values except 'public' may be prefixed with 'missing_'
843# to indicate that they are known to be missing.
844my %state;
845# %missing is affected by loading util/missing*.txt. Values may be one of:
846# 'crypto' : belongs in libcrypto (loaded from libcrypto.num)
847# 'ssl' : belongs in libssl (loaded from libssl.num)
848# 'other' : belongs in libcrypto or libssl (loaded from other.syms)
849# 'internal' : Internal
850my %missing;
851
a397aca4 852# Parse libcrypto.num, etc., and return sorted list of what's there.
8270c479 853sub loadnum ($;$) {
71a8b855 854 my $file = shift;
8270c479
RL
855 my $type = shift;
856 my @symbols;
71a8b855 857
1624ebdb 858 open my $IN, '<', catfile($config{sourcedir}, $file)
71a8b855
RS
859 or die "Can't open $file, $!, stopped";
860
861 while ( <$IN> ) {
274d1bee 862 next if /^#/;
71a8b855 863 next if /\bNOEXIST\b/;
1722496f 864 my @fields = split();
bc6ca4cb 865 die "Malformed line $. in $file: $_"
1722496f 866 if scalar @fields != 2 && scalar @fields != 4;
8270c479 867 $state{$fields[0].'(3)'} = $type // 'internal';
71a8b855 868 }
71a8b855 869 close $IN;
71a8b855
RS
870}
871
a397aca4 872# Load file of symbol names that we know aren't documented.
8270c479 873sub loadmissing($;$)
b5283535
MC
874{
875 my $missingfile = shift;
8270c479 876 my $type = shift;
b5283535 877
1624ebdb 878 open FH, catfile($config{sourcedir}, $missingfile)
fadb57e5 879 or die "Can't open $missingfile";
b5283535
MC
880 while ( <FH> ) {
881 chomp;
882 next if /^#/;
8270c479 883 $missing{$_} = $type // 'internal';
b5283535
MC
884 }
885 close FH;
8270c479 886}
b5283535 887
8270c479
RL
888# Check that we have consistent public / internal documentation and declaration
889sub checkstate () {
890 # Collect all known names, no matter where they come from
891 my %names = map { $_ => 1 } (keys %name_map, keys %state, keys %missing);
892
893 # Check section 3, i.e. functions and macros
894 foreach ( grep { $_ =~ /\(3\)$/ } sort keys %names ) {
895 next if ( $name_map{$_} // '') eq '' || $_ =~ /$ignored/;
896
897 # If a man-page isn't recorded public or if it's recorded missing
898 # and internal, it's declared to be internal.
899 my $declared_internal =
900 ($state{$_} // 'internal') eq 'internal'
901 || ($missing{$_} // '') eq 'internal';
902 # If a man-page isn't recorded internal or if it's recorded missing
903 # and not internal, it's declared to be public
904 my $declared_public =
905 ($state{$_} // 'internal') ne 'internal'
906 || ($missing{$_} // 'internal') ne 'internal';
907
908 err("$_ is supposedly public but is documented as internal")
909 if ( $declared_public && $name_map{$_} =~ /\/internal\// );
bf973d06 910 err("$_ is supposedly internal (maybe missing from other.syms) but is documented as public")
8270c479 911 if ( $declared_internal && $name_map{$_} !~ /\/internal\// );
17fa385d 912 }
b5283535
MC
913}
914
a397aca4
RS
915# Check for undocumented macros; ignore those in the "missing" file
916# and do simple check for #define in our header files.
fbad6e79 917sub checkmacros {
9a2dfc0f 918 my $count = 0;
ee4afacd 919 my %seen;
b5283535 920
1624ebdb 921 foreach my $f ( files(TAGS => 'public_header') ) {
9a2dfc0f 922 # Skip some internals we don't want to document yet.
1624ebdb
RL
923 my $b = basename($f);
924 next if $b eq 'asn1.h';
925 next if $b eq 'asn1t.h';
926 next if $b eq 'err.h';
fadb57e5
RS
927 open(IN, $f)
928 or die "Can't open $f, $!";
9a2dfc0f
RS
929 while ( <IN> ) {
930 next unless /^#\s*define\s*(\S+)\(/;
b4350db5 931 my $macro = "$1(3)"; # We know they're all in section 3
8270c479
RL
932 next if defined $name_map{$macro}
933 || defined $missing{$macro}
934 || defined $seen{$macro}
935 || $macro =~ /$ignored/;
14ee781e 936
185ec4be 937 err("$f:", "macro $macro undocumented")
fbad6e79 938 if $opt_d || $opt_e;
9a2dfc0f 939 $count++;
ee4afacd 940 $seen{$macro} = 1;
9a2dfc0f
RS
941 }
942 close(IN);
943 }
185ec4be
RS
944 err("# $count macros undocumented (count is approximate)")
945 if $count > 0;
9a2dfc0f
RS
946}
947
a397aca4
RS
948# Find out what is undocumented (filtering out the known missing ones)
949# and display them.
8270c479
RL
950sub printem ($) {
951 my $type = shift;
71a8b855 952 my $count = 0;
b5283535 953
c4de5d22
RL
954 foreach my $func ( grep { $state{$_} eq $type } sort keys %state ) {
955 next if defined $name_map{$func}
956 || defined $missing{$func};
8270c479
RL
957
958 err("$type:", "function $func undocumented")
fbad6e79 959 if $opt_d || $opt_e;
71a8b855
RS
960 $count++;
961 }
8270c479 962 err("# $count lib$type names are not documented")
185ec4be 963 if $count > 0;
71a8b855
RS
964}
965
a397aca4 966# Collect all the names in a manpage.
9e183d22 967sub collectnames {
8270c479
RL
968 my %podinfo = @_;
969 my $filename = $podinfo{filename};
9e183d22
RS
970 $filename =~ m|man(\d)/|;
971 my $section = $1;
a397aca4 972 my $simplename = basename($filename, ".pod");
9e183d22 973 my $id = "${filename}:1:";
8270c479 974 my $is_generic = $podinfo{contents} =~ /^=for openssl generic/ms;
9e183d22 975
b4350db5 976 unless ( grep { $simplename eq $_ } @{$podinfo{names}} ) {
d2b194d7 977 err($id, "$simplename not in NAME section");
b4350db5 978 push @{$podinfo{names}}, $simplename;
9e183d22 979 }
fadb57e5 980 foreach my $name ( @{$podinfo{names}} ) {
9e183d22 981 next if $name eq "";
6f72b210 982 err($id, "'$name' contains whitespace")
d2b194d7 983 if $name =~ /\s/;
9e183d22 984 my $name_sec = "$name($section)";
8270c479 985 if ( !defined $name_map{$name_sec} ) {
a397aca4 986 $name_map{$name_sec} = $filename;
c4de5d22 987 $state{$name_sec} //=
8270c479
RL
988 ( $filename =~ /\/internal\// ? 'internal' : 'public' )
989 if $is_generic;
a397aca4 990 } elsif ( $filename eq $name_map{$name_sec} ) {
b4350db5 991 err($id, "$name_sec duplicated in NAME section of",
a397aca4 992 $name_map{$name_sec});
8270c479 993 } elsif ( $name_map{$name_sec} ne '' ) {
fbad6e79 994 err($id, "$name_sec also in NAME section of",
a397aca4 995 $name_map{$name_sec});
9e183d22
RS
996 }
997 }
998
fadb57e5
RS
999 if ( $podinfo{contents} =~ /=for openssl foreign manual (.*)\n/ ) {
1000 foreach my $f ( split / /, $1 ) {
8270c479
RL
1001 $name_map{$f} = ''; # It still exists!
1002 $state{$f} = 'public'; # We assume!
fadb57e5 1003 }
9e183d22
RS
1004 }
1005
0e7e3b9b
RL
1006 my @links = ();
1007 # Don't use this regexp directly on $podinfo{contents}, as it causes
1008 # a regexp recursion, which fails on really big PODs. Instead, use
1009 # $markup_re to pick up general markup, and use this regexp to check
1010 # that the markup that was found is indeed a link.
1011 my $linkre = qr/L<
1012 # if the link is of the form L<something|name(s)>,
1013 # then remove 'something'. Note that 'something'
1014 # may contain POD codes as well...
1015 (?:(?:[^\|]|<[^>]*>)*\|)?
1016 # we're only interested in references that have
1017 # a one digit section number
1018 ([^\/>\(]+\(\d\))
1019 /x;
1020 while ( $podinfo{contents} =~ /$markup_re/msg ) {
1021 my $x = $1;
1022
1023 if ($x =~ $linkre) {
1024 push @links, $1;
1025 }
1026 }
a397aca4 1027 $link_map{$filename} = [ @links ];
9e183d22
RS
1028}
1029
a397aca4 1030# Look for L<> ("link") references that point to files that do not exist.
9e183d22 1031sub checklinks {
fadb57e5
RS
1032 foreach my $filename ( sort keys %link_map ) {
1033 foreach my $link ( @{$link_map{$filename}} ) {
fbad6e79 1034 err("${filename}:1:", "reference to non-existing $link")
8270c479
RL
1035 unless defined $name_map{$link} || defined $missing{$link};
1036 err("${filename}:1:", "reference of internal $link in public documentation $filename")
1037 if ( ( ($state{$link} // '') eq 'internal'
1038 || ($missing{$link} // '') eq 'internal' )
1039 && $filename !~ /\/internal\// );
9e183d22
RS
1040 }
1041 }
1042}
1043
a397aca4
RS
1044# Cipher/digests to skip if they show up as "not implemented"
1045# because they are, via the "-*" construct.
e75138ab
RS
1046my %skips = (
1047 'aes128' => 1,
1048 'aes192' => 1,
1049 'aes256' => 1,
1050 'aria128' => 1,
1051 'aria192' => 1,
1052 'aria256' => 1,
1053 'camellia128' => 1,
1054 'camellia192' => 1,
1055 'camellia256' => 1,
1056 'des' => 1,
1057 'des3' => 1,
1058 'idea' => 1,
1738c0ce
RS
1059 'cipher' => 1,
1060 'digest' => 1,
e75138ab
RS
1061);
1062
f2431fe7
DDO
1063my %genopts; # generic options parsed from apps/include/opt.h
1064
a397aca4 1065# Check the flags of a command and see if everything is in the manpage
fbad6e79 1066sub checkflags {
e75138ab 1067 my $cmd = shift;
bc5a8091 1068 my $doc = shift;
f2431fe7 1069 my @cmdopts;
e75138ab 1070 my %docopts;
e75138ab 1071
f2431fe7
DDO
1072 # Get the list of options in the command source file.
1073 my $active = 0;
1074 my $expect_helpstr = "";
1075 open CFH, "apps/$cmd.c"
1076 or die "Can't open apps/$cmd.c to list options for $cmd, $!";
e75138ab
RS
1077 while ( <CFH> ) {
1078 chop;
f2431fe7
DDO
1079 if ($active) {
1080 last if m/^\s*};/;
1081 if ($expect_helpstr ne "") {
1082 next if m/^\s*#\s*if/;
1083 err("$cmd does not implement help for -$expect_helpstr") unless m/^\s*"/;
1084 $expect_helpstr = "";
e34307b8 1085 }
0ef024a4 1086 if (m/\{\s*"([^"]+)"\s*,\s*OPT_[A-Z0-9_]+\s*,\s*('[-\/:<>cAEfFlMnNpsuU]'|0)(.*)$/
14d3bb06 1087 && !($cmd eq "s_client" && $1 eq "wdebug")) {
f2431fe7
DDO
1088 push @cmdopts, $1;
1089 $expect_helpstr = $1;
14d3bb06 1090 $expect_helpstr = "" if $3 =~ m/^\s*,\s*"/;
f2431fe7
DDO
1091 } elsif (m/[\s,](OPT_[A-Z]+_OPTIONS?)\s*(,|$)/) {
1092 push @cmdopts, @{ $genopts{$1} };
1093 }
1094 } elsif (m/^const\s+OPTIONS\s*/) {
1095 $active = 1;
1096 }
e75138ab
RS
1097 }
1098 close CFH;
1099
1100 # Get the list of flags from the synopsis
bc5a8091 1101 open CFH, "<$doc"
fadb57e5 1102 or die "Can't open $doc, $!";
e75138ab
RS
1103 while ( <CFH> ) {
1104 chop;
1105 last if /DESCRIPTION/;
65718c51
RS
1106 my $opt;
1107 if ( /\[B<-([^ >]+)/ ) {
1108 $opt = $1;
1109 } elsif ( /^B<-([^ >]+)/ ) {
1110 $opt = $1;
1111 } else {
1112 next;
1113 }
1738c0ce 1114 $opt = $1 if $opt =~ /I<(.*)/;
e75138ab
RS
1115 $docopts{$1} = 1;
1116 }
1117 close CFH;
1118
1119 # See what's in the command not the manpage.
f2431fe7 1120 my @undocced = sort grep { !defined $docopts{$_} } @cmdopts;
a397aca4 1121 foreach ( @undocced ) {
5be56c49 1122 err("$doc: undocumented $cmd option -$_");
e75138ab
RS
1123 }
1124
0ef024a4 1125 # See what's in the manpage not the command.
f2431fe7 1126 my @unimpl = sort grep { my $e = $_; !(grep /^\Q$e\E$/, @cmdopts) } keys %docopts;
a397aca4 1127 foreach ( @unimpl ) {
f2431fe7 1128 next if $_ eq "-"; # Skip the -- end-of-flags marker
47c88d45 1129 next if defined $skips{$_};
65718c51 1130 err("$doc: $cmd does not implement -$_");
e75138ab 1131 }
e75138ab
RS
1132}
1133
a397aca4
RS
1134##
1135## MAIN()
1136## Do the work requested by the various getopt flags.
1137## The flags are parsed in alphabetical order, just because we have
1138## to have *some way* of listing them.
1139##
1140
e75138ab 1141if ( $opt_c ) {
e75138ab 1142 my @commands = ();
3dfda1a6 1143
f2431fe7
DDO
1144 # Get the lists of generic options.
1145 my $active = "";
f7a19d64 1146 open OFH, catdir($config{sourcedir}, "apps/include/opt.h")
f2431fe7
DDO
1147 or die "Can't open apps/include/opt.h to list generic options, $!";
1148 while ( <OFH> ) {
e75138ab 1149 chop;
f2431fe7
DDO
1150 push @{ $genopts{$active} }, $1 if $active ne "" && m/^\s+\{\s*"([^"]+)"\s*,\s*OPT_/;
1151 $active = $1 if m/^\s*#\s*define\s+(OPT_[A-Z]+_OPTIONS?)\s*\\\s*$/;
1152 $active = "" if m/^\s*$/;
e75138ab 1153 }
f2431fe7
DDO
1154 close OFH;
1155
1156 # Get list of commands.
1157 opendir(DIR, "apps");
1158 @commands = grep(/\.c$/, readdir(DIR));
1159 closedir(DIR);
e75138ab
RS
1160
1161 # See if each has a manpage.
bc5a8091 1162 foreach my $cmd ( @commands ) {
f2431fe7 1163 $cmd =~ s/\.c$//;
ee56cec7 1164 next if $cmd eq 'progs' || $cmd eq 'vms_decc_init';
1624ebdb
RL
1165 my @doc = ( grep { basename($_) eq "openssl-$cmd.pod"
1166 # For "tsget" and "CA.pl" pod pages
1167 || basename($_) eq "$cmd.pod" }
1168 files(TAGS => [ 'manual', 'man1' ]) );
1169 my $num = scalar @doc;
1170 if ($num > 1) {
1171 err("$num manuals for 'openssl $cmd': ".join(", ", @doc));
1172 } elsif ($num < 1) {
1173 err("no manual for 'openssl $cmd'");
e75138ab 1174 } else {
1624ebdb 1175 checkflags($cmd, @doc);
e75138ab 1176 }
71a8b855
RS
1177 }
1178}
9e183d22 1179
8270c479
RL
1180# Populate %state
1181loadnum('util/libcrypto.num', 'crypto');
1182loadnum('util/libssl.num', 'ssl');
1183loadnum('util/other.syms', 'other');
1184loadnum('util/other-internal.syms');
1185if ( $opt_o ) {
1186 loadmissing('util/missingmacro111.txt', 'crypto');
1187 loadmissing('util/missingcrypto111.txt', 'crypto');
1188 loadmissing('util/missingssl111.txt', 'ssl');
e3ce33b3 1189} elsif ( !$opt_u ) {
8270c479
RL
1190 loadmissing('util/missingmacro.txt', 'crypto');
1191 loadmissing('util/missingcrypto.txt', 'crypto');
1192 loadmissing('util/missingssl.txt', 'ssl');
1193 loadmissing('util/missingcrypto-internal.txt');
1194 loadmissing('util/missingssl-internal.txt');
1195}
1196
1197if ( $opt_n || $opt_l || $opt_u || $opt_v ) {
1198 my @files_to_read = ( $opt_n && @ARGV ) ? @ARGV : files(TAGS => 'manual');
1199
1200 foreach (@files_to_read) {
1201 my %podinfo = extract_pod_info($_, { debug => $debug });
1202
1203 collectnames(%podinfo)
1204 if ( $opt_l || $opt_u || $opt_v );
1205
1206 check(%podinfo)
1207 if ( $opt_n );
9e183d22 1208 }
b4350db5
RL
1209}
1210
1211if ( $opt_l ) {
9e183d22
RS
1212 checklinks();
1213}
1214
e75138ab 1215if ( $opt_n ) {
a6dd3a3a 1216 # If not given args, check that all man1 commands are named properly.
414823d2 1217 if ( scalar @ARGV == 0 && grep /man1/, @sections ) {
1624ebdb 1218 foreach ( files(TAGS => [ 'public_manual', 'man1' ]) ) {
6b480ee3
DDO
1219 next if /openssl\.pod/
1220 || /CA\.pl/ || /tsget\.pod/; # these commands are special cases
a6dd3a3a
RS
1221 err("$_ doesn't start with openssl-") unless /openssl-/;
1222 }
1223 }
e75138ab
RS
1224}
1225
8270c479
RL
1226checkstate();
1227
b5283535 1228if ( $opt_u || $opt_v) {
8270c479
RL
1229 printem('crypto');
1230 printem('ssl');
fbad6e79 1231 checkmacros();
1bc74519 1232}
05ea606a 1233
fbad6e79 1234exit $status;