xref: /linux/scripts/kernel-doc (revision 1081de2d2f9179d7280926e37b7b22b4f2fb32e6)
1#!/usr/bin/env perl
2
3use warnings;
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                             ##
9## Copyright (C) 2005-2012  Randy Dunlap                         ##
10## Copyright (C) 2012  Dan Luedtke                               ##
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
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
40# 25/07/2012 - Added support for HTML5
41# -- Dan Luedtke <mail@danrl.de>
42
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
51Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
52
53Output format selection (mutually exclusive):
54  -man			Output troff manual page format. This is the default.
55  -rst			Output reStructuredText format.
56  -none			Do not output documentation, only warnings.
57
58Output selection (mutually exclusive):
59  -export		Only output documentation for symbols that have been
60			exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
61                        in any input FILE or -export-file FILE.
62  -internal		Only output documentation for symbols that have NOT been
63			exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
64                        in any input FILE or -export-file FILE.
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.
74  -enable-lineno        Enable output of #define LINENO lines. Only works with
75                        reStructuredText format.
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.
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}
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
105#  */
106#
107# If the Description: header tag is omitted, then there must be a blank line
108# after the last parameter specification.
109# e.g.
110# /**
111#  * my_function - does my stuff
112#  * @my_arg: its mine damnit
113#  *
114#  * Does my stuff explained.
115#  */
116#
117#  or, could also use:
118# /**
119#  * my_function - does my stuff
120#  * @my_arg: its mine damnit
121#  * Description: Does my stuff explained.
122#  */
123# etc.
124#
125# Besides functions you can also write documentation for structs, unions,
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.
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
135#  *
136#  * Longer description
137#  */
138# struct my_struct {
139#     int a;
140#     int b;
141# /* private: */
142#     int c;
143# };
144#
145# All descriptions can be multiline, except the short function description.
146#
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#
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
173# can be called form interrupts. Unlike other sections you can end it with an
174# empty line.
175# A non-void function should have a "Return:" section describing the return
176# value(s).
177# Example-sections should contain the string EXAMPLE so that they are marked
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()
185#  *
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')
199# '&struct_name.member' - name of a structure member
200# '@parameter' - name of a parameter
201# '%CONST' - name of a constant.
202# '``LITERAL``' - literal string without any spaces on it.
203
204## init lots of data
205
206my $errors = 0;
207my $warnings = 0;
208my $anon_struct_union = 0;
209
210# match expressions used to find embedded type information
211my $type_constant = '\b``([^\`]+)``\b';
212my $type_constant2 = '\%([-_\w]+)';
213my $type_func = '(\w+)\(\)';
214my $type_param = '\@(\w*(\.\w+)*(\.\.\.)?)';
215my $type_fp_param = '\@(\w+)\(\)';  # Special RST handling for func ptr params
216my $type_env = '(\$\w+)';
217my $type_enum = '\&(enum\s*([_\w]+))';
218my $type_struct = '\&(struct\s*([_\w]+))';
219my $type_typedef = '\&(typedef\s*([_\w]+))';
220my $type_union = '\&(union\s*([_\w]+))';
221my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
222my $type_fallback = '\&([_\w]+)';
223my $type_member_func = $type_member . '\(\)';
224
225# Output conversion substitutions.
226#  One for each output format
227
228# these are pretty rough
229my @highlights_man = (
230                      [$type_constant, "\$1"],
231                      [$type_constant2, "\$1"],
232                      [$type_func, "\\\\fB\$1\\\\fP"],
233                      [$type_enum, "\\\\fI\$1\\\\fP"],
234                      [$type_struct, "\\\\fI\$1\\\\fP"],
235                      [$type_typedef, "\\\\fI\$1\\\\fP"],
236                      [$type_union, "\\\\fI\$1\\\\fP"],
237                      [$type_param, "\\\\fI\$1\\\\fP"],
238                      [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
239                      [$type_fallback, "\\\\fI\$1\\\\fP"]
240		     );
241my $blankline_man = "";
242
243# rst-mode
244my @highlights_rst = (
245                       [$type_constant, "``\$1``"],
246                       [$type_constant2, "``\$1``"],
247                       # Note: need to escape () to avoid func matching later
248                       [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
249                       [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
250		       [$type_fp_param, "**\$1\\\\(\\\\)**"],
251                       [$type_func, "\\:c\\:func\\:`\$1()`"],
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>`"],
256                       # in rst this can refer to any type
257                       [$type_fallback, "\\:c\\:type\\:`\$1`"],
258                       [$type_param, "**\$1**"]
259		      );
260my $blankline_rst = "\n";
261
262# read arguments
263if ($#ARGV == -1) {
264    usage();
265}
266
267my $kernelversion;
268my $dohighlight = "";
269
270my $verbose = 0;
271my $output_mode = "rst";
272my $output_preformatted = 0;
273my $no_doc_sections = 0;
274my $enable_lineno = 0;
275my @highlights = @highlights_rst;
276my $blankline = $blankline_rst;
277my $modulename = "Kernel API";
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;
287my $show_not_found = 0;
288
289my @export_file_list;
290
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
299my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
300		'July', 'August', 'September', 'October',
301		'November', 'December')[$build_time[4]] .
302  " " . ($build_time[5]+1900);
303
304# Essentially these are globals.
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
307# could cause "use of undefined value" or other bugs.
308my ($function, %function_table, %parametertypes, $declaration_purpose);
309my $declaration_start_line;
310my ($type, $declaration_name, $return_type);
311my ($newsection, $newcontents, $prototype, $brcount, %source_map);
312
313if (defined($ENV{'KBUILD_VERBOSE'})) {
314	$verbose = "$ENV{'KBUILD_VERBOSE'}";
315}
316
317# Generated docbook code is inserted in a template at a point where
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
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};
336my $state;
337my $in_doc_sect;
338
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;
350
351#declaration types: can be
352# 'function', 'struct', 'union', 'enum', 'typedef'
353my $decl_type;
354
355my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
356my $doc_end = '\*/';
357my $doc_com = '\s*\*\s*';
358my $doc_com_body = '\s*\* ?';
359my $doc_decl = $doc_com . '(\w+)';
360# @params and a strictly limited set of supported section names
361my $doc_sect = $doc_com .
362    '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)';
363my $doc_content = $doc_com_body . '(.*)';
364my $doc_block = $doc_com . 'DOC:\s*(.*)?';
365my $doc_inline_start = '^\s*/\*\*\s*$';
366my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)';
367my $doc_inline_end = '^\s*\*/\s*$';
368my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
369my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
370
371my %parameterdescs;
372my %parameterdesc_start_lines;
373my @parameterlist;
374my %sections;
375my @sectionlist;
376my %section_start_lines;
377my $sectcheck;
378my $struct_actual;
379
380my $contents = "";
381my $new_start_line = 0;
382
383# the canonical section names. see also $doc_sect above.
384my $section_default = "Description";	# default section
385my $section_intro = "Introduction";
386my $section = $section_default;
387my $section_context = "Context";
388my $section_return = "Return";
389
390my $undescribed = "-- undescribed --";
391
392reset_state();
393
394while ($ARGV[0] =~ m/^--?(.*)/) {
395    my $cmd = $1;
396    shift @ARGV;
397    if ($cmd eq "man") {
398	$output_mode = "man";
399	@highlights = @highlights_man;
400	$blankline = $blankline_man;
401    } elsif ($cmd eq "rst") {
402	$output_mode = "rst";
403	@highlights = @highlights_rst;
404	$blankline = $blankline_rst;
405    } elsif ($cmd eq "none") {
406	$output_mode = "none";
407    } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
408	$modulename = shift @ARGV;
409    } elsif ($cmd eq "function") { # to only output specific functions
410	$output_selection = OUTPUT_INCLUDE;
411	$function = shift @ARGV;
412	$function_table{$function} = 1;
413    } elsif ($cmd eq "nofunction") { # output all except specific functions
414	$output_selection = OUTPUT_EXCLUDE;
415	$function = shift @ARGV;
416	$function_table{$function} = 1;
417    } elsif ($cmd eq "export") { # only exported symbols
418	$output_selection = OUTPUT_EXPORTED;
419	%function_table = ();
420    } elsif ($cmd eq "internal") { # only non-exported symbols
421	$output_selection = OUTPUT_INTERNAL;
422	%function_table = ();
423    } elsif ($cmd eq "export-file") {
424	my $file = shift @ARGV;
425	push(@export_file_list, $file);
426    } elsif ($cmd eq "v") {
427	$verbose = 1;
428    } elsif (($cmd eq "h") || ($cmd eq "help")) {
429	usage();
430    } elsif ($cmd eq 'no-doc-sections') {
431	    $no_doc_sections = 1;
432    } elsif ($cmd eq 'enable-lineno') {
433	    $enable_lineno = 1;
434    } elsif ($cmd eq 'show-not-found') {
435	$show_not_found = 1;
436    } else {
437	# Unknown argument
438        usage();
439    }
440}
441
442# continue execution near EOF;
443
444# get kernel version from env
445sub get_kernel_version() {
446    my $version = 'unknown kernel version';
447
448    if (defined($ENV{'KERNELVERSION'})) {
449	$version = $ENV{'KERNELVERSION'};
450    }
451    return $version;
452}
453
454#
455sub print_lineno {
456    my $lineno = shift;
457    if ($enable_lineno && defined($lineno)) {
458        print "#define LINENO " . $lineno . "\n";
459    }
460}
461##
462# dumps section contents to arrays/hashes intended for that purpose.
463#
464sub dump_section {
465    my $file = shift;
466    my $name = shift;
467    my $contents = join "\n", @_;
468
469    if ($name =~ m/$type_param/) {
470	$name = $1;
471	$parameterdescs{$name} = $contents;
472	$sectcheck = $sectcheck . $name . " ";
473        $parameterdesc_start_lines{$name} = $new_start_line;
474        $new_start_line = 0;
475    } elsif ($name eq "@\.\.\.") {
476	$name = "...";
477	$parameterdescs{$name} = $contents;
478	$sectcheck = $sectcheck . $name . " ";
479        $parameterdesc_start_lines{$name} = $new_start_line;
480        $new_start_line = 0;
481    } else {
482	if (defined($sections{$name}) && ($sections{$name} ne "")) {
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	    }
488	    $sections{$name} .= $contents;
489	} else {
490	    $sections{$name} = $contents;
491	    push @sectionlist, $name;
492            $section_start_lines{$name} = $new_start_line;
493            $new_start_line = 0;
494	}
495    }
496}
497
498##
499# dump DOC: section after checking that it should go out
500#
501sub dump_doc_section {
502    my $file = shift;
503    my $name = shift;
504    my $contents = join "\n", @_;
505
506    if ($no_doc_sections) {
507        return;
508    }
509
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})))
515    {
516	dump_section($file, $name, $contents);
517	output_blockhead({'sectionlist' => \@sectionlist,
518			  'sections' => \%sections,
519			  'module' => $modulename,
520			  'content-only' => ($output_selection != OUTPUT_ALL), });
521    }
522}
523
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
532#  sections => %section descriptions
533#
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
545#   print STDERR "contents b4:$contents\n";
546    eval $dohighlight;
547    die $@ if $@;
548#   print STDERR "contents af:$contents\n";
549
550    foreach $line (split "\n", $contents) {
551	if (! $output_preformatted) {
552	    $line =~ s/^\s*//;
553	}
554	if ($line eq ""){
555	    if (! $output_preformatted) {
556		print $lineprefix, local_unescape($blankline);
557	    }
558	} else {
559	    $line =~ s/\\\\\\/\&/g;
560	    if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
561		print "\\&$line";
562	    } else {
563		print $lineprefix, $line;
564	    }
565	}
566	print "\n";
567    }
568}
569
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";
580    print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
581
582    print ".SH SYNOPSIS\n";
583    if ($args{'functiontype'} ne "") {
584	print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
585    } else {
586	print ".B \"" . $args{'function'} . "\n";
587    }
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
598	    print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
599	} else {
600	    $type =~ s/([^\*])$/$1 /;
601	    print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
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
612	print ".IP \"" . $parameter . "\" 12\n";
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";
631    print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
632
633    print ".SH SYNOPSIS\n";
634    print "enum " . $args{'enum'} . " {\n";
635    $count = 0;
636    foreach my $parameter (@{$args{'parameterlist'}}) {
637	print ".br\n.BI \"    $parameter\"\n";
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
653	print ".IP \"" . $parameter . "\" 12\n";
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
668    print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
669
670    print ".SH NAME\n";
671    print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
672
673    my $declaration = $args{'definition'};
674    $declaration =~ s/\t/  /g;
675    $declaration =~ s/\n/"\n.br\n.BI \"/g;
676    print ".SH SYNOPSIS\n";
677    print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
678    print ".BI \"$declaration\n};\n.br\n\n";
679
680    print ".SH Members\n";
681    foreach $parameter (@{$args{'parameterlist'}}) {
682	($parameter =~ /^#/) && next;
683
684	my $parameter_name = $parameter;
685	$parameter_name =~ s/\[.*//;
686
687	($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
688	print ".IP \"" . $parameter . "\" 12\n";
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";
706    print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
707
708    foreach $section (@{$args{'sectionlist'}}) {
709	print ".SH \"$section\"\n";
710	output_highlight($args{'sections'}{$section});
711    }
712}
713
714sub output_blockhead_man(%) {
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
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'}}) {
741	if ($output_selection != OUTPUT_INCLUDE) {
742	    print "**$section**\n\n";
743	}
744        print_lineno($section_start_lines{$section});
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) {
761	print $lineprefix . $line . "\n";
762    }
763}
764
765sub output_function_rst(%) {
766    my %args = %{$_[0]};
767    my ($parameter, $section);
768    my $oldprefix = $lineprefix;
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    }
781    if ($args{'functiontype'} ne "") {
782	$start .= $args{'functiontype'} . " " . $args{'function'} . " (";
783    } else {
784	$start .= $args{'function'} . " (";
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};
795
796	if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
797	    # pointer-to-function
798	    print $1 . $parameter . ") (" . $2;
799	} else {
800	    print $type . " " . $parameter;
801	}
802    }
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    }
812
813    print "**Parameters**\n\n";
814    $lineprefix = "  ";
815    foreach $parameter (@{$args{'parameterlist'}}) {
816	my $parameter_name = $parameter;
817	$parameter_name =~ s/\[.*//;
818	$type = $args{'parametertypes'}{$parameter};
819
820	if ($type ne "") {
821	    print "``$type $parameter``\n";
822	} else {
823	    print "``$parameter``\n";
824	}
825
826        print_lineno($parameterdesc_start_lines{$parameter_name});
827
828	if (defined($args{'parameterdescs'}{$parameter_name}) &&
829	    $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
830	    output_highlight_rst($args{'parameterdescs'}{$parameter_name});
831	} else {
832	    print "  *undescribed*\n";
833	}
834	print "\n";
835    }
836
837    $lineprefix = $oldprefix;
838    output_section_rst(@_);
839}
840
841sub output_section_rst(%) {
842    my %args = %{$_[0]};
843    my $section;
844    my $oldprefix = $lineprefix;
845    $lineprefix = "";
846
847    foreach $section (@{$args{'sectionlist'}}) {
848	print "**$section**\n\n";
849        print_lineno($section_start_lines{$section});
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);
860    my $oldprefix = $lineprefix;
861    my $count;
862    my $name = "enum " . $args{'enum'};
863
864    print "\n\n.. c:type:: " . $name . "\n\n";
865    print_lineno($declaration_start_line);
866    $lineprefix = "   ";
867    output_highlight_rst($args{'purpose'});
868    print "\n";
869
870    print "**Constants**\n\n";
871    $lineprefix = "  ";
872    foreach $parameter (@{$args{'parameterlist'}}) {
873	print "``$parameter``\n";
874	if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
875	    output_highlight_rst($args{'parameterdescs'}{$parameter});
876	} else {
877	    print "  *undescribed*\n";
878	}
879	print "\n";
880    }
881
882    $lineprefix = $oldprefix;
883    output_section_rst(@_);
884}
885
886sub output_typedef_rst(%) {
887    my %args = %{$_[0]};
888    my ($parameter);
889    my $oldprefix = $lineprefix;
890    my $name = "typedef " . $args{'typedef'};
891
892    print "\n\n.. c:type:: " . $name . "\n\n";
893    print_lineno($declaration_start_line);
894    $lineprefix = "   ";
895    output_highlight_rst($args{'purpose'});
896    print "\n";
897
898    $lineprefix = $oldprefix;
899    output_section_rst(@_);
900}
901
902sub output_struct_rst(%) {
903    my %args = %{$_[0]};
904    my ($parameter);
905    my $oldprefix = $lineprefix;
906    my $name = $args{'type'} . " " . $args{'struct'};
907
908    print "\n\n.. c:type:: " . $name . "\n\n";
909    print_lineno($declaration_start_line);
910    $lineprefix = "   ";
911    output_highlight_rst($args{'purpose'});
912    print "\n";
913
914    print "**Definition**\n\n";
915    print "::\n\n";
916    my $declaration = $args{'definition'};
917    $declaration =~ s/\t/  /g;
918    print "  " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration  };\n\n";
919
920    print "**Members**\n\n";
921    $lineprefix = "  ";
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};
930        print_lineno($parameterdesc_start_lines{$parameter_name});
931	print "``" . $parameter . "``\n";
932	output_highlight_rst($args{'parameterdescs'}{$parameter_name});
933	print "\n";
934    }
935    print "\n";
936
937    $lineprefix = $oldprefix;
938    output_section_rst(@_);
939}
940
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
958##
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
962sub output_declaration {
963    no strict 'refs';
964    my $name = shift;
965    my $functype = shift;
966    my $func = "output_${functype}_$output_mode";
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}))))
974    {
975	&$func(@_);
976	$section_counter++;
977    }
978}
979
980##
981# generic output function - calls the right one based on current output mode.
982sub output_blockhead {
983    no strict 'refs';
984    my $func = "output_blockhead_" . $output_mode;
985    &$func(@_);
986    $section_counter++;
987}
988
989##
990# takes a declaration (struct, union, enum, typedef) and
991# invokes the right handler. NOT called for functions.
992sub dump_declaration($$) {
993    no strict 'refs';
994    my ($prototype, $file) = @_;
995    my $func = "dump_" . $decl_type;
996    &$func(@_);
997}
998
999sub dump_union($$) {
1000    dump_struct(@_);
1001}
1002
1003sub dump_struct($$) {
1004    my $x = shift;
1005    my $file = shift;
1006
1007    if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
1008	my $decl_type = $1;
1009	$declaration_name = $2;
1010	my $members = $3;
1011
1012	# ignore members marked private:
1013	$members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1014	$members =~ s/\/\*\s*private:.*//gosi;
1015	# strip comments:
1016	$members =~ s/\/\*.*?\*\///gos;
1017	# strip attributes
1018	$members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
1019	$members =~ s/__aligned\s*\([^;]*\)//gos;
1020	$members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
1021	# replace DECLARE_BITMAP
1022	$members =~ s/DECLARE_BITMAP\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
1023	# replace DECLARE_HASHTABLE
1024	$members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
1025	# replace DECLARE_KFIFO
1026	$members =~ s/DECLARE_KFIFO\s*\(([^,)]+),\s*([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
1027	# replace DECLARE_KFIFO_PTR
1028	$members =~ s/DECLARE_KFIFO_PTR\s*\(([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
1029
1030	my $declaration = $members;
1031
1032	# Split nested struct/union elements as newer ones
1033	my $cont = 1;
1034	while ($cont) {
1035		$cont = 0;
1036		while ($members =~ m/(struct|union)([^{};]+){([^{}]*)}([^{}\;]*)\;/) {
1037			my $newmember = "$1 $4;";
1038			my $id = $4;
1039			my $content = $3;
1040			$id =~ s/[:\[].*//;
1041			$id =~ s/^\*+//;
1042			foreach my $arg (split /;/, $content) {
1043				next if ($arg =~ m/^\s*$/);
1044				my $type = $arg;
1045				my $name = $arg;
1046				$type =~ s/\s\S+$//;
1047				$name =~ s/.*\s//;
1048				$name =~ s/[:\[].*//;
1049				$name =~ s/^\*+//;
1050				next if (($name =~ m/^\s*$/));
1051				if ($id =~ m/^\s*$/) {
1052					# anonymous struct/union
1053					$newmember .= "$type $name;";
1054				} else {
1055					$newmember .= "$type $id.$name;";
1056				}
1057			}
1058			$members =~ s/(struct|union)([^{};]+){([^{}]*)}([^{}\;]*)\;/$newmember/;
1059			$cont = 1;
1060		};
1061	};
1062
1063	# Ignore other nested elements, like enums
1064	$members =~ s/({[^\{\}]*})//g;
1065
1066	create_parameterlist($members, ';', $file);
1067	check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
1068
1069	# Adjust declaration for better display
1070	$declaration =~ s/([{;])/$1\n/g;
1071	$declaration =~ s/}\s+;/};/g;
1072	# Better handle inlined enums
1073	do {} while ($declaration =~ s/(enum\s+{[^}]+),([^\n])/$1,\n$2/);
1074
1075	my @def_args = split /\n/, $declaration;
1076	my $level = 1;
1077	$declaration = "";
1078	foreach my $clause (@def_args) {
1079		$clause =~ s/^\s+//;
1080		$clause =~ s/\s+$//;
1081		$clause =~ s/\s+/ /;
1082		next if (!$clause);
1083		$level-- if ($clause =~ m/(})/ && $level > 1);
1084		if (!($clause =~ m/^\s*#/)) {
1085			$declaration .= "\t" x $level;
1086		}
1087		$declaration .= "\t" . $clause . "\n";
1088		$level++ if ($clause =~ m/({)/ && !($clause =~m/}/));
1089	}
1090	output_declaration($declaration_name,
1091			   'struct',
1092			   {'struct' => $declaration_name,
1093			    'module' => $modulename,
1094			    'definition' => $declaration,
1095			    'parameterlist' => \@parameterlist,
1096			    'parameterdescs' => \%parameterdescs,
1097			    'parametertypes' => \%parametertypes,
1098			    'sectionlist' => \@sectionlist,
1099			    'sections' => \%sections,
1100			    'purpose' => $declaration_purpose,
1101			    'type' => $decl_type
1102			   });
1103    }
1104    else {
1105	print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1106	++$errors;
1107    }
1108}
1109
1110sub dump_enum($$) {
1111    my $x = shift;
1112    my $file = shift;
1113
1114    $x =~ s@/\*.*?\*/@@gos;	# strip comments.
1115    # strip #define macros inside enums
1116    $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
1117
1118    if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
1119	$declaration_name = $1;
1120	my $members = $2;
1121	my %_members;
1122
1123	$members =~ s/\s+$//;
1124
1125	foreach my $arg (split ',', $members) {
1126	    $arg =~ s/^\s*(\w+).*/$1/;
1127	    push @parameterlist, $arg;
1128	    if (!$parameterdescs{$arg}) {
1129		$parameterdescs{$arg} = $undescribed;
1130		print STDERR "${file}:$.: warning: Enum value '$arg' ".
1131		    "not described in enum '$declaration_name'\n";
1132	    }
1133	    $_members{$arg} = 1;
1134	}
1135
1136	while (my ($k, $v) = each %parameterdescs) {
1137	    if (!exists($_members{$k})) {
1138	     print STDERR "${file}:$.: warning: Excess enum value " .
1139	                  "'$k' description in '$declaration_name'\n";
1140	    }
1141        }
1142
1143	output_declaration($declaration_name,
1144			   'enum',
1145			   {'enum' => $declaration_name,
1146			    'module' => $modulename,
1147			    'parameterlist' => \@parameterlist,
1148			    'parameterdescs' => \%parameterdescs,
1149			    'sectionlist' => \@sectionlist,
1150			    'sections' => \%sections,
1151			    'purpose' => $declaration_purpose
1152			   });
1153    }
1154    else {
1155	print STDERR "${file}:$.: error: Cannot parse enum!\n";
1156	++$errors;
1157    }
1158}
1159
1160sub dump_typedef($$) {
1161    my $x = shift;
1162    my $file = shift;
1163
1164    $x =~ s@/\*.*?\*/@@gos;	# strip comments.
1165
1166    # Parse function prototypes
1167    if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ ||
1168	$x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) {
1169
1170	# Function typedefs
1171	$return_type = $1;
1172	$declaration_name = $2;
1173	my $args = $3;
1174
1175	create_parameterlist($args, ',', $file);
1176
1177	output_declaration($declaration_name,
1178			   'function',
1179			   {'function' => $declaration_name,
1180			    'typedef' => 1,
1181			    'module' => $modulename,
1182			    'functiontype' => $return_type,
1183			    'parameterlist' => \@parameterlist,
1184			    'parameterdescs' => \%parameterdescs,
1185			    'parametertypes' => \%parametertypes,
1186			    'sectionlist' => \@sectionlist,
1187			    'sections' => \%sections,
1188			    'purpose' => $declaration_purpose
1189			   });
1190	return;
1191    }
1192
1193    while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1194	$x =~ s/\(*.\)\s*;$/;/;
1195	$x =~ s/\[*.\]\s*;$/;/;
1196    }
1197
1198    if ($x =~ /typedef.*\s+(\w+)\s*;/) {
1199	$declaration_name = $1;
1200
1201	output_declaration($declaration_name,
1202			   'typedef',
1203			   {'typedef' => $declaration_name,
1204			    'module' => $modulename,
1205			    'sectionlist' => \@sectionlist,
1206			    'sections' => \%sections,
1207			    'purpose' => $declaration_purpose
1208			   });
1209    }
1210    else {
1211	print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1212	++$errors;
1213    }
1214}
1215
1216sub save_struct_actual($) {
1217    my $actual = shift;
1218
1219    # strip all spaces from the actual param so that it looks like one string item
1220    $actual =~ s/\s*//g;
1221    $struct_actual = $struct_actual . $actual . " ";
1222}
1223
1224sub create_parameterlist($$$) {
1225    my $args = shift;
1226    my $splitter = shift;
1227    my $file = shift;
1228    my $type;
1229    my $param;
1230
1231    # temporarily replace commas inside function pointer definition
1232    while ($args =~ /(\([^\),]+),/) {
1233	$args =~ s/(\([^\),]+),/$1#/g;
1234    }
1235
1236    foreach my $arg (split($splitter, $args)) {
1237	# strip comments
1238	$arg =~ s/\/\*.*\*\///;
1239	# strip leading/trailing spaces
1240	$arg =~ s/^\s*//;
1241	$arg =~ s/\s*$//;
1242	$arg =~ s/\s+/ /;
1243
1244	if ($arg =~ /^#/) {
1245	    # Treat preprocessor directive as a typeless variable just to fill
1246	    # corresponding data structures "correctly". Catch it later in
1247	    # output_* subs.
1248	    push_parameter($arg, "", $file);
1249	} elsif ($arg =~ m/\(.+\)\s*\(/) {
1250	    # pointer-to-function
1251	    $arg =~ tr/#/,/;
1252	    $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
1253	    $param = $1;
1254	    $type = $arg;
1255	    $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
1256	    save_struct_actual($param);
1257	    push_parameter($param, $type, $file);
1258	} elsif ($arg) {
1259	    $arg =~ s/\s*:\s*/:/g;
1260	    $arg =~ s/\s*\[/\[/g;
1261
1262	    my @args = split('\s*,\s*', $arg);
1263	    if ($args[0] =~ m/\*/) {
1264		$args[0] =~ s/(\*+)\s*/ $1/;
1265	    }
1266
1267	    my @first_arg;
1268	    if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1269		    shift @args;
1270		    push(@first_arg, split('\s+', $1));
1271		    push(@first_arg, $2);
1272	    } else {
1273		    @first_arg = split('\s+', shift @args);
1274	    }
1275
1276	    unshift(@args, pop @first_arg);
1277	    $type = join " ", @first_arg;
1278
1279	    foreach $param (@args) {
1280		if ($param =~ m/^(\*+)\s*(.*)/) {
1281		    save_struct_actual($2);
1282		    push_parameter($2, "$type $1", $file);
1283		}
1284		elsif ($param =~ m/(.*?):(\d+)/) {
1285		    if ($type ne "") { # skip unnamed bit-fields
1286			save_struct_actual($1);
1287			push_parameter($1, "$type:$2", $file)
1288		    }
1289		}
1290		else {
1291		    save_struct_actual($param);
1292		    push_parameter($param, $type, $file);
1293		}
1294	    }
1295	}
1296    }
1297}
1298
1299sub push_parameter($$$) {
1300	my $param = shift;
1301	my $type = shift;
1302	my $file = shift;
1303
1304	if (($anon_struct_union == 1) && ($type eq "") &&
1305	    ($param eq "}")) {
1306		return;		# ignore the ending }; from anon. struct/union
1307	}
1308
1309	$anon_struct_union = 0;
1310	$param =~ s/[\[\)].*//;
1311
1312	if ($type eq "" && $param =~ /\.\.\.$/)
1313	{
1314	    if (!$param =~ /\w\.\.\.$/) {
1315	      # handles unnamed variable parameters
1316	      $param = "...";
1317	    }
1318	    if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1319		$parameterdescs{$param} = "variable arguments";
1320	    }
1321	}
1322	elsif ($type eq "" && ($param eq "" or $param eq "void"))
1323	{
1324	    $param="void";
1325	    $parameterdescs{void} = "no arguments";
1326	}
1327	elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1328	# handle unnamed (anonymous) union or struct:
1329	{
1330		$type = $param;
1331		$param = "{unnamed_" . $param . "}";
1332		$parameterdescs{$param} = "anonymous\n";
1333		$anon_struct_union = 1;
1334	}
1335
1336	# warn if parameter has no description
1337	# (but ignore ones starting with # as these are not parameters
1338	# but inline preprocessor statements);
1339	# also ignore unnamed structs/unions;
1340	if (!$anon_struct_union) {
1341	if (!defined $parameterdescs{$param} && $param !~ /^#/) {
1342
1343	    $parameterdescs{$param} = $undescribed;
1344
1345	    if (($type eq 'function') || ($type eq 'enum')) {
1346		print STDERR "${file}:$.: warning: Function parameter ".
1347		    "or member '$param' not " .
1348		    "described in '$declaration_name'\n";
1349	    }
1350	    print STDERR "${file}:$.: warning:" .
1351			 " No description found for parameter '$param'\n";
1352	    ++$warnings;
1353	}
1354	}
1355
1356	$param = xml_escape($param);
1357
1358	# strip spaces from $param so that it is one continuous string
1359	# on @parameterlist;
1360	# this fixes a problem where check_sections() cannot find
1361	# a parameter like "addr[6 + 2]" because it actually appears
1362	# as "addr[6", "+", "2]" on the parameter list;
1363	# but it's better to maintain the param string unchanged for output,
1364	# so just weaken the string compare in check_sections() to ignore
1365	# "[blah" in a parameter string;
1366	###$param =~ s/\s*//g;
1367	push @parameterlist, $param;
1368	$type =~ s/\s\s+/ /g;
1369	$parametertypes{$param} = $type;
1370}
1371
1372sub check_sections($$$$$) {
1373	my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
1374	my @sects = split ' ', $sectcheck;
1375	my @prms = split ' ', $prmscheck;
1376	my $err;
1377	my ($px, $sx);
1378	my $prm_clean;		# strip trailing "[array size]" and/or beginning "*"
1379
1380	foreach $sx (0 .. $#sects) {
1381		$err = 1;
1382		foreach $px (0 .. $#prms) {
1383			$prm_clean = $prms[$px];
1384			$prm_clean =~ s/\[.*\]//;
1385			$prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
1386			# ignore array size in a parameter string;
1387			# however, the original param string may contain
1388			# spaces, e.g.:  addr[6 + 2]
1389			# and this appears in @prms as "addr[6" since the
1390			# parameter list is split at spaces;
1391			# hence just ignore "[..." for the sections check;
1392			$prm_clean =~ s/\[.*//;
1393
1394			##$prm_clean =~ s/^\**//;
1395			if ($prm_clean eq $sects[$sx]) {
1396				$err = 0;
1397				last;
1398			}
1399		}
1400		if ($err) {
1401			if ($decl_type eq "function") {
1402				print STDERR "${file}:$.: warning: " .
1403					"Excess function parameter " .
1404					"'$sects[$sx]' " .
1405					"description in '$decl_name'\n";
1406				++$warnings;
1407			}
1408		}
1409	}
1410}
1411
1412##
1413# Checks the section describing the return value of a function.
1414sub check_return_section {
1415        my $file = shift;
1416        my $declaration_name = shift;
1417        my $return_type = shift;
1418
1419        # Ignore an empty return type (It's a macro)
1420        # Ignore functions with a "void" return type. (But don't ignore "void *")
1421        if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
1422                return;
1423        }
1424
1425        if (!defined($sections{$section_return}) ||
1426            $sections{$section_return} eq "") {
1427                print STDERR "${file}:$.: warning: " .
1428                        "No description found for return value of " .
1429                        "'$declaration_name'\n";
1430                ++$warnings;
1431        }
1432}
1433
1434##
1435# takes a function prototype and the name of the current file being
1436# processed and spits out all the details stored in the global
1437# arrays/hashes.
1438sub dump_function($$) {
1439    my $prototype = shift;
1440    my $file = shift;
1441    my $noret = 0;
1442
1443    $prototype =~ s/^static +//;
1444    $prototype =~ s/^extern +//;
1445    $prototype =~ s/^asmlinkage +//;
1446    $prototype =~ s/^inline +//;
1447    $prototype =~ s/^__inline__ +//;
1448    $prototype =~ s/^__inline +//;
1449    $prototype =~ s/^__always_inline +//;
1450    $prototype =~ s/^noinline +//;
1451    $prototype =~ s/__init +//;
1452    $prototype =~ s/__init_or_module +//;
1453    $prototype =~ s/__meminit +//;
1454    $prototype =~ s/__must_check +//;
1455    $prototype =~ s/__weak +//;
1456    my $define = $prototype =~ s/^#\s*define\s+//; #ak added
1457    $prototype =~ s/__attribute__\s*\(\(
1458            (?:
1459                 [\w\s]++          # attribute name
1460                 (?:\([^)]*+\))?   # attribute arguments
1461                 \s*+,?            # optional comma at the end
1462            )+
1463          \)\)\s+//x;
1464
1465    # Yes, this truly is vile.  We are looking for:
1466    # 1. Return type (may be nothing if we're looking at a macro)
1467    # 2. Function name
1468    # 3. Function parameters.
1469    #
1470    # All the while we have to watch out for function pointer parameters
1471    # (which IIRC is what the two sections are for), C types (these
1472    # regexps don't even start to express all the possibilities), and
1473    # so on.
1474    #
1475    # If you mess with these regexps, it's a good idea to check that
1476    # the following functions' documentation still comes out right:
1477    # - parport_register_device (function pointer parameters)
1478    # - atomic_set (macro)
1479    # - pci_match_device, __copy_to_user (long return type)
1480
1481    if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
1482        # This is an object-like macro, it has no return type and no parameter
1483        # list.
1484        # Function-like macros are not allowed to have spaces between
1485        # declaration_name and opening parenthesis (notice the \s+).
1486        $return_type = $1;
1487        $declaration_name = $2;
1488        $noret = 1;
1489    } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1490	$prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1491	$prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1492	$prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1493	$prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1494	$prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1495	$prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1496	$prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1497	$prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1498	$prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1499	$prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1500	$prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1501	$prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1502	$prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1503	$prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1504	$prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1505	$prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/)  {
1506	$return_type = $1;
1507	$declaration_name = $2;
1508	my $args = $3;
1509
1510	create_parameterlist($args, ',', $file);
1511    } else {
1512	print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
1513	return;
1514    }
1515
1516	my $prms = join " ", @parameterlist;
1517	check_sections($file, $declaration_name, "function", $sectcheck, $prms);
1518
1519        # This check emits a lot of warnings at the moment, because many
1520        # functions don't have a 'Return' doc section. So until the number
1521        # of warnings goes sufficiently down, the check is only performed in
1522        # verbose mode.
1523        # TODO: always perform the check.
1524        if ($verbose && !$noret) {
1525                check_return_section($file, $declaration_name, $return_type);
1526        }
1527
1528    output_declaration($declaration_name,
1529		       'function',
1530		       {'function' => $declaration_name,
1531			'module' => $modulename,
1532			'functiontype' => $return_type,
1533			'parameterlist' => \@parameterlist,
1534			'parameterdescs' => \%parameterdescs,
1535			'parametertypes' => \%parametertypes,
1536			'sectionlist' => \@sectionlist,
1537			'sections' => \%sections,
1538			'purpose' => $declaration_purpose
1539		       });
1540}
1541
1542sub reset_state {
1543    $function = "";
1544    %parameterdescs = ();
1545    %parametertypes = ();
1546    @parameterlist = ();
1547    %sections = ();
1548    @sectionlist = ();
1549    $sectcheck = "";
1550    $struct_actual = "";
1551    $prototype = "";
1552
1553    $state = STATE_NORMAL;
1554    $inline_doc_state = STATE_INLINE_NA;
1555}
1556
1557sub tracepoint_munge($) {
1558	my $file = shift;
1559	my $tracepointname = 0;
1560	my $tracepointargs = 0;
1561
1562	if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
1563		$tracepointname = $1;
1564	}
1565	if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1566		$tracepointname = $1;
1567	}
1568	if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1569		$tracepointname = $2;
1570	}
1571	$tracepointname =~ s/^\s+//; #strip leading whitespace
1572	if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
1573		$tracepointargs = $1;
1574	}
1575	if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
1576		print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
1577			     "$prototype\n";
1578	} else {
1579		$prototype = "static inline void trace_$tracepointname($tracepointargs)";
1580	}
1581}
1582
1583sub syscall_munge() {
1584	my $void = 0;
1585
1586	$prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
1587##	if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1588	if ($prototype =~ m/SYSCALL_DEFINE0/) {
1589		$void = 1;
1590##		$prototype = "long sys_$1(void)";
1591	}
1592
1593	$prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1594	if ($prototype =~ m/long (sys_.*?),/) {
1595		$prototype =~ s/,/\(/;
1596	} elsif ($void) {
1597		$prototype =~ s/\)/\(void\)/;
1598	}
1599
1600	# now delete all of the odd-number commas in $prototype
1601	# so that arg types & arg names don't have a comma between them
1602	my $count = 0;
1603	my $len = length($prototype);
1604	if ($void) {
1605		$len = 0;	# skip the for-loop
1606	}
1607	for (my $ix = 0; $ix < $len; $ix++) {
1608		if (substr($prototype, $ix, 1) eq ',') {
1609			$count++;
1610			if ($count % 2 == 1) {
1611				substr($prototype, $ix, 1) = ' ';
1612			}
1613		}
1614	}
1615}
1616
1617sub process_proto_function($$) {
1618    my $x = shift;
1619    my $file = shift;
1620
1621    $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1622
1623    if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1624	# do nothing
1625    }
1626    elsif ($x =~ /([^\{]*)/) {
1627	$prototype .= $1;
1628    }
1629
1630    if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
1631	$prototype =~ s@/\*.*?\*/@@gos;	# strip comments.
1632	$prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1633	$prototype =~ s@^\s+@@gos; # strip leading spaces
1634	if ($prototype =~ /SYSCALL_DEFINE/) {
1635		syscall_munge();
1636	}
1637	if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1638	    $prototype =~ /DEFINE_SINGLE_EVENT/)
1639	{
1640		tracepoint_munge($file);
1641	}
1642	dump_function($prototype, $file);
1643	reset_state();
1644    }
1645}
1646
1647sub process_proto_type($$) {
1648    my $x = shift;
1649    my $file = shift;
1650
1651    $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1652    $x =~ s@^\s+@@gos; # strip leading spaces
1653    $x =~ s@\s+$@@gos; # strip trailing spaces
1654    $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1655
1656    if ($x =~ /^#/) {
1657	# To distinguish preprocessor directive from regular declaration later.
1658	$x .= ";";
1659    }
1660
1661    while (1) {
1662	if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
1663            if( length $prototype ) {
1664                $prototype .= " "
1665            }
1666	    $prototype .= $1 . $2;
1667	    ($2 eq '{') && $brcount++;
1668	    ($2 eq '}') && $brcount--;
1669	    if (($2 eq ';') && ($brcount == 0)) {
1670		dump_declaration($prototype, $file);
1671		reset_state();
1672		last;
1673	    }
1674	    $x = $3;
1675	} else {
1676	    $prototype .= $x;
1677	    last;
1678	}
1679    }
1680}
1681
1682# xml_escape: replace <, >, and & in the text stream;
1683#
1684# however, formatting controls that are generated internally/locally in the
1685# kernel-doc script are not escaped here; instead, they begin life like
1686# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
1687# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
1688# just before actual output; (this is done by local_unescape())
1689sub xml_escape($) {
1690	my $text = shift;
1691	if ($output_mode eq "man") {
1692		return $text;
1693	}
1694	$text =~ s/\&/\\\\\\amp;/g;
1695	$text =~ s/\</\\\\\\lt;/g;
1696	$text =~ s/\>/\\\\\\gt;/g;
1697	return $text;
1698}
1699
1700# xml_unescape: reverse the effects of xml_escape
1701sub xml_unescape($) {
1702	my $text = shift;
1703	if ($output_mode eq "man") {
1704		return $text;
1705	}
1706	$text =~ s/\\\\\\amp;/\&/g;
1707	$text =~ s/\\\\\\lt;/</g;
1708	$text =~ s/\\\\\\gt;/>/g;
1709	return $text;
1710}
1711
1712# convert local escape strings to html
1713# local escape strings look like:  '\\\\menmonic:' (that's 4 backslashes)
1714sub local_unescape($) {
1715	my $text = shift;
1716	if ($output_mode eq "man") {
1717		return $text;
1718	}
1719	$text =~ s/\\\\\\\\lt:/</g;
1720	$text =~ s/\\\\\\\\gt:/>/g;
1721	return $text;
1722}
1723
1724sub map_filename($) {
1725    my $file;
1726    my ($orig_file) = @_;
1727
1728    if (defined($ENV{'SRCTREE'})) {
1729	$file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1730    } else {
1731	$file = $orig_file;
1732    }
1733
1734    if (defined($source_map{$file})) {
1735	$file = $source_map{$file};
1736    }
1737
1738    return $file;
1739}
1740
1741sub process_export_file($) {
1742    my ($orig_file) = @_;
1743    my $file = map_filename($orig_file);
1744
1745    if (!open(IN,"<$file")) {
1746	print STDERR "Error: Cannot open file $file\n";
1747	++$errors;
1748	return;
1749    }
1750
1751    while (<IN>) {
1752	if (/$export_symbol/) {
1753	    $function_table{$2} = 1;
1754	}
1755    }
1756
1757    close(IN);
1758}
1759
1760sub process_file($) {
1761    my $file;
1762    my $identifier;
1763    my $func;
1764    my $descr;
1765    my $in_purpose = 0;
1766    my $initial_section_counter = $section_counter;
1767    my ($orig_file) = @_;
1768    my $leading_space;
1769
1770    $file = map_filename($orig_file);
1771
1772    if (!open(IN,"<$file")) {
1773	print STDERR "Error: Cannot open file $file\n";
1774	++$errors;
1775	return;
1776    }
1777
1778    $. = 1;
1779
1780    $section_counter = 0;
1781    while (<IN>) {
1782	while (s/\\\s*$//) {
1783	    $_ .= <IN>;
1784	}
1785	# Replace tabs by spaces
1786        while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
1787	if ($state == STATE_NORMAL) {
1788	    if (/$doc_start/o) {
1789		$state = STATE_NAME;	# next line is always the function name
1790		$in_doc_sect = 0;
1791		$declaration_start_line = $. + 1;
1792	    }
1793	} elsif ($state == STATE_NAME) {# this line is the function name (always)
1794	    if (/$doc_block/o) {
1795		$state = STATE_DOCBLOCK;
1796		$contents = "";
1797                $new_start_line = $. + 1;
1798
1799		if ( $1 eq "" ) {
1800			$section = $section_intro;
1801		} else {
1802			$section = $1;
1803		}
1804	    }
1805	    elsif (/$doc_decl/o) {
1806		$identifier = $1;
1807		if (/\s*([\w\s]+?)\s*-/) {
1808		    $identifier = $1;
1809		}
1810
1811		$state = STATE_FIELD;
1812		# if there's no @param blocks need to set up default section
1813		# here
1814		$contents = "";
1815		$section = $section_default;
1816		$new_start_line = $. + 1;
1817		if (/-(.*)/) {
1818		    # strip leading/trailing/multiple spaces
1819		    $descr= $1;
1820		    $descr =~ s/^\s*//;
1821		    $descr =~ s/\s*$//;
1822		    $descr =~ s/\s+/ /g;
1823		    $declaration_purpose = xml_escape($descr);
1824		    $in_purpose = 1;
1825		} else {
1826		    $declaration_purpose = "";
1827		}
1828
1829		if (($declaration_purpose eq "") && $verbose) {
1830			print STDERR "${file}:$.: warning: missing initial short description on line:\n";
1831			print STDERR $_;
1832			++$warnings;
1833		}
1834
1835		if ($identifier =~ m/^struct/) {
1836		    $decl_type = 'struct';
1837		} elsif ($identifier =~ m/^union/) {
1838		    $decl_type = 'union';
1839		} elsif ($identifier =~ m/^enum/) {
1840		    $decl_type = 'enum';
1841		} elsif ($identifier =~ m/^typedef/) {
1842		    $decl_type = 'typedef';
1843		} else {
1844		    $decl_type = 'function';
1845		}
1846
1847		if ($verbose) {
1848		    print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
1849		}
1850	    } else {
1851		print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
1852		" - I thought it was a doc line\n";
1853		++$warnings;
1854		$state = STATE_NORMAL;
1855	    }
1856	} elsif ($state == STATE_FIELD) {	# look for head: lines, and include content
1857	    if (/$doc_sect/i) { # case insensitive for supported section names
1858		$newsection = $1;
1859		$newcontents = $2;
1860
1861		# map the supported section names to the canonical names
1862		if ($newsection =~ m/^description$/i) {
1863		    $newsection = $section_default;
1864		} elsif ($newsection =~ m/^context$/i) {
1865		    $newsection = $section_context;
1866		} elsif ($newsection =~ m/^returns?$/i) {
1867		    $newsection = $section_return;
1868		} elsif ($newsection =~ m/^\@return$/) {
1869		    # special: @return is a section, not a param description
1870		    $newsection = $section_return;
1871		}
1872
1873		if (($contents ne "") && ($contents ne "\n")) {
1874		    if (!$in_doc_sect && $verbose) {
1875			print STDERR "${file}:$.: warning: contents before sections\n";
1876			++$warnings;
1877		    }
1878		    dump_section($file, $section, xml_escape($contents));
1879		    $section = $section_default;
1880		}
1881
1882		$in_doc_sect = 1;
1883		$in_purpose = 0;
1884		$contents = $newcontents;
1885                $new_start_line = $.;
1886		while (substr($contents, 0, 1) eq " ") {
1887		    $contents = substr($contents, 1);
1888		}
1889		if ($contents ne "") {
1890		    $contents .= "\n";
1891		}
1892		$section = $newsection;
1893		$leading_space = undef;
1894	    } elsif (/$doc_end/) {
1895		if (($contents ne "") && ($contents ne "\n")) {
1896		    dump_section($file, $section, xml_escape($contents));
1897		    $section = $section_default;
1898		    $contents = "";
1899		}
1900		# look for doc_com + <text> + doc_end:
1901		if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
1902		    print STDERR "${file}:$.: warning: suspicious ending line: $_";
1903		    ++$warnings;
1904		}
1905
1906		$prototype = "";
1907		$state = STATE_PROTO;
1908		$brcount = 0;
1909#		print STDERR "end of doc comment, looking for prototype\n";
1910	    } elsif (/$doc_content/) {
1911		# miguel-style comment kludge, look for blank lines after
1912		# @parameter line to signify start of description
1913		if ($1 eq "") {
1914		    if ($section =~ m/^@/ || $section eq $section_context) {
1915			dump_section($file, $section, xml_escape($contents));
1916			$section = $section_default;
1917			$contents = "";
1918                        $new_start_line = $.;
1919		    } else {
1920			$contents .= "\n";
1921		    }
1922		    $in_purpose = 0;
1923		} elsif ($in_purpose == 1) {
1924		    # Continued declaration purpose
1925		    chomp($declaration_purpose);
1926		    $declaration_purpose .= " " . xml_escape($1);
1927		    $declaration_purpose =~ s/\s+/ /g;
1928		} else {
1929		    my $cont = $1;
1930		    if ($section =~ m/^@/ || $section eq $section_context) {
1931			if (!defined $leading_space) {
1932			    if ($cont =~ m/^(\s+)/) {
1933				$leading_space = $1;
1934			    } else {
1935				$leading_space = "";
1936			    }
1937			}
1938
1939			$cont =~ s/^$leading_space//;
1940		    }
1941		    $contents .= $cont . "\n";
1942		}
1943	    } else {
1944		# i dont know - bad line?  ignore.
1945		print STDERR "${file}:$.: warning: bad line: $_";
1946		++$warnings;
1947	    }
1948	} elsif ($state == STATE_INLINE) { # scanning for inline parameters
1949	    # First line (state 1) needs to be a @parameter
1950	    if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
1951		$section = $1;
1952		$contents = $2;
1953                $new_start_line = $.;
1954		if ($contents ne "") {
1955		    while (substr($contents, 0, 1) eq " ") {
1956			$contents = substr($contents, 1);
1957		    }
1958		    $contents .= "\n";
1959		}
1960		$inline_doc_state = STATE_INLINE_TEXT;
1961	    # Documentation block end */
1962	    } elsif (/$doc_inline_end/) {
1963		if (($contents ne "") && ($contents ne "\n")) {
1964		    dump_section($file, $section, xml_escape($contents));
1965		    $section = $section_default;
1966		    $contents = "";
1967		}
1968		$state = STATE_PROTO;
1969		$inline_doc_state = STATE_INLINE_NA;
1970	    # Regular text
1971	    } elsif (/$doc_content/) {
1972		if ($inline_doc_state == STATE_INLINE_TEXT) {
1973		    $contents .= $1 . "\n";
1974		    # nuke leading blank lines
1975		    if ($contents =~ /^\s*$/) {
1976			$contents = "";
1977		    }
1978		} elsif ($inline_doc_state == STATE_INLINE_NAME) {
1979		    $inline_doc_state = STATE_INLINE_ERROR;
1980		    print STDERR "${file}:$.: warning: ";
1981		    print STDERR "Incorrect use of kernel-doc format: $_";
1982		    ++$warnings;
1983		}
1984	    }
1985	} elsif ($state == STATE_PROTO) {	# scanning for function '{' (end of prototype)
1986	    if (/$doc_inline_oneline/) {
1987		$section = $1;
1988		$contents = $2;
1989		if ($contents ne "") {
1990		    $contents .= "\n";
1991		    dump_section($file, $section, xml_escape($contents));
1992		    $section = $section_default;
1993		    $contents = "";
1994		}
1995	    } elsif (/$doc_inline_start/) {
1996		$state = STATE_INLINE;
1997		$inline_doc_state = STATE_INLINE_NAME;
1998	    } elsif ($decl_type eq 'function') {
1999		process_proto_function($_, $file);
2000	    } else {
2001		process_proto_type($_, $file);
2002	    }
2003	} elsif ($state == STATE_DOCBLOCK) {
2004		if (/$doc_end/)
2005		{
2006			dump_doc_section($file, $section, xml_escape($contents));
2007			$section = $section_default;
2008			$contents = "";
2009			$function = "";
2010			%parameterdescs = ();
2011			%parametertypes = ();
2012			@parameterlist = ();
2013			%sections = ();
2014			@sectionlist = ();
2015			$prototype = "";
2016			$state = STATE_NORMAL;
2017		}
2018		elsif (/$doc_content/)
2019		{
2020			if ( $1 eq "" )
2021			{
2022				$contents .= $blankline;
2023			}
2024			else
2025			{
2026				$contents .= $1 . "\n";
2027			}
2028		}
2029	}
2030    }
2031    if ($initial_section_counter == $section_counter) {
2032	if ($output_mode ne "none") {
2033	    print STDERR "${file}:1: warning: no structured comments found\n";
2034	}
2035	if (($output_selection == OUTPUT_INCLUDE) && ($show_not_found == 1)) {
2036	    print STDERR "    Was looking for '$_'.\n" for keys %function_table;
2037	}
2038    }
2039}
2040
2041
2042$kernelversion = get_kernel_version();
2043
2044# generate a sequence of code that will splice in highlighting information
2045# using the s// operator.
2046for (my $k = 0; $k < @highlights; $k++) {
2047    my $pattern = $highlights[$k][0];
2048    my $result = $highlights[$k][1];
2049#   print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2050    $dohighlight .=  "\$contents =~ s:$pattern:$result:gs;\n";
2051}
2052
2053# Read the file that maps relative names to absolute names for
2054# separate source and object directories and for shadow trees.
2055if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2056	my ($relname, $absname);
2057	while(<SOURCE_MAP>) {
2058		chop();
2059		($relname, $absname) = (split())[0..1];
2060		$relname =~ s:^/+::;
2061		$source_map{$relname} = $absname;
2062	}
2063	close(SOURCE_MAP);
2064}
2065
2066if ($output_selection == OUTPUT_EXPORTED ||
2067    $output_selection == OUTPUT_INTERNAL) {
2068
2069    push(@export_file_list, @ARGV);
2070
2071    foreach (@export_file_list) {
2072	chomp;
2073	process_export_file($_);
2074    }
2075}
2076
2077foreach (@ARGV) {
2078    chomp;
2079    process_file($_);
2080}
2081if ($verbose && $errors) {
2082  print STDERR "$errors errors\n";
2083}
2084if ($verbose && $warnings) {
2085  print STDERR "$warnings warnings\n";
2086}
2087
2088exit($output_mode eq "none" ? 0 : $errors);
2089