Back to home page

OSCL-LXR

 
 

    


0001 #!/usr/bin/env perl
0002 # SPDX-License-Identifier: GPL-2.0
0003 
0004 use warnings;
0005 use strict;
0006 
0007 ## Copyright (c) 1998 Michael Zucchi, All Rights Reserved        ##
0008 ## Copyright (C) 2000, 1  Tim Waugh <twaugh@redhat.com>          ##
0009 ## Copyright (C) 2001  Simon Huggins                             ##
0010 ## Copyright (C) 2005-2012  Randy Dunlap                         ##
0011 ## Copyright (C) 2012  Dan Luedtke                               ##
0012 ##                                                               ##
0013 ## #define enhancements by Armin Kuster <akuster@mvista.com>     ##
0014 ## Copyright (c) 2000 MontaVista Software, Inc.                  ##
0015 #
0016 # Copyright (C) 2022 Tomasz Warniełło (POD)
0017 
0018 use Pod::Usage qw/pod2usage/;
0019 
0020 =head1 NAME
0021 
0022 kernel-doc - Print formatted kernel documentation to stdout
0023 
0024 =head1 SYNOPSIS
0025 
0026  kernel-doc [-h] [-v] [-Werror]
0027    [ -man |
0028      -rst [-sphinx-version VERSION] [-enable-lineno] |
0029      -none
0030    ]
0031    [
0032      -export |
0033      -internal |
0034      [-function NAME] ... |
0035      [-nosymbol NAME] ...
0036    ]
0037    [-no-doc-sections]
0038    [-export-file FILE] ...
0039    FILE ...
0040 
0041 Run `kernel-doc -h` for details.
0042 
0043 =head1 DESCRIPTION
0044 
0045 Read C language source or header FILEs, extract embedded documentation comments,
0046 and print formatted documentation to standard output.
0047 
0048 The documentation comments are identified by the "/**" opening comment mark.
0049 
0050 See Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
0051 
0052 =cut
0053 
0054 # more perldoc at the end of the file
0055 
0056 ## init lots of data
0057 
0058 my $errors = 0;
0059 my $warnings = 0;
0060 my $anon_struct_union = 0;
0061 
0062 # match expressions used to find embedded type information
0063 my $type_constant = '\b``([^\`]+)``\b';
0064 my $type_constant2 = '\%([-_\w]+)';
0065 my $type_func = '(\w+)\(\)';
0066 my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
0067 my $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
0068 my $type_fp_param = '\@(\w+)\(\)';  # Special RST handling for func ptr params
0069 my $type_fp_param2 = '\@(\w+->\S+)\(\)';  # Special RST handling for structs with func ptr params
0070 my $type_env = '(\$\w+)';
0071 my $type_enum = '\&(enum\s*([_\w]+))';
0072 my $type_struct = '\&(struct\s*([_\w]+))';
0073 my $type_typedef = '\&(typedef\s*([_\w]+))';
0074 my $type_union = '\&(union\s*([_\w]+))';
0075 my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
0076 my $type_fallback = '\&([_\w]+)';
0077 my $type_member_func = $type_member . '\(\)';
0078 
0079 # Output conversion substitutions.
0080 #  One for each output format
0081 
0082 # these are pretty rough
0083 my @highlights_man = (
0084                       [$type_constant, "\$1"],
0085                       [$type_constant2, "\$1"],
0086                       [$type_func, "\\\\fB\$1\\\\fP"],
0087                       [$type_enum, "\\\\fI\$1\\\\fP"],
0088                       [$type_struct, "\\\\fI\$1\\\\fP"],
0089                       [$type_typedef, "\\\\fI\$1\\\\fP"],
0090                       [$type_union, "\\\\fI\$1\\\\fP"],
0091                       [$type_param, "\\\\fI\$1\\\\fP"],
0092                       [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
0093                       [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
0094                       [$type_fallback, "\\\\fI\$1\\\\fP"]
0095                      );
0096 my $blankline_man = "";
0097 
0098 # rst-mode
0099 my @highlights_rst = (
0100                        [$type_constant, "``\$1``"],
0101                        [$type_constant2, "``\$1``"],
0102                        # Note: need to escape () to avoid func matching later
0103                        [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
0104                        [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
0105                        [$type_fp_param, "**\$1\\\\(\\\\)**"],
0106                        [$type_fp_param2, "**\$1\\\\(\\\\)**"],
0107                        [$type_func, "\$1()"],
0108                        [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
0109                        [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
0110                        [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
0111                        [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
0112                        # in rst this can refer to any type
0113                        [$type_fallback, "\\:c\\:type\\:`\$1`"],
0114                        [$type_param_ref, "**\$1\$2**"]
0115                       );
0116 my $blankline_rst = "\n";
0117 
0118 # read arguments
0119 if ($#ARGV == -1) {
0120         pod2usage(
0121                 -message => "No arguments!\n",
0122                 -exitval => 1,
0123                 -verbose => 99,
0124                 -sections => 'SYNOPSIS',
0125                 -output => \*STDERR,
0126         );
0127 }
0128 
0129 my $kernelversion;
0130 my ($sphinx_major, $sphinx_minor, $sphinx_patch);
0131 
0132 my $dohighlight = "";
0133 
0134 my $verbose = 0;
0135 my $Werror = 0;
0136 my $output_mode = "rst";
0137 my $output_preformatted = 0;
0138 my $no_doc_sections = 0;
0139 my $enable_lineno = 0;
0140 my @highlights = @highlights_rst;
0141 my $blankline = $blankline_rst;
0142 my $modulename = "Kernel API";
0143 
0144 use constant {
0145     OUTPUT_ALL          => 0, # output all symbols and doc sections
0146     OUTPUT_INCLUDE      => 1, # output only specified symbols
0147     OUTPUT_EXPORTED     => 2, # output exported symbols
0148     OUTPUT_INTERNAL     => 3, # output non-exported symbols
0149 };
0150 my $output_selection = OUTPUT_ALL;
0151 my $show_not_found = 0; # No longer used
0152 
0153 my @export_file_list;
0154 
0155 my @build_time;
0156 if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
0157     (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
0158     @build_time = gmtime($seconds);
0159 } else {
0160     @build_time = localtime;
0161 }
0162 
0163 my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
0164                 'July', 'August', 'September', 'October',
0165                 'November', 'December')[$build_time[4]] .
0166   " " . ($build_time[5]+1900);
0167 
0168 # Essentially these are globals.
0169 # They probably want to be tidied up, made more localised or something.
0170 # CAVEAT EMPTOR!  Some of the others I localised may not want to be, which
0171 # could cause "use of undefined value" or other bugs.
0172 my ($function, %function_table, %parametertypes, $declaration_purpose);
0173 my %nosymbol_table = ();
0174 my $declaration_start_line;
0175 my ($type, $declaration_name, $return_type);
0176 my ($newsection, $newcontents, $prototype, $brcount, %source_map);
0177 
0178 if (defined($ENV{'KBUILD_VERBOSE'})) {
0179         $verbose = "$ENV{'KBUILD_VERBOSE'}";
0180 }
0181 
0182 if (defined($ENV{'KCFLAGS'})) {
0183         my $kcflags = "$ENV{'KCFLAGS'}";
0184 
0185         if ($kcflags =~ /Werror/) {
0186                 $Werror = 1;
0187         }
0188 }
0189 
0190 if (defined($ENV{'KDOC_WERROR'})) {
0191         $Werror = "$ENV{'KDOC_WERROR'}";
0192 }
0193 
0194 # Generated docbook code is inserted in a template at a point where
0195 # docbook v3.1 requires a non-zero sequence of RefEntry's; see:
0196 # https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
0197 # We keep track of number of generated entries and generate a dummy
0198 # if needs be to ensure the expanded template can be postprocessed
0199 # into html.
0200 my $section_counter = 0;
0201 
0202 my $lineprefix="";
0203 
0204 # Parser states
0205 use constant {
0206     STATE_NORMAL        => 0,        # normal code
0207     STATE_NAME          => 1,        # looking for function name
0208     STATE_BODY_MAYBE    => 2,        # body - or maybe more description
0209     STATE_BODY          => 3,        # the body of the comment
0210     STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
0211     STATE_PROTO         => 5,        # scanning prototype
0212     STATE_DOCBLOCK      => 6,        # documentation block
0213     STATE_INLINE        => 7,        # gathering doc outside main block
0214 };
0215 my $state;
0216 my $in_doc_sect;
0217 my $leading_space;
0218 
0219 # Inline documentation state
0220 use constant {
0221     STATE_INLINE_NA     => 0, # not applicable ($state != STATE_INLINE)
0222     STATE_INLINE_NAME   => 1, # looking for member name (@foo:)
0223     STATE_INLINE_TEXT   => 2, # looking for member documentation
0224     STATE_INLINE_END    => 3, # done
0225     STATE_INLINE_ERROR  => 4, # error - Comment without header was found.
0226                               # Spit a warning as it's not
0227                               # proper kernel-doc and ignore the rest.
0228 };
0229 my $inline_doc_state;
0230 
0231 #declaration types: can be
0232 # 'function', 'struct', 'union', 'enum', 'typedef'
0233 my $decl_type;
0234 
0235 # Name of the kernel-doc identifier for non-DOC markups
0236 my $identifier;
0237 
0238 my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
0239 my $doc_end = '\*/';
0240 my $doc_com = '\s*\*\s*';
0241 my $doc_com_body = '\s*\* ?';
0242 my $doc_decl = $doc_com . '(\w+)';
0243 # @params and a strictly limited set of supported section names
0244 # Specifically:
0245 #   Match @word:
0246 #         @...:
0247 #         @{section-name}:
0248 # while trying to not match literal block starts like "example::"
0249 #
0250 my $doc_sect = $doc_com .
0251     '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:([^:].*)?$';
0252 my $doc_content = $doc_com_body . '(.*)';
0253 my $doc_block = $doc_com . 'DOC:\s*(.*)?';
0254 my $doc_inline_start = '^\s*/\*\*\s*$';
0255 my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
0256 my $doc_inline_end = '^\s*\*/\s*$';
0257 my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
0258 my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
0259 my $function_pointer = qr{([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)};
0260 my $attribute = qr{__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)}i;
0261 
0262 my %parameterdescs;
0263 my %parameterdesc_start_lines;
0264 my @parameterlist;
0265 my %sections;
0266 my @sectionlist;
0267 my %section_start_lines;
0268 my $sectcheck;
0269 my $struct_actual;
0270 
0271 my $contents = "";
0272 my $new_start_line = 0;
0273 
0274 # the canonical section names. see also $doc_sect above.
0275 my $section_default = "Description";    # default section
0276 my $section_intro = "Introduction";
0277 my $section = $section_default;
0278 my $section_context = "Context";
0279 my $section_return = "Return";
0280 
0281 my $undescribed = "-- undescribed --";
0282 
0283 reset_state();
0284 
0285 while ($ARGV[0] =~ m/^--?(.*)/) {
0286     my $cmd = $1;
0287     shift @ARGV;
0288     if ($cmd eq "man") {
0289         $output_mode = "man";
0290         @highlights = @highlights_man;
0291         $blankline = $blankline_man;
0292     } elsif ($cmd eq "rst") {
0293         $output_mode = "rst";
0294         @highlights = @highlights_rst;
0295         $blankline = $blankline_rst;
0296     } elsif ($cmd eq "none") {
0297         $output_mode = "none";
0298     } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
0299         $modulename = shift @ARGV;
0300     } elsif ($cmd eq "function") { # to only output specific functions
0301         $output_selection = OUTPUT_INCLUDE;
0302         $function = shift @ARGV;
0303         $function_table{$function} = 1;
0304     } elsif ($cmd eq "nosymbol") { # Exclude specific symbols
0305         my $symbol = shift @ARGV;
0306         $nosymbol_table{$symbol} = 1;
0307     } elsif ($cmd eq "export") { # only exported symbols
0308         $output_selection = OUTPUT_EXPORTED;
0309         %function_table = ();
0310     } elsif ($cmd eq "internal") { # only non-exported symbols
0311         $output_selection = OUTPUT_INTERNAL;
0312         %function_table = ();
0313     } elsif ($cmd eq "export-file") {
0314         my $file = shift @ARGV;
0315         push(@export_file_list, $file);
0316     } elsif ($cmd eq "v") {
0317         $verbose = 1;
0318     } elsif ($cmd eq "Werror") {
0319         $Werror = 1;
0320     } elsif (($cmd eq "h") || ($cmd eq "help")) {
0321                 pod2usage(-exitval => 0, -verbose => 2);
0322     } elsif ($cmd eq 'no-doc-sections') {
0323             $no_doc_sections = 1;
0324     } elsif ($cmd eq 'enable-lineno') {
0325             $enable_lineno = 1;
0326     } elsif ($cmd eq 'show-not-found') {
0327         $show_not_found = 1;  # A no-op but don't fail
0328     } elsif ($cmd eq "sphinx-version") {
0329         my $ver_string = shift @ARGV;
0330         if ($ver_string =~ m/^(\d+)(\.\d+)?(\.\d+)?/) {
0331             $sphinx_major = $1;
0332             if (defined($2)) {
0333                 $sphinx_minor = substr($2,1);
0334             } else {
0335                 $sphinx_minor = 0;
0336             }
0337             if (defined($3)) {
0338                 $sphinx_patch = substr($3,1)
0339             } else {
0340                 $sphinx_patch = 0;
0341             }
0342         } else {
0343             die "Sphinx version should either major.minor or major.minor.patch format\n";
0344         }
0345     } else {
0346         # Unknown argument
0347         pod2usage(
0348             -message => "Argument unknown!\n",
0349             -exitval => 1,
0350             -verbose => 99,
0351             -sections => 'SYNOPSIS',
0352             -output => \*STDERR,
0353             );
0354     }
0355     if ($#ARGV < 0){
0356         pod2usage(
0357             -message => "FILE argument missing\n",
0358             -exitval => 1,
0359             -verbose => 99,
0360             -sections => 'SYNOPSIS',
0361             -output => \*STDERR,
0362             );
0363     }
0364 }
0365 
0366 # continue execution near EOF;
0367 
0368 # The C domain dialect changed on Sphinx 3. So, we need to check the
0369 # version in order to produce the right tags.
0370 sub findprog($)
0371 {
0372         foreach(split(/:/, $ENV{PATH})) {
0373                 return "$_/$_[0]" if(-x "$_/$_[0]");
0374         }
0375 }
0376 
0377 sub get_sphinx_version()
0378 {
0379         my $ver;
0380 
0381         my $cmd = "sphinx-build";
0382         if (!findprog($cmd)) {
0383                 my $cmd = "sphinx-build3";
0384                 if (!findprog($cmd)) {
0385                         $sphinx_major = 1;
0386                         $sphinx_minor = 2;
0387                         $sphinx_patch = 0;
0388                         printf STDERR "Warning: Sphinx version not found. Using default (Sphinx version %d.%d.%d)\n",
0389                                $sphinx_major, $sphinx_minor, $sphinx_patch;
0390                         return;
0391                 }
0392         }
0393 
0394         open IN, "$cmd --version 2>&1 |";
0395         while (<IN>) {
0396                 if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) {
0397                         $sphinx_major = $1;
0398                         $sphinx_minor = $2;
0399                         $sphinx_patch = $3;
0400                         last;
0401                 }
0402                 # Sphinx 1.2.x uses a different format
0403                 if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) {
0404                         $sphinx_major = $1;
0405                         $sphinx_minor = $2;
0406                         $sphinx_patch = $3;
0407                         last;
0408                 }
0409         }
0410         close IN;
0411 }
0412 
0413 # get kernel version from env
0414 sub get_kernel_version() {
0415     my $version = 'unknown kernel version';
0416 
0417     if (defined($ENV{'KERNELVERSION'})) {
0418         $version = $ENV{'KERNELVERSION'};
0419     }
0420     return $version;
0421 }
0422 
0423 #
0424 sub print_lineno {
0425     my $lineno = shift;
0426     if ($enable_lineno && defined($lineno)) {
0427         print ".. LINENO " . $lineno . "\n";
0428     }
0429 }
0430 
0431 sub emit_warning {
0432     my $location = shift;
0433     my $msg = shift;
0434     print STDERR "$location: warning: $msg";
0435     ++$warnings;
0436 }
0437 ##
0438 # dumps section contents to arrays/hashes intended for that purpose.
0439 #
0440 sub dump_section {
0441     my $file = shift;
0442     my $name = shift;
0443     my $contents = join "\n", @_;
0444 
0445     if ($name =~ m/$type_param/) {
0446         $name = $1;
0447         $parameterdescs{$name} = $contents;
0448         $sectcheck = $sectcheck . $name . " ";
0449         $parameterdesc_start_lines{$name} = $new_start_line;
0450         $new_start_line = 0;
0451     } elsif ($name eq "@\.\.\.") {
0452         $name = "...";
0453         $parameterdescs{$name} = $contents;
0454         $sectcheck = $sectcheck . $name . " ";
0455         $parameterdesc_start_lines{$name} = $new_start_line;
0456         $new_start_line = 0;
0457     } else {
0458         if (defined($sections{$name}) && ($sections{$name} ne "")) {
0459             # Only warn on user specified duplicate section names.
0460             if ($name ne $section_default) {
0461                 emit_warning("${file}:$.", "duplicate section name '$name'\n");
0462             }
0463             $sections{$name} .= $contents;
0464         } else {
0465             $sections{$name} = $contents;
0466             push @sectionlist, $name;
0467             $section_start_lines{$name} = $new_start_line;
0468             $new_start_line = 0;
0469         }
0470     }
0471 }
0472 
0473 ##
0474 # dump DOC: section after checking that it should go out
0475 #
0476 sub dump_doc_section {
0477     my $file = shift;
0478     my $name = shift;
0479     my $contents = join "\n", @_;
0480 
0481     if ($no_doc_sections) {
0482         return;
0483     }
0484 
0485     return if (defined($nosymbol_table{$name}));
0486 
0487     if (($output_selection == OUTPUT_ALL) ||
0488         (($output_selection == OUTPUT_INCLUDE) &&
0489          defined($function_table{$name})))
0490     {
0491         dump_section($file, $name, $contents);
0492         output_blockhead({'sectionlist' => \@sectionlist,
0493                           'sections' => \%sections,
0494                           'module' => $modulename,
0495                           'content-only' => ($output_selection != OUTPUT_ALL), });
0496     }
0497 }
0498 
0499 ##
0500 # output function
0501 #
0502 # parameterdescs, a hash.
0503 #  function => "function name"
0504 #  parameterlist => @list of parameters
0505 #  parameterdescs => %parameter descriptions
0506 #  sectionlist => @list of sections
0507 #  sections => %section descriptions
0508 #
0509 
0510 sub output_highlight {
0511     my $contents = join "\n",@_;
0512     my $line;
0513 
0514 #   DEBUG
0515 #   if (!defined $contents) {
0516 #       use Carp;
0517 #       confess "output_highlight got called with no args?\n";
0518 #   }
0519 
0520 #   print STDERR "contents b4:$contents\n";
0521     eval $dohighlight;
0522     die $@ if $@;
0523 #   print STDERR "contents af:$contents\n";
0524 
0525     foreach $line (split "\n", $contents) {
0526         if (! $output_preformatted) {
0527             $line =~ s/^\s*//;
0528         }
0529         if ($line eq ""){
0530             if (! $output_preformatted) {
0531                 print $lineprefix, $blankline;
0532             }
0533         } else {
0534             if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
0535                 print "\\&$line";
0536             } else {
0537                 print $lineprefix, $line;
0538             }
0539         }
0540         print "\n";
0541     }
0542 }
0543 
0544 ##
0545 # output function in man
0546 sub output_function_man(%) {
0547     my %args = %{$_[0]};
0548     my ($parameter, $section);
0549     my $count;
0550 
0551     print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
0552 
0553     print ".SH NAME\n";
0554     print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
0555 
0556     print ".SH SYNOPSIS\n";
0557     if ($args{'functiontype'} ne "") {
0558         print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
0559     } else {
0560         print ".B \"" . $args{'function'} . "\n";
0561     }
0562     $count = 0;
0563     my $parenth = "(";
0564     my $post = ",";
0565     foreach my $parameter (@{$args{'parameterlist'}}) {
0566         if ($count == $#{$args{'parameterlist'}}) {
0567             $post = ");";
0568         }
0569         $type = $args{'parametertypes'}{$parameter};
0570         if ($type =~ m/$function_pointer/) {
0571             # pointer-to-function
0572             print ".BI \"" . $parenth . $1 . "\" " . " \") (" . $2 . ")" . $post . "\"\n";
0573         } else {
0574             $type =~ s/([^\*])$/$1 /;
0575             print ".BI \"" . $parenth . $type . "\" " . " \"" . $post . "\"\n";
0576         }
0577         $count++;
0578         $parenth = "";
0579     }
0580 
0581     print ".SH ARGUMENTS\n";
0582     foreach $parameter (@{$args{'parameterlist'}}) {
0583         my $parameter_name = $parameter;
0584         $parameter_name =~ s/\[.*//;
0585 
0586         print ".IP \"" . $parameter . "\" 12\n";
0587         output_highlight($args{'parameterdescs'}{$parameter_name});
0588     }
0589     foreach $section (@{$args{'sectionlist'}}) {
0590         print ".SH \"", uc $section, "\"\n";
0591         output_highlight($args{'sections'}{$section});
0592     }
0593 }
0594 
0595 ##
0596 # output enum in man
0597 sub output_enum_man(%) {
0598     my %args = %{$_[0]};
0599     my ($parameter, $section);
0600     my $count;
0601 
0602     print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
0603 
0604     print ".SH NAME\n";
0605     print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
0606 
0607     print ".SH SYNOPSIS\n";
0608     print "enum " . $args{'enum'} . " {\n";
0609     $count = 0;
0610     foreach my $parameter (@{$args{'parameterlist'}}) {
0611         print ".br\n.BI \"    $parameter\"\n";
0612         if ($count == $#{$args{'parameterlist'}}) {
0613             print "\n};\n";
0614             last;
0615         }
0616         else {
0617             print ", \n.br\n";
0618         }
0619         $count++;
0620     }
0621 
0622     print ".SH Constants\n";
0623     foreach $parameter (@{$args{'parameterlist'}}) {
0624         my $parameter_name = $parameter;
0625         $parameter_name =~ s/\[.*//;
0626 
0627         print ".IP \"" . $parameter . "\" 12\n";
0628         output_highlight($args{'parameterdescs'}{$parameter_name});
0629     }
0630     foreach $section (@{$args{'sectionlist'}}) {
0631         print ".SH \"$section\"\n";
0632         output_highlight($args{'sections'}{$section});
0633     }
0634 }
0635 
0636 ##
0637 # output struct in man
0638 sub output_struct_man(%) {
0639     my %args = %{$_[0]};
0640     my ($parameter, $section);
0641 
0642     print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
0643 
0644     print ".SH NAME\n";
0645     print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
0646 
0647     my $declaration = $args{'definition'};
0648     $declaration =~ s/\t/  /g;
0649     $declaration =~ s/\n/"\n.br\n.BI \"/g;
0650     print ".SH SYNOPSIS\n";
0651     print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
0652     print ".BI \"$declaration\n};\n.br\n\n";
0653 
0654     print ".SH Members\n";
0655     foreach $parameter (@{$args{'parameterlist'}}) {
0656         ($parameter =~ /^#/) && next;
0657 
0658         my $parameter_name = $parameter;
0659         $parameter_name =~ s/\[.*//;
0660 
0661         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
0662         print ".IP \"" . $parameter . "\" 12\n";
0663         output_highlight($args{'parameterdescs'}{$parameter_name});
0664     }
0665     foreach $section (@{$args{'sectionlist'}}) {
0666         print ".SH \"$section\"\n";
0667         output_highlight($args{'sections'}{$section});
0668     }
0669 }
0670 
0671 ##
0672 # output typedef in man
0673 sub output_typedef_man(%) {
0674     my %args = %{$_[0]};
0675     my ($parameter, $section);
0676 
0677     print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
0678 
0679     print ".SH NAME\n";
0680     print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
0681 
0682     foreach $section (@{$args{'sectionlist'}}) {
0683         print ".SH \"$section\"\n";
0684         output_highlight($args{'sections'}{$section});
0685     }
0686 }
0687 
0688 sub output_blockhead_man(%) {
0689     my %args = %{$_[0]};
0690     my ($parameter, $section);
0691     my $count;
0692 
0693     print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
0694 
0695     foreach $section (@{$args{'sectionlist'}}) {
0696         print ".SH \"$section\"\n";
0697         output_highlight($args{'sections'}{$section});
0698     }
0699 }
0700 
0701 ##
0702 # output in restructured text
0703 #
0704 
0705 #
0706 # This could use some work; it's used to output the DOC: sections, and
0707 # starts by putting out the name of the doc section itself, but that tends
0708 # to duplicate a header already in the template file.
0709 #
0710 sub output_blockhead_rst(%) {
0711     my %args = %{$_[0]};
0712     my ($parameter, $section);
0713 
0714     foreach $section (@{$args{'sectionlist'}}) {
0715         next if (defined($nosymbol_table{$section}));
0716 
0717         if ($output_selection != OUTPUT_INCLUDE) {
0718             print ".. _$section:\n\n";
0719             print "**$section**\n\n";
0720         }
0721         print_lineno($section_start_lines{$section});
0722         output_highlight_rst($args{'sections'}{$section});
0723         print "\n";
0724     }
0725 }
0726 
0727 #
0728 # Apply the RST highlights to a sub-block of text.
0729 #
0730 sub highlight_block($) {
0731     # The dohighlight kludge requires the text be called $contents
0732     my $contents = shift;
0733     eval $dohighlight;
0734     die $@ if $@;
0735     return $contents;
0736 }
0737 
0738 #
0739 # Regexes used only here.
0740 #
0741 my $sphinx_literal = '^[^.].*::$';
0742 my $sphinx_cblock = '^\.\.\ +code-block::';
0743 
0744 sub output_highlight_rst {
0745     my $input = join "\n",@_;
0746     my $output = "";
0747     my $line;
0748     my $in_literal = 0;
0749     my $litprefix;
0750     my $block = "";
0751 
0752     foreach $line (split "\n",$input) {
0753         #
0754         # If we're in a literal block, see if we should drop out
0755         # of it.  Otherwise pass the line straight through unmunged.
0756         #
0757         if ($in_literal) {
0758             if (! ($line =~ /^\s*$/)) {
0759                 #
0760                 # If this is the first non-blank line in a literal
0761                 # block we need to figure out what the proper indent is.
0762                 #
0763                 if ($litprefix eq "") {
0764                     $line =~ /^(\s*)/;
0765                     $litprefix = '^' . $1;
0766                     $output .= $line . "\n";
0767                 } elsif (! ($line =~ /$litprefix/)) {
0768                     $in_literal = 0;
0769                 } else {
0770                     $output .= $line . "\n";
0771                 }
0772             } else {
0773                 $output .= $line . "\n";
0774             }
0775         }
0776         #
0777         # Not in a literal block (or just dropped out)
0778         #
0779         if (! $in_literal) {
0780             $block .= $line . "\n";
0781             if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
0782                 $in_literal = 1;
0783                 $litprefix = "";
0784                 $output .= highlight_block($block);
0785                 $block = ""
0786             }
0787         }
0788     }
0789 
0790     if ($block) {
0791         $output .= highlight_block($block);
0792     }
0793     foreach $line (split "\n", $output) {
0794         print $lineprefix . $line . "\n";
0795     }
0796 }
0797 
0798 sub output_function_rst(%) {
0799     my %args = %{$_[0]};
0800     my ($parameter, $section);
0801     my $oldprefix = $lineprefix;
0802     my $start = "";
0803     my $is_macro = 0;
0804 
0805     if ($sphinx_major < 3) {
0806         if ($args{'typedef'}) {
0807             print ".. c:type:: ". $args{'function'} . "\n\n";
0808             print_lineno($declaration_start_line);
0809             print "   **Typedef**: ";
0810             $lineprefix = "";
0811             output_highlight_rst($args{'purpose'});
0812             $start = "\n\n**Syntax**\n\n  ``";
0813             $is_macro = 1;
0814         } else {
0815             print ".. c:function:: ";
0816         }
0817     } else {
0818         if ($args{'typedef'} || $args{'functiontype'} eq "") {
0819             $is_macro = 1;
0820             print ".. c:macro:: ". $args{'function'} . "\n\n";
0821         } else {
0822             print ".. c:function:: ";
0823         }
0824 
0825         if ($args{'typedef'}) {
0826             print_lineno($declaration_start_line);
0827             print "   **Typedef**: ";
0828             $lineprefix = "";
0829             output_highlight_rst($args{'purpose'});
0830             $start = "\n\n**Syntax**\n\n  ``";
0831         } else {
0832             print "``" if ($is_macro);
0833         }
0834     }
0835     if ($args{'functiontype'} ne "") {
0836         $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
0837     } else {
0838         $start .= $args{'function'} . " (";
0839     }
0840     print $start;
0841 
0842     my $count = 0;
0843     foreach my $parameter (@{$args{'parameterlist'}}) {
0844         if ($count ne 0) {
0845             print ", ";
0846         }
0847         $count++;
0848         $type = $args{'parametertypes'}{$parameter};
0849 
0850         if ($type =~ m/$function_pointer/) {
0851             # pointer-to-function
0852             print $1 . $parameter . ") (" . $2 . ")";
0853         } else {
0854             print $type;
0855         }
0856     }
0857     if ($is_macro) {
0858         print ")``\n\n";
0859     } else {
0860         print ")\n\n";
0861     }
0862     if (!$args{'typedef'}) {
0863         print_lineno($declaration_start_line);
0864         $lineprefix = "   ";
0865         output_highlight_rst($args{'purpose'});
0866         print "\n";
0867     }
0868 
0869     print "**Parameters**\n\n";
0870     $lineprefix = "  ";
0871     foreach $parameter (@{$args{'parameterlist'}}) {
0872         my $parameter_name = $parameter;
0873         $parameter_name =~ s/\[.*//;
0874         $type = $args{'parametertypes'}{$parameter};
0875 
0876         if ($type ne "") {
0877             print "``$type``\n";
0878         } else {
0879             print "``$parameter``\n";
0880         }
0881 
0882         print_lineno($parameterdesc_start_lines{$parameter_name});
0883 
0884         if (defined($args{'parameterdescs'}{$parameter_name}) &&
0885             $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
0886             output_highlight_rst($args{'parameterdescs'}{$parameter_name});
0887         } else {
0888             print "  *undescribed*\n";
0889         }
0890         print "\n";
0891     }
0892 
0893     $lineprefix = $oldprefix;
0894     output_section_rst(@_);
0895 }
0896 
0897 sub output_section_rst(%) {
0898     my %args = %{$_[0]};
0899     my $section;
0900     my $oldprefix = $lineprefix;
0901     $lineprefix = "";
0902 
0903     foreach $section (@{$args{'sectionlist'}}) {
0904         print "**$section**\n\n";
0905         print_lineno($section_start_lines{$section});
0906         output_highlight_rst($args{'sections'}{$section});
0907         print "\n";
0908     }
0909     print "\n";
0910     $lineprefix = $oldprefix;
0911 }
0912 
0913 sub output_enum_rst(%) {
0914     my %args = %{$_[0]};
0915     my ($parameter);
0916     my $oldprefix = $lineprefix;
0917     my $count;
0918 
0919     if ($sphinx_major < 3) {
0920         my $name = "enum " . $args{'enum'};
0921         print "\n\n.. c:type:: " . $name . "\n\n";
0922     } else {
0923         my $name = $args{'enum'};
0924         print "\n\n.. c:enum:: " . $name . "\n\n";
0925     }
0926     print_lineno($declaration_start_line);
0927     $lineprefix = "   ";
0928     output_highlight_rst($args{'purpose'});
0929     print "\n";
0930 
0931     print "**Constants**\n\n";
0932     $lineprefix = "  ";
0933     foreach $parameter (@{$args{'parameterlist'}}) {
0934         print "``$parameter``\n";
0935         if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
0936             output_highlight_rst($args{'parameterdescs'}{$parameter});
0937         } else {
0938             print "  *undescribed*\n";
0939         }
0940         print "\n";
0941     }
0942 
0943     $lineprefix = $oldprefix;
0944     output_section_rst(@_);
0945 }
0946 
0947 sub output_typedef_rst(%) {
0948     my %args = %{$_[0]};
0949     my ($parameter);
0950     my $oldprefix = $lineprefix;
0951     my $name;
0952 
0953     if ($sphinx_major < 3) {
0954         $name = "typedef " . $args{'typedef'};
0955     } else {
0956         $name = $args{'typedef'};
0957     }
0958     print "\n\n.. c:type:: " . $name . "\n\n";
0959     print_lineno($declaration_start_line);
0960     $lineprefix = "   ";
0961     output_highlight_rst($args{'purpose'});
0962     print "\n";
0963 
0964     $lineprefix = $oldprefix;
0965     output_section_rst(@_);
0966 }
0967 
0968 sub output_struct_rst(%) {
0969     my %args = %{$_[0]};
0970     my ($parameter);
0971     my $oldprefix = $lineprefix;
0972 
0973     if ($sphinx_major < 3) {
0974         my $name = $args{'type'} . " " . $args{'struct'};
0975         print "\n\n.. c:type:: " . $name . "\n\n";
0976     } else {
0977         my $name = $args{'struct'};
0978         if ($args{'type'} eq 'union') {
0979             print "\n\n.. c:union:: " . $name . "\n\n";
0980         } else {
0981             print "\n\n.. c:struct:: " . $name . "\n\n";
0982         }
0983     }
0984     print_lineno($declaration_start_line);
0985     $lineprefix = "   ";
0986     output_highlight_rst($args{'purpose'});
0987     print "\n";
0988 
0989     print "**Definition**\n\n";
0990     print "::\n\n";
0991     my $declaration = $args{'definition'};
0992     $declaration =~ s/\t/  /g;
0993     print "  " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration  };\n\n";
0994 
0995     print "**Members**\n\n";
0996     $lineprefix = "  ";
0997     foreach $parameter (@{$args{'parameterlist'}}) {
0998         ($parameter =~ /^#/) && next;
0999 
1000         my $parameter_name = $parameter;
1001         $parameter_name =~ s/\[.*//;
1002 
1003         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1004         $type = $args{'parametertypes'}{$parameter};
1005         print_lineno($parameterdesc_start_lines{$parameter_name});
1006         print "``" . $parameter . "``\n";
1007         output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1008         print "\n";
1009     }
1010     print "\n";
1011 
1012     $lineprefix = $oldprefix;
1013     output_section_rst(@_);
1014 }
1015 
1016 ## none mode output functions
1017 
1018 sub output_function_none(%) {
1019 }
1020 
1021 sub output_enum_none(%) {
1022 }
1023 
1024 sub output_typedef_none(%) {
1025 }
1026 
1027 sub output_struct_none(%) {
1028 }
1029 
1030 sub output_blockhead_none(%) {
1031 }
1032 
1033 ##
1034 # generic output function for all types (function, struct/union, typedef, enum);
1035 # calls the generated, variable output_ function name based on
1036 # functype and output_mode
1037 sub output_declaration {
1038     no strict 'refs';
1039     my $name = shift;
1040     my $functype = shift;
1041     my $func = "output_${functype}_$output_mode";
1042 
1043     return if (defined($nosymbol_table{$name}));
1044 
1045     if (($output_selection == OUTPUT_ALL) ||
1046         (($output_selection == OUTPUT_INCLUDE ||
1047           $output_selection == OUTPUT_EXPORTED) &&
1048          defined($function_table{$name})) ||
1049         ($output_selection == OUTPUT_INTERNAL &&
1050          !($functype eq "function" && defined($function_table{$name}))))
1051     {
1052         &$func(@_);
1053         $section_counter++;
1054     }
1055 }
1056 
1057 ##
1058 # generic output function - calls the right one based on current output mode.
1059 sub output_blockhead {
1060     no strict 'refs';
1061     my $func = "output_blockhead_" . $output_mode;
1062     &$func(@_);
1063     $section_counter++;
1064 }
1065 
1066 ##
1067 # takes a declaration (struct, union, enum, typedef) and
1068 # invokes the right handler. NOT called for functions.
1069 sub dump_declaration($$) {
1070     no strict 'refs';
1071     my ($prototype, $file) = @_;
1072     my $func = "dump_" . $decl_type;
1073     &$func(@_);
1074 }
1075 
1076 sub dump_union($$) {
1077     dump_struct(@_);
1078 }
1079 
1080 sub dump_struct($$) {
1081     my $x = shift;
1082     my $file = shift;
1083     my $decl_type;
1084     my $members;
1085     my $type = qr{struct|union};
1086     # For capturing struct/union definition body, i.e. "{members*}qualifiers*"
1087     my $qualifiers = qr{$attribute|__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned};
1088     my $definition_body = qr{\{(.*)\}\s*$qualifiers*};
1089     my $struct_members = qr{($type)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;};
1090 
1091     if ($x =~ /($type)\s+(\w+)\s*$definition_body/) {
1092         $decl_type = $1;
1093         $declaration_name = $2;
1094         $members = $3;
1095     } elsif ($x =~ /typedef\s+($type)\s*$definition_body\s*(\w+)\s*;/) {
1096         $decl_type = $1;
1097         $declaration_name = $3;
1098         $members = $2;
1099     }
1100 
1101     if ($members) {
1102         if ($identifier ne $declaration_name) {
1103             emit_warning("${file}:$.", "expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n");
1104             return;
1105         }
1106 
1107         # ignore members marked private:
1108         $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1109         $members =~ s/\/\*\s*private:.*//gosi;
1110         # strip comments:
1111         $members =~ s/\/\*.*?\*\///gos;
1112         # strip attributes
1113         $members =~ s/\s*$attribute/ /gi;
1114         $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
1115         $members =~ s/\s*__packed\s*/ /gos;
1116         $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
1117         $members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
1118         $members =~ s/\s*____cacheline_aligned/ /gos;
1119         # unwrap struct_group():
1120         # - first eat non-declaration parameters and rewrite for final match
1121         # - then remove macro, outer parens, and trailing semicolon
1122         $members =~ s/\bstruct_group\s*\(([^,]*,)/STRUCT_GROUP(/gos;
1123         $members =~ s/\bstruct_group_(attr|tagged)\s*\(([^,]*,){2}/STRUCT_GROUP(/gos;
1124         $members =~ s/\b__struct_group\s*\(([^,]*,){3}/STRUCT_GROUP(/gos;
1125         $members =~ s/\bSTRUCT_GROUP(\(((?:(?>[^)(]+)|(?1))*)\))[^;]*;/$2/gos;
1126 
1127         my $args = qr{([^,)]+)};
1128         # replace DECLARE_BITMAP
1129         $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos;
1130         $members =~ s/DECLARE_PHY_INTERFACE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, PHY_INTERFACE_MODE_MAX)/gos;
1131         $members =~ s/DECLARE_BITMAP\s*\($args,\s*$args\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
1132         # replace DECLARE_HASHTABLE
1133         $members =~ s/DECLARE_HASHTABLE\s*\($args,\s*$args\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
1134         # replace DECLARE_KFIFO
1135         $members =~ s/DECLARE_KFIFO\s*\($args,\s*$args,\s*$args\)/$2 \*$1/gos;
1136         # replace DECLARE_KFIFO_PTR
1137         $members =~ s/DECLARE_KFIFO_PTR\s*\($args,\s*$args\)/$2 \*$1/gos;
1138         # replace DECLARE_FLEX_ARRAY
1139         $members =~ s/(?:__)?DECLARE_FLEX_ARRAY\s*\($args,\s*$args\)/$1 $2\[\]/gos;
1140         my $declaration = $members;
1141 
1142         # Split nested struct/union elements as newer ones
1143         while ($members =~ m/$struct_members/) {
1144                 my $newmember;
1145                 my $maintype = $1;
1146                 my $ids = $4;
1147                 my $content = $3;
1148                 foreach my $id(split /,/, $ids) {
1149                         $newmember .= "$maintype $id; ";
1150 
1151                         $id =~ s/[:\[].*//;
1152                         $id =~ s/^\s*\**(\S+)\s*/$1/;
1153                         foreach my $arg (split /;/, $content) {
1154                                 next if ($arg =~ m/^\s*$/);
1155                                 if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) {
1156                                         # pointer-to-function
1157                                         my $type = $1;
1158                                         my $name = $2;
1159                                         my $extra = $3;
1160                                         next if (!$name);
1161                                         if ($id =~ m/^\s*$/) {
1162                                                 # anonymous struct/union
1163                                                 $newmember .= "$type$name$extra; ";
1164                                         } else {
1165                                                 $newmember .= "$type$id.$name$extra; ";
1166                                         }
1167                                 } else {
1168                                         my $type;
1169                                         my $names;
1170                                         $arg =~ s/^\s+//;
1171                                         $arg =~ s/\s+$//;
1172                                         # Handle bitmaps
1173                                         $arg =~ s/:\s*\d+\s*//g;
1174                                         # Handle arrays
1175                                         $arg =~ s/\[.*\]//g;
1176                                         # The type may have multiple words,
1177                                         # and multiple IDs can be defined, like:
1178                                         #       const struct foo, *bar, foobar
1179                                         # So, we remove spaces when parsing the
1180                                         # names, in order to match just names
1181                                         # and commas for the names
1182                                         $arg =~ s/\s*,\s*/,/g;
1183                                         if ($arg =~ m/(.*)\s+([\S+,]+)/) {
1184                                                 $type = $1;
1185                                                 $names = $2;
1186                                         } else {
1187                                                 $newmember .= "$arg; ";
1188                                                 next;
1189                                         }
1190                                         foreach my $name (split /,/, $names) {
1191                                                 $name =~ s/^\s*\**(\S+)\s*/$1/;
1192                                                 next if (($name =~ m/^\s*$/));
1193                                                 if ($id =~ m/^\s*$/) {
1194                                                         # anonymous struct/union
1195                                                         $newmember .= "$type $name; ";
1196                                                 } else {
1197                                                         $newmember .= "$type $id.$name; ";
1198                                                 }
1199                                         }
1200                                 }
1201                         }
1202                 }
1203                 $members =~ s/$struct_members/$newmember/;
1204         }
1205 
1206         # Ignore other nested elements, like enums
1207         $members =~ s/(\{[^\{\}]*\})//g;
1208 
1209         create_parameterlist($members, ';', $file, $declaration_name);
1210         check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
1211 
1212         # Adjust declaration for better display
1213         $declaration =~ s/([\{;])/$1\n/g;
1214         $declaration =~ s/\}\s+;/};/g;
1215         # Better handle inlined enums
1216         do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
1217 
1218         my @def_args = split /\n/, $declaration;
1219         my $level = 1;
1220         $declaration = "";
1221         foreach my $clause (@def_args) {
1222                 $clause =~ s/^\s+//;
1223                 $clause =~ s/\s+$//;
1224                 $clause =~ s/\s+/ /;
1225                 next if (!$clause);
1226                 $level-- if ($clause =~ m/(\})/ && $level > 1);
1227                 if (!($clause =~ m/^\s*#/)) {
1228                         $declaration .= "\t" x $level;
1229                 }
1230                 $declaration .= "\t" . $clause . "\n";
1231                 $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
1232         }
1233         output_declaration($declaration_name,
1234                            'struct',
1235                            {'struct' => $declaration_name,
1236                             'module' => $modulename,
1237                             'definition' => $declaration,
1238                             'parameterlist' => \@parameterlist,
1239                             'parameterdescs' => \%parameterdescs,
1240                             'parametertypes' => \%parametertypes,
1241                             'sectionlist' => \@sectionlist,
1242                             'sections' => \%sections,
1243                             'purpose' => $declaration_purpose,
1244                             'type' => $decl_type
1245                            });
1246     }
1247     else {
1248         print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1249         ++$errors;
1250     }
1251 }
1252 
1253 
1254 sub show_warnings($$) {
1255         my $functype = shift;
1256         my $name = shift;
1257 
1258         return 0 if (defined($nosymbol_table{$name}));
1259 
1260         return 1 if ($output_selection == OUTPUT_ALL);
1261 
1262         if ($output_selection == OUTPUT_EXPORTED) {
1263                 if (defined($function_table{$name})) {
1264                         return 1;
1265                 } else {
1266                         return 0;
1267                 }
1268         }
1269         if ($output_selection == OUTPUT_INTERNAL) {
1270                 if (!($functype eq "function" && defined($function_table{$name}))) {
1271                         return 1;
1272                 } else {
1273                         return 0;
1274                 }
1275         }
1276         if ($output_selection == OUTPUT_INCLUDE) {
1277                 if (defined($function_table{$name})) {
1278                         return 1;
1279                 } else {
1280                         return 0;
1281                 }
1282         }
1283         die("Please add the new output type at show_warnings()");
1284 }
1285 
1286 sub dump_enum($$) {
1287     my $x = shift;
1288     my $file = shift;
1289     my $members;
1290 
1291 
1292     $x =~ s@/\*.*?\*/@@gos;     # strip comments.
1293     # strip #define macros inside enums
1294     $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
1295 
1296     if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) {
1297         $declaration_name = $2;
1298         $members = $1;
1299     } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
1300         $declaration_name = $1;
1301         $members = $2;
1302     }
1303 
1304     if ($members) {
1305         if ($identifier ne $declaration_name) {
1306             if ($identifier eq "") {
1307                 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n");
1308             } else {
1309                 emit_warning("${file}:$.", "expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n");
1310             }
1311             return;
1312         }
1313         $declaration_name = "(anonymous)" if ($declaration_name eq "");
1314 
1315         my %_members;
1316 
1317         $members =~ s/\s+$//;
1318 
1319         foreach my $arg (split ',', $members) {
1320             $arg =~ s/^\s*(\w+).*/$1/;
1321             push @parameterlist, $arg;
1322             if (!$parameterdescs{$arg}) {
1323                 $parameterdescs{$arg} = $undescribed;
1324                 if (show_warnings("enum", $declaration_name)) {
1325                         emit_warning("${file}:$.", "Enum value '$arg' not described in enum '$declaration_name'\n");
1326                 }
1327             }
1328             $_members{$arg} = 1;
1329         }
1330 
1331         while (my ($k, $v) = each %parameterdescs) {
1332             if (!exists($_members{$k})) {
1333                 if (show_warnings("enum", $declaration_name)) {
1334                      emit_warning("${file}:$.", "Excess enum value '$k' description in '$declaration_name'\n");
1335                 }
1336             }
1337         }
1338 
1339         output_declaration($declaration_name,
1340                            'enum',
1341                            {'enum' => $declaration_name,
1342                             'module' => $modulename,
1343                             'parameterlist' => \@parameterlist,
1344                             'parameterdescs' => \%parameterdescs,
1345                             'sectionlist' => \@sectionlist,
1346                             'sections' => \%sections,
1347                             'purpose' => $declaration_purpose
1348                            });
1349     } else {
1350         print STDERR "${file}:$.: error: Cannot parse enum!\n";
1351         ++$errors;
1352     }
1353 }
1354 
1355 my $typedef_type = qr { ((?:\s+[\w\*]+\b){1,8})\s* }x;
1356 my $typedef_ident = qr { \*?\s*(\w\S+)\s* }x;
1357 my $typedef_args = qr { \s*\((.*)\); }x;
1358 
1359 my $typedef1 = qr { typedef$typedef_type\($typedef_ident\)$typedef_args }x;
1360 my $typedef2 = qr { typedef$typedef_type$typedef_ident$typedef_args }x;
1361 
1362 sub dump_typedef($$) {
1363     my $x = shift;
1364     my $file = shift;
1365 
1366     $x =~ s@/\*.*?\*/@@gos;     # strip comments.
1367 
1368     # Parse function typedef prototypes
1369     if ($x =~ $typedef1 || $x =~ $typedef2) {
1370         $return_type = $1;
1371         $declaration_name = $2;
1372         my $args = $3;
1373         $return_type =~ s/^\s+//;
1374 
1375         if ($identifier ne $declaration_name) {
1376             emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1377             return;
1378         }
1379 
1380         create_parameterlist($args, ',', $file, $declaration_name);
1381 
1382         output_declaration($declaration_name,
1383                            'function',
1384                            {'function' => $declaration_name,
1385                             'typedef' => 1,
1386                             'module' => $modulename,
1387                             'functiontype' => $return_type,
1388                             'parameterlist' => \@parameterlist,
1389                             'parameterdescs' => \%parameterdescs,
1390                             'parametertypes' => \%parametertypes,
1391                             'sectionlist' => \@sectionlist,
1392                             'sections' => \%sections,
1393                             'purpose' => $declaration_purpose
1394                            });
1395         return;
1396     }
1397 
1398     while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1399         $x =~ s/\(*.\)\s*;$/;/;
1400         $x =~ s/\[*.\]\s*;$/;/;
1401     }
1402 
1403     if ($x =~ /typedef.*\s+(\w+)\s*;/) {
1404         $declaration_name = $1;
1405 
1406         if ($identifier ne $declaration_name) {
1407             emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1408             return;
1409         }
1410 
1411         output_declaration($declaration_name,
1412                            'typedef',
1413                            {'typedef' => $declaration_name,
1414                             'module' => $modulename,
1415                             'sectionlist' => \@sectionlist,
1416                             'sections' => \%sections,
1417                             'purpose' => $declaration_purpose
1418                            });
1419     }
1420     else {
1421         print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1422         ++$errors;
1423     }
1424 }
1425 
1426 sub save_struct_actual($) {
1427     my $actual = shift;
1428 
1429     # strip all spaces from the actual param so that it looks like one string item
1430     $actual =~ s/\s*//g;
1431     $struct_actual = $struct_actual . $actual . " ";
1432 }
1433 
1434 sub create_parameterlist($$$$) {
1435     my $args = shift;
1436     my $splitter = shift;
1437     my $file = shift;
1438     my $declaration_name = shift;
1439     my $type;
1440     my $param;
1441 
1442     # temporarily replace commas inside function pointer definition
1443     my $arg_expr = qr{\([^\),]+};
1444     while ($args =~ /$arg_expr,/) {
1445         $args =~ s/($arg_expr),/$1#/g;
1446     }
1447 
1448     foreach my $arg (split($splitter, $args)) {
1449         # strip comments
1450         $arg =~ s/\/\*.*\*\///;
1451         # strip leading/trailing spaces
1452         $arg =~ s/^\s*//;
1453         $arg =~ s/\s*$//;
1454         $arg =~ s/\s+/ /;
1455 
1456         if ($arg =~ /^#/) {
1457             # Treat preprocessor directive as a typeless variable just to fill
1458             # corresponding data structures "correctly". Catch it later in
1459             # output_* subs.
1460             push_parameter($arg, "", "", $file);
1461         } elsif ($arg =~ m/\(.+\)\s*\(/) {
1462             # pointer-to-function
1463             $arg =~ tr/#/,/;
1464             $arg =~ m/[^\(]+\(\*?\s*([\w\[\]\.]*)\s*\)/;
1465             $param = $1;
1466             $type = $arg;
1467             $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
1468             save_struct_actual($param);
1469             push_parameter($param, $type, $arg, $file, $declaration_name);
1470         } elsif ($arg) {
1471             $arg =~ s/\s*:\s*/:/g;
1472             $arg =~ s/\s*\[/\[/g;
1473 
1474             my @args = split('\s*,\s*', $arg);
1475             if ($args[0] =~ m/\*/) {
1476                 $args[0] =~ s/(\*+)\s*/ $1/;
1477             }
1478 
1479             my @first_arg;
1480             if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1481                     shift @args;
1482                     push(@first_arg, split('\s+', $1));
1483                     push(@first_arg, $2);
1484             } else {
1485                     @first_arg = split('\s+', shift @args);
1486             }
1487 
1488             unshift(@args, pop @first_arg);
1489             $type = join " ", @first_arg;
1490 
1491             foreach $param (@args) {
1492                 if ($param =~ m/^(\*+)\s*(.*)/) {
1493                     save_struct_actual($2);
1494 
1495                     push_parameter($2, "$type $1", $arg, $file, $declaration_name);
1496                 }
1497                 elsif ($param =~ m/(.*?):(\d+)/) {
1498                     if ($type ne "") { # skip unnamed bit-fields
1499                         save_struct_actual($1);
1500                         push_parameter($1, "$type:$2", $arg, $file, $declaration_name)
1501                     }
1502                 }
1503                 else {
1504                     save_struct_actual($param);
1505                     push_parameter($param, $type, $arg, $file, $declaration_name);
1506                 }
1507             }
1508         }
1509     }
1510 }
1511 
1512 sub push_parameter($$$$$) {
1513         my $param = shift;
1514         my $type = shift;
1515         my $org_arg = shift;
1516         my $file = shift;
1517         my $declaration_name = shift;
1518 
1519         if (($anon_struct_union == 1) && ($type eq "") &&
1520             ($param eq "}")) {
1521                 return;         # ignore the ending }; from anon. struct/union
1522         }
1523 
1524         $anon_struct_union = 0;
1525         $param =~ s/[\[\)].*//;
1526 
1527         if ($type eq "" && $param =~ /\.\.\.$/)
1528         {
1529             if (!$param =~ /\w\.\.\.$/) {
1530               # handles unnamed variable parameters
1531               $param = "...";
1532             }
1533             elsif ($param =~ /\w\.\.\.$/) {
1534               # for named variable parameters of the form `x...`, remove the dots
1535               $param =~ s/\.\.\.$//;
1536             }
1537             if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1538                 $parameterdescs{$param} = "variable arguments";
1539             }
1540         }
1541         elsif ($type eq "" && ($param eq "" or $param eq "void"))
1542         {
1543             $param="void";
1544             $parameterdescs{void} = "no arguments";
1545         }
1546         elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1547         # handle unnamed (anonymous) union or struct:
1548         {
1549                 $type = $param;
1550                 $param = "{unnamed_" . $param . "}";
1551                 $parameterdescs{$param} = "anonymous\n";
1552                 $anon_struct_union = 1;
1553         }
1554 
1555         # warn if parameter has no description
1556         # (but ignore ones starting with # as these are not parameters
1557         # but inline preprocessor statements);
1558         # Note: It will also ignore void params and unnamed structs/unions
1559         if (!defined $parameterdescs{$param} && $param !~ /^#/) {
1560                 $parameterdescs{$param} = $undescribed;
1561 
1562                 if (show_warnings($type, $declaration_name) && $param !~ /\./) {
1563                         emit_warning("${file}:$.", "Function parameter or member '$param' not described in '$declaration_name'\n");
1564                 }
1565         }
1566 
1567         # strip spaces from $param so that it is one continuous string
1568         # on @parameterlist;
1569         # this fixes a problem where check_sections() cannot find
1570         # a parameter like "addr[6 + 2]" because it actually appears
1571         # as "addr[6", "+", "2]" on the parameter list;
1572         # but it's better to maintain the param string unchanged for output,
1573         # so just weaken the string compare in check_sections() to ignore
1574         # "[blah" in a parameter string;
1575         ###$param =~ s/\s*//g;
1576         push @parameterlist, $param;
1577         $org_arg =~ s/\s\s+/ /g;
1578         $parametertypes{$param} = $org_arg;
1579 }
1580 
1581 sub check_sections($$$$$) {
1582         my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
1583         my @sects = split ' ', $sectcheck;
1584         my @prms = split ' ', $prmscheck;
1585         my $err;
1586         my ($px, $sx);
1587         my $prm_clean;          # strip trailing "[array size]" and/or beginning "*"
1588 
1589         foreach $sx (0 .. $#sects) {
1590                 $err = 1;
1591                 foreach $px (0 .. $#prms) {
1592                         $prm_clean = $prms[$px];
1593                         $prm_clean =~ s/\[.*\]//;
1594                         $prm_clean =~ s/$attribute//i;
1595                         # ignore array size in a parameter string;
1596                         # however, the original param string may contain
1597                         # spaces, e.g.:  addr[6 + 2]
1598                         # and this appears in @prms as "addr[6" since the
1599                         # parameter list is split at spaces;
1600                         # hence just ignore "[..." for the sections check;
1601                         $prm_clean =~ s/\[.*//;
1602 
1603                         ##$prm_clean =~ s/^\**//;
1604                         if ($prm_clean eq $sects[$sx]) {
1605                                 $err = 0;
1606                                 last;
1607                         }
1608                 }
1609                 if ($err) {
1610                         if ($decl_type eq "function") {
1611                                 emit_warning("${file}:$.",
1612                                         "Excess function parameter " .
1613                                         "'$sects[$sx]' " .
1614                                         "description in '$decl_name'\n");
1615                         }
1616                 }
1617         }
1618 }
1619 
1620 ##
1621 # Checks the section describing the return value of a function.
1622 sub check_return_section {
1623         my $file = shift;
1624         my $declaration_name = shift;
1625         my $return_type = shift;
1626 
1627         # Ignore an empty return type (It's a macro)
1628         # Ignore functions with a "void" return type. (But don't ignore "void *")
1629         if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
1630                 return;
1631         }
1632 
1633         if (!defined($sections{$section_return}) ||
1634             $sections{$section_return} eq "") {
1635                 emit_warning("${file}:$.",
1636                         "No description found for return value of " .
1637                         "'$declaration_name'\n");
1638         }
1639 }
1640 
1641 ##
1642 # takes a function prototype and the name of the current file being
1643 # processed and spits out all the details stored in the global
1644 # arrays/hashes.
1645 sub dump_function($$) {
1646     my $prototype = shift;
1647     my $file = shift;
1648     my $noret = 0;
1649 
1650     print_lineno($new_start_line);
1651 
1652     $prototype =~ s/^static +//;
1653     $prototype =~ s/^extern +//;
1654     $prototype =~ s/^asmlinkage +//;
1655     $prototype =~ s/^inline +//;
1656     $prototype =~ s/^__inline__ +//;
1657     $prototype =~ s/^__inline +//;
1658     $prototype =~ s/^__always_inline +//;
1659     $prototype =~ s/^noinline +//;
1660     $prototype =~ s/__init +//;
1661     $prototype =~ s/__init_or_module +//;
1662     $prototype =~ s/__deprecated +//;
1663     $prototype =~ s/__flatten +//;
1664     $prototype =~ s/__meminit +//;
1665     $prototype =~ s/__must_check +//;
1666     $prototype =~ s/__weak +//;
1667     $prototype =~ s/__sched +//;
1668     $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
1669     $prototype =~ s/__alloc_size\s*\(\s*\d+\s*(?:,\s*\d+\s*)?\) +//;
1670     my $define = $prototype =~ s/^#\s*define\s+//; #ak added
1671     $prototype =~ s/__attribute_const__ +//;
1672     $prototype =~ s/__attribute__\s*\(\(
1673             (?:
1674                  [\w\s]++          # attribute name
1675                  (?:\([^)]*+\))?   # attribute arguments
1676                  \s*+,?            # optional comma at the end
1677             )+
1678           \)\)\s+//x;
1679 
1680     # Yes, this truly is vile.  We are looking for:
1681     # 1. Return type (may be nothing if we're looking at a macro)
1682     # 2. Function name
1683     # 3. Function parameters.
1684     #
1685     # All the while we have to watch out for function pointer parameters
1686     # (which IIRC is what the two sections are for), C types (these
1687     # regexps don't even start to express all the possibilities), and
1688     # so on.
1689     #
1690     # If you mess with these regexps, it's a good idea to check that
1691     # the following functions' documentation still comes out right:
1692     # - parport_register_device (function pointer parameters)
1693     # - atomic_set (macro)
1694     # - pci_match_device, __copy_to_user (long return type)
1695     my $name = qr{[a-zA-Z0-9_~:]+};
1696     my $prototype_end1 = qr{[^\(]*};
1697     my $prototype_end2 = qr{[^\{]*};
1698     my $prototype_end = qr{\(($prototype_end1|$prototype_end2)\)};
1699     my $type1 = qr{[\w\s]+};
1700     my $type2 = qr{$type1\*+};
1701 
1702     if ($define && $prototype =~ m/^()($name)\s+/) {
1703         # This is an object-like macro, it has no return type and no parameter
1704         # list.
1705         # Function-like macros are not allowed to have spaces between
1706         # declaration_name and opening parenthesis (notice the \s+).
1707         $return_type = $1;
1708         $declaration_name = $2;
1709         $noret = 1;
1710     } elsif ($prototype =~ m/^()($name)\s*$prototype_end/ ||
1711         $prototype =~ m/^($type1)\s+($name)\s*$prototype_end/ ||
1712         $prototype =~ m/^($type2+)\s*($name)\s*$prototype_end/)  {
1713         $return_type = $1;
1714         $declaration_name = $2;
1715         my $args = $3;
1716 
1717         create_parameterlist($args, ',', $file, $declaration_name);
1718     } else {
1719         emit_warning("${file}:$.", "cannot understand function prototype: '$prototype'\n");
1720         return;
1721     }
1722 
1723     if ($identifier ne $declaration_name) {
1724         emit_warning("${file}:$.", "expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n");
1725         return;
1726     }
1727 
1728     my $prms = join " ", @parameterlist;
1729     check_sections($file, $declaration_name, "function", $sectcheck, $prms);
1730 
1731     # This check emits a lot of warnings at the moment, because many
1732     # functions don't have a 'Return' doc section. So until the number
1733     # of warnings goes sufficiently down, the check is only performed in
1734     # verbose mode.
1735     # TODO: always perform the check.
1736     if ($verbose && !$noret) {
1737             check_return_section($file, $declaration_name, $return_type);
1738     }
1739 
1740     # The function parser can be called with a typedef parameter.
1741     # Handle it.
1742     if ($return_type =~ /typedef/) {
1743         output_declaration($declaration_name,
1744                            'function',
1745                            {'function' => $declaration_name,
1746                             'typedef' => 1,
1747                             'module' => $modulename,
1748                             'functiontype' => $return_type,
1749                             'parameterlist' => \@parameterlist,
1750                             'parameterdescs' => \%parameterdescs,
1751                             'parametertypes' => \%parametertypes,
1752                             'sectionlist' => \@sectionlist,
1753                             'sections' => \%sections,
1754                             'purpose' => $declaration_purpose
1755                            });
1756     } else {
1757         output_declaration($declaration_name,
1758                            'function',
1759                            {'function' => $declaration_name,
1760                             'module' => $modulename,
1761                             'functiontype' => $return_type,
1762                             'parameterlist' => \@parameterlist,
1763                             'parameterdescs' => \%parameterdescs,
1764                             'parametertypes' => \%parametertypes,
1765                             'sectionlist' => \@sectionlist,
1766                             'sections' => \%sections,
1767                             'purpose' => $declaration_purpose
1768                            });
1769     }
1770 }
1771 
1772 sub reset_state {
1773     $function = "";
1774     %parameterdescs = ();
1775     %parametertypes = ();
1776     @parameterlist = ();
1777     %sections = ();
1778     @sectionlist = ();
1779     $sectcheck = "";
1780     $struct_actual = "";
1781     $prototype = "";
1782 
1783     $state = STATE_NORMAL;
1784     $inline_doc_state = STATE_INLINE_NA;
1785 }
1786 
1787 sub tracepoint_munge($) {
1788         my $file = shift;
1789         my $tracepointname = 0;
1790         my $tracepointargs = 0;
1791 
1792         if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
1793                 $tracepointname = $1;
1794         }
1795         if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1796                 $tracepointname = $1;
1797         }
1798         if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1799                 $tracepointname = $2;
1800         }
1801         $tracepointname =~ s/^\s+//; #strip leading whitespace
1802         if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
1803                 $tracepointargs = $1;
1804         }
1805         if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
1806                 emit_warning("${file}:$.", "Unrecognized tracepoint format: \n".
1807                              "$prototype\n");
1808         } else {
1809                 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
1810                 $identifier = "trace_$identifier";
1811         }
1812 }
1813 
1814 sub syscall_munge() {
1815         my $void = 0;
1816 
1817         $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
1818 ##      if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1819         if ($prototype =~ m/SYSCALL_DEFINE0/) {
1820                 $void = 1;
1821 ##              $prototype = "long sys_$1(void)";
1822         }
1823 
1824         $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1825         if ($prototype =~ m/long (sys_.*?),/) {
1826                 $prototype =~ s/,/\(/;
1827         } elsif ($void) {
1828                 $prototype =~ s/\)/\(void\)/;
1829         }
1830 
1831         # now delete all of the odd-number commas in $prototype
1832         # so that arg types & arg names don't have a comma between them
1833         my $count = 0;
1834         my $len = length($prototype);
1835         if ($void) {
1836                 $len = 0;       # skip the for-loop
1837         }
1838         for (my $ix = 0; $ix < $len; $ix++) {
1839                 if (substr($prototype, $ix, 1) eq ',') {
1840                         $count++;
1841                         if ($count % 2 == 1) {
1842                                 substr($prototype, $ix, 1) = ' ';
1843                         }
1844                 }
1845         }
1846 }
1847 
1848 sub process_proto_function($$) {
1849     my $x = shift;
1850     my $file = shift;
1851 
1852     $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1853 
1854     if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1855         # do nothing
1856     }
1857     elsif ($x =~ /([^\{]*)/) {
1858         $prototype .= $1;
1859     }
1860 
1861     if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
1862         $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1863         $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1864         $prototype =~ s@^\s+@@gos; # strip leading spaces
1865 
1866          # Handle prototypes for function pointers like:
1867          # int (*pcs_config)(struct foo)
1868         $prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos;
1869 
1870         if ($prototype =~ /SYSCALL_DEFINE/) {
1871                 syscall_munge();
1872         }
1873         if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1874             $prototype =~ /DEFINE_SINGLE_EVENT/)
1875         {
1876                 tracepoint_munge($file);
1877         }
1878         dump_function($prototype, $file);
1879         reset_state();
1880     }
1881 }
1882 
1883 sub process_proto_type($$) {
1884     my $x = shift;
1885     my $file = shift;
1886 
1887     $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1888     $x =~ s@^\s+@@gos; # strip leading spaces
1889     $x =~ s@\s+$@@gos; # strip trailing spaces
1890     $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1891 
1892     if ($x =~ /^#/) {
1893         # To distinguish preprocessor directive from regular declaration later.
1894         $x .= ";";
1895     }
1896 
1897     while (1) {
1898         if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
1899             if( length $prototype ) {
1900                 $prototype .= " "
1901             }
1902             $prototype .= $1 . $2;
1903             ($2 eq '{') && $brcount++;
1904             ($2 eq '}') && $brcount--;
1905             if (($2 eq ';') && ($brcount == 0)) {
1906                 dump_declaration($prototype, $file);
1907                 reset_state();
1908                 last;
1909             }
1910             $x = $3;
1911         } else {
1912             $prototype .= $x;
1913             last;
1914         }
1915     }
1916 }
1917 
1918 
1919 sub map_filename($) {
1920     my $file;
1921     my ($orig_file) = @_;
1922 
1923     if (defined($ENV{'SRCTREE'})) {
1924         $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1925     } else {
1926         $file = $orig_file;
1927     }
1928 
1929     if (defined($source_map{$file})) {
1930         $file = $source_map{$file};
1931     }
1932 
1933     return $file;
1934 }
1935 
1936 sub process_export_file($) {
1937     my ($orig_file) = @_;
1938     my $file = map_filename($orig_file);
1939 
1940     if (!open(IN,"<$file")) {
1941         print STDERR "Error: Cannot open file $file\n";
1942         ++$errors;
1943         return;
1944     }
1945 
1946     while (<IN>) {
1947         if (/$export_symbol/) {
1948             next if (defined($nosymbol_table{$2}));
1949             $function_table{$2} = 1;
1950         }
1951     }
1952 
1953     close(IN);
1954 }
1955 
1956 #
1957 # Parsers for the various processing states.
1958 #
1959 # STATE_NORMAL: looking for the /** to begin everything.
1960 #
1961 sub process_normal() {
1962     if (/$doc_start/o) {
1963         $state = STATE_NAME;    # next line is always the function name
1964         $in_doc_sect = 0;
1965         $declaration_start_line = $. + 1;
1966     }
1967 }
1968 
1969 #
1970 # STATE_NAME: Looking for the "name - description" line
1971 #
1972 sub process_name($$) {
1973     my $file = shift;
1974     my $descr;
1975 
1976     if (/$doc_block/o) {
1977         $state = STATE_DOCBLOCK;
1978         $contents = "";
1979         $new_start_line = $.;
1980 
1981         if ( $1 eq "" ) {
1982             $section = $section_intro;
1983         } else {
1984             $section = $1;
1985         }
1986     } elsif (/$doc_decl/o) {
1987         $identifier = $1;
1988         my $is_kernel_comment = 0;
1989         my $decl_start = qr{$doc_com};
1990         # test for pointer declaration type, foo * bar() - desc
1991         my $fn_type = qr{\w+\s*\*\s*}; 
1992         my $parenthesis = qr{\(\w*\)};
1993         my $decl_end = qr{[-:].*};
1994         if (/^$decl_start([\w\s]+?)$parenthesis?\s*$decl_end?$/) {
1995             $identifier = $1;
1996         }
1997         if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) {
1998             $decl_type = $1;
1999             $identifier = $2;
2000             $is_kernel_comment = 1;
2001         }
2002         # Look for foo() or static void foo() - description; or misspelt
2003         # identifier
2004         elsif (/^$decl_start$fn_type?(\w+)\s*$parenthesis?\s*$decl_end?$/ ||
2005             /^$decl_start$fn_type?(\w+.*)$parenthesis?\s*$decl_end$/) {
2006             $identifier = $1;
2007             $decl_type = 'function';
2008             $identifier =~ s/^define\s+//;
2009             $is_kernel_comment = 1;
2010         }
2011         $identifier =~ s/\s+$//;
2012 
2013         $state = STATE_BODY;
2014         # if there's no @param blocks need to set up default section
2015         # here
2016         $contents = "";
2017         $section = $section_default;
2018         $new_start_line = $. + 1;
2019         if (/[-:](.*)/) {
2020             # strip leading/trailing/multiple spaces
2021             $descr= $1;
2022             $descr =~ s/^\s*//;
2023             $descr =~ s/\s*$//;
2024             $descr =~ s/\s+/ /g;
2025             $declaration_purpose = $descr;
2026             $state = STATE_BODY_MAYBE;
2027         } else {
2028             $declaration_purpose = "";
2029         }
2030 
2031         if (!$is_kernel_comment) {
2032             emit_warning("${file}:$.", "This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst\n$_");
2033             $state = STATE_NORMAL;
2034         }
2035 
2036         if (($declaration_purpose eq "") && $verbose) {
2037             emit_warning("${file}:$.", "missing initial short description on line:\n$_");
2038         }
2039 
2040         if ($identifier eq "" && $decl_type ne "enum") {
2041             emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n$_");
2042             $state = STATE_NORMAL;
2043         }
2044 
2045         if ($verbose) {
2046             print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n";
2047         }
2048     } else {
2049         emit_warning("${file}:$.", "Cannot understand $_ on line $. - I thought it was a doc line\n");
2050         $state = STATE_NORMAL;
2051     }
2052 }
2053 
2054 
2055 #
2056 # STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
2057 #
2058 sub process_body($$) {
2059     my $file = shift;
2060 
2061     # Until all named variable macro parameters are
2062     # documented using the bare name (`x`) rather than with
2063     # dots (`x...`), strip the dots:
2064     if ($section =~ /\w\.\.\.$/) {
2065         $section =~ s/\.\.\.$//;
2066 
2067         if ($verbose) {
2068             emit_warning("${file}:$.", "Variable macro arguments should be documented without dots\n");
2069         }
2070     }
2071 
2072     if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
2073         dump_section($file, $section, $contents);
2074         $section = $section_default;
2075         $new_start_line = $.;
2076         $contents = "";
2077     }
2078 
2079     if (/$doc_sect/i) { # case insensitive for supported section names
2080         $newsection = $1;
2081         $newcontents = $2;
2082 
2083         # map the supported section names to the canonical names
2084         if ($newsection =~ m/^description$/i) {
2085             $newsection = $section_default;
2086         } elsif ($newsection =~ m/^context$/i) {
2087             $newsection = $section_context;
2088         } elsif ($newsection =~ m/^returns?$/i) {
2089             $newsection = $section_return;
2090         } elsif ($newsection =~ m/^\@return$/) {
2091             # special: @return is a section, not a param description
2092             $newsection = $section_return;
2093         }
2094 
2095         if (($contents ne "") && ($contents ne "\n")) {
2096             if (!$in_doc_sect && $verbose) {
2097                 emit_warning("${file}:$.", "contents before sections\n");
2098             }
2099             dump_section($file, $section, $contents);
2100             $section = $section_default;
2101         }
2102 
2103         $in_doc_sect = 1;
2104         $state = STATE_BODY;
2105         $contents = $newcontents;
2106         $new_start_line = $.;
2107         while (substr($contents, 0, 1) eq " ") {
2108             $contents = substr($contents, 1);
2109         }
2110         if ($contents ne "") {
2111             $contents .= "\n";
2112         }
2113         $section = $newsection;
2114         $leading_space = undef;
2115     } elsif (/$doc_end/) {
2116         if (($contents ne "") && ($contents ne "\n")) {
2117             dump_section($file, $section, $contents);
2118             $section = $section_default;
2119             $contents = "";
2120         }
2121         # look for doc_com + <text> + doc_end:
2122         if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2123             emit_warning("${file}:$.", "suspicious ending line: $_");
2124         }
2125 
2126         $prototype = "";
2127         $state = STATE_PROTO;
2128         $brcount = 0;
2129         $new_start_line = $. + 1;
2130     } elsif (/$doc_content/) {
2131         if ($1 eq "") {
2132             if ($section eq $section_context) {
2133                 dump_section($file, $section, $contents);
2134                 $section = $section_default;
2135                 $contents = "";
2136                 $new_start_line = $.;
2137                 $state = STATE_BODY;
2138             } else {
2139                 if ($section ne $section_default) {
2140                     $state = STATE_BODY_WITH_BLANK_LINE;
2141                 } else {
2142                     $state = STATE_BODY;
2143                 }
2144                 $contents .= "\n";
2145             }
2146         } elsif ($state == STATE_BODY_MAYBE) {
2147             # Continued declaration purpose
2148             chomp($declaration_purpose);
2149             $declaration_purpose .= " " . $1;
2150             $declaration_purpose =~ s/\s+/ /g;
2151         } else {
2152             my $cont = $1;
2153             if ($section =~ m/^@/ || $section eq $section_context) {
2154                 if (!defined $leading_space) {
2155                     if ($cont =~ m/^(\s+)/) {
2156                         $leading_space = $1;
2157                     } else {
2158                         $leading_space = "";
2159                     }
2160                 }
2161                 $cont =~ s/^$leading_space//;
2162             }
2163             $contents .= $cont . "\n";
2164         }
2165     } else {
2166         # i dont know - bad line?  ignore.
2167         emit_warning("${file}:$.", "bad line: $_");
2168     }
2169 }
2170 
2171 
2172 #
2173 # STATE_PROTO: reading a function/whatever prototype.
2174 #
2175 sub process_proto($$) {
2176     my $file = shift;
2177 
2178     if (/$doc_inline_oneline/) {
2179         $section = $1;
2180         $contents = $2;
2181         if ($contents ne "") {
2182             $contents .= "\n";
2183             dump_section($file, $section, $contents);
2184             $section = $section_default;
2185             $contents = "";
2186         }
2187     } elsif (/$doc_inline_start/) {
2188         $state = STATE_INLINE;
2189         $inline_doc_state = STATE_INLINE_NAME;
2190     } elsif ($decl_type eq 'function') {
2191         process_proto_function($_, $file);
2192     } else {
2193         process_proto_type($_, $file);
2194     }
2195 }
2196 
2197 #
2198 # STATE_DOCBLOCK: within a DOC: block.
2199 #
2200 sub process_docblock($$) {
2201     my $file = shift;
2202 
2203     if (/$doc_end/) {
2204         dump_doc_section($file, $section, $contents);
2205         $section = $section_default;
2206         $contents = "";
2207         $function = "";
2208         %parameterdescs = ();
2209         %parametertypes = ();
2210         @parameterlist = ();
2211         %sections = ();
2212         @sectionlist = ();
2213         $prototype = "";
2214         $state = STATE_NORMAL;
2215     } elsif (/$doc_content/) {
2216         if ( $1 eq "" ) {
2217             $contents .= $blankline;
2218         } else {
2219             $contents .= $1 . "\n";
2220         }
2221     }
2222 }
2223 
2224 #
2225 # STATE_INLINE: docbook comments within a prototype.
2226 #
2227 sub process_inline($$) {
2228     my $file = shift;
2229 
2230     # First line (state 1) needs to be a @parameter
2231     if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
2232         $section = $1;
2233         $contents = $2;
2234         $new_start_line = $.;
2235         if ($contents ne "") {
2236             while (substr($contents, 0, 1) eq " ") {
2237                 $contents = substr($contents, 1);
2238             }
2239             $contents .= "\n";
2240         }
2241         $inline_doc_state = STATE_INLINE_TEXT;
2242         # Documentation block end */
2243     } elsif (/$doc_inline_end/) {
2244         if (($contents ne "") && ($contents ne "\n")) {
2245             dump_section($file, $section, $contents);
2246             $section = $section_default;
2247             $contents = "";
2248         }
2249         $state = STATE_PROTO;
2250         $inline_doc_state = STATE_INLINE_NA;
2251         # Regular text
2252     } elsif (/$doc_content/) {
2253         if ($inline_doc_state == STATE_INLINE_TEXT) {
2254             $contents .= $1 . "\n";
2255             # nuke leading blank lines
2256             if ($contents =~ /^\s*$/) {
2257                 $contents = "";
2258             }
2259         } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2260             $inline_doc_state = STATE_INLINE_ERROR;
2261             emit_warning("${file}:$.", "Incorrect use of kernel-doc format: $_");
2262         }
2263     }
2264 }
2265 
2266 
2267 sub process_file($) {
2268     my $file;
2269     my $initial_section_counter = $section_counter;
2270     my ($orig_file) = @_;
2271 
2272     $file = map_filename($orig_file);
2273 
2274     if (!open(IN_FILE,"<$file")) {
2275         print STDERR "Error: Cannot open file $file\n";
2276         ++$errors;
2277         return;
2278     }
2279 
2280     $. = 1;
2281 
2282     $section_counter = 0;
2283     while (<IN_FILE>) {
2284         while (s/\\\s*$//) {
2285             $_ .= <IN_FILE>;
2286         }
2287         # Replace tabs by spaces
2288         while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
2289         # Hand this line to the appropriate state handler
2290         if ($state == STATE_NORMAL) {
2291             process_normal();
2292         } elsif ($state == STATE_NAME) {
2293             process_name($file, $_);
2294         } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
2295                  $state == STATE_BODY_WITH_BLANK_LINE) {
2296             process_body($file, $_);
2297         } elsif ($state == STATE_INLINE) { # scanning for inline parameters
2298             process_inline($file, $_);
2299         } elsif ($state == STATE_PROTO) {
2300             process_proto($file, $_);
2301         } elsif ($state == STATE_DOCBLOCK) {
2302             process_docblock($file, $_);
2303         }
2304     }
2305 
2306     # Make sure we got something interesting.
2307     if ($initial_section_counter == $section_counter && $
2308         output_mode ne "none") {
2309         if ($output_selection == OUTPUT_INCLUDE) {
2310             emit_warning("${file}:1", "'$_' not found\n")
2311                 for keys %function_table;
2312         }
2313         else {
2314             emit_warning("${file}:1", "no structured comments found\n");
2315         }
2316     }
2317     close IN_FILE;
2318 }
2319 
2320 
2321 if ($output_mode eq "rst") {
2322         get_sphinx_version() if (!$sphinx_major);
2323 }
2324 
2325 $kernelversion = get_kernel_version();
2326 
2327 # generate a sequence of code that will splice in highlighting information
2328 # using the s// operator.
2329 for (my $k = 0; $k < @highlights; $k++) {
2330     my $pattern = $highlights[$k][0];
2331     my $result = $highlights[$k][1];
2332 #   print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2333     $dohighlight .=  "\$contents =~ s:$pattern:$result:gs;\n";
2334 }
2335 
2336 # Read the file that maps relative names to absolute names for
2337 # separate source and object directories and for shadow trees.
2338 if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2339         my ($relname, $absname);
2340         while(<SOURCE_MAP>) {
2341                 chop();
2342                 ($relname, $absname) = (split())[0..1];
2343                 $relname =~ s:^/+::;
2344                 $source_map{$relname} = $absname;
2345         }
2346         close(SOURCE_MAP);
2347 }
2348 
2349 if ($output_selection == OUTPUT_EXPORTED ||
2350     $output_selection == OUTPUT_INTERNAL) {
2351 
2352     push(@export_file_list, @ARGV);
2353 
2354     foreach (@export_file_list) {
2355         chomp;
2356         process_export_file($_);
2357     }
2358 }
2359 
2360 foreach (@ARGV) {
2361     chomp;
2362     process_file($_);
2363 }
2364 if ($verbose && $errors) {
2365   print STDERR "$errors errors\n";
2366 }
2367 if ($verbose && $warnings) {
2368   print STDERR "$warnings warnings\n";
2369 }
2370 
2371 if ($Werror && $warnings) {
2372     print STDERR "$warnings warnings as Errors\n";
2373     exit($warnings);
2374 } else {
2375     exit($output_mode eq "none" ? 0 : $errors)
2376 }
2377 
2378 __END__
2379 
2380 =head1 OPTIONS
2381 
2382 =head2 Output format selection (mutually exclusive):
2383 
2384 =over 8
2385 
2386 =item -man
2387 
2388 Output troff manual page format.
2389 
2390 =item -rst
2391 
2392 Output reStructuredText format. This is the default.
2393 
2394 =item -none
2395 
2396 Do not output documentation, only warnings.
2397 
2398 =back
2399 
2400 =head2 Output format modifiers
2401 
2402 =head3 reStructuredText only
2403 
2404 =over 8
2405 
2406 =item -sphinx-version VERSION
2407 
2408 Use the ReST C domain dialect compatible with a specific Sphinx Version.
2409 
2410 If not specified, kernel-doc will auto-detect using the sphinx-build version
2411 found on PATH.
2412 
2413 =back
2414 
2415 =head2 Output selection (mutually exclusive):
2416 
2417 =over 8
2418 
2419 =item -export
2420 
2421 Only output documentation for the symbols that have been exported using
2422 EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() in any input FILE or -export-file FILE.
2423 
2424 =item -internal
2425 
2426 Only output documentation for the symbols that have NOT been exported using
2427 EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() in any input FILE or -export-file FILE.
2428 
2429 =item -function NAME
2430 
2431 Only output documentation for the given function or DOC: section title.
2432 All other functions and DOC: sections are ignored.
2433 
2434 May be specified multiple times.
2435 
2436 =item -nosymbol NAME
2437 
2438 Exclude the specified symbol from the output documentation.
2439 
2440 May be specified multiple times.
2441 
2442 =back
2443 
2444 =head2 Output selection modifiers:
2445 
2446 =over 8
2447 
2448 =item -no-doc-sections
2449 
2450 Do not output DOC: sections.
2451 
2452 =item -export-file FILE
2453 
2454 Specify an additional FILE in which to look for EXPORT_SYMBOL() and
2455 EXPORT_SYMBOL_GPL().
2456 
2457 To be used with -export or -internal.
2458 
2459 May be specified multiple times.
2460 
2461 =back
2462 
2463 =head3 reStructuredText only
2464 
2465 =over 8
2466 
2467 =item -enable-lineno
2468 
2469 Enable output of .. LINENO lines.
2470 
2471 =back
2472 
2473 =head2 Other parameters:
2474 
2475 =over 8
2476 
2477 =item -h, -help
2478 
2479 Print this help.
2480 
2481 =item -v
2482 
2483 Verbose output, more warnings and other information.
2484 
2485 =item -Werror
2486 
2487 Treat warnings as errors.
2488 
2489 =back
2490 
2491 =cut