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