Merge branches 'acpi-scan', 'acpi-resource', 'acpi-apei', 'acpi-extlog' and 'acpi...
[linux-block.git] / scripts / kernel-doc
CommitLineData
cb77f0d6 1#!/usr/bin/env perl
38476378 2# SPDX-License-Identifier: GPL-2.0
1da177e4 3
cb77f0d6 4use warnings;
1da177e4
LT
5use strict;
6
7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
9## Copyright (C) 2001 Simon Huggins ##
70c95b00 10## Copyright (C) 2005-2012 Randy Dunlap ##
1b40c194 11## Copyright (C) 2012 Dan Luedtke ##
1da177e4
LT
12## ##
13## #define enhancements by Armin Kuster <akuster@mvista.com> ##
14## Copyright (c) 2000 MontaVista Software, Inc. ##
2b306eca
TW
15#
16# Copyright (C) 2022 Tomasz Warniełło (POD)
1da177e4 17
43caf1a6
TW
18use Pod::Usage qw/pod2usage/;
19
a5cdaea5
TW
20=head1 NAME
21
22kernel-doc - Print formatted kernel documentation to stdout
23
24=head1 SYNOPSIS
25
26 kernel-doc [-h] [-v] [-Werror]
27 [ -man |
28 -rst [-sphinx-version VERSION] [-enable-lineno] |
29 -none
30 ]
31 [
32 -export |
33 -internal |
34 [-function NAME] ... |
35 [-nosymbol NAME] ...
36 ]
37 [-no-doc-sections]
38 [-export-file FILE] ...
39 FILE ...
40
41Run `kernel-doc -h` for details.
42
f1583922
TW
43=head1 DESCRIPTION
44
45Read C language source or header FILEs, extract embedded documentation comments,
46and print formatted documentation to standard output.
47
48The documentation comments are identified by the "/**" opening comment mark.
49
50See Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
51
a5cdaea5
TW
52=cut
53
2875f787
TW
54# more perldoc at the end of the file
55
8484baaa
RD
56## init lots of data
57
1da177e4
LT
58my $errors = 0;
59my $warnings = 0;
5f8c7c98 60my $anon_struct_union = 0;
1da177e4
LT
61
62# match expressions used to find embedded type information
b97f193a
MCC
63my $type_constant = '\b``([^\`]+)``\b';
64my $type_constant2 = '\%([-_\w]+)';
1da177e4 65my $type_func = '(\w+)\(\)';
bfd228c7 66my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
ee2aa759 67my $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
5219f18a 68my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
346282db 69my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params
1da177e4 70my $type_env = '(\$\w+)';
df31175b
PB
71my $type_enum = '\&(enum\s*([_\w]+))';
72my $type_struct = '\&(struct\s*([_\w]+))';
73my $type_typedef = '\&(typedef\s*([_\w]+))';
74my $type_union = '\&(union\s*([_\w]+))';
5267dd35 75my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
df31175b 76my $type_fallback = '\&([_\w]+)';
f3341dcf 77my $type_member_func = $type_member . '\(\)';
1da177e4
LT
78
79# Output conversion substitutions.
80# One for each output format
81
1da177e4 82# these are pretty rough
4d732701
DCLP
83my @highlights_man = (
84 [$type_constant, "\$1"],
b97f193a 85 [$type_constant2, "\$1"],
4d732701 86 [$type_func, "\\\\fB\$1\\\\fP"],
df31175b 87 [$type_enum, "\\\\fI\$1\\\\fP"],
4d732701 88 [$type_struct, "\\\\fI\$1\\\\fP"],
df31175b
PB
89 [$type_typedef, "\\\\fI\$1\\\\fP"],
90 [$type_union, "\\\\fI\$1\\\\fP"],
5267dd35 91 [$type_param, "\\\\fI\$1\\\\fP"],
ee2aa759 92 [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
df31175b
PB
93 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
94 [$type_fallback, "\\\\fI\$1\\\\fP"]
4d732701 95 );
1da177e4
LT
96my $blankline_man = "";
97
c0d1b6ee
JC
98# rst-mode
99my @highlights_rst = (
100 [$type_constant, "``\$1``"],
b97f193a 101 [$type_constant2, "``\$1``"],
f3341dcf 102 # Note: need to escape () to avoid func matching later
5267dd35
PB
103 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
104 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
5219f18a 105 [$type_fp_param, "**\$1\\\\(\\\\)**"],
346282db 106 [$type_fp_param2, "**\$1\\\\(\\\\)**"],
344fdb28 107 [$type_func, "\$1()"],
df31175b
PB
108 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
109 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
110 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
111 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
a7291e7e 112 # in rst this can refer to any type
df31175b 113 [$type_fallback, "\\:c\\:type\\:`\$1`"],
ee2aa759 114 [$type_param_ref, "**\$1\$2**"]
c0d1b6ee
JC
115 );
116my $blankline_rst = "\n";
117
1da177e4 118# read arguments
b9d97328 119if ($#ARGV == -1) {
43caf1a6
TW
120 pod2usage(
121 -message => "No arguments!\n",
122 -exitval => 1,
123 -verbose => 99,
124 -sections => 'SYNOPSIS',
125 -output => \*STDERR,
126 );
1da177e4
LT
127}
128
8484baaa 129my $kernelversion;
93351d41 130my ($sphinx_major, $sphinx_minor, $sphinx_patch);
efa44475 131
8484baaa
RD
132my $dohighlight = "";
133
1da177e4 134my $verbose = 0;
2c12c810 135my $Werror = 0;
bdfe2be3 136my $output_mode = "rst";
e314ba31 137my $output_preformatted = 0;
4b44595a 138my $no_doc_sections = 0;
0b0f5f29 139my $enable_lineno = 0;
bdfe2be3
MCC
140my @highlights = @highlights_rst;
141my $blankline = $blankline_rst;
1da177e4 142my $modulename = "Kernel API";
b6c3f456
JN
143
144use constant {
145 OUTPUT_ALL => 0, # output all symbols and doc sections
146 OUTPUT_INCLUDE => 1, # output only specified symbols
eab795dd
MCC
147 OUTPUT_EXPORTED => 2, # output exported symbols
148 OUTPUT_INTERNAL => 3, # output non-exported symbols
b6c3f456
JN
149};
150my $output_selection = OUTPUT_ALL;
b0d60bfb 151my $show_not_found = 0; # No longer used
b2c4105b 152
88c2b57d
JN
153my @export_file_list;
154
b2c4105b
BH
155my @build_time;
156if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
157 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
158 @build_time = gmtime($seconds);
159} else {
160 @build_time = localtime;
161}
162
3c3b809e
RD
163my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
164 'July', 'August', 'September', 'October',
b2c4105b
BH
165 'November', 'December')[$build_time[4]] .
166 " " . ($build_time[5]+1900);
1da177e4 167
8484baaa 168# Essentially these are globals.
b9d97328
RD
169# They probably want to be tidied up, made more localised or something.
170# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
1da177e4 171# could cause "use of undefined value" or other bugs.
b9d97328 172my ($function, %function_table, %parametertypes, $declaration_purpose);
eab795dd 173my %nosymbol_table = ();
0b0f5f29 174my $declaration_start_line;
b9d97328 175my ($type, $declaration_name, $return_type);
1c32fd0c 176my ($newsection, $newcontents, $prototype, $brcount, %source_map);
1da177e4 177
bd0e88e5
RD
178if (defined($ENV{'KBUILD_VERBOSE'})) {
179 $verbose = "$ENV{'KBUILD_VERBOSE'}";
180}
181
2c12c810
PLB
182if (defined($ENV{'KCFLAGS'})) {
183 my $kcflags = "$ENV{'KCFLAGS'}";
184
185 if ($kcflags =~ /Werror/) {
186 $Werror = 1;
187 }
188}
189
bed4ed30
LP
190if (defined($ENV{'KDOC_WERROR'})) {
191 $Werror = "$ENV{'KDOC_WERROR'}";
192}
193
3c3b809e 194# Generated docbook code is inserted in a template at a point where
1da177e4 195# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
93431e06 196# https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
1da177e4
LT
197# We keep track of number of generated entries and generate a dummy
198# if needs be to ensure the expanded template can be postprocessed
199# into html.
200my $section_counter = 0;
201
202my $lineprefix="";
203
48af606a
JN
204# Parser states
205use constant {
0d55d48b
MCC
206 STATE_NORMAL => 0, # normal code
207 STATE_NAME => 1, # looking for function name
208 STATE_BODY_MAYBE => 2, # body - or maybe more description
209 STATE_BODY => 3, # the body of the comment
210 STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
211 STATE_PROTO => 5, # scanning prototype
212 STATE_DOCBLOCK => 6, # documentation block
213 STATE_INLINE => 7, # gathering doc outside main block
48af606a 214};
1da177e4 215my $state;
850622df 216my $in_doc_sect;
d742f24d 217my $leading_space;
1da177e4 218
48af606a
JN
219# Inline documentation state
220use constant {
221 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
222 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
223 STATE_INLINE_TEXT => 2, # looking for member documentation
224 STATE_INLINE_END => 3, # done
225 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
226 # Spit a warning as it's not
227 # proper kernel-doc and ignore the rest.
228};
229my $inline_doc_state;
a4c6ebed 230
1da177e4
LT
231#declaration types: can be
232# 'function', 'struct', 'union', 'enum', 'typedef'
233my $decl_type;
234
52042e2d
MCC
235# Name of the kernel-doc identifier for non-DOC markups
236my $identifier;
237
1da177e4
LT
238my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
239my $doc_end = '\*/';
240my $doc_com = '\s*\*\s*';
12ae6779 241my $doc_com_body = '\s*\* ?';
b9d97328 242my $doc_decl = $doc_com . '(\w+)';
f624adef 243# @params and a strictly limited set of supported section names
212209cf
JC
244# Specifically:
245# Match @word:
246# @...:
247# @{section-name}:
248# while trying to not match literal block starts like "example::"
249#
76dd3e7b 250my $doc_sect = $doc_com .
212209cf 251 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:([^:].*)?$';
12ae6779 252my $doc_content = $doc_com_body . '(.*)';
b9d97328 253my $doc_block = $doc_com . 'DOC:\s*(.*)?';
48af606a 254my $doc_inline_start = '^\s*/\*\*\s*$';
fe7bc493 255my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
48af606a 256my $doc_inline_end = '^\s*\*/\s*$';
0c9aa209 257my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
86ae2e38 258my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
e86bdb24
AS
259my $function_pointer = qr{([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)};
260my $attribute = qr{__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)}i;
1da177e4 261
1da177e4 262my %parameterdescs;
0b0f5f29 263my %parameterdesc_start_lines;
1da177e4
LT
264my @parameterlist;
265my %sections;
266my @sectionlist;
0b0f5f29 267my %section_start_lines;
a1d94aa5
RD
268my $sectcheck;
269my $struct_actual;
1da177e4
LT
270
271my $contents = "";
0b0f5f29 272my $new_start_line = 0;
f624adef
JN
273
274# the canonical section names. see also $doc_sect above.
1da177e4
LT
275my $section_default = "Description"; # default section
276my $section_intro = "Introduction";
277my $section = $section_default;
278my $section_context = "Context";
4092bac7 279my $section_return = "Return";
1da177e4
LT
280
281my $undescribed = "-- undescribed --";
282
283reset_state();
284
b031ac4e
MCC
285while ($ARGV[0] =~ m/^--?(.*)/) {
286 my $cmd = $1;
287 shift @ARGV;
288 if ($cmd eq "man") {
1da177e4 289 $output_mode = "man";
4d732701 290 @highlights = @highlights_man;
1da177e4 291 $blankline = $blankline_man;
b031ac4e 292 } elsif ($cmd eq "rst") {
c0d1b6ee
JC
293 $output_mode = "rst";
294 @highlights = @highlights_rst;
295 $blankline = $blankline_rst;
b031ac4e 296 } elsif ($cmd eq "none") {
3a025e1d 297 $output_mode = "none";
b031ac4e 298 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
1da177e4 299 $modulename = shift @ARGV;
b031ac4e 300 } elsif ($cmd eq "function") { # to only output specific functions
b6c3f456 301 $output_selection = OUTPUT_INCLUDE;
1da177e4
LT
302 $function = shift @ARGV;
303 $function_table{$function} = 1;
eab795dd
MCC
304 } elsif ($cmd eq "nosymbol") { # Exclude specific symbols
305 my $symbol = shift @ARGV;
306 $nosymbol_table{$symbol} = 1;
b031ac4e 307 } elsif ($cmd eq "export") { # only exported symbols
b6c3f456 308 $output_selection = OUTPUT_EXPORTED;
da9726ec 309 %function_table = ();
b031ac4e 310 } elsif ($cmd eq "internal") { # only non-exported symbols
b6c3f456 311 $output_selection = OUTPUT_INTERNAL;
da9726ec 312 %function_table = ();
b031ac4e 313 } elsif ($cmd eq "export-file") {
88c2b57d
JN
314 my $file = shift @ARGV;
315 push(@export_file_list, $file);
b031ac4e 316 } elsif ($cmd eq "v") {
1da177e4 317 $verbose = 1;
2c12c810
PLB
318 } elsif ($cmd eq "Werror") {
319 $Werror = 1;
b031ac4e 320 } elsif (($cmd eq "h") || ($cmd eq "help")) {
252b47da 321 pod2usage(-exitval => 0, -verbose => 2);
b031ac4e 322 } elsif ($cmd eq 'no-doc-sections') {
4b44595a 323 $no_doc_sections = 1;
b031ac4e 324 } elsif ($cmd eq 'enable-lineno') {
0b0f5f29 325 $enable_lineno = 1;
b031ac4e 326 } elsif ($cmd eq 'show-not-found') {
b0d60bfb 327 $show_not_found = 1; # A no-op but don't fail
93351d41
MCC
328 } elsif ($cmd eq "sphinx-version") {
329 my $ver_string = shift @ARGV;
330 if ($ver_string =~ m/^(\d+)(\.\d+)?(\.\d+)?/) {
331 $sphinx_major = $1;
332 if (defined($2)) {
333 $sphinx_minor = substr($2,1);
334 } else {
335 $sphinx_minor = 0;
336 }
337 if (defined($3)) {
338 $sphinx_patch = substr($3,1)
339 } else {
340 $sphinx_patch = 0;
341 }
342 } else {
343 die "Sphinx version should either major.minor or major.minor.patch format\n";
344 }
b031ac4e 345 } else {
e334f873
AY
346 # Unknown argument
347 pod2usage(
348 -message => "Argument unknown!\n",
349 -exitval => 1,
350 -verbose => 99,
351 -sections => 'SYNOPSIS',
352 -output => \*STDERR,
353 );
354 }
355 if ($#ARGV < 0){
356 pod2usage(
357 -message => "FILE argument missing\n",
358 -exitval => 1,
359 -verbose => 99,
360 -sections => 'SYNOPSIS',
361 -output => \*STDERR,
362 );
1da177e4
LT
363 }
364}
365
8484baaa
RD
366# continue execution near EOF;
367
efa44475
MCC
368# The C domain dialect changed on Sphinx 3. So, we need to check the
369# version in order to produce the right tags.
370sub findprog($)
371{
372 foreach(split(/:/, $ENV{PATH})) {
373 return "$_/$_[0]" if(-x "$_/$_[0]");
374 }
375}
376
377sub get_sphinx_version()
378{
379 my $ver;
efa44475
MCC
380
381 my $cmd = "sphinx-build";
382 if (!findprog($cmd)) {
383 my $cmd = "sphinx-build3";
93351d41
MCC
384 if (!findprog($cmd)) {
385 $sphinx_major = 1;
386 $sphinx_minor = 2;
387 $sphinx_patch = 0;
388 printf STDERR "Warning: Sphinx version not found. Using default (Sphinx version %d.%d.%d)\n",
389 $sphinx_major, $sphinx_minor, $sphinx_patch;
390 return;
391 }
efa44475
MCC
392 }
393
394 open IN, "$cmd --version 2>&1 |";
395 while (<IN>) {
396 if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) {
93351d41
MCC
397 $sphinx_major = $1;
398 $sphinx_minor = $2;
399 $sphinx_patch = $3;
efa44475
MCC
400 last;
401 }
402 # Sphinx 1.2.x uses a different format
403 if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) {
93351d41
MCC
404 $sphinx_major = $1;
405 $sphinx_minor = $2;
406 $sphinx_patch = $3;
efa44475
MCC
407 last;
408 }
409 }
410 close IN;
efa44475
MCC
411}
412
53f049fa
BP
413# get kernel version from env
414sub get_kernel_version() {
1b9bc22d 415 my $version = 'unknown kernel version';
53f049fa
BP
416
417 if (defined($ENV{'KERNELVERSION'})) {
418 $version = $ENV{'KERNELVERSION'};
419 }
420 return $version;
421}
1da177e4 422
0b0f5f29
DV
423#
424sub print_lineno {
425 my $lineno = shift;
426 if ($enable_lineno && defined($lineno)) {
b79dfef0 427 print ".. LINENO " . $lineno . "\n";
0b0f5f29
DV
428 }
429}
df4bf98e
NS
430
431sub emit_warning {
432 my $location = shift;
433 my $msg = shift;
434 print STDERR "$location: warning: $msg";
435 ++$warnings;
436}
1da177e4
LT
437##
438# dumps section contents to arrays/hashes intended for that purpose.
439#
440sub dump_section {
94dc7ad5 441 my $file = shift;
1da177e4
LT
442 my $name = shift;
443 my $contents = join "\n", @_;
444
13901ef2 445 if ($name =~ m/$type_param/) {
1da177e4
LT
446 $name = $1;
447 $parameterdescs{$name} = $contents;
a1d94aa5 448 $sectcheck = $sectcheck . $name . " ";
0b0f5f29
DV
449 $parameterdesc_start_lines{$name} = $new_start_line;
450 $new_start_line = 0;
ced69090 451 } elsif ($name eq "@\.\.\.") {
ced69090
RD
452 $name = "...";
453 $parameterdescs{$name} = $contents;
a1d94aa5 454 $sectcheck = $sectcheck . $name . " ";
0b0f5f29
DV
455 $parameterdesc_start_lines{$name} = $new_start_line;
456 $new_start_line = 0;
1da177e4 457 } else {
94dc7ad5 458 if (defined($sections{$name}) && ($sections{$name} ne "")) {
95b6be9d
JN
459 # Only warn on user specified duplicate section names.
460 if ($name ne $section_default) {
df4bf98e 461 emit_warning("${file}:$.", "duplicate section name '$name'\n");
95b6be9d 462 }
32217761
JN
463 $sections{$name} .= $contents;
464 } else {
465 $sections{$name} = $contents;
466 push @sectionlist, $name;
0b0f5f29
DV
467 $section_start_lines{$name} = $new_start_line;
468 $new_start_line = 0;
94dc7ad5 469 }
1da177e4
LT
470 }
471}
472
b112e0f7
JB
473##
474# dump DOC: section after checking that it should go out
475#
476sub dump_doc_section {
94dc7ad5 477 my $file = shift;
b112e0f7
JB
478 my $name = shift;
479 my $contents = join "\n", @_;
480
4b44595a
JB
481 if ($no_doc_sections) {
482 return;
483 }
484
eab795dd
MCC
485 return if (defined($nosymbol_table{$name}));
486
b6c3f456 487 if (($output_selection == OUTPUT_ALL) ||
eab795dd
MCC
488 (($output_selection == OUTPUT_INCLUDE) &&
489 defined($function_table{$name})))
b112e0f7 490 {
94dc7ad5 491 dump_section($file, $name, $contents);
b112e0f7
JB
492 output_blockhead({'sectionlist' => \@sectionlist,
493 'sections' => \%sections,
494 'module' => $modulename,
b6c3f456 495 'content-only' => ($output_selection != OUTPUT_ALL), });
b112e0f7
JB
496 }
497}
498
1da177e4
LT
499##
500# output function
501#
502# parameterdescs, a hash.
503# function => "function name"
504# parameterlist => @list of parameters
505# parameterdescs => %parameter descriptions
506# sectionlist => @list of sections
a21217da 507# sections => %section descriptions
3c3b809e 508#
1da177e4
LT
509
510sub output_highlight {
511 my $contents = join "\n",@_;
512 my $line;
513
514# DEBUG
515# if (!defined $contents) {
516# use Carp;
517# confess "output_highlight got called with no args?\n";
518# }
519
3eb014a1 520# print STDERR "contents b4:$contents\n";
1da177e4
LT
521 eval $dohighlight;
522 die $@ if $@;
3eb014a1
RD
523# print STDERR "contents af:$contents\n";
524
1da177e4 525 foreach $line (split "\n", $contents) {
12ae6779
DS
526 if (! $output_preformatted) {
527 $line =~ s/^\s*//;
528 }
3c308798 529 if ($line eq ""){
e314ba31 530 if (! $output_preformatted) {
0bba924c 531 print $lineprefix, $blankline;
e314ba31 532 }
1da177e4 533 } else {
cdccb316
RD
534 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
535 print "\\&$line";
536 } else {
537 print $lineprefix, $line;
538 }
1da177e4
LT
539 }
540 print "\n";
541 }
542}
543
1da177e4
LT
544##
545# output function in man
546sub output_function_man(%) {
547 my %args = %{$_[0]};
548 my ($parameter, $section);
549 my $count;
550
551 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
552
553 print ".SH NAME\n";
b9d97328 554 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
555
556 print ".SH SYNOPSIS\n";
a21217da 557 if ($args{'functiontype'} ne "") {
b9d97328 558 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
a21217da 559 } else {
b9d97328 560 print ".B \"" . $args{'function'} . "\n";
a21217da 561 }
1da177e4
LT
562 $count = 0;
563 my $parenth = "(";
564 my $post = ",";
565 foreach my $parameter (@{$args{'parameterlist'}}) {
566 if ($count == $#{$args{'parameterlist'}}) {
567 $post = ");";
568 }
569 $type = $args{'parametertypes'}{$parameter};
e86bdb24 570 if ($type =~ m/$function_pointer/) {
1da177e4 571 # pointer-to-function
ed8348e2 572 print ".BI \"" . $parenth . $1 . "\" " . " \") (" . $2 . ")" . $post . "\"\n";
1da177e4
LT
573 } else {
574 $type =~ s/([^\*])$/$1 /;
ed8348e2 575 print ".BI \"" . $parenth . $type . "\" " . " \"" . $post . "\"\n";
1da177e4
LT
576 }
577 $count++;
578 $parenth = "";
579 }
580
581 print ".SH ARGUMENTS\n";
582 foreach $parameter (@{$args{'parameterlist'}}) {
583 my $parameter_name = $parameter;
584 $parameter_name =~ s/\[.*//;
585
b9d97328 586 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
587 output_highlight($args{'parameterdescs'}{$parameter_name});
588 }
589 foreach $section (@{$args{'sectionlist'}}) {
590 print ".SH \"", uc $section, "\"\n";
591 output_highlight($args{'sections'}{$section});
592 }
593}
594
595##
596# output enum in man
597sub output_enum_man(%) {
598 my %args = %{$_[0]};
599 my ($parameter, $section);
600 my $count;
601
602 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
603
604 print ".SH NAME\n";
b9d97328 605 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
606
607 print ".SH SYNOPSIS\n";
b9d97328 608 print "enum " . $args{'enum'} . " {\n";
1da177e4
LT
609 $count = 0;
610 foreach my $parameter (@{$args{'parameterlist'}}) {
3c308798 611 print ".br\n.BI \" $parameter\"\n";
1da177e4
LT
612 if ($count == $#{$args{'parameterlist'}}) {
613 print "\n};\n";
614 last;
615 }
616 else {
617 print ", \n.br\n";
618 }
619 $count++;
620 }
621
622 print ".SH Constants\n";
623 foreach $parameter (@{$args{'parameterlist'}}) {
624 my $parameter_name = $parameter;
625 $parameter_name =~ s/\[.*//;
626
b9d97328 627 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
628 output_highlight($args{'parameterdescs'}{$parameter_name});
629 }
630 foreach $section (@{$args{'sectionlist'}}) {
631 print ".SH \"$section\"\n";
632 output_highlight($args{'sections'}{$section});
633 }
634}
635
636##
637# output struct in man
638sub output_struct_man(%) {
639 my %args = %{$_[0]};
640 my ($parameter, $section);
641
b9d97328 642 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
1da177e4
LT
643
644 print ".SH NAME\n";
b9d97328 645 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
1da177e4 646
8ad72163
MCC
647 my $declaration = $args{'definition'};
648 $declaration =~ s/\t/ /g;
649 $declaration =~ s/\n/"\n.br\n.BI \"/g;
1da177e4 650 print ".SH SYNOPSIS\n";
b9d97328 651 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
8ad72163 652 print ".BI \"$declaration\n};\n.br\n\n";
1da177e4 653
c51d3dac 654 print ".SH Members\n";
1da177e4
LT
655 foreach $parameter (@{$args{'parameterlist'}}) {
656 ($parameter =~ /^#/) && next;
657
658 my $parameter_name = $parameter;
659 $parameter_name =~ s/\[.*//;
660
3c308798 661 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
b9d97328 662 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
663 output_highlight($args{'parameterdescs'}{$parameter_name});
664 }
665 foreach $section (@{$args{'sectionlist'}}) {
666 print ".SH \"$section\"\n";
667 output_highlight($args{'sections'}{$section});
668 }
669}
670
671##
672# output typedef in man
673sub output_typedef_man(%) {
674 my %args = %{$_[0]};
675 my ($parameter, $section);
676
677 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
678
679 print ".SH NAME\n";
b9d97328 680 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
681
682 foreach $section (@{$args{'sectionlist'}}) {
683 print ".SH \"$section\"\n";
684 output_highlight($args{'sections'}{$section});
685 }
686}
687
b112e0f7 688sub output_blockhead_man(%) {
1da177e4
LT
689 my %args = %{$_[0]};
690 my ($parameter, $section);
691 my $count;
692
693 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
694
695 foreach $section (@{$args{'sectionlist'}}) {
696 print ".SH \"$section\"\n";
697 output_highlight($args{'sections'}{$section});
698 }
699}
700
c0d1b6ee
JC
701##
702# output in restructured text
703#
704
705#
706# This could use some work; it's used to output the DOC: sections, and
707# starts by putting out the name of the doc section itself, but that tends
708# to duplicate a header already in the template file.
709#
710sub output_blockhead_rst(%) {
711 my %args = %{$_[0]};
712 my ($parameter, $section);
713
714 foreach $section (@{$args{'sectionlist'}}) {
eab795dd
MCC
715 next if (defined($nosymbol_table{$section}));
716
9e72184b 717 if ($output_selection != OUTPUT_INCLUDE) {
06a755d6 718 print ".. _$section:\n\n";
9e72184b
JN
719 print "**$section**\n\n";
720 }
0b0f5f29 721 print_lineno($section_start_lines{$section});
c0d1b6ee
JC
722 output_highlight_rst($args{'sections'}{$section});
723 print "\n";
724 }
725}
726
af250290
JC
727#
728# Apply the RST highlights to a sub-block of text.
76dd3e7b 729#
af250290
JC
730sub highlight_block($) {
731 # The dohighlight kludge requires the text be called $contents
732 my $contents = shift;
c0d1b6ee
JC
733 eval $dohighlight;
734 die $@ if $@;
af250290
JC
735 return $contents;
736}
c0d1b6ee 737
af250290
JC
738#
739# Regexes used only here.
740#
741my $sphinx_literal = '^[^.].*::$';
742my $sphinx_cblock = '^\.\.\ +code-block::';
743
744sub output_highlight_rst {
745 my $input = join "\n",@_;
746 my $output = "";
747 my $line;
748 my $in_literal = 0;
749 my $litprefix;
750 my $block = "";
751
752 foreach $line (split "\n",$input) {
753 #
754 # If we're in a literal block, see if we should drop out
755 # of it. Otherwise pass the line straight through unmunged.
756 #
757 if ($in_literal) {
758 if (! ($line =~ /^\s*$/)) {
759 #
760 # If this is the first non-blank line in a literal
761 # block we need to figure out what the proper indent is.
762 #
763 if ($litprefix eq "") {
764 $line =~ /^(\s*)/;
765 $litprefix = '^' . $1;
766 $output .= $line . "\n";
767 } elsif (! ($line =~ /$litprefix/)) {
768 $in_literal = 0;
769 } else {
770 $output .= $line . "\n";
771 }
772 } else {
773 $output .= $line . "\n";
774 }
775 }
776 #
777 # Not in a literal block (or just dropped out)
778 #
779 if (! $in_literal) {
780 $block .= $line . "\n";
781 if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
782 $in_literal = 1;
783 $litprefix = "";
784 $output .= highlight_block($block);
785 $block = ""
786 }
787 }
788 }
789
790 if ($block) {
791 $output .= highlight_block($block);
792 }
793 foreach $line (split "\n", $output) {
830066a7 794 print $lineprefix . $line . "\n";
c0d1b6ee
JC
795 }
796}
797
798sub output_function_rst(%) {
799 my %args = %{$_[0]};
800 my ($parameter, $section);
c099ff69 801 my $oldprefix = $lineprefix;
82801d06 802 my $start = "";
6e9e4158 803 my $is_macro = 0;
82801d06 804
e3ad05fe
MCC
805 if ($sphinx_major < 3) {
806 if ($args{'typedef'}) {
efa44475 807 print ".. c:type:: ". $args{'function'} . "\n\n";
e3ad05fe
MCC
808 print_lineno($declaration_start_line);
809 print " **Typedef**: ";
810 $lineprefix = "";
811 output_highlight_rst($args{'purpose'});
812 $start = "\n\n**Syntax**\n\n ``";
6e9e4158 813 $is_macro = 1;
efa44475 814 } else {
e3ad05fe 815 print ".. c:function:: ";
efa44475 816 }
82801d06 817 } else {
6e9e4158
MCC
818 if ($args{'typedef'} || $args{'functiontype'} eq "") {
819 $is_macro = 1;
820 print ".. c:macro:: ". $args{'function'} . "\n\n";
821 } else {
822 print ".. c:function:: ";
823 }
e3ad05fe
MCC
824
825 if ($args{'typedef'}) {
826 print_lineno($declaration_start_line);
827 print " **Typedef**: ";
828 $lineprefix = "";
829 output_highlight_rst($args{'purpose'});
830 $start = "\n\n**Syntax**\n\n ``";
831 } else {
6e9e4158 832 print "``" if ($is_macro);
e3ad05fe 833 }
82801d06 834 }
c0d1b6ee 835 if ($args{'functiontype'} ne "") {
82801d06 836 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
c0d1b6ee 837 } else {
82801d06 838 $start .= $args{'function'} . " (";
c0d1b6ee
JC
839 }
840 print $start;
841
842 my $count = 0;
843 foreach my $parameter (@{$args{'parameterlist'}}) {
844 if ($count ne 0) {
845 print ", ";
846 }
847 $count++;
848 $type = $args{'parametertypes'}{$parameter};
a88b1672 849
e86bdb24 850 if ($type =~ m/$function_pointer/) {
c0d1b6ee 851 # pointer-to-function
e8f4ba83 852 print $1 . $parameter . ") (" . $2 . ")";
c0d1b6ee 853 } else {
ed8348e2 854 print $type;
c0d1b6ee
JC
855 }
856 }
6e9e4158
MCC
857 if ($is_macro) {
858 print ")``\n\n";
82801d06 859 } else {
6e9e4158
MCC
860 print ")\n\n";
861 }
862 if (!$args{'typedef'}) {
82801d06
MCC
863 print_lineno($declaration_start_line);
864 $lineprefix = " ";
865 output_highlight_rst($args{'purpose'});
866 print "\n";
867 }
c0d1b6ee 868
ecbcfba1
JN
869 print "**Parameters**\n\n";
870 $lineprefix = " ";
c0d1b6ee
JC
871 foreach $parameter (@{$args{'parameterlist'}}) {
872 my $parameter_name = $parameter;
ada5f446 873 $parameter_name =~ s/\[.*//;
c0d1b6ee
JC
874 $type = $args{'parametertypes'}{$parameter};
875
876 if ($type ne "") {
ed8348e2 877 print "``$type``\n";
c0d1b6ee 878 } else {
ecbcfba1 879 print "``$parameter``\n";
c0d1b6ee 880 }
0b0f5f29
DV
881
882 print_lineno($parameterdesc_start_lines{$parameter_name});
883
5e64fa9c
JN
884 if (defined($args{'parameterdescs'}{$parameter_name}) &&
885 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
c0d1b6ee 886 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee 887 } else {
d4b08e0c 888 print " *undescribed*\n";
c0d1b6ee
JC
889 }
890 print "\n";
891 }
c099ff69
JN
892
893 $lineprefix = $oldprefix;
c0d1b6ee
JC
894 output_section_rst(@_);
895}
896
897sub output_section_rst(%) {
898 my %args = %{$_[0]};
899 my $section;
900 my $oldprefix = $lineprefix;
ecbcfba1 901 $lineprefix = "";
c0d1b6ee
JC
902
903 foreach $section (@{$args{'sectionlist'}}) {
ecbcfba1 904 print "**$section**\n\n";
0b0f5f29 905 print_lineno($section_start_lines{$section});
c0d1b6ee
JC
906 output_highlight_rst($args{'sections'}{$section});
907 print "\n";
908 }
909 print "\n";
910 $lineprefix = $oldprefix;
911}
912
913sub output_enum_rst(%) {
914 my %args = %{$_[0]};
915 my ($parameter);
c099ff69 916 my $oldprefix = $lineprefix;
c0d1b6ee 917 my $count;
62850976 918
efa44475
MCC
919 if ($sphinx_major < 3) {
920 my $name = "enum " . $args{'enum'};
921 print "\n\n.. c:type:: " . $name . "\n\n";
922 } else {
923 my $name = $args{'enum'};
924 print "\n\n.. c:enum:: " . $name . "\n\n";
925 }
0b0f5f29 926 print_lineno($declaration_start_line);
c099ff69
JN
927 $lineprefix = " ";
928 output_highlight_rst($args{'purpose'});
929 print "\n";
c0d1b6ee 930
ecbcfba1
JN
931 print "**Constants**\n\n";
932 $lineprefix = " ";
c0d1b6ee 933 foreach $parameter (@{$args{'parameterlist'}}) {
ecbcfba1 934 print "``$parameter``\n";
c0d1b6ee
JC
935 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
936 output_highlight_rst($args{'parameterdescs'}{$parameter});
937 } else {
d4b08e0c 938 print " *undescribed*\n";
c0d1b6ee
JC
939 }
940 print "\n";
941 }
c099ff69 942
c0d1b6ee
JC
943 $lineprefix = $oldprefix;
944 output_section_rst(@_);
945}
946
947sub output_typedef_rst(%) {
948 my %args = %{$_[0]};
949 my ($parameter);
c099ff69 950 my $oldprefix = $lineprefix;
efa44475 951 my $name;
c0d1b6ee 952
efa44475
MCC
953 if ($sphinx_major < 3) {
954 $name = "typedef " . $args{'typedef'};
955 } else {
956 $name = $args{'typedef'};
957 }
62850976 958 print "\n\n.. c:type:: " . $name . "\n\n";
0b0f5f29 959 print_lineno($declaration_start_line);
c099ff69
JN
960 $lineprefix = " ";
961 output_highlight_rst($args{'purpose'});
962 print "\n";
c0d1b6ee 963
c099ff69 964 $lineprefix = $oldprefix;
c0d1b6ee
JC
965 output_section_rst(@_);
966}
967
968sub output_struct_rst(%) {
969 my %args = %{$_[0]};
970 my ($parameter);
c099ff69 971 my $oldprefix = $lineprefix;
c0d1b6ee 972
efa44475
MCC
973 if ($sphinx_major < 3) {
974 my $name = $args{'type'} . " " . $args{'struct'};
975 print "\n\n.. c:type:: " . $name . "\n\n";
976 } else {
977 my $name = $args{'struct'};
72b97d0b
MCC
978 if ($args{'type'} eq 'union') {
979 print "\n\n.. c:union:: " . $name . "\n\n";
980 } else {
981 print "\n\n.. c:struct:: " . $name . "\n\n";
982 }
efa44475 983 }
0b0f5f29 984 print_lineno($declaration_start_line);
c099ff69
JN
985 $lineprefix = " ";
986 output_highlight_rst($args{'purpose'});
987 print "\n";
c0d1b6ee 988
ecbcfba1
JN
989 print "**Definition**\n\n";
990 print "::\n\n";
8ad72163
MCC
991 my $declaration = $args{'definition'};
992 $declaration =~ s/\t/ /g;
993 print " " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration };\n\n";
c0d1b6ee 994
ecbcfba1
JN
995 print "**Members**\n\n";
996 $lineprefix = " ";
c0d1b6ee
JC
997 foreach $parameter (@{$args{'parameterlist'}}) {
998 ($parameter =~ /^#/) && next;
999
1000 my $parameter_name = $parameter;
1001 $parameter_name =~ s/\[.*//;
1002
1003 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1004 $type = $args{'parametertypes'}{$parameter};
0b0f5f29 1005 print_lineno($parameterdesc_start_lines{$parameter_name});
6d232c80 1006 print "``" . $parameter . "``\n";
c0d1b6ee 1007 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee
JC
1008 print "\n";
1009 }
1010 print "\n";
c099ff69
JN
1011
1012 $lineprefix = $oldprefix;
c0d1b6ee
JC
1013 output_section_rst(@_);
1014}
1015
3a025e1d
MW
1016## none mode output functions
1017
1018sub output_function_none(%) {
1019}
1020
1021sub output_enum_none(%) {
1022}
1023
1024sub output_typedef_none(%) {
1025}
1026
1027sub output_struct_none(%) {
1028}
1029
1030sub output_blockhead_none(%) {
1031}
1032
1da177e4 1033##
27205744
RD
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
1da177e4
LT
1037sub output_declaration {
1038 no strict 'refs';
1039 my $name = shift;
1040 my $functype = shift;
1041 my $func = "output_${functype}_$output_mode";
eab795dd
MCC
1042
1043 return if (defined($nosymbol_table{$name}));
1044
b6c3f456
JN
1045 if (($output_selection == OUTPUT_ALL) ||
1046 (($output_selection == OUTPUT_INCLUDE ||
1047 $output_selection == OUTPUT_EXPORTED) &&
1048 defined($function_table{$name})) ||
eab795dd 1049 ($output_selection == OUTPUT_INTERNAL &&
b6c3f456 1050 !($functype eq "function" && defined($function_table{$name}))))
1da177e4 1051 {
3c308798 1052 &$func(@_);
1da177e4
LT
1053 $section_counter++;
1054 }
1055}
1056
1057##
27205744 1058# generic output function - calls the right one based on current output mode.
b112e0f7 1059sub output_blockhead {
1da177e4 1060 no strict 'refs';
b9d97328 1061 my $func = "output_blockhead_" . $output_mode;
1da177e4
LT
1062 &$func(@_);
1063 $section_counter++;
1064}
1065
1066##
3c3b809e 1067# takes a declaration (struct, union, enum, typedef) and
1da177e4
LT
1068# invokes the right handler. NOT called for functions.
1069sub dump_declaration($$) {
1070 no strict 'refs';
1071 my ($prototype, $file) = @_;
b9d97328 1072 my $func = "dump_" . $decl_type;
1da177e4
LT
1073 &$func(@_);
1074}
1075
1076sub dump_union($$) {
1077 dump_struct(@_);
1078}
1079
1080sub dump_struct($$) {
1081 my $x = shift;
1082 my $file = shift;
a746fe32
AS
1083 my $decl_type;
1084 my $members;
1085 my $type = qr{struct|union};
1086 # For capturing struct/union definition body, i.e. "{members*}qualifiers*"
e86bdb24
AS
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)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;};
a746fe32
AS
1090
1091 if ($x =~ /($type)\s+(\w+)\s*$definition_body/) {
1092 $decl_type = $1;
3c308798 1093 $declaration_name = $2;
a746fe32
AS
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 }
1da177e4 1100
a746fe32 1101 if ($members) {
52042e2d 1102 if ($identifier ne $declaration_name) {
df4bf98e 1103 emit_warning("${file}:$.", "expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n");
52042e2d
MCC
1104 return;
1105 }
1106
aeec46b9 1107 # ignore members marked private:
0d8c39e6
MCC
1108 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1109 $members =~ s/\/\*\s*private:.*//gosi;
aeec46b9
MW
1110 # strip comments:
1111 $members =~ s/\/\*.*?\*\///gos;
ef5da59f 1112 # strip attributes
e86bdb24 1113 $members =~ s/\s*$attribute/ /gi;
2b5f78e5
AA
1114 $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
1115 $members =~ s/\s*__packed\s*/ /gos;
1116 $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
f861537d 1117 $members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
a070991f 1118 $members =~ s/\s*____cacheline_aligned/ /gos;
50d7bd38
KC
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;
3556108e 1126
e86bdb24 1127 my $args = qr{([^,)]+)};
b22b5a9e 1128 # replace DECLARE_BITMAP
3556108e 1129 $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos;
603bdf5d 1130 $members =~ s/DECLARE_PHY_INTERFACE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, PHY_INTERFACE_MODE_MAX)/gos;
e86bdb24 1131 $members =~ s/DECLARE_BITMAP\s*\($args,\s*$args\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
1cb566ba 1132 # replace DECLARE_HASHTABLE
e86bdb24 1133 $members =~ s/DECLARE_HASHTABLE\s*\($args,\s*$args\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
45005b27 1134 # replace DECLARE_KFIFO
e86bdb24 1135 $members =~ s/DECLARE_KFIFO\s*\($args,\s*$args,\s*$args\)/$2 \*$1/gos;
45005b27 1136 # replace DECLARE_KFIFO_PTR
e86bdb24 1137 $members =~ s/DECLARE_KFIFO_PTR\s*\($args,\s*$args\)/$2 \*$1/gos;
3080ea55
KC
1138 # replace DECLARE_FLEX_ARRAY
1139 $members =~ s/(?:__)?DECLARE_FLEX_ARRAY\s*\($args,\s*$args\)/$1 $2\[\]/gos;
8ad72163
MCC
1140 my $declaration = $members;
1141
1142 # Split nested struct/union elements as newer ones
e86bdb24 1143 while ($members =~ m/$struct_members/) {
84ce5b98
MCC
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
8ad72163 1151 $id =~ s/[:\[].*//;
84ce5b98 1152 $id =~ s/^\s*\**(\S+)\s*/$1/;
8ad72163
MCC
1153 foreach my $arg (split /;/, $content) {
1154 next if ($arg =~ m/^\s*$/);
7c0d7e87
MCC
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
84ce5b98 1163 $newmember .= "$type$name$extra; ";
7c0d7e87 1164 } else {
84ce5b98 1165 $newmember .= "$type$id.$name$extra; ";
7c0d7e87 1166 }
8ad72163 1167 } else {
84ce5b98
MCC
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
d404d579 1175 $arg =~ s/\[.*\]//g;
84ce5b98
MCC
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;
7c0d7e87 1186 } else {
84ce5b98
MCC
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 }
7c0d7e87 1199 }
8ad72163
MCC
1200 }
1201 }
84ce5b98 1202 }
e86bdb24 1203 $members =~ s/$struct_members/$newmember/;
84ce5b98 1204 }
8ad72163
MCC
1205
1206 # Ignore other nested elements, like enums
673bb2df 1207 $members =~ s/(\{[^\{\}]*\})//g;
8ad72163 1208
151c468b 1209 create_parameterlist($members, ';', $file, $declaration_name);
1081de2d 1210 check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
1da177e4 1211
8ad72163 1212 # Adjust declaration for better display
673bb2df
BH
1213 $declaration =~ s/([\{;])/$1\n/g;
1214 $declaration =~ s/\}\s+;/};/g;
8ad72163 1215 # Better handle inlined enums
673bb2df 1216 do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
8ad72163
MCC
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);
673bb2df 1226 $level-- if ($clause =~ m/(\})/ && $level > 1);
8ad72163
MCC
1227 if (!($clause =~ m/^\s*#/)) {
1228 $declaration .= "\t" x $level;
1229 }
1230 $declaration .= "\t" . $clause . "\n";
673bb2df 1231 $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
8ad72163 1232 }
1da177e4
LT
1233 output_declaration($declaration_name,
1234 'struct',
1235 {'struct' => $declaration_name,
1236 'module' => $modulename,
8ad72163 1237 'definition' => $declaration,
1da177e4
LT
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 {
d40e1e65 1248 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1da177e4
LT
1249 ++$errors;
1250 }
1251}
1252
85afe608
MCC
1253
1254sub show_warnings($$) {
1255 my $functype = shift;
1256 my $name = shift;
1257
eab795dd
MCC
1258 return 0 if (defined($nosymbol_table{$name}));
1259
85afe608
MCC
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 }
85afe608
MCC
1283 die("Please add the new output type at show_warnings()");
1284}
1285
1da177e4
LT
1286sub dump_enum($$) {
1287 my $x = shift;
1288 my $file = shift;
d38c8cfb
MCC
1289 my $members;
1290
1da177e4 1291
aeec46b9 1292 $x =~ s@/\*.*?\*/@@gos; # strip comments.
4468e21e
CN
1293 # strip #define macros inside enums
1294 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
b6d676db 1295
d38c8cfb
MCC
1296 if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) {
1297 $declaration_name = $2;
1298 $members = $1;
1299 } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
3c308798 1300 $declaration_name = $1;
d38c8cfb
MCC
1301 $members = $2;
1302 }
1303
ae5b17e4 1304 if ($members) {
52042e2d 1305 if ($identifier ne $declaration_name) {
0b54c2e3 1306 if ($identifier eq "") {
df4bf98e 1307 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n");
0b54c2e3 1308 } else {
df4bf98e 1309 emit_warning("${file}:$.", "expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n");
0b54c2e3 1310 }
52042e2d
MCC
1311 return;
1312 }
0b54c2e3 1313 $declaration_name = "(anonymous)" if ($declaration_name eq "");
52042e2d 1314
5cb5c31c
JB
1315 my %_members;
1316
463a0fdc 1317 $members =~ s/\s+$//;
1da177e4
LT
1318
1319 foreach my $arg (split ',', $members) {
1320 $arg =~ s/^\s*(\w+).*/$1/;
1321 push @parameterlist, $arg;
1322 if (!$parameterdescs{$arg}) {
3c308798 1323 $parameterdescs{$arg} = $undescribed;
85afe608 1324 if (show_warnings("enum", $declaration_name)) {
df4bf98e 1325 emit_warning("${file}:$.", "Enum value '$arg' not described in enum '$declaration_name'\n");
2defb272 1326 }
1da177e4 1327 }
5cb5c31c 1328 $_members{$arg} = 1;
1da177e4 1329 }
3c3b809e 1330
5cb5c31c
JB
1331 while (my ($k, $v) = each %parameterdescs) {
1332 if (!exists($_members{$k})) {
85afe608 1333 if (show_warnings("enum", $declaration_name)) {
df4bf98e 1334 emit_warning("${file}:$.", "Excess enum value '$k' description in '$declaration_name'\n");
2defb272 1335 }
5cb5c31c
JB
1336 }
1337 }
1338
1da177e4
LT
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 });
d38c8cfb 1349 } else {
d40e1e65 1350 print STDERR "${file}:$.: error: Cannot parse enum!\n";
1da177e4
LT
1351 ++$errors;
1352 }
1353}
1354
7d2c6b1e 1355my $typedef_type = qr { ((?:\s+[\w\*]+\b){1,8})\s* }x;
7efc6c42
MCC
1356my $typedef_ident = qr { \*?\s*(\w\S+)\s* }x;
1357my $typedef_args = qr { \s*\((.*)\); }x;
1358
1359my $typedef1 = qr { typedef$typedef_type\($typedef_ident\)$typedef_args }x;
1360my $typedef2 = qr { typedef$typedef_type$typedef_ident$typedef_args }x;
1361
1da177e4
LT
1362sub dump_typedef($$) {
1363 my $x = shift;
1364 my $file = shift;
1365
aeec46b9 1366 $x =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4 1367
7efc6c42
MCC
1368 # Parse function typedef prototypes
1369 if ($x =~ $typedef1 || $x =~ $typedef2) {
83766452
MCC
1370 $return_type = $1;
1371 $declaration_name = $2;
1372 my $args = $3;
6b80975c 1373 $return_type =~ s/^\s+//;
83766452 1374
52042e2d 1375 if ($identifier ne $declaration_name) {
df4bf98e 1376 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
52042e2d
MCC
1377 return;
1378 }
1379
151c468b 1380 create_parameterlist($args, ',', $file, $declaration_name);
1da177e4
LT
1381
1382 output_declaration($declaration_name,
83766452
MCC
1383 'function',
1384 {'function' => $declaration_name,
82801d06 1385 'typedef' => 1,
1da177e4 1386 'module' => $modulename,
83766452
MCC
1387 'functiontype' => $return_type,
1388 'parameterlist' => \@parameterlist,
1389 'parameterdescs' => \%parameterdescs,
1390 'parametertypes' => \%parametertypes,
1da177e4
LT
1391 'sectionlist' => \@sectionlist,
1392 'sections' => \%sections,
1393 'purpose' => $declaration_purpose
1394 });
83766452
MCC
1395 return;
1396 }
1397
1398 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1399 $x =~ s/\(*.\)\s*;$/;/;
1400 $x =~ s/\[*.\]\s*;$/;/;
1da177e4 1401 }
83766452
MCC
1402
1403 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
3a80a766
MCC
1404 $declaration_name = $1;
1405
52042e2d 1406 if ($identifier ne $declaration_name) {
df4bf98e 1407 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
52042e2d
MCC
1408 return;
1409 }
1410
3a80a766
MCC
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 }
1da177e4 1420 else {
d40e1e65 1421 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1da177e4
LT
1422 ++$errors;
1423 }
1424}
1425
a1d94aa5
RD
1426sub 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
151c468b 1434sub create_parameterlist($$$$) {
1da177e4
LT
1435 my $args = shift;
1436 my $splitter = shift;
1437 my $file = shift;
151c468b 1438 my $declaration_name = shift;
1da177e4
LT
1439 my $type;
1440 my $param;
1441
a6d3fe77 1442 # temporarily replace commas inside function pointer definition
e86bdb24
AS
1443 my $arg_expr = qr{\([^\),]+};
1444 while ($args =~ /$arg_expr,/) {
1445 $args =~ s/($arg_expr),/$1#/g;
1da177e4 1446 }
3c3b809e 1447
1da177e4
LT
1448 foreach my $arg (split($splitter, $args)) {
1449 # strip comments
1450 $arg =~ s/\/\*.*\*\///;
3c308798
RD
1451 # strip leading/trailing spaces
1452 $arg =~ s/^\s*//;
1da177e4
LT
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.
ed8348e2 1460 push_parameter($arg, "", "", $file);
00d62961 1461 } elsif ($arg =~ m/\(.+\)\s*\(/) {
1da177e4
LT
1462 # pointer-to-function
1463 $arg =~ tr/#/,/;
336ced2d 1464 $arg =~ m/[^\(]+\(\*?\s*([\w\[\]\.]*)\s*\)/;
1da177e4
LT
1465 $param = $1;
1466 $type = $arg;
00d62961 1467 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
a1d94aa5 1468 save_struct_actual($param);
ed8348e2 1469 push_parameter($param, $type, $arg, $file, $declaration_name);
aeec46b9 1470 } elsif ($arg) {
1da177e4
LT
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 }
884f2810
BP
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
1da177e4
LT
1488 unshift(@args, pop @first_arg);
1489 $type = join " ", @first_arg;
1490
1491 foreach $param (@args) {
1492 if ($param =~ m/^(\*+)\s*(.*)/) {
a1d94aa5 1493 save_struct_actual($2);
ed8348e2
MCC
1494
1495 push_parameter($2, "$type $1", $arg, $file, $declaration_name);
1da177e4
LT
1496 }
1497 elsif ($param =~ m/(.*?):(\d+)/) {
7b97887e 1498 if ($type ne "") { # skip unnamed bit-fields
a1d94aa5 1499 save_struct_actual($1);
ed8348e2 1500 push_parameter($1, "$type:$2", $arg, $file, $declaration_name)
7b97887e 1501 }
1da177e4
LT
1502 }
1503 else {
a1d94aa5 1504 save_struct_actual($param);
ed8348e2 1505 push_parameter($param, $type, $arg, $file, $declaration_name);
1da177e4
LT
1506 }
1507 }
1508 }
1509 }
1510}
1511
ed8348e2 1512sub push_parameter($$$$$) {
1da177e4
LT
1513 my $param = shift;
1514 my $type = shift;
ed8348e2 1515 my $org_arg = shift;
1da177e4 1516 my $file = shift;
151c468b 1517 my $declaration_name = shift;
1da177e4 1518
5f8c7c98
RD
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;
f9b5c530 1525 $param =~ s/[\[\)].*//;
1da177e4 1526
a6d3fe77 1527 if ($type eq "" && $param =~ /\.\.\.$/)
1da177e4 1528 {
c950a173
SF
1529 if (!$param =~ /\w\.\.\.$/) {
1530 # handles unnamed variable parameters
1531 $param = "...";
1532 }
43756e34
JN
1533 elsif ($param =~ /\w\.\.\.$/) {
1534 # for named variable parameters of the form `x...`, remove the dots
1535 $param =~ s/\.\.\.$//;
1536 }
ced69090
RD
1537 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1538 $parameterdescs{$param} = "variable arguments";
1539 }
1da177e4
LT
1540 }
1541 elsif ($type eq "" && ($param eq "" or $param eq "void"))
1542 {
1da177e4
LT
1543 $param="void";
1544 $parameterdescs{void} = "no arguments";
1545 }
134fe01b
RD
1546 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1547 # handle unnamed (anonymous) union or struct:
1548 {
1549 $type = $param;
5f8c7c98 1550 $param = "{unnamed_" . $param . "}";
134fe01b 1551 $parameterdescs{$param} = "anonymous\n";
5f8c7c98 1552 $anon_struct_union = 1;
134fe01b
RD
1553 }
1554
a6d3fe77 1555 # warn if parameter has no description
134fe01b
RD
1556 # (but ignore ones starting with # as these are not parameters
1557 # but inline preprocessor statements);
151c468b 1558 # Note: It will also ignore void params and unnamed structs/unions
f9b5c530 1559 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
151c468b 1560 $parameterdescs{$param} = $undescribed;
a6d3fe77 1561
be5cd20c 1562 if (show_warnings($type, $declaration_name) && $param !~ /\./) {
df4bf98e 1563 emit_warning("${file}:$.", "Function parameter or member '$param' not described in '$declaration_name'\n");
2defb272 1564 }
3c308798 1565 }
1da177e4 1566
25985edc 1567 # strip spaces from $param so that it is one continuous string
e34e7dbb
RD
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;
1da177e4 1576 push @parameterlist, $param;
ed8348e2
MCC
1577 $org_arg =~ s/\s\s+/ /g;
1578 $parametertypes{$param} = $org_arg;
1da177e4
LT
1579}
1580
1081de2d
MCC
1581sub check_sections($$$$$) {
1582 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
a1d94aa5
RD
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/\[.*\]//;
e86bdb24 1594 $prm_clean =~ s/$attribute//i;
e34e7dbb
RD
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
a1d94aa5
RD
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") {
df4bf98e 1611 emit_warning("${file}:$.",
a1d94aa5
RD
1612 "Excess function parameter " .
1613 "'$sects[$sx]' " .
df4bf98e 1614 "description in '$decl_name'\n");
a1d94aa5
RD
1615 }
1616 }
1617 }
1618}
1619
4092bac7
YB
1620##
1621# Checks the section describing the return value of a function.
1622sub 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 "") {
df4bf98e 1635 emit_warning("${file}:$.",
4092bac7 1636 "No description found for return value of " .
df4bf98e 1637 "'$declaration_name'\n");
4092bac7
YB
1638 }
1639}
1640
1da177e4
LT
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.
1645sub dump_function($$) {
1646 my $prototype = shift;
1647 my $file = shift;
cbb4d3e6 1648 my $noret = 0;
1da177e4 1649
5ef09c96 1650 print_lineno($new_start_line);
5eb6b4b3 1651
1da177e4
LT
1652 $prototype =~ s/^static +//;
1653 $prototype =~ s/^extern +//;
4dc3b16b 1654 $prototype =~ s/^asmlinkage +//;
1da177e4
LT
1655 $prototype =~ s/^inline +//;
1656 $prototype =~ s/^__inline__ +//;
32e79401
RD
1657 $prototype =~ s/^__inline +//;
1658 $prototype =~ s/^__always_inline +//;
1659 $prototype =~ s/^noinline +//;
74fc5c65 1660 $prototype =~ s/__init +//;
20072205 1661 $prototype =~ s/__init_or_module +//;
80342d48 1662 $prototype =~ s/__deprecated +//;
084aa001 1663 $prototype =~ s/__flatten +//;
270a0096 1664 $prototype =~ s/__meminit +//;
70c95b00 1665 $prototype =~ s/__must_check +//;
0df7c0e3 1666 $prototype =~ s/__weak +//;
0891f959 1667 $prototype =~ s/__sched +//;
95e760cb 1668 $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
a40a8a11 1669 $prototype =~ s/__alloc_size\s*\(\s*\d+\s*(?:,\s*\d+\s*)?\) +//;
cbb4d3e6 1670 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
084aa001 1671 $prototype =~ s/__attribute_const__ +//;
b1aaa546
PB
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;
1da177e4
LT
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)
9598f91f 1694 # - pci_match_device, __copy_to_user (long return type)
e86bdb24
AS
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+/) {
cbb4d3e6
HG
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;
e86bdb24
AS
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/) {
1da177e4
LT
1713 $return_type = $1;
1714 $declaration_name = $2;
1715 my $args = $3;
1716
151c468b 1717 create_parameterlist($args, ',', $file, $declaration_name);
1da177e4 1718 } else {
df4bf98e 1719 emit_warning("${file}:$.", "cannot understand function prototype: '$prototype'\n");
1da177e4
LT
1720 return;
1721 }
1722
52042e2d 1723 if ($identifier ne $declaration_name) {
df4bf98e 1724 emit_warning("${file}:$.", "expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n");
52042e2d
MCC
1725 return;
1726 }
1727
47bcacfd
MCC
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 }
4092bac7 1739
47bcacfd
MCC
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 }
1da177e4
LT
1770}
1771
1da177e4
LT
1772sub reset_state {
1773 $function = "";
1da177e4
LT
1774 %parameterdescs = ();
1775 %parametertypes = ();
1776 @parameterlist = ();
1777 %sections = ();
1778 @sectionlist = ();
a1d94aa5
RD
1779 $sectcheck = "";
1780 $struct_actual = "";
1da177e4 1781 $prototype = "";
3c3b809e 1782
48af606a
JN
1783 $state = STATE_NORMAL;
1784 $inline_doc_state = STATE_INLINE_NA;
1da177e4
LT
1785}
1786
56afb0f8
JB
1787sub tracepoint_munge($) {
1788 my $file = shift;
1789 my $tracepointname = 0;
1790 my $tracepointargs = 0;
1791
3a9089fd 1792 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
56afb0f8
JB
1793 $tracepointname = $1;
1794 }
3a9089fd
JB
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\((.*?)\)/) {
56afb0f8
JB
1803 $tracepointargs = $1;
1804 }
1805 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
df4bf98e
NS
1806 emit_warning("${file}:$.", "Unrecognized tracepoint format: \n".
1807 "$prototype\n");
56afb0f8
JB
1808 } else {
1809 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
52042e2d 1810 $identifier = "trace_$identifier";
56afb0f8
JB
1811 }
1812}
1813
b4870bc5
RD
1814sub syscall_munge() {
1815 my $void = 0;
1816
7c9aa015 1817 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
b4870bc5
RD
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
b7afa92b 1848sub process_proto_function($$) {
1da177e4
LT
1849 my $x = shift;
1850 my $file = shift;
1851
51f5a0c8
RD
1852 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1853
890c78c2 1854 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1da177e4
LT
1855 # do nothing
1856 }
1857 elsif ($x =~ /([^\{]*)/) {
3c308798 1858 $prototype .= $1;
1da177e4 1859 }
b4870bc5 1860
890c78c2 1861 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
3c308798 1862 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4
LT
1863 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1864 $prototype =~ s@^\s+@@gos; # strip leading spaces
7ae281b0
MCC
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
b4870bc5
RD
1870 if ($prototype =~ /SYSCALL_DEFINE/) {
1871 syscall_munge();
1872 }
3a9089fd
JB
1873 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1874 $prototype =~ /DEFINE_SINGLE_EVENT/)
1875 {
56afb0f8
JB
1876 tracepoint_munge($file);
1877 }
b4870bc5 1878 dump_function($prototype, $file);
1da177e4
LT
1879 reset_state();
1880 }
1881}
1882
b7afa92b 1883sub process_proto_type($$) {
1da177e4
LT
1884 my $x = shift;
1885 my $file = shift;
1886
1da177e4
LT
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
51f5a0c8
RD
1890 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1891
1da177e4
LT
1892 if ($x =~ /^#/) {
1893 # To distinguish preprocessor directive from regular declaration later.
1894 $x .= ";";
1895 }
1896
1897 while (1) {
673bb2df 1898 if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
463a0fdc
MH
1899 if( length $prototype ) {
1900 $prototype .= " "
1901 }
1da177e4
LT
1902 $prototype .= $1 . $2;
1903 ($2 eq '{') && $brcount++;
1904 ($2 eq '}') && $brcount--;
1905 if (($2 eq ';') && ($brcount == 0)) {
b9d97328 1906 dump_declaration($prototype, $file);
1da177e4 1907 reset_state();
3c308798 1908 last;
1da177e4
LT
1909 }
1910 $x = $3;
3c308798 1911 } else {
1da177e4
LT
1912 $prototype .= $x;
1913 last;
1914 }
1915 }
1916}
1917
6b5b55f6 1918
1ad560e4 1919sub map_filename($) {
2283a117 1920 my $file;
68f86662 1921 my ($orig_file) = @_;
1da177e4 1922
2283a117 1923 if (defined($ENV{'SRCTREE'})) {
68f86662 1924 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1ad560e4 1925 } else {
68f86662 1926 $file = $orig_file;
2283a117 1927 }
1ad560e4 1928
1da177e4
LT
1929 if (defined($source_map{$file})) {
1930 $file = $source_map{$file};
1931 }
1932
1ad560e4
JN
1933 return $file;
1934}
1935
88c2b57d
JN
1936sub 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/) {
eab795dd 1948 next if (defined($nosymbol_table{$2}));
88c2b57d
JN
1949 $function_table{$2} = 1;
1950 }
1951 }
1952
1953 close(IN);
1954}
1955
07048d13
JC
1956#
1957# Parsers for the various processing states.
1958#
1959# STATE_NORMAL: looking for the /** to begin everything.
1960#
1961sub 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
3cac2bc4
JC
1969#
1970# STATE_NAME: Looking for the "name - description" line
1971#
1972sub process_name($$) {
1973 my $file = shift;
1ad560e4 1974 my $descr;
3cac2bc4
JC
1975
1976 if (/$doc_block/o) {
1977 $state = STATE_DOCBLOCK;
1978 $contents = "";
5ef09c96 1979 $new_start_line = $.;
3cac2bc4
JC
1980
1981 if ( $1 eq "" ) {
1982 $section = $section_intro;
1983 } else {
1984 $section = $1;
1985 }
52042e2d 1986 } elsif (/$doc_decl/o) {
3cac2bc4 1987 $identifier = $1;
3e58e839 1988 my $is_kernel_comment = 0;
e86bdb24 1989 my $decl_start = qr{$doc_com};
f9bbc12c
AS
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{[-:].*};
e86bdb24 1994 if (/^$decl_start([\w\s]+?)$parenthesis?\s*$decl_end?$/) {
3cac2bc4
JC
1995 $identifier = $1;
1996 }
52042e2d
MCC
1997 if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) {
1998 $decl_type = $1;
1999 $identifier = $2;
3e58e839 2000 $is_kernel_comment = 1;
52042e2d 2001 }
f9bbc12c
AS
2002 # Look for foo() or static void foo() - description; or misspelt
2003 # identifier
e86bdb24
AS
2004 elsif (/^$decl_start$fn_type?(\w+)\s*$parenthesis?\s*$decl_end?$/ ||
2005 /^$decl_start$fn_type?(\w+.*)$parenthesis?\s*$decl_end$/) {
f9bbc12c
AS
2006 $identifier = $1;
2007 $decl_type = 'function';
2008 $identifier =~ s/^define\s+//;
2009 $is_kernel_comment = 1;
2010 }
52042e2d 2011 $identifier =~ s/\s+$//;
07048d13 2012
3cac2bc4
JC
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;
52042e2d 2019 if (/[-:](.*)/) {
3cac2bc4
JC
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
3e58e839 2031 if (!$is_kernel_comment) {
df4bf98e 2032 emit_warning("${file}:$.", "This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst\n$_");
3e58e839
AS
2033 $state = STATE_NORMAL;
2034 }
2035
3cac2bc4 2036 if (($declaration_purpose eq "") && $verbose) {
df4bf98e 2037 emit_warning("${file}:$.", "missing initial short description on line:\n$_");
3cac2bc4
JC
2038 }
2039
0b54c2e3 2040 if ($identifier eq "" && $decl_type ne "enum") {
df4bf98e 2041 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n$_");
52042e2d 2042 $state = STATE_NORMAL;
3cac2bc4
JC
2043 }
2044
2045 if ($verbose) {
52042e2d 2046 print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n";
3cac2bc4
JC
2047 }
2048 } else {
df4bf98e 2049 emit_warning("${file}:$.", "Cannot understand $_ on line $. - I thought it was a doc line\n");
3cac2bc4
JC
2050 $state = STATE_NORMAL;
2051 }
2052}
07048d13 2053
d742f24d
JC
2054
2055#
2056# STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
2057#
2058sub process_body($$) {
2059 my $file = shift;
2060
43756e34
JN
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) {
df4bf98e 2068 emit_warning("${file}:$.", "Variable macro arguments should be documented without dots\n");
43756e34
JN
2069 }
2070 }
2071
0d55d48b
MCC
2072 if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
2073 dump_section($file, $section, $contents);
2074 $section = $section_default;
5ef09c96 2075 $new_start_line = $.;
0d55d48b
MCC
2076 $contents = "";
2077 }
2078
d742f24d
JC
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) {
df4bf98e 2097 emit_warning("${file}:$.", "contents before sections\n");
d742f24d
JC
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:\.]+\*/') {
df4bf98e 2123 emit_warning("${file}:$.", "suspicious ending line: $_");
d742f24d
JC
2124 }
2125
2126 $prototype = "";
2127 $state = STATE_PROTO;
2128 $brcount = 0;
5ef09c96 2129 $new_start_line = $. + 1;
d742f24d 2130 } elsif (/$doc_content/) {
d742f24d 2131 if ($1 eq "") {
0d55d48b 2132 if ($section eq $section_context) {
d742f24d
JC
2133 dump_section($file, $section, $contents);
2134 $section = $section_default;
2135 $contents = "";
2136 $new_start_line = $.;
0d55d48b 2137 $state = STATE_BODY;
d742f24d 2138 } else {
0d55d48b
MCC
2139 if ($section ne $section_default) {
2140 $state = STATE_BODY_WITH_BLANK_LINE;
2141 } else {
2142 $state = STATE_BODY;
2143 }
d742f24d
JC
2144 $contents .= "\n";
2145 }
d742f24d
JC
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.
df4bf98e 2167 emit_warning("${file}:$.", "bad line: $_");
d742f24d
JC
2168 }
2169}
2170
2171
cc794812
JC
2172#
2173# STATE_PROTO: reading a function/whatever prototype.
2174#
2175sub 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
c17add56
JC
2197#
2198# STATE_DOCBLOCK: within a DOC: block.
2199#
2200sub 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#
2227sub 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;
df4bf98e 2261 emit_warning("${file}:$.", "Incorrect use of kernel-doc format: $_");
c17add56
JC
2262 }
2263 }
2264}
2265
cc794812 2266
1ad560e4
JN
2267sub process_file($) {
2268 my $file;
1ad560e4
JN
2269 my $initial_section_counter = $section_counter;
2270 my ($orig_file) = @_;
1ad560e4
JN
2271
2272 $file = map_filename($orig_file);
2273
dbe8ba00 2274 if (!open(IN_FILE,"<$file")) {
1da177e4
LT
2275 print STDERR "Error: Cannot open file $file\n";
2276 ++$errors;
2277 return;
2278 }
2279
a9e7314b
ID
2280 $. = 1;
2281
1da177e4 2282 $section_counter = 0;
dbe8ba00 2283 while (<IN_FILE>) {
65478428 2284 while (s/\\\s*$//) {
dbe8ba00 2285 $_ .= <IN_FILE>;
65478428 2286 }
7c9aa015
MCC
2287 # Replace tabs by spaces
2288 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
c17add56 2289 # Hand this line to the appropriate state handler
48af606a 2290 if ($state == STATE_NORMAL) {
07048d13 2291 process_normal();
3cac2bc4
JC
2292 } elsif ($state == STATE_NAME) {
2293 process_name($file, $_);
0d55d48b
MCC
2294 } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
2295 $state == STATE_BODY_WITH_BLANK_LINE) {
d742f24d 2296 process_body($file, $_);
48af606a 2297 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
c17add56 2298 process_inline($file, $_);
cc794812
JC
2299 } elsif ($state == STATE_PROTO) {
2300 process_proto($file, $_);
48af606a 2301 } elsif ($state == STATE_DOCBLOCK) {
c17add56 2302 process_docblock($file, $_);
3c308798 2303 }
1da177e4 2304 }
c17add56
JC
2305
2306 # Make sure we got something interesting.
b0d60bfb
JC
2307 if ($initial_section_counter == $section_counter && $
2308 output_mode ne "none") {
2309 if ($output_selection == OUTPUT_INCLUDE) {
df4bf98e 2310 emit_warning("${file}:1", "'$_' not found\n")
b0d60bfb 2311 for keys %function_table;
3a025e1d 2312 }
b0d60bfb 2313 else {
df4bf98e 2314 emit_warning("${file}:1", "no structured comments found\n");
e946c43a 2315 }
1da177e4 2316 }
dbe8ba00 2317 close IN_FILE;
1da177e4 2318}
8484baaa
RD
2319
2320
93351d41
MCC
2321if ($output_mode eq "rst") {
2322 get_sphinx_version() if (!$sphinx_major);
2323}
2324
8484baaa
RD
2325$kernelversion = get_kernel_version();
2326
2327# generate a sequence of code that will splice in highlighting information
2328# using the s// operator.
1ef06233 2329for (my $k = 0; $k < @highlights; $k++) {
4d732701
DCLP
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";
8484baaa
RD
2334}
2335
2336# Read the file that maps relative names to absolute names for
2337# separate source and object directories and for shadow trees.
2338if (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
88c2b57d
JN
2349if ($output_selection == OUTPUT_EXPORTED ||
2350 $output_selection == OUTPUT_INTERNAL) {
c9b2cfb3
JN
2351
2352 push(@export_file_list, @ARGV);
2353
88c2b57d
JN
2354 foreach (@export_file_list) {
2355 chomp;
2356 process_export_file($_);
2357 }
2358}
2359
8484baaa
RD
2360foreach (@ARGV) {
2361 chomp;
2362 process_file($_);
2363}
2364if ($verbose && $errors) {
2365 print STDERR "$errors errors\n";
2366}
2367if ($verbose && $warnings) {
2368 print STDERR "$warnings warnings\n";
2369}
2370
2c12c810
PLB
2371if ($Werror && $warnings) {
2372 print STDERR "$warnings warnings as Errors\n";
2373 exit($warnings);
2374} else {
2375 exit($output_mode eq "none" ? 0 : $errors)
2376}
2875f787
TW
2377
2378__END__
2379
2380=head1 OPTIONS
2381
2382=head2 Output format selection (mutually exclusive):
2383
2384=over 8
2385
2386=item -man
2387
2388Output troff manual page format.
2389
2390=item -rst
2391
2392Output reStructuredText format. This is the default.
2393
2394=item -none
2395
2396Do not output documentation, only warnings.
2397
2398=back
2399
dd803b04
TW
2400=head2 Output format modifiers
2401
2402=head3 reStructuredText only
2403
2404=over 8
2405
2406=item -sphinx-version VERSION
2407
2408Use the ReST C domain dialect compatible with a specific Sphinx Version.
2409
2410If not specified, kernel-doc will auto-detect using the sphinx-build version
2411found on PATH.
2412
2413=back
2414
9c77f108
TW
2415=head2 Output selection (mutually exclusive):
2416
2417=over 8
2418
2419=item -export
2420
2421Only output documentation for the symbols that have been exported using
2422EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() in any input FILE or -export-file FILE.
2423
2424=item -internal
2425
2426Only output documentation for the symbols that have NOT been exported using
2427EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() in any input FILE or -export-file FILE.
2428
2429=item -function NAME
2430
2431Only output documentation for the given function or DOC: section title.
2432All other functions and DOC: sections are ignored.
2433
2434May be specified multiple times.
2435
2436=item -nosymbol NAME
2437
2438Exclude the specified symbol from the output documentation.
2439
2440May be specified multiple times.
2441
2442=back
2443
c15de5a1
TW
2444=head2 Output selection modifiers:
2445
2446=over 8
2447
2448=item -no-doc-sections
2449
2450Do not output DOC: sections.
2451
2452=item -export-file FILE
2453
2454Specify an additional FILE in which to look for EXPORT_SYMBOL() and
2455EXPORT_SYMBOL_GPL().
2456
2457To be used with -export or -internal.
2458
2459May be specified multiple times.
2460
2461=back
2462
2463=head3 reStructuredText only
2464
2465=over 8
2466
2467=item -enable-lineno
2468
b79dfef0 2469Enable output of .. LINENO lines.
c15de5a1
TW
2470
2471=back
2472
834cf6b9
TW
2473=head2 Other parameters:
2474
2475=over 8
2476
2477=item -h, -help
2478
2479Print this help.
2480
2481=item -v
2482
2483Verbose output, more warnings and other information.
2484
2485=item -Werror
2486
2487Treat warnings as errors.
2488
2489=back
2490
2875f787 2491=cut