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