docs: it_IT: address invalid reference warnings
[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. ##
15## ##
16## This software falls under the GNU General Public License. ##
17## Please read the COPYING file for more information ##
18
1da177e4
LT
19# 18/01/2001 - Cleanups
20# Functions prototyped as foo(void) same as foo()
21# Stop eval'ing where we don't need to.
22# -- huggie@earth.li
23
24# 27/06/2001 - Allowed whitespace after initial "/**" and
25# allowed comments before function declarations.
26# -- Christian Kreibich <ck@whoop.org>
27
28# Still to do:
29# - add perldoc documentation
30# - Look more closely at some of the scarier bits :)
31
32# 26/05/2001 - Support for separate source and object trees.
33# Return error code.
34# Keith Owens <kaos@ocs.com.au>
35
36# 23/09/2001 - Added support for typedefs, structs, enums and unions
37# Support for Context section; can be terminated using empty line
38# Small fixes (like spaces vs. \s in regex)
39# -- Tim Jansen <tim@tjansen.de>
40
1b40c194
DL
41# 25/07/2012 - Added support for HTML5
42# -- Dan Luedtke <mail@danrl.de>
1da177e4 43
fadc0b31
JN
44sub usage {
45 my $message = <<"EOF";
46Usage: $0 [OPTION ...] FILE ...
47
48Read C language source or header FILEs, extract embedded documentation comments,
49and print formatted documentation to standard output.
50
51The documentation comments are identified by "/**" opening comment mark. See
857af3b7 52Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
fadc0b31
JN
53
54Output format selection (mutually exclusive):
fadc0b31 55 -man Output troff manual page format. This is the default.
c0d1b6ee 56 -rst Output reStructuredText format.
3a025e1d 57 -none Do not output documentation, only warnings.
fadc0b31
JN
58
59Output selection (mutually exclusive):
86ae2e38
JN
60 -export Only output documentation for symbols that have been
61 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
c9b2cfb3 62 in any input FILE or -export-file FILE.
86ae2e38
JN
63 -internal Only output documentation for symbols that have NOT been
64 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
c9b2cfb3 65 in any input FILE or -export-file FILE.
fadc0b31
JN
66 -function NAME Only output documentation for the given function(s)
67 or DOC: section title(s). All other functions and DOC:
68 sections are ignored. May be specified multiple times.
69 -nofunction NAME Do NOT output documentation for the given function(s);
70 only output documentation for the other functions and
71 DOC: sections. May be specified multiple times.
72
73Output selection modifiers:
74 -no-doc-sections Do not output DOC: sections.
0b0f5f29
DV
75 -enable-lineno Enable output of #define LINENO lines. Only works with
76 reStructuredText format.
88c2b57d
JN
77 -export-file FILE Specify an additional FILE in which to look for
78 EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with
79 -export or -internal. May be specified multiple times.
fadc0b31
JN
80
81Other parameters:
82 -v Verbose output, more warnings and other information.
83 -h Print this help.
84
85EOF
86 print $message;
87 exit 1;
88}
1da177e4
LT
89
90#
91# format of comments.
92# In the following table, (...)? signifies optional structure.
93# (...)* signifies 0 or more structure elements
94# /**
95# * function_name(:)? (- short description)?
96# (* @parameterx: (description of parameter x)?)*
97# (* a blank line)?
98# * (Description:)? (Description of function)?
99# * (section header: (section description)? )*
100# (*)?*/
101#
102# So .. the trivial example would be:
103#
104# /**
105# * my_function
b9d97328 106# */
1da177e4 107#
891dcd2f 108# If the Description: header tag is omitted, then there must be a blank line
1da177e4
LT
109# after the last parameter specification.
110# e.g.
111# /**
112# * my_function - does my stuff
113# * @my_arg: its mine damnit
114# *
3c3b809e 115# * Does my stuff explained.
1da177e4
LT
116# */
117#
118# or, could also use:
119# /**
120# * my_function - does my stuff
121# * @my_arg: its mine damnit
3c3b809e 122# * Description: Does my stuff explained.
1da177e4
LT
123# */
124# etc.
125#
b9d97328 126# Besides functions you can also write documentation for structs, unions,
3c3b809e
RD
127# enums and typedefs. Instead of the function name you must write the name
128# of the declaration; the struct/union/enum/typedef must always precede
129# the name. Nesting of declarations is not supported.
1da177e4
LT
130# Use the argument mechanism to document members or constants.
131# e.g.
132# /**
133# * struct my_struct - short description
134# * @a: first member
135# * @b: second member
3c3b809e 136# *
1da177e4
LT
137# * Longer description
138# */
139# struct my_struct {
140# int a;
141# int b;
aeec46b9
MW
142# /* private: */
143# int c;
1da177e4
LT
144# };
145#
146# All descriptions can be multiline, except the short function description.
3c3b809e 147#
a4c6ebed
DCLP
148# For really longs structs, you can also describe arguments inside the
149# body of the struct.
150# eg.
151# /**
152# * struct my_struct - short description
153# * @a: first member
154# * @b: second member
155# *
156# * Longer description
157# */
158# struct my_struct {
159# int a;
160# int b;
161# /**
162# * @c: This is longer description of C
163# *
164# * You can use paragraphs to describe arguments
165# * using this method.
166# */
167# int c;
168# };
169#
170# This should be use only for struct/enum members.
171#
3c3b809e
RD
172# You can also add additional sections. When documenting kernel functions you
173# should document the "Context:" of the function, e.g. whether the functions
1da177e4 174# can be called form interrupts. Unlike other sections you can end it with an
3c3b809e 175# empty line.
4092bac7
YB
176# A non-void function should have a "Return:" section describing the return
177# value(s).
3c3b809e 178# Example-sections should contain the string EXAMPLE so that they are marked
1da177e4
LT
179# appropriately in DocBook.
180#
181# Example:
182# /**
183# * user_function - function that can only be called in user context
184# * @a: some argument
185# * Context: !in_interrupt()
3c3b809e 186# *
1da177e4
LT
187# * Some description
188# * Example:
189# * user_function(22);
190# */
191# ...
192#
193#
194# All descriptive text is further processed, scanning for the following special
195# patterns, which are highlighted appropriately.
196#
197# 'funcname()' - function
198# '$ENVVAR' - environmental variable
199# '&struct_name' - name of a structure (up to two words including 'struct')
5267dd35 200# '&struct_name.member' - name of a structure member
1da177e4
LT
201# '@parameter' - name of a parameter
202# '%CONST' - name of a constant.
b97f193a 203# '``LITERAL``' - literal string without any spaces on it.
1da177e4 204
8484baaa
RD
205## init lots of data
206
1da177e4
LT
207my $errors = 0;
208my $warnings = 0;
5f8c7c98 209my $anon_struct_union = 0;
1da177e4
LT
210
211# match expressions used to find embedded type information
b97f193a
MCC
212my $type_constant = '\b``([^\`]+)``\b';
213my $type_constant2 = '\%([-_\w]+)';
1da177e4 214my $type_func = '(\w+)\(\)';
bfd228c7 215my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
ee2aa759 216my $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
5219f18a 217my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
346282db 218my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params
1da177e4 219my $type_env = '(\$\w+)';
df31175b
PB
220my $type_enum = '\&(enum\s*([_\w]+))';
221my $type_struct = '\&(struct\s*([_\w]+))';
222my $type_typedef = '\&(typedef\s*([_\w]+))';
223my $type_union = '\&(union\s*([_\w]+))';
5267dd35 224my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
df31175b 225my $type_fallback = '\&([_\w]+)';
f3341dcf 226my $type_member_func = $type_member . '\(\)';
1da177e4
LT
227
228# Output conversion substitutions.
229# One for each output format
230
1da177e4 231# these are pretty rough
4d732701
DCLP
232my @highlights_man = (
233 [$type_constant, "\$1"],
b97f193a 234 [$type_constant2, "\$1"],
4d732701 235 [$type_func, "\\\\fB\$1\\\\fP"],
df31175b 236 [$type_enum, "\\\\fI\$1\\\\fP"],
4d732701 237 [$type_struct, "\\\\fI\$1\\\\fP"],
df31175b
PB
238 [$type_typedef, "\\\\fI\$1\\\\fP"],
239 [$type_union, "\\\\fI\$1\\\\fP"],
5267dd35 240 [$type_param, "\\\\fI\$1\\\\fP"],
ee2aa759 241 [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
df31175b
PB
242 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
243 [$type_fallback, "\\\\fI\$1\\\\fP"]
4d732701 244 );
1da177e4
LT
245my $blankline_man = "";
246
c0d1b6ee
JC
247# rst-mode
248my @highlights_rst = (
249 [$type_constant, "``\$1``"],
b97f193a 250 [$type_constant2, "``\$1``"],
f3341dcf 251 # Note: need to escape () to avoid func matching later
5267dd35
PB
252 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
253 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
5219f18a 254 [$type_fp_param, "**\$1\\\\(\\\\)**"],
346282db 255 [$type_fp_param2, "**\$1\\\\(\\\\)**"],
344fdb28 256 [$type_func, "\$1()"],
df31175b
PB
257 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
258 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
259 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
260 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
a7291e7e 261 # in rst this can refer to any type
df31175b 262 [$type_fallback, "\\:c\\:type\\:`\$1`"],
ee2aa759 263 [$type_param_ref, "**\$1\$2**"]
c0d1b6ee
JC
264 );
265my $blankline_rst = "\n";
266
1da177e4 267# read arguments
b9d97328 268if ($#ARGV == -1) {
1da177e4
LT
269 usage();
270}
271
8484baaa
RD
272my $kernelversion;
273my $dohighlight = "";
274
1da177e4 275my $verbose = 0;
bdfe2be3 276my $output_mode = "rst";
e314ba31 277my $output_preformatted = 0;
4b44595a 278my $no_doc_sections = 0;
0b0f5f29 279my $enable_lineno = 0;
bdfe2be3
MCC
280my @highlights = @highlights_rst;
281my $blankline = $blankline_rst;
1da177e4 282my $modulename = "Kernel API";
b6c3f456
JN
283
284use constant {
285 OUTPUT_ALL => 0, # output all symbols and doc sections
286 OUTPUT_INCLUDE => 1, # output only specified symbols
287 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
288 OUTPUT_EXPORTED => 3, # output exported symbols
289 OUTPUT_INTERNAL => 4, # output non-exported symbols
290};
291my $output_selection = OUTPUT_ALL;
b0d60bfb 292my $show_not_found = 0; # No longer used
b2c4105b 293
88c2b57d
JN
294my @export_file_list;
295
b2c4105b
BH
296my @build_time;
297if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
298 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
299 @build_time = gmtime($seconds);
300} else {
301 @build_time = localtime;
302}
303
3c3b809e
RD
304my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
305 'July', 'August', 'September', 'October',
b2c4105b
BH
306 'November', 'December')[$build_time[4]] .
307 " " . ($build_time[5]+1900);
1da177e4 308
8484baaa 309# Essentially these are globals.
b9d97328
RD
310# They probably want to be tidied up, made more localised or something.
311# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
1da177e4 312# could cause "use of undefined value" or other bugs.
b9d97328 313my ($function, %function_table, %parametertypes, $declaration_purpose);
0b0f5f29 314my $declaration_start_line;
b9d97328 315my ($type, $declaration_name, $return_type);
1c32fd0c 316my ($newsection, $newcontents, $prototype, $brcount, %source_map);
1da177e4 317
bd0e88e5
RD
318if (defined($ENV{'KBUILD_VERBOSE'})) {
319 $verbose = "$ENV{'KBUILD_VERBOSE'}";
320}
321
3c3b809e 322# Generated docbook code is inserted in a template at a point where
1da177e4
LT
323# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
324# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
325# We keep track of number of generated entries and generate a dummy
326# if needs be to ensure the expanded template can be postprocessed
327# into html.
328my $section_counter = 0;
329
330my $lineprefix="";
331
48af606a
JN
332# Parser states
333use constant {
0d55d48b
MCC
334 STATE_NORMAL => 0, # normal code
335 STATE_NAME => 1, # looking for function name
336 STATE_BODY_MAYBE => 2, # body - or maybe more description
337 STATE_BODY => 3, # the body of the comment
338 STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
339 STATE_PROTO => 5, # scanning prototype
340 STATE_DOCBLOCK => 6, # documentation block
341 STATE_INLINE => 7, # gathering doc outside main block
48af606a 342};
1da177e4 343my $state;
850622df 344my $in_doc_sect;
d742f24d 345my $leading_space;
1da177e4 346
48af606a
JN
347# Inline documentation state
348use constant {
349 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
350 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
351 STATE_INLINE_TEXT => 2, # looking for member documentation
352 STATE_INLINE_END => 3, # done
353 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
354 # Spit a warning as it's not
355 # proper kernel-doc and ignore the rest.
356};
357my $inline_doc_state;
a4c6ebed 358
1da177e4
LT
359#declaration types: can be
360# 'function', 'struct', 'union', 'enum', 'typedef'
361my $decl_type;
362
1da177e4
LT
363my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
364my $doc_end = '\*/';
365my $doc_com = '\s*\*\s*';
12ae6779 366my $doc_com_body = '\s*\* ?';
b9d97328 367my $doc_decl = $doc_com . '(\w+)';
f624adef 368# @params and a strictly limited set of supported section names
76dd3e7b 369my $doc_sect = $doc_com .
ef00028b 370 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)';
12ae6779 371my $doc_content = $doc_com_body . '(.*)';
b9d97328 372my $doc_block = $doc_com . 'DOC:\s*(.*)?';
48af606a 373my $doc_inline_start = '^\s*/\*\*\s*$';
fe7bc493 374my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
48af606a 375my $doc_inline_end = '^\s*\*/\s*$';
0c9aa209 376my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
86ae2e38 377my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
1da177e4 378
1da177e4 379my %parameterdescs;
0b0f5f29 380my %parameterdesc_start_lines;
1da177e4
LT
381my @parameterlist;
382my %sections;
383my @sectionlist;
0b0f5f29 384my %section_start_lines;
a1d94aa5
RD
385my $sectcheck;
386my $struct_actual;
1da177e4
LT
387
388my $contents = "";
0b0f5f29 389my $new_start_line = 0;
f624adef
JN
390
391# the canonical section names. see also $doc_sect above.
1da177e4
LT
392my $section_default = "Description"; # default section
393my $section_intro = "Introduction";
394my $section = $section_default;
395my $section_context = "Context";
4092bac7 396my $section_return = "Return";
1da177e4
LT
397
398my $undescribed = "-- undescribed --";
399
400reset_state();
401
b031ac4e
MCC
402while ($ARGV[0] =~ m/^--?(.*)/) {
403 my $cmd = $1;
404 shift @ARGV;
405 if ($cmd eq "man") {
1da177e4 406 $output_mode = "man";
4d732701 407 @highlights = @highlights_man;
1da177e4 408 $blankline = $blankline_man;
b031ac4e 409 } elsif ($cmd eq "rst") {
c0d1b6ee
JC
410 $output_mode = "rst";
411 @highlights = @highlights_rst;
412 $blankline = $blankline_rst;
b031ac4e 413 } elsif ($cmd eq "none") {
3a025e1d 414 $output_mode = "none";
b031ac4e 415 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
1da177e4 416 $modulename = shift @ARGV;
b031ac4e 417 } elsif ($cmd eq "function") { # to only output specific functions
b6c3f456 418 $output_selection = OUTPUT_INCLUDE;
1da177e4
LT
419 $function = shift @ARGV;
420 $function_table{$function} = 1;
b031ac4e 421 } elsif ($cmd eq "nofunction") { # output all except specific functions
b6c3f456 422 $output_selection = OUTPUT_EXCLUDE;
1da177e4
LT
423 $function = shift @ARGV;
424 $function_table{$function} = 1;
b031ac4e 425 } elsif ($cmd eq "export") { # only exported symbols
b6c3f456 426 $output_selection = OUTPUT_EXPORTED;
da9726ec 427 %function_table = ();
b031ac4e 428 } elsif ($cmd eq "internal") { # only non-exported symbols
b6c3f456 429 $output_selection = OUTPUT_INTERNAL;
da9726ec 430 %function_table = ();
b031ac4e 431 } elsif ($cmd eq "export-file") {
88c2b57d
JN
432 my $file = shift @ARGV;
433 push(@export_file_list, $file);
b031ac4e 434 } elsif ($cmd eq "v") {
1da177e4 435 $verbose = 1;
b031ac4e 436 } elsif (($cmd eq "h") || ($cmd eq "help")) {
1da177e4 437 usage();
b031ac4e 438 } elsif ($cmd eq 'no-doc-sections') {
4b44595a 439 $no_doc_sections = 1;
b031ac4e 440 } elsif ($cmd eq 'enable-lineno') {
0b0f5f29 441 $enable_lineno = 1;
b031ac4e 442 } elsif ($cmd eq 'show-not-found') {
b0d60bfb 443 $show_not_found = 1; # A no-op but don't fail
b031ac4e
MCC
444 } else {
445 # Unknown argument
446 usage();
1da177e4
LT
447 }
448}
449
8484baaa
RD
450# continue execution near EOF;
451
53f049fa
BP
452# get kernel version from env
453sub get_kernel_version() {
1b9bc22d 454 my $version = 'unknown kernel version';
53f049fa
BP
455
456 if (defined($ENV{'KERNELVERSION'})) {
457 $version = $ENV{'KERNELVERSION'};
458 }
459 return $version;
460}
1da177e4 461
0b0f5f29
DV
462#
463sub print_lineno {
464 my $lineno = shift;
465 if ($enable_lineno && defined($lineno)) {
466 print "#define LINENO " . $lineno . "\n";
467 }
468}
1da177e4
LT
469##
470# dumps section contents to arrays/hashes intended for that purpose.
471#
472sub dump_section {
94dc7ad5 473 my $file = shift;
1da177e4
LT
474 my $name = shift;
475 my $contents = join "\n", @_;
476
13901ef2 477 if ($name =~ m/$type_param/) {
1da177e4
LT
478 $name = $1;
479 $parameterdescs{$name} = $contents;
a1d94aa5 480 $sectcheck = $sectcheck . $name . " ";
0b0f5f29
DV
481 $parameterdesc_start_lines{$name} = $new_start_line;
482 $new_start_line = 0;
ced69090 483 } elsif ($name eq "@\.\.\.") {
ced69090
RD
484 $name = "...";
485 $parameterdescs{$name} = $contents;
a1d94aa5 486 $sectcheck = $sectcheck . $name . " ";
0b0f5f29
DV
487 $parameterdesc_start_lines{$name} = $new_start_line;
488 $new_start_line = 0;
1da177e4 489 } else {
94dc7ad5 490 if (defined($sections{$name}) && ($sections{$name} ne "")) {
95b6be9d
JN
491 # Only warn on user specified duplicate section names.
492 if ($name ne $section_default) {
493 print STDERR "${file}:$.: warning: duplicate section name '$name'\n";
494 ++$warnings;
495 }
32217761
JN
496 $sections{$name} .= $contents;
497 } else {
498 $sections{$name} = $contents;
499 push @sectionlist, $name;
0b0f5f29
DV
500 $section_start_lines{$name} = $new_start_line;
501 $new_start_line = 0;
94dc7ad5 502 }
1da177e4
LT
503 }
504}
505
b112e0f7
JB
506##
507# dump DOC: section after checking that it should go out
508#
509sub dump_doc_section {
94dc7ad5 510 my $file = shift;
b112e0f7
JB
511 my $name = shift;
512 my $contents = join "\n", @_;
513
4b44595a
JB
514 if ($no_doc_sections) {
515 return;
516 }
517
b6c3f456
JN
518 if (($output_selection == OUTPUT_ALL) ||
519 ($output_selection == OUTPUT_INCLUDE &&
520 defined($function_table{$name})) ||
521 ($output_selection == OUTPUT_EXCLUDE &&
522 !defined($function_table{$name})))
b112e0f7 523 {
94dc7ad5 524 dump_section($file, $name, $contents);
b112e0f7
JB
525 output_blockhead({'sectionlist' => \@sectionlist,
526 'sections' => \%sections,
527 'module' => $modulename,
b6c3f456 528 'content-only' => ($output_selection != OUTPUT_ALL), });
b112e0f7
JB
529 }
530}
531
1da177e4
LT
532##
533# output function
534#
535# parameterdescs, a hash.
536# function => "function name"
537# parameterlist => @list of parameters
538# parameterdescs => %parameter descriptions
539# sectionlist => @list of sections
a21217da 540# sections => %section descriptions
3c3b809e 541#
1da177e4
LT
542
543sub output_highlight {
544 my $contents = join "\n",@_;
545 my $line;
546
547# DEBUG
548# if (!defined $contents) {
549# use Carp;
550# confess "output_highlight got called with no args?\n";
551# }
552
3eb014a1 553# print STDERR "contents b4:$contents\n";
1da177e4
LT
554 eval $dohighlight;
555 die $@ if $@;
3eb014a1
RD
556# print STDERR "contents af:$contents\n";
557
1da177e4 558 foreach $line (split "\n", $contents) {
12ae6779
DS
559 if (! $output_preformatted) {
560 $line =~ s/^\s*//;
561 }
3c308798 562 if ($line eq ""){
e314ba31 563 if (! $output_preformatted) {
0bba924c 564 print $lineprefix, $blankline;
e314ba31 565 }
1da177e4 566 } else {
cdccb316
RD
567 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
568 print "\\&$line";
569 } else {
570 print $lineprefix, $line;
571 }
1da177e4
LT
572 }
573 print "\n";
574 }
575}
576
1da177e4
LT
577##
578# output function in man
579sub output_function_man(%) {
580 my %args = %{$_[0]};
581 my ($parameter, $section);
582 my $count;
583
584 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
585
586 print ".SH NAME\n";
b9d97328 587 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
588
589 print ".SH SYNOPSIS\n";
a21217da 590 if ($args{'functiontype'} ne "") {
b9d97328 591 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
a21217da 592 } else {
b9d97328 593 print ".B \"" . $args{'function'} . "\n";
a21217da 594 }
1da177e4
LT
595 $count = 0;
596 my $parenth = "(";
597 my $post = ",";
598 foreach my $parameter (@{$args{'parameterlist'}}) {
599 if ($count == $#{$args{'parameterlist'}}) {
600 $post = ");";
601 }
602 $type = $args{'parametertypes'}{$parameter};
603 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
604 # pointer-to-function
b9d97328 605 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
1da177e4
LT
606 } else {
607 $type =~ s/([^\*])$/$1 /;
b9d97328 608 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
1da177e4
LT
609 }
610 $count++;
611 $parenth = "";
612 }
613
614 print ".SH ARGUMENTS\n";
615 foreach $parameter (@{$args{'parameterlist'}}) {
616 my $parameter_name = $parameter;
617 $parameter_name =~ s/\[.*//;
618
b9d97328 619 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
620 output_highlight($args{'parameterdescs'}{$parameter_name});
621 }
622 foreach $section (@{$args{'sectionlist'}}) {
623 print ".SH \"", uc $section, "\"\n";
624 output_highlight($args{'sections'}{$section});
625 }
626}
627
628##
629# output enum in man
630sub output_enum_man(%) {
631 my %args = %{$_[0]};
632 my ($parameter, $section);
633 my $count;
634
635 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
636
637 print ".SH NAME\n";
b9d97328 638 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
639
640 print ".SH SYNOPSIS\n";
b9d97328 641 print "enum " . $args{'enum'} . " {\n";
1da177e4
LT
642 $count = 0;
643 foreach my $parameter (@{$args{'parameterlist'}}) {
3c308798 644 print ".br\n.BI \" $parameter\"\n";
1da177e4
LT
645 if ($count == $#{$args{'parameterlist'}}) {
646 print "\n};\n";
647 last;
648 }
649 else {
650 print ", \n.br\n";
651 }
652 $count++;
653 }
654
655 print ".SH Constants\n";
656 foreach $parameter (@{$args{'parameterlist'}}) {
657 my $parameter_name = $parameter;
658 $parameter_name =~ s/\[.*//;
659
b9d97328 660 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
661 output_highlight($args{'parameterdescs'}{$parameter_name});
662 }
663 foreach $section (@{$args{'sectionlist'}}) {
664 print ".SH \"$section\"\n";
665 output_highlight($args{'sections'}{$section});
666 }
667}
668
669##
670# output struct in man
671sub output_struct_man(%) {
672 my %args = %{$_[0]};
673 my ($parameter, $section);
674
b9d97328 675 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
1da177e4
LT
676
677 print ".SH NAME\n";
b9d97328 678 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
1da177e4 679
8ad72163
MCC
680 my $declaration = $args{'definition'};
681 $declaration =~ s/\t/ /g;
682 $declaration =~ s/\n/"\n.br\n.BI \"/g;
1da177e4 683 print ".SH SYNOPSIS\n";
b9d97328 684 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
8ad72163 685 print ".BI \"$declaration\n};\n.br\n\n";
1da177e4 686
c51d3dac 687 print ".SH Members\n";
1da177e4
LT
688 foreach $parameter (@{$args{'parameterlist'}}) {
689 ($parameter =~ /^#/) && next;
690
691 my $parameter_name = $parameter;
692 $parameter_name =~ s/\[.*//;
693
3c308798 694 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
b9d97328 695 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
696 output_highlight($args{'parameterdescs'}{$parameter_name});
697 }
698 foreach $section (@{$args{'sectionlist'}}) {
699 print ".SH \"$section\"\n";
700 output_highlight($args{'sections'}{$section});
701 }
702}
703
704##
705# output typedef in man
706sub output_typedef_man(%) {
707 my %args = %{$_[0]};
708 my ($parameter, $section);
709
710 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
711
712 print ".SH NAME\n";
b9d97328 713 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
714
715 foreach $section (@{$args{'sectionlist'}}) {
716 print ".SH \"$section\"\n";
717 output_highlight($args{'sections'}{$section});
718 }
719}
720
b112e0f7 721sub output_blockhead_man(%) {
1da177e4
LT
722 my %args = %{$_[0]};
723 my ($parameter, $section);
724 my $count;
725
726 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
727
728 foreach $section (@{$args{'sectionlist'}}) {
729 print ".SH \"$section\"\n";
730 output_highlight($args{'sections'}{$section});
731 }
732}
733
c0d1b6ee
JC
734##
735# output in restructured text
736#
737
738#
739# This could use some work; it's used to output the DOC: sections, and
740# starts by putting out the name of the doc section itself, but that tends
741# to duplicate a header already in the template file.
742#
743sub output_blockhead_rst(%) {
744 my %args = %{$_[0]};
745 my ($parameter, $section);
746
747 foreach $section (@{$args{'sectionlist'}}) {
9e72184b
JN
748 if ($output_selection != OUTPUT_INCLUDE) {
749 print "**$section**\n\n";
750 }
0b0f5f29 751 print_lineno($section_start_lines{$section});
c0d1b6ee
JC
752 output_highlight_rst($args{'sections'}{$section});
753 print "\n";
754 }
755}
756
af250290
JC
757#
758# Apply the RST highlights to a sub-block of text.
76dd3e7b 759#
af250290
JC
760sub highlight_block($) {
761 # The dohighlight kludge requires the text be called $contents
762 my $contents = shift;
c0d1b6ee
JC
763 eval $dohighlight;
764 die $@ if $@;
af250290
JC
765 return $contents;
766}
c0d1b6ee 767
af250290
JC
768#
769# Regexes used only here.
770#
771my $sphinx_literal = '^[^.].*::$';
772my $sphinx_cblock = '^\.\.\ +code-block::';
773
774sub output_highlight_rst {
775 my $input = join "\n",@_;
776 my $output = "";
777 my $line;
778 my $in_literal = 0;
779 my $litprefix;
780 my $block = "";
781
782 foreach $line (split "\n",$input) {
783 #
784 # If we're in a literal block, see if we should drop out
785 # of it. Otherwise pass the line straight through unmunged.
786 #
787 if ($in_literal) {
788 if (! ($line =~ /^\s*$/)) {
789 #
790 # If this is the first non-blank line in a literal
791 # block we need to figure out what the proper indent is.
792 #
793 if ($litprefix eq "") {
794 $line =~ /^(\s*)/;
795 $litprefix = '^' . $1;
796 $output .= $line . "\n";
797 } elsif (! ($line =~ /$litprefix/)) {
798 $in_literal = 0;
799 } else {
800 $output .= $line . "\n";
801 }
802 } else {
803 $output .= $line . "\n";
804 }
805 }
806 #
807 # Not in a literal block (or just dropped out)
808 #
809 if (! $in_literal) {
810 $block .= $line . "\n";
811 if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
812 $in_literal = 1;
813 $litprefix = "";
814 $output .= highlight_block($block);
815 $block = ""
816 }
817 }
818 }
819
820 if ($block) {
821 $output .= highlight_block($block);
822 }
823 foreach $line (split "\n", $output) {
830066a7 824 print $lineprefix . $line . "\n";
c0d1b6ee
JC
825 }
826}
827
828sub output_function_rst(%) {
829 my %args = %{$_[0]};
830 my ($parameter, $section);
c099ff69 831 my $oldprefix = $lineprefix;
82801d06
MCC
832 my $start = "";
833
834 if ($args{'typedef'}) {
835 print ".. c:type:: ". $args{'function'} . "\n\n";
836 print_lineno($declaration_start_line);
837 print " **Typedef**: ";
838 $lineprefix = "";
839 output_highlight_rst($args{'purpose'});
840 $start = "\n\n**Syntax**\n\n ``";
841 } else {
842 print ".. c:function:: ";
843 }
c0d1b6ee 844 if ($args{'functiontype'} ne "") {
82801d06 845 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
c0d1b6ee 846 } else {
82801d06 847 $start .= $args{'function'} . " (";
c0d1b6ee
JC
848 }
849 print $start;
850
851 my $count = 0;
852 foreach my $parameter (@{$args{'parameterlist'}}) {
853 if ($count ne 0) {
854 print ", ";
855 }
856 $count++;
857 $type = $args{'parametertypes'}{$parameter};
a88b1672 858
c0d1b6ee
JC
859 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
860 # pointer-to-function
e8f4ba83 861 print $1 . $parameter . ") (" . $2 . ")";
c0d1b6ee
JC
862 } else {
863 print $type . " " . $parameter;
864 }
865 }
82801d06
MCC
866 if ($args{'typedef'}) {
867 print ");``\n\n";
868 } else {
869 print ")\n\n";
870 print_lineno($declaration_start_line);
871 $lineprefix = " ";
872 output_highlight_rst($args{'purpose'});
873 print "\n";
874 }
c0d1b6ee 875
ecbcfba1
JN
876 print "**Parameters**\n\n";
877 $lineprefix = " ";
c0d1b6ee
JC
878 foreach $parameter (@{$args{'parameterlist'}}) {
879 my $parameter_name = $parameter;
ada5f446 880 $parameter_name =~ s/\[.*//;
c0d1b6ee
JC
881 $type = $args{'parametertypes'}{$parameter};
882
883 if ($type ne "") {
ecbcfba1 884 print "``$type $parameter``\n";
c0d1b6ee 885 } else {
ecbcfba1 886 print "``$parameter``\n";
c0d1b6ee 887 }
0b0f5f29
DV
888
889 print_lineno($parameterdesc_start_lines{$parameter_name});
890
5e64fa9c
JN
891 if (defined($args{'parameterdescs'}{$parameter_name}) &&
892 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
c0d1b6ee 893 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee 894 } else {
d4b08e0c 895 print " *undescribed*\n";
c0d1b6ee
JC
896 }
897 print "\n";
898 }
c099ff69
JN
899
900 $lineprefix = $oldprefix;
c0d1b6ee
JC
901 output_section_rst(@_);
902}
903
904sub output_section_rst(%) {
905 my %args = %{$_[0]};
906 my $section;
907 my $oldprefix = $lineprefix;
ecbcfba1 908 $lineprefix = "";
c0d1b6ee
JC
909
910 foreach $section (@{$args{'sectionlist'}}) {
ecbcfba1 911 print "**$section**\n\n";
0b0f5f29 912 print_lineno($section_start_lines{$section});
c0d1b6ee
JC
913 output_highlight_rst($args{'sections'}{$section});
914 print "\n";
915 }
916 print "\n";
917 $lineprefix = $oldprefix;
918}
919
920sub output_enum_rst(%) {
921 my %args = %{$_[0]};
922 my ($parameter);
c099ff69 923 my $oldprefix = $lineprefix;
c0d1b6ee 924 my $count;
c0d1b6ee 925 my $name = "enum " . $args{'enum'};
62850976
JN
926
927 print "\n\n.. c:type:: " . $name . "\n\n";
0b0f5f29 928 print_lineno($declaration_start_line);
c099ff69
JN
929 $lineprefix = " ";
930 output_highlight_rst($args{'purpose'});
931 print "\n";
c0d1b6ee 932
ecbcfba1
JN
933 print "**Constants**\n\n";
934 $lineprefix = " ";
c0d1b6ee 935 foreach $parameter (@{$args{'parameterlist'}}) {
ecbcfba1 936 print "``$parameter``\n";
c0d1b6ee
JC
937 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
938 output_highlight_rst($args{'parameterdescs'}{$parameter});
939 } else {
d4b08e0c 940 print " *undescribed*\n";
c0d1b6ee
JC
941 }
942 print "\n";
943 }
c099ff69 944
c0d1b6ee
JC
945 $lineprefix = $oldprefix;
946 output_section_rst(@_);
947}
948
949sub output_typedef_rst(%) {
950 my %args = %{$_[0]};
951 my ($parameter);
c099ff69 952 my $oldprefix = $lineprefix;
c0d1b6ee
JC
953 my $name = "typedef " . $args{'typedef'};
954
62850976 955 print "\n\n.. c:type:: " . $name . "\n\n";
0b0f5f29 956 print_lineno($declaration_start_line);
c099ff69
JN
957 $lineprefix = " ";
958 output_highlight_rst($args{'purpose'});
959 print "\n";
c0d1b6ee 960
c099ff69 961 $lineprefix = $oldprefix;
c0d1b6ee
JC
962 output_section_rst(@_);
963}
964
965sub output_struct_rst(%) {
966 my %args = %{$_[0]};
967 my ($parameter);
c099ff69 968 my $oldprefix = $lineprefix;
c0d1b6ee
JC
969 my $name = $args{'type'} . " " . $args{'struct'};
970
62850976 971 print "\n\n.. c:type:: " . $name . "\n\n";
0b0f5f29 972 print_lineno($declaration_start_line);
c099ff69
JN
973 $lineprefix = " ";
974 output_highlight_rst($args{'purpose'});
975 print "\n";
c0d1b6ee 976
ecbcfba1
JN
977 print "**Definition**\n\n";
978 print "::\n\n";
8ad72163
MCC
979 my $declaration = $args{'definition'};
980 $declaration =~ s/\t/ /g;
981 print " " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration };\n\n";
c0d1b6ee 982
ecbcfba1
JN
983 print "**Members**\n\n";
984 $lineprefix = " ";
c0d1b6ee
JC
985 foreach $parameter (@{$args{'parameterlist'}}) {
986 ($parameter =~ /^#/) && next;
987
988 my $parameter_name = $parameter;
989 $parameter_name =~ s/\[.*//;
990
991 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
992 $type = $args{'parametertypes'}{$parameter};
0b0f5f29 993 print_lineno($parameterdesc_start_lines{$parameter_name});
6d232c80 994 print "``" . $parameter . "``\n";
c0d1b6ee 995 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee
JC
996 print "\n";
997 }
998 print "\n";
c099ff69
JN
999
1000 $lineprefix = $oldprefix;
c0d1b6ee
JC
1001 output_section_rst(@_);
1002}
1003
3a025e1d
MW
1004## none mode output functions
1005
1006sub output_function_none(%) {
1007}
1008
1009sub output_enum_none(%) {
1010}
1011
1012sub output_typedef_none(%) {
1013}
1014
1015sub output_struct_none(%) {
1016}
1017
1018sub output_blockhead_none(%) {
1019}
1020
1da177e4 1021##
27205744
RD
1022# generic output function for all types (function, struct/union, typedef, enum);
1023# calls the generated, variable output_ function name based on
1024# functype and output_mode
1da177e4
LT
1025sub output_declaration {
1026 no strict 'refs';
1027 my $name = shift;
1028 my $functype = shift;
1029 my $func = "output_${functype}_$output_mode";
b6c3f456
JN
1030 if (($output_selection == OUTPUT_ALL) ||
1031 (($output_selection == OUTPUT_INCLUDE ||
1032 $output_selection == OUTPUT_EXPORTED) &&
1033 defined($function_table{$name})) ||
1034 (($output_selection == OUTPUT_EXCLUDE ||
1035 $output_selection == OUTPUT_INTERNAL) &&
1036 !($functype eq "function" && defined($function_table{$name}))))
1da177e4 1037 {
3c308798 1038 &$func(@_);
1da177e4
LT
1039 $section_counter++;
1040 }
1041}
1042
1043##
27205744 1044# generic output function - calls the right one based on current output mode.
b112e0f7 1045sub output_blockhead {
1da177e4 1046 no strict 'refs';
b9d97328 1047 my $func = "output_blockhead_" . $output_mode;
1da177e4
LT
1048 &$func(@_);
1049 $section_counter++;
1050}
1051
1052##
3c3b809e 1053# takes a declaration (struct, union, enum, typedef) and
1da177e4
LT
1054# invokes the right handler. NOT called for functions.
1055sub dump_declaration($$) {
1056 no strict 'refs';
1057 my ($prototype, $file) = @_;
b9d97328 1058 my $func = "dump_" . $decl_type;
1da177e4
LT
1059 &$func(@_);
1060}
1061
1062sub dump_union($$) {
1063 dump_struct(@_);
1064}
1065
1066sub dump_struct($$) {
1067 my $x = shift;
1068 my $file = shift;
1069
f861537d 1070 if ($x =~ /(struct|union)\s+(\w+)\s*\{(.*)\}(\s*(__packed|__aligned|____cacheline_aligned_in_smp|__attribute__\s*\(\([a-z0-9,_\s\(\)]*\)\)))*/) {
5cb5c31c 1071 my $decl_type = $1;
3c308798
RD
1072 $declaration_name = $2;
1073 my $members = $3;
1da177e4 1074
aeec46b9 1075 # ignore members marked private:
0d8c39e6
MCC
1076 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1077 $members =~ s/\/\*\s*private:.*//gosi;
aeec46b9
MW
1078 # strip comments:
1079 $members =~ s/\/\*.*?\*\///gos;
ef5da59f 1080 # strip attributes
2b5f78e5
AA
1081 $members =~ s/\s*__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)/ /gi;
1082 $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
1083 $members =~ s/\s*__packed\s*/ /gos;
1084 $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
f861537d 1085 $members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
b22b5a9e 1086 # replace DECLARE_BITMAP
45005b27 1087 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
1cb566ba 1088 # replace DECLARE_HASHTABLE
45005b27
MCC
1089 $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
1090 # replace DECLARE_KFIFO
1091 $members =~ s/DECLARE_KFIFO\s*\(([^,)]+),\s*([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
1092 # replace DECLARE_KFIFO_PTR
1093 $members =~ s/DECLARE_KFIFO_PTR\s*\(([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
aeec46b9 1094
8ad72163
MCC
1095 my $declaration = $members;
1096
1097 # Split nested struct/union elements as newer ones
84ce5b98
MCC
1098 while ($members =~ m/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/) {
1099 my $newmember;
1100 my $maintype = $1;
1101 my $ids = $4;
1102 my $content = $3;
1103 foreach my $id(split /,/, $ids) {
1104 $newmember .= "$maintype $id; ";
1105
8ad72163 1106 $id =~ s/[:\[].*//;
84ce5b98 1107 $id =~ s/^\s*\**(\S+)\s*/$1/;
8ad72163
MCC
1108 foreach my $arg (split /;/, $content) {
1109 next if ($arg =~ m/^\s*$/);
7c0d7e87
MCC
1110 if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) {
1111 # pointer-to-function
1112 my $type = $1;
1113 my $name = $2;
1114 my $extra = $3;
1115 next if (!$name);
1116 if ($id =~ m/^\s*$/) {
1117 # anonymous struct/union
84ce5b98 1118 $newmember .= "$type$name$extra; ";
7c0d7e87 1119 } else {
84ce5b98 1120 $newmember .= "$type$id.$name$extra; ";
7c0d7e87 1121 }
8ad72163 1122 } else {
84ce5b98
MCC
1123 my $type;
1124 my $names;
1125 $arg =~ s/^\s+//;
1126 $arg =~ s/\s+$//;
1127 # Handle bitmaps
1128 $arg =~ s/:\s*\d+\s*//g;
1129 # Handle arrays
d404d579 1130 $arg =~ s/\[.*\]//g;
84ce5b98
MCC
1131 # The type may have multiple words,
1132 # and multiple IDs can be defined, like:
1133 # const struct foo, *bar, foobar
1134 # So, we remove spaces when parsing the
1135 # names, in order to match just names
1136 # and commas for the names
1137 $arg =~ s/\s*,\s*/,/g;
1138 if ($arg =~ m/(.*)\s+([\S+,]+)/) {
1139 $type = $1;
1140 $names = $2;
7c0d7e87 1141 } else {
84ce5b98
MCC
1142 $newmember .= "$arg; ";
1143 next;
1144 }
1145 foreach my $name (split /,/, $names) {
1146 $name =~ s/^\s*\**(\S+)\s*/$1/;
1147 next if (($name =~ m/^\s*$/));
1148 if ($id =~ m/^\s*$/) {
1149 # anonymous struct/union
1150 $newmember .= "$type $name; ";
1151 } else {
1152 $newmember .= "$type $id.$name; ";
1153 }
7c0d7e87 1154 }
8ad72163
MCC
1155 }
1156 }
84ce5b98 1157 }
673bb2df 1158 $members =~ s/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/$newmember/;
84ce5b98 1159 }
8ad72163
MCC
1160
1161 # Ignore other nested elements, like enums
673bb2df 1162 $members =~ s/(\{[^\{\}]*\})//g;
8ad72163 1163
151c468b 1164 create_parameterlist($members, ';', $file, $declaration_name);
1081de2d 1165 check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
1da177e4 1166
8ad72163 1167 # Adjust declaration for better display
673bb2df
BH
1168 $declaration =~ s/([\{;])/$1\n/g;
1169 $declaration =~ s/\}\s+;/};/g;
8ad72163 1170 # Better handle inlined enums
673bb2df 1171 do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
8ad72163
MCC
1172
1173 my @def_args = split /\n/, $declaration;
1174 my $level = 1;
1175 $declaration = "";
1176 foreach my $clause (@def_args) {
1177 $clause =~ s/^\s+//;
1178 $clause =~ s/\s+$//;
1179 $clause =~ s/\s+/ /;
1180 next if (!$clause);
673bb2df 1181 $level-- if ($clause =~ m/(\})/ && $level > 1);
8ad72163
MCC
1182 if (!($clause =~ m/^\s*#/)) {
1183 $declaration .= "\t" x $level;
1184 }
1185 $declaration .= "\t" . $clause . "\n";
673bb2df 1186 $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
8ad72163 1187 }
1da177e4
LT
1188 output_declaration($declaration_name,
1189 'struct',
1190 {'struct' => $declaration_name,
1191 'module' => $modulename,
8ad72163 1192 'definition' => $declaration,
1da177e4
LT
1193 'parameterlist' => \@parameterlist,
1194 'parameterdescs' => \%parameterdescs,
1195 'parametertypes' => \%parametertypes,
1196 'sectionlist' => \@sectionlist,
1197 'sections' => \%sections,
1198 'purpose' => $declaration_purpose,
1199 'type' => $decl_type
1200 });
1201 }
1202 else {
d40e1e65 1203 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1da177e4
LT
1204 ++$errors;
1205 }
1206}
1207
85afe608
MCC
1208
1209sub show_warnings($$) {
1210 my $functype = shift;
1211 my $name = shift;
1212
1213 return 1 if ($output_selection == OUTPUT_ALL);
1214
1215 if ($output_selection == OUTPUT_EXPORTED) {
1216 if (defined($function_table{$name})) {
1217 return 1;
1218 } else {
1219 return 0;
1220 }
1221 }
1222 if ($output_selection == OUTPUT_INTERNAL) {
1223 if (!($functype eq "function" && defined($function_table{$name}))) {
1224 return 1;
1225 } else {
1226 return 0;
1227 }
1228 }
1229 if ($output_selection == OUTPUT_INCLUDE) {
1230 if (defined($function_table{$name})) {
1231 return 1;
1232 } else {
1233 return 0;
1234 }
1235 }
1236 if ($output_selection == OUTPUT_EXCLUDE) {
1237 if (!defined($function_table{$name})) {
1238 return 1;
1239 } else {
1240 return 0;
1241 }
1242 }
1243 die("Please add the new output type at show_warnings()");
1244}
1245
1da177e4
LT
1246sub dump_enum($$) {
1247 my $x = shift;
1248 my $file = shift;
1249
aeec46b9 1250 $x =~ s@/\*.*?\*/@@gos; # strip comments.
4468e21e
CN
1251 # strip #define macros inside enums
1252 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
b6d676db 1253
15e2544e 1254 if ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
3c308798
RD
1255 $declaration_name = $1;
1256 my $members = $2;
5cb5c31c
JB
1257 my %_members;
1258
463a0fdc 1259 $members =~ s/\s+$//;
1da177e4
LT
1260
1261 foreach my $arg (split ',', $members) {
1262 $arg =~ s/^\s*(\w+).*/$1/;
1263 push @parameterlist, $arg;
1264 if (!$parameterdescs{$arg}) {
3c308798 1265 $parameterdescs{$arg} = $undescribed;
85afe608 1266 if (show_warnings("enum", $declaration_name)) {
2defb272
MCC
1267 print STDERR "${file}:$.: warning: Enum value '$arg' not described in enum '$declaration_name'\n";
1268 }
1da177e4 1269 }
5cb5c31c 1270 $_members{$arg} = 1;
1da177e4 1271 }
3c3b809e 1272
5cb5c31c
JB
1273 while (my ($k, $v) = each %parameterdescs) {
1274 if (!exists($_members{$k})) {
85afe608 1275 if (show_warnings("enum", $declaration_name)) {
2defb272
MCC
1276 print STDERR "${file}:$.: warning: Excess enum value '$k' description in '$declaration_name'\n";
1277 }
5cb5c31c
JB
1278 }
1279 }
1280
1da177e4
LT
1281 output_declaration($declaration_name,
1282 'enum',
1283 {'enum' => $declaration_name,
1284 'module' => $modulename,
1285 'parameterlist' => \@parameterlist,
1286 'parameterdescs' => \%parameterdescs,
1287 'sectionlist' => \@sectionlist,
1288 'sections' => \%sections,
1289 'purpose' => $declaration_purpose
1290 });
1291 }
1292 else {
d40e1e65 1293 print STDERR "${file}:$.: error: Cannot parse enum!\n";
1da177e4
LT
1294 ++$errors;
1295 }
1296}
1297
1298sub dump_typedef($$) {
1299 my $x = shift;
1300 my $file = shift;
1301
aeec46b9 1302 $x =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4 1303
83766452 1304 # Parse function prototypes
d37c43ce
MCC
1305 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ ||
1306 $x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) {
1307
83766452
MCC
1308 # Function typedefs
1309 $return_type = $1;
1310 $declaration_name = $2;
1311 my $args = $3;
1312
151c468b 1313 create_parameterlist($args, ',', $file, $declaration_name);
1da177e4
LT
1314
1315 output_declaration($declaration_name,
83766452
MCC
1316 'function',
1317 {'function' => $declaration_name,
82801d06 1318 'typedef' => 1,
1da177e4 1319 'module' => $modulename,
83766452
MCC
1320 'functiontype' => $return_type,
1321 'parameterlist' => \@parameterlist,
1322 'parameterdescs' => \%parameterdescs,
1323 'parametertypes' => \%parametertypes,
1da177e4
LT
1324 'sectionlist' => \@sectionlist,
1325 'sections' => \%sections,
1326 'purpose' => $declaration_purpose
1327 });
83766452
MCC
1328 return;
1329 }
1330
1331 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1332 $x =~ s/\(*.\)\s*;$/;/;
1333 $x =~ s/\[*.\]\s*;$/;/;
1da177e4 1334 }
83766452
MCC
1335
1336 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
3a80a766
MCC
1337 $declaration_name = $1;
1338
1339 output_declaration($declaration_name,
1340 'typedef',
1341 {'typedef' => $declaration_name,
1342 'module' => $modulename,
1343 'sectionlist' => \@sectionlist,
1344 'sections' => \%sections,
1345 'purpose' => $declaration_purpose
1346 });
1347 }
1da177e4 1348 else {
d40e1e65 1349 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1da177e4
LT
1350 ++$errors;
1351 }
1352}
1353
a1d94aa5
RD
1354sub save_struct_actual($) {
1355 my $actual = shift;
1356
1357 # strip all spaces from the actual param so that it looks like one string item
1358 $actual =~ s/\s*//g;
1359 $struct_actual = $struct_actual . $actual . " ";
1360}
1361
151c468b 1362sub create_parameterlist($$$$) {
1da177e4
LT
1363 my $args = shift;
1364 my $splitter = shift;
1365 my $file = shift;
151c468b 1366 my $declaration_name = shift;
1da177e4
LT
1367 my $type;
1368 my $param;
1369
a6d3fe77 1370 # temporarily replace commas inside function pointer definition
1da177e4 1371 while ($args =~ /(\([^\),]+),/) {
3c308798 1372 $args =~ s/(\([^\),]+),/$1#/g;
1da177e4 1373 }
3c3b809e 1374
1da177e4
LT
1375 foreach my $arg (split($splitter, $args)) {
1376 # strip comments
1377 $arg =~ s/\/\*.*\*\///;
3c308798
RD
1378 # strip leading/trailing spaces
1379 $arg =~ s/^\s*//;
1da177e4
LT
1380 $arg =~ s/\s*$//;
1381 $arg =~ s/\s+/ /;
1382
1383 if ($arg =~ /^#/) {
1384 # Treat preprocessor directive as a typeless variable just to fill
1385 # corresponding data structures "correctly". Catch it later in
1386 # output_* subs.
1387 push_parameter($arg, "", $file);
00d62961 1388 } elsif ($arg =~ m/\(.+\)\s*\(/) {
1da177e4
LT
1389 # pointer-to-function
1390 $arg =~ tr/#/,/;
7c0d7e87 1391 $arg =~ m/[^\(]+\(\*?\s*([\w\.]*)\s*\)/;
1da177e4
LT
1392 $param = $1;
1393 $type = $arg;
00d62961 1394 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
a1d94aa5 1395 save_struct_actual($param);
151c468b 1396 push_parameter($param, $type, $file, $declaration_name);
aeec46b9 1397 } elsif ($arg) {
1da177e4
LT
1398 $arg =~ s/\s*:\s*/:/g;
1399 $arg =~ s/\s*\[/\[/g;
1400
1401 my @args = split('\s*,\s*', $arg);
1402 if ($args[0] =~ m/\*/) {
1403 $args[0] =~ s/(\*+)\s*/ $1/;
1404 }
884f2810
BP
1405
1406 my @first_arg;
1407 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1408 shift @args;
1409 push(@first_arg, split('\s+', $1));
1410 push(@first_arg, $2);
1411 } else {
1412 @first_arg = split('\s+', shift @args);
1413 }
1414
1da177e4
LT
1415 unshift(@args, pop @first_arg);
1416 $type = join " ", @first_arg;
1417
1418 foreach $param (@args) {
1419 if ($param =~ m/^(\*+)\s*(.*)/) {
a1d94aa5 1420 save_struct_actual($2);
151c468b 1421 push_parameter($2, "$type $1", $file, $declaration_name);
1da177e4
LT
1422 }
1423 elsif ($param =~ m/(.*?):(\d+)/) {
7b97887e 1424 if ($type ne "") { # skip unnamed bit-fields
a1d94aa5 1425 save_struct_actual($1);
151c468b 1426 push_parameter($1, "$type:$2", $file, $declaration_name)
7b97887e 1427 }
1da177e4
LT
1428 }
1429 else {
a1d94aa5 1430 save_struct_actual($param);
151c468b 1431 push_parameter($param, $type, $file, $declaration_name);
1da177e4
LT
1432 }
1433 }
1434 }
1435 }
1436}
1437
151c468b 1438sub push_parameter($$$$) {
1da177e4
LT
1439 my $param = shift;
1440 my $type = shift;
1441 my $file = shift;
151c468b 1442 my $declaration_name = shift;
1da177e4 1443
5f8c7c98
RD
1444 if (($anon_struct_union == 1) && ($type eq "") &&
1445 ($param eq "}")) {
1446 return; # ignore the ending }; from anon. struct/union
1447 }
1448
1449 $anon_struct_union = 0;
f9b5c530 1450 $param =~ s/[\[\)].*//;
1da177e4 1451
a6d3fe77 1452 if ($type eq "" && $param =~ /\.\.\.$/)
1da177e4 1453 {
c950a173
SF
1454 if (!$param =~ /\w\.\.\.$/) {
1455 # handles unnamed variable parameters
1456 $param = "...";
1457 }
43756e34
JN
1458 elsif ($param =~ /\w\.\.\.$/) {
1459 # for named variable parameters of the form `x...`, remove the dots
1460 $param =~ s/\.\.\.$//;
1461 }
ced69090
RD
1462 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1463 $parameterdescs{$param} = "variable arguments";
1464 }
1da177e4
LT
1465 }
1466 elsif ($type eq "" && ($param eq "" or $param eq "void"))
1467 {
1da177e4
LT
1468 $param="void";
1469 $parameterdescs{void} = "no arguments";
1470 }
134fe01b
RD
1471 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1472 # handle unnamed (anonymous) union or struct:
1473 {
1474 $type = $param;
5f8c7c98 1475 $param = "{unnamed_" . $param . "}";
134fe01b 1476 $parameterdescs{$param} = "anonymous\n";
5f8c7c98 1477 $anon_struct_union = 1;
134fe01b
RD
1478 }
1479
a6d3fe77 1480 # warn if parameter has no description
134fe01b
RD
1481 # (but ignore ones starting with # as these are not parameters
1482 # but inline preprocessor statements);
151c468b 1483 # Note: It will also ignore void params and unnamed structs/unions
f9b5c530 1484 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
151c468b 1485 $parameterdescs{$param} = $undescribed;
a6d3fe77 1486
be5cd20c 1487 if (show_warnings($type, $declaration_name) && $param !~ /\./) {
2defb272
MCC
1488 print STDERR
1489 "${file}:$.: warning: Function parameter or member '$param' not described in '$declaration_name'\n";
1490 ++$warnings;
1491 }
3c308798 1492 }
1da177e4 1493
25985edc 1494 # strip spaces from $param so that it is one continuous string
e34e7dbb
RD
1495 # on @parameterlist;
1496 # this fixes a problem where check_sections() cannot find
1497 # a parameter like "addr[6 + 2]" because it actually appears
1498 # as "addr[6", "+", "2]" on the parameter list;
1499 # but it's better to maintain the param string unchanged for output,
1500 # so just weaken the string compare in check_sections() to ignore
1501 # "[blah" in a parameter string;
1502 ###$param =~ s/\s*//g;
1da177e4 1503 push @parameterlist, $param;
02a4f4fe 1504 $type =~ s/\s\s+/ /g;
1da177e4
LT
1505 $parametertypes{$param} = $type;
1506}
1507
1081de2d
MCC
1508sub check_sections($$$$$) {
1509 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
a1d94aa5
RD
1510 my @sects = split ' ', $sectcheck;
1511 my @prms = split ' ', $prmscheck;
1512 my $err;
1513 my ($px, $sx);
1514 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
1515
1516 foreach $sx (0 .. $#sects) {
1517 $err = 1;
1518 foreach $px (0 .. $#prms) {
1519 $prm_clean = $prms[$px];
1520 $prm_clean =~ s/\[.*\]//;
1f3a6688 1521 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
e34e7dbb
RD
1522 # ignore array size in a parameter string;
1523 # however, the original param string may contain
1524 # spaces, e.g.: addr[6 + 2]
1525 # and this appears in @prms as "addr[6" since the
1526 # parameter list is split at spaces;
1527 # hence just ignore "[..." for the sections check;
1528 $prm_clean =~ s/\[.*//;
1529
a1d94aa5
RD
1530 ##$prm_clean =~ s/^\**//;
1531 if ($prm_clean eq $sects[$sx]) {
1532 $err = 0;
1533 last;
1534 }
1535 }
1536 if ($err) {
1537 if ($decl_type eq "function") {
d40e1e65 1538 print STDERR "${file}:$.: warning: " .
a1d94aa5
RD
1539 "Excess function parameter " .
1540 "'$sects[$sx]' " .
1541 "description in '$decl_name'\n";
1542 ++$warnings;
a1d94aa5
RD
1543 }
1544 }
1545 }
1546}
1547
4092bac7
YB
1548##
1549# Checks the section describing the return value of a function.
1550sub check_return_section {
1551 my $file = shift;
1552 my $declaration_name = shift;
1553 my $return_type = shift;
1554
1555 # Ignore an empty return type (It's a macro)
1556 # Ignore functions with a "void" return type. (But don't ignore "void *")
1557 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
1558 return;
1559 }
1560
1561 if (!defined($sections{$section_return}) ||
1562 $sections{$section_return} eq "") {
d40e1e65 1563 print STDERR "${file}:$.: warning: " .
4092bac7
YB
1564 "No description found for return value of " .
1565 "'$declaration_name'\n";
1566 ++$warnings;
1567 }
1568}
1569
1da177e4
LT
1570##
1571# takes a function prototype and the name of the current file being
1572# processed and spits out all the details stored in the global
1573# arrays/hashes.
1574sub dump_function($$) {
1575 my $prototype = shift;
1576 my $file = shift;
cbb4d3e6 1577 my $noret = 0;
1da177e4
LT
1578
1579 $prototype =~ s/^static +//;
1580 $prototype =~ s/^extern +//;
4dc3b16b 1581 $prototype =~ s/^asmlinkage +//;
1da177e4
LT
1582 $prototype =~ s/^inline +//;
1583 $prototype =~ s/^__inline__ +//;
32e79401
RD
1584 $prototype =~ s/^__inline +//;
1585 $prototype =~ s/^__always_inline +//;
1586 $prototype =~ s/^noinline +//;
74fc5c65 1587 $prototype =~ s/__init +//;
20072205 1588 $prototype =~ s/__init_or_module +//;
270a0096 1589 $prototype =~ s/__meminit +//;
70c95b00 1590 $prototype =~ s/__must_check +//;
0df7c0e3 1591 $prototype =~ s/__weak +//;
0891f959 1592 $prototype =~ s/__sched +//;
95e760cb 1593 $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
cbb4d3e6 1594 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
b1aaa546
PB
1595 $prototype =~ s/__attribute__\s*\(\(
1596 (?:
1597 [\w\s]++ # attribute name
1598 (?:\([^)]*+\))? # attribute arguments
1599 \s*+,? # optional comma at the end
1600 )+
1601 \)\)\s+//x;
1da177e4
LT
1602
1603 # Yes, this truly is vile. We are looking for:
1604 # 1. Return type (may be nothing if we're looking at a macro)
1605 # 2. Function name
1606 # 3. Function parameters.
1607 #
1608 # All the while we have to watch out for function pointer parameters
1609 # (which IIRC is what the two sections are for), C types (these
1610 # regexps don't even start to express all the possibilities), and
1611 # so on.
1612 #
1613 # If you mess with these regexps, it's a good idea to check that
1614 # the following functions' documentation still comes out right:
1615 # - parport_register_device (function pointer parameters)
1616 # - atomic_set (macro)
9598f91f 1617 # - pci_match_device, __copy_to_user (long return type)
1da177e4 1618
cbb4d3e6
HG
1619 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
1620 # This is an object-like macro, it has no return type and no parameter
1621 # list.
1622 # Function-like macros are not allowed to have spaces between
1623 # declaration_name and opening parenthesis (notice the \s+).
1624 $return_type = $1;
1625 $declaration_name = $2;
1626 $noret = 1;
1627 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4 1628 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
5a0bc578 1629 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4 1630 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
94b3e03c 1631 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4 1632 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
5a0bc578 1633 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4
LT
1634 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1635 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578 1636 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1da177e4 1637 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578 1638 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1da177e4 1639 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578 1640 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
9598f91f 1641 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578
MW
1642 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1643 $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
1da177e4
LT
1644 $return_type = $1;
1645 $declaration_name = $2;
1646 my $args = $3;
1647
151c468b 1648 create_parameterlist($args, ',', $file, $declaration_name);
1da177e4 1649 } else {
d40e1e65 1650 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
1da177e4
LT
1651 return;
1652 }
1653
a1d94aa5 1654 my $prms = join " ", @parameterlist;
1081de2d 1655 check_sections($file, $declaration_name, "function", $sectcheck, $prms);
a1d94aa5 1656
4092bac7
YB
1657 # This check emits a lot of warnings at the moment, because many
1658 # functions don't have a 'Return' doc section. So until the number
1659 # of warnings goes sufficiently down, the check is only performed in
1660 # verbose mode.
1661 # TODO: always perform the check.
cbb4d3e6 1662 if ($verbose && !$noret) {
4092bac7
YB
1663 check_return_section($file, $declaration_name, $return_type);
1664 }
1665
3c3b809e 1666 output_declaration($declaration_name,
1da177e4
LT
1667 'function',
1668 {'function' => $declaration_name,
1669 'module' => $modulename,
1670 'functiontype' => $return_type,
1671 'parameterlist' => \@parameterlist,
1672 'parameterdescs' => \%parameterdescs,
1673 'parametertypes' => \%parametertypes,
1674 'sectionlist' => \@sectionlist,
1675 'sections' => \%sections,
1676 'purpose' => $declaration_purpose
1677 });
1678}
1679
1da177e4
LT
1680sub reset_state {
1681 $function = "";
1da177e4
LT
1682 %parameterdescs = ();
1683 %parametertypes = ();
1684 @parameterlist = ();
1685 %sections = ();
1686 @sectionlist = ();
a1d94aa5
RD
1687 $sectcheck = "";
1688 $struct_actual = "";
1da177e4 1689 $prototype = "";
3c3b809e 1690
48af606a
JN
1691 $state = STATE_NORMAL;
1692 $inline_doc_state = STATE_INLINE_NA;
1da177e4
LT
1693}
1694
56afb0f8
JB
1695sub tracepoint_munge($) {
1696 my $file = shift;
1697 my $tracepointname = 0;
1698 my $tracepointargs = 0;
1699
3a9089fd 1700 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
56afb0f8
JB
1701 $tracepointname = $1;
1702 }
3a9089fd
JB
1703 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1704 $tracepointname = $1;
1705 }
1706 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1707 $tracepointname = $2;
1708 }
1709 $tracepointname =~ s/^\s+//; #strip leading whitespace
1710 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
56afb0f8
JB
1711 $tracepointargs = $1;
1712 }
1713 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
d40e1e65 1714 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
56afb0f8
JB
1715 "$prototype\n";
1716 } else {
1717 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
1718 }
1719}
1720
b4870bc5
RD
1721sub syscall_munge() {
1722 my $void = 0;
1723
7c9aa015 1724 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
b4870bc5
RD
1725## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1726 if ($prototype =~ m/SYSCALL_DEFINE0/) {
1727 $void = 1;
1728## $prototype = "long sys_$1(void)";
1729 }
1730
1731 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1732 if ($prototype =~ m/long (sys_.*?),/) {
1733 $prototype =~ s/,/\(/;
1734 } elsif ($void) {
1735 $prototype =~ s/\)/\(void\)/;
1736 }
1737
1738 # now delete all of the odd-number commas in $prototype
1739 # so that arg types & arg names don't have a comma between them
1740 my $count = 0;
1741 my $len = length($prototype);
1742 if ($void) {
1743 $len = 0; # skip the for-loop
1744 }
1745 for (my $ix = 0; $ix < $len; $ix++) {
1746 if (substr($prototype, $ix, 1) eq ',') {
1747 $count++;
1748 if ($count % 2 == 1) {
1749 substr($prototype, $ix, 1) = ' ';
1750 }
1751 }
1752 }
1753}
1754
b7afa92b 1755sub process_proto_function($$) {
1da177e4
LT
1756 my $x = shift;
1757 my $file = shift;
1758
51f5a0c8
RD
1759 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1760
890c78c2 1761 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1da177e4
LT
1762 # do nothing
1763 }
1764 elsif ($x =~ /([^\{]*)/) {
3c308798 1765 $prototype .= $1;
1da177e4 1766 }
b4870bc5 1767
890c78c2 1768 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
3c308798 1769 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4
LT
1770 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1771 $prototype =~ s@^\s+@@gos; # strip leading spaces
b4870bc5
RD
1772 if ($prototype =~ /SYSCALL_DEFINE/) {
1773 syscall_munge();
1774 }
3a9089fd
JB
1775 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1776 $prototype =~ /DEFINE_SINGLE_EVENT/)
1777 {
56afb0f8
JB
1778 tracepoint_munge($file);
1779 }
b4870bc5 1780 dump_function($prototype, $file);
1da177e4
LT
1781 reset_state();
1782 }
1783}
1784
b7afa92b 1785sub process_proto_type($$) {
1da177e4
LT
1786 my $x = shift;
1787 my $file = shift;
1788
1da177e4
LT
1789 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1790 $x =~ s@^\s+@@gos; # strip leading spaces
1791 $x =~ s@\s+$@@gos; # strip trailing spaces
51f5a0c8
RD
1792 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1793
1da177e4
LT
1794 if ($x =~ /^#/) {
1795 # To distinguish preprocessor directive from regular declaration later.
1796 $x .= ";";
1797 }
1798
1799 while (1) {
673bb2df 1800 if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
463a0fdc
MH
1801 if( length $prototype ) {
1802 $prototype .= " "
1803 }
1da177e4
LT
1804 $prototype .= $1 . $2;
1805 ($2 eq '{') && $brcount++;
1806 ($2 eq '}') && $brcount--;
1807 if (($2 eq ';') && ($brcount == 0)) {
b9d97328 1808 dump_declaration($prototype, $file);
1da177e4 1809 reset_state();
3c308798 1810 last;
1da177e4
LT
1811 }
1812 $x = $3;
3c308798 1813 } else {
1da177e4
LT
1814 $prototype .= $x;
1815 last;
1816 }
1817 }
1818}
1819
6b5b55f6 1820
1ad560e4 1821sub map_filename($) {
2283a117 1822 my $file;
68f86662 1823 my ($orig_file) = @_;
1da177e4 1824
2283a117 1825 if (defined($ENV{'SRCTREE'})) {
68f86662 1826 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1ad560e4 1827 } else {
68f86662 1828 $file = $orig_file;
2283a117 1829 }
1ad560e4 1830
1da177e4
LT
1831 if (defined($source_map{$file})) {
1832 $file = $source_map{$file};
1833 }
1834
1ad560e4
JN
1835 return $file;
1836}
1837
88c2b57d
JN
1838sub process_export_file($) {
1839 my ($orig_file) = @_;
1840 my $file = map_filename($orig_file);
1841
1842 if (!open(IN,"<$file")) {
1843 print STDERR "Error: Cannot open file $file\n";
1844 ++$errors;
1845 return;
1846 }
1847
1848 while (<IN>) {
1849 if (/$export_symbol/) {
1850 $function_table{$2} = 1;
1851 }
1852 }
1853
1854 close(IN);
1855}
1856
07048d13
JC
1857#
1858# Parsers for the various processing states.
1859#
1860# STATE_NORMAL: looking for the /** to begin everything.
1861#
1862sub process_normal() {
1863 if (/$doc_start/o) {
1864 $state = STATE_NAME; # next line is always the function name
1865 $in_doc_sect = 0;
1866 $declaration_start_line = $. + 1;
1867 }
1868}
1869
3cac2bc4
JC
1870#
1871# STATE_NAME: Looking for the "name - description" line
1872#
1873sub process_name($$) {
1874 my $file = shift;
1ad560e4 1875 my $identifier;
1ad560e4 1876 my $descr;
3cac2bc4
JC
1877
1878 if (/$doc_block/o) {
1879 $state = STATE_DOCBLOCK;
1880 $contents = "";
1881 $new_start_line = $. + 1;
1882
1883 if ( $1 eq "" ) {
1884 $section = $section_intro;
1885 } else {
1886 $section = $1;
1887 }
1888 }
1889 elsif (/$doc_decl/o) {
1890 $identifier = $1;
fcdf1df2 1891 if (/\s*([\w\s]+?)(\(\))?\s*-/) {
3cac2bc4
JC
1892 $identifier = $1;
1893 }
07048d13 1894
3cac2bc4
JC
1895 $state = STATE_BODY;
1896 # if there's no @param blocks need to set up default section
1897 # here
1898 $contents = "";
1899 $section = $section_default;
1900 $new_start_line = $. + 1;
1901 if (/-(.*)/) {
1902 # strip leading/trailing/multiple spaces
1903 $descr= $1;
1904 $descr =~ s/^\s*//;
1905 $descr =~ s/\s*$//;
1906 $descr =~ s/\s+/ /g;
1907 $declaration_purpose = $descr;
1908 $state = STATE_BODY_MAYBE;
1909 } else {
1910 $declaration_purpose = "";
1911 }
1912
1913 if (($declaration_purpose eq "") && $verbose) {
1914 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
1915 print STDERR $_;
1916 ++$warnings;
1917 }
1918
cf419d54 1919 if ($identifier =~ m/^struct\b/) {
3cac2bc4 1920 $decl_type = 'struct';
cf419d54 1921 } elsif ($identifier =~ m/^union\b/) {
3cac2bc4 1922 $decl_type = 'union';
cf419d54 1923 } elsif ($identifier =~ m/^enum\b/) {
3cac2bc4 1924 $decl_type = 'enum';
cf419d54 1925 } elsif ($identifier =~ m/^typedef\b/) {
3cac2bc4
JC
1926 $decl_type = 'typedef';
1927 } else {
1928 $decl_type = 'function';
1929 }
1930
1931 if ($verbose) {
1932 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
1933 }
1934 } else {
1935 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
1936 " - I thought it was a doc line\n";
1937 ++$warnings;
1938 $state = STATE_NORMAL;
1939 }
1940}
07048d13 1941
d742f24d
JC
1942
1943#
1944# STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
1945#
1946sub process_body($$) {
1947 my $file = shift;
1948
43756e34
JN
1949 # Until all named variable macro parameters are
1950 # documented using the bare name (`x`) rather than with
1951 # dots (`x...`), strip the dots:
1952 if ($section =~ /\w\.\.\.$/) {
1953 $section =~ s/\.\.\.$//;
1954
1955 if ($verbose) {
1956 print STDERR "${file}:$.: warning: Variable macro arguments should be documented without dots\n";
1957 ++$warnings;
1958 }
1959 }
1960
0d55d48b
MCC
1961 if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
1962 dump_section($file, $section, $contents);
1963 $section = $section_default;
1964 $contents = "";
1965 }
1966
d742f24d
JC
1967 if (/$doc_sect/i) { # case insensitive for supported section names
1968 $newsection = $1;
1969 $newcontents = $2;
1970
1971 # map the supported section names to the canonical names
1972 if ($newsection =~ m/^description$/i) {
1973 $newsection = $section_default;
1974 } elsif ($newsection =~ m/^context$/i) {
1975 $newsection = $section_context;
1976 } elsif ($newsection =~ m/^returns?$/i) {
1977 $newsection = $section_return;
1978 } elsif ($newsection =~ m/^\@return$/) {
1979 # special: @return is a section, not a param description
1980 $newsection = $section_return;
1981 }
1982
1983 if (($contents ne "") && ($contents ne "\n")) {
1984 if (!$in_doc_sect && $verbose) {
1985 print STDERR "${file}:$.: warning: contents before sections\n";
1986 ++$warnings;
1987 }
1988 dump_section($file, $section, $contents);
1989 $section = $section_default;
1990 }
1991
1992 $in_doc_sect = 1;
1993 $state = STATE_BODY;
1994 $contents = $newcontents;
1995 $new_start_line = $.;
1996 while (substr($contents, 0, 1) eq " ") {
1997 $contents = substr($contents, 1);
1998 }
1999 if ($contents ne "") {
2000 $contents .= "\n";
2001 }
2002 $section = $newsection;
2003 $leading_space = undef;
2004 } elsif (/$doc_end/) {
2005 if (($contents ne "") && ($contents ne "\n")) {
2006 dump_section($file, $section, $contents);
2007 $section = $section_default;
2008 $contents = "";
2009 }
2010 # look for doc_com + <text> + doc_end:
2011 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2012 print STDERR "${file}:$.: warning: suspicious ending line: $_";
2013 ++$warnings;
2014 }
2015
2016 $prototype = "";
2017 $state = STATE_PROTO;
2018 $brcount = 0;
2019 } elsif (/$doc_content/) {
d742f24d 2020 if ($1 eq "") {
0d55d48b 2021 if ($section eq $section_context) {
d742f24d
JC
2022 dump_section($file, $section, $contents);
2023 $section = $section_default;
2024 $contents = "";
2025 $new_start_line = $.;
0d55d48b 2026 $state = STATE_BODY;
d742f24d 2027 } else {
0d55d48b
MCC
2028 if ($section ne $section_default) {
2029 $state = STATE_BODY_WITH_BLANK_LINE;
2030 } else {
2031 $state = STATE_BODY;
2032 }
d742f24d
JC
2033 $contents .= "\n";
2034 }
d742f24d
JC
2035 } elsif ($state == STATE_BODY_MAYBE) {
2036 # Continued declaration purpose
2037 chomp($declaration_purpose);
2038 $declaration_purpose .= " " . $1;
2039 $declaration_purpose =~ s/\s+/ /g;
2040 } else {
2041 my $cont = $1;
2042 if ($section =~ m/^@/ || $section eq $section_context) {
2043 if (!defined $leading_space) {
2044 if ($cont =~ m/^(\s+)/) {
2045 $leading_space = $1;
2046 } else {
2047 $leading_space = "";
2048 }
2049 }
2050 $cont =~ s/^$leading_space//;
2051 }
2052 $contents .= $cont . "\n";
2053 }
2054 } else {
2055 # i dont know - bad line? ignore.
2056 print STDERR "${file}:$.: warning: bad line: $_";
2057 ++$warnings;
2058 }
2059}
2060
2061
cc794812
JC
2062#
2063# STATE_PROTO: reading a function/whatever prototype.
2064#
2065sub process_proto($$) {
2066 my $file = shift;
2067
2068 if (/$doc_inline_oneline/) {
2069 $section = $1;
2070 $contents = $2;
2071 if ($contents ne "") {
2072 $contents .= "\n";
2073 dump_section($file, $section, $contents);
2074 $section = $section_default;
2075 $contents = "";
2076 }
2077 } elsif (/$doc_inline_start/) {
2078 $state = STATE_INLINE;
2079 $inline_doc_state = STATE_INLINE_NAME;
2080 } elsif ($decl_type eq 'function') {
2081 process_proto_function($_, $file);
2082 } else {
2083 process_proto_type($_, $file);
2084 }
2085}
2086
c17add56
JC
2087#
2088# STATE_DOCBLOCK: within a DOC: block.
2089#
2090sub process_docblock($$) {
2091 my $file = shift;
2092
2093 if (/$doc_end/) {
2094 dump_doc_section($file, $section, $contents);
2095 $section = $section_default;
2096 $contents = "";
2097 $function = "";
2098 %parameterdescs = ();
2099 %parametertypes = ();
2100 @parameterlist = ();
2101 %sections = ();
2102 @sectionlist = ();
2103 $prototype = "";
2104 $state = STATE_NORMAL;
2105 } elsif (/$doc_content/) {
2106 if ( $1 eq "" ) {
2107 $contents .= $blankline;
2108 } else {
2109 $contents .= $1 . "\n";
2110 }
2111 }
2112}
2113
2114#
2115# STATE_INLINE: docbook comments within a prototype.
2116#
2117sub process_inline($$) {
2118 my $file = shift;
2119
2120 # First line (state 1) needs to be a @parameter
2121 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
2122 $section = $1;
2123 $contents = $2;
2124 $new_start_line = $.;
2125 if ($contents ne "") {
2126 while (substr($contents, 0, 1) eq " ") {
2127 $contents = substr($contents, 1);
2128 }
2129 $contents .= "\n";
2130 }
2131 $inline_doc_state = STATE_INLINE_TEXT;
2132 # Documentation block end */
2133 } elsif (/$doc_inline_end/) {
2134 if (($contents ne "") && ($contents ne "\n")) {
2135 dump_section($file, $section, $contents);
2136 $section = $section_default;
2137 $contents = "";
2138 }
2139 $state = STATE_PROTO;
2140 $inline_doc_state = STATE_INLINE_NA;
2141 # Regular text
2142 } elsif (/$doc_content/) {
2143 if ($inline_doc_state == STATE_INLINE_TEXT) {
2144 $contents .= $1 . "\n";
2145 # nuke leading blank lines
2146 if ($contents =~ /^\s*$/) {
2147 $contents = "";
2148 }
2149 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2150 $inline_doc_state = STATE_INLINE_ERROR;
2151 print STDERR "${file}:$.: warning: ";
2152 print STDERR "Incorrect use of kernel-doc format: $_";
2153 ++$warnings;
2154 }
2155 }
2156}
2157
cc794812 2158
1ad560e4
JN
2159sub process_file($) {
2160 my $file;
1ad560e4
JN
2161 my $initial_section_counter = $section_counter;
2162 my ($orig_file) = @_;
1ad560e4
JN
2163
2164 $file = map_filename($orig_file);
2165
1da177e4
LT
2166 if (!open(IN,"<$file")) {
2167 print STDERR "Error: Cannot open file $file\n";
2168 ++$errors;
2169 return;
2170 }
2171
a9e7314b
ID
2172 $. = 1;
2173
1da177e4
LT
2174 $section_counter = 0;
2175 while (<IN>) {
65478428
DS
2176 while (s/\\\s*$//) {
2177 $_ .= <IN>;
2178 }
7c9aa015
MCC
2179 # Replace tabs by spaces
2180 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
c17add56 2181 # Hand this line to the appropriate state handler
48af606a 2182 if ($state == STATE_NORMAL) {
07048d13 2183 process_normal();
3cac2bc4
JC
2184 } elsif ($state == STATE_NAME) {
2185 process_name($file, $_);
0d55d48b
MCC
2186 } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
2187 $state == STATE_BODY_WITH_BLANK_LINE) {
d742f24d 2188 process_body($file, $_);
48af606a 2189 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
c17add56 2190 process_inline($file, $_);
cc794812
JC
2191 } elsif ($state == STATE_PROTO) {
2192 process_proto($file, $_);
48af606a 2193 } elsif ($state == STATE_DOCBLOCK) {
c17add56 2194 process_docblock($file, $_);
3c308798 2195 }
1da177e4 2196 }
c17add56
JC
2197
2198 # Make sure we got something interesting.
b0d60bfb
JC
2199 if ($initial_section_counter == $section_counter && $
2200 output_mode ne "none") {
2201 if ($output_selection == OUTPUT_INCLUDE) {
2202 print STDERR "${file}:1: warning: '$_' not found\n"
2203 for keys %function_table;
3a025e1d 2204 }
b0d60bfb
JC
2205 else {
2206 print STDERR "${file}:1: warning: no structured comments found\n";
e946c43a 2207 }
1da177e4
LT
2208 }
2209}
8484baaa
RD
2210
2211
2212$kernelversion = get_kernel_version();
2213
2214# generate a sequence of code that will splice in highlighting information
2215# using the s// operator.
1ef06233 2216for (my $k = 0; $k < @highlights; $k++) {
4d732701
DCLP
2217 my $pattern = $highlights[$k][0];
2218 my $result = $highlights[$k][1];
2219# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2220 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
8484baaa
RD
2221}
2222
2223# Read the file that maps relative names to absolute names for
2224# separate source and object directories and for shadow trees.
2225if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2226 my ($relname, $absname);
2227 while(<SOURCE_MAP>) {
2228 chop();
2229 ($relname, $absname) = (split())[0..1];
2230 $relname =~ s:^/+::;
2231 $source_map{$relname} = $absname;
2232 }
2233 close(SOURCE_MAP);
2234}
2235
88c2b57d
JN
2236if ($output_selection == OUTPUT_EXPORTED ||
2237 $output_selection == OUTPUT_INTERNAL) {
c9b2cfb3
JN
2238
2239 push(@export_file_list, @ARGV);
2240
88c2b57d
JN
2241 foreach (@export_file_list) {
2242 chomp;
2243 process_export_file($_);
2244 }
2245}
2246
8484baaa
RD
2247foreach (@ARGV) {
2248 chomp;
2249 process_file($_);
2250}
2251if ($verbose && $errors) {
2252 print STDERR "$errors errors\n";
2253}
2254if ($verbose && $warnings) {
2255 print STDERR "$warnings warnings\n";
2256}
2257
e814bccb 2258exit($output_mode eq "none" ? 0 : $errors);