xref: /openbmc/linux/scripts/kernel-doc (revision 2875f787)
1cb77f0d6SKamil Rytarowski#!/usr/bin/env perl
238476378SJonathan Corbet# SPDX-License-Identifier: GPL-2.0
31da177e4SLinus Torvalds
4cb77f0d6SKamil Rytarowskiuse warnings;
51da177e4SLinus Torvaldsuse strict;
61da177e4SLinus Torvalds
71da177e4SLinus Torvalds## Copyright (c) 1998 Michael Zucchi, All Rights Reserved        ##
81da177e4SLinus Torvalds## Copyright (C) 2000, 1  Tim Waugh <twaugh@redhat.com>          ##
91da177e4SLinus Torvalds## Copyright (C) 2001  Simon Huggins                             ##
1070c95b00SRandy Dunlap## Copyright (C) 2005-2012  Randy Dunlap                         ##
111b40c194SDan Luedtke## Copyright (C) 2012  Dan Luedtke                               ##
121da177e4SLinus Torvalds## 								 ##
131da177e4SLinus Torvalds## #define enhancements by Armin Kuster <akuster@mvista.com>	 ##
141da177e4SLinus Torvalds## Copyright (c) 2000 MontaVista Software, Inc.			 ##
151da177e4SLinus Torvalds## 								 ##
161da177e4SLinus Torvalds## This software falls under the GNU General Public License.     ##
171da177e4SLinus Torvalds## Please read the COPYING file for more information             ##
181da177e4SLinus Torvalds
1943caf1a6STomasz Warniełłouse Pod::Usage qw/pod2usage/;
2043caf1a6STomasz Warniełło
21a5cdaea5STomasz Warniełło=head1 NAME
22a5cdaea5STomasz Warniełło
23a5cdaea5STomasz Warniełłokernel-doc - Print formatted kernel documentation to stdout
24a5cdaea5STomasz Warniełło
25a5cdaea5STomasz Warniełło=head1 SYNOPSIS
26a5cdaea5STomasz Warniełło
27a5cdaea5STomasz Warniełło kernel-doc [-h] [-v] [-Werror]
28a5cdaea5STomasz Warniełło   [ -man |
29a5cdaea5STomasz Warniełło     -rst [-sphinx-version VERSION] [-enable-lineno] |
30a5cdaea5STomasz Warniełło     -none
31a5cdaea5STomasz Warniełło   ]
32a5cdaea5STomasz Warniełło   [
33a5cdaea5STomasz Warniełło     -export |
34a5cdaea5STomasz Warniełło     -internal |
35a5cdaea5STomasz Warniełło     [-function NAME] ... |
36a5cdaea5STomasz Warniełło     [-nosymbol NAME] ...
37a5cdaea5STomasz Warniełło   ]
38a5cdaea5STomasz Warniełło   [-no-doc-sections]
39a5cdaea5STomasz Warniełło   [-export-file FILE] ...
40a5cdaea5STomasz Warniełło   FILE ...
41a5cdaea5STomasz Warniełło
42a5cdaea5STomasz WarniełłoRun `kernel-doc -h` for details.
43a5cdaea5STomasz Warniełło
44f1583922STomasz Warniełło=head1 DESCRIPTION
45f1583922STomasz Warniełło
46f1583922STomasz WarniełłoRead C language source or header FILEs, extract embedded documentation comments,
47f1583922STomasz Warniełłoand print formatted documentation to standard output.
48f1583922STomasz Warniełło
49f1583922STomasz WarniełłoThe documentation comments are identified by the "/**" opening comment mark.
50f1583922STomasz Warniełło
51f1583922STomasz WarniełłoSee Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
52f1583922STomasz Warniełło
53a5cdaea5STomasz Warniełło=cut
54a5cdaea5STomasz Warniełło
55*2875f787STomasz Warniełło# more perldoc at the end of the file
56*2875f787STomasz Warniełło
571da177e4SLinus Torvalds# 18/01/2001 - 	Cleanups
581da177e4SLinus Torvalds# 		Functions prototyped as foo(void) same as foo()
591da177e4SLinus Torvalds# 		Stop eval'ing where we don't need to.
601da177e4SLinus Torvalds# -- huggie@earth.li
611da177e4SLinus Torvalds
621da177e4SLinus Torvalds# 27/06/2001 -  Allowed whitespace after initial "/**" and
631da177e4SLinus Torvalds#               allowed comments before function declarations.
641da177e4SLinus Torvalds# -- Christian Kreibich <ck@whoop.org>
651da177e4SLinus Torvalds
661da177e4SLinus Torvalds# Still to do:
671da177e4SLinus Torvalds# 	- add perldoc documentation
681da177e4SLinus Torvalds# 	- Look more closely at some of the scarier bits :)
691da177e4SLinus Torvalds
701da177e4SLinus Torvalds# 26/05/2001 - 	Support for separate source and object trees.
711da177e4SLinus Torvalds#		Return error code.
721da177e4SLinus Torvalds# 		Keith Owens <kaos@ocs.com.au>
731da177e4SLinus Torvalds
741da177e4SLinus Torvalds# 23/09/2001 - Added support for typedefs, structs, enums and unions
751da177e4SLinus Torvalds#              Support for Context section; can be terminated using empty line
761da177e4SLinus Torvalds#              Small fixes (like spaces vs. \s in regex)
771da177e4SLinus Torvalds# -- Tim Jansen <tim@tjansen.de>
781da177e4SLinus Torvalds
791b40c194SDan Luedtke# 25/07/2012 - Added support for HTML5
801b40c194SDan Luedtke# -- Dan Luedtke <mail@danrl.de>
811da177e4SLinus Torvalds
82fadc0b31SJani Nikulasub usage {
83fadc0b31SJani Nikula    my $message = <<"EOF";
84fadc0b31SJani NikulaUsage: $0 [OPTION ...] FILE ...
851da177e4SLinus Torvalds
8693351d41SMauro Carvalho ChehabOutput format selection modifier (affects only ReST output):
8793351d41SMauro Carvalho Chehab
8893351d41SMauro Carvalho Chehab  -sphinx-version	Use the ReST C domain dialect compatible with an
8993351d41SMauro Carvalho Chehab			specific Sphinx Version.
9093351d41SMauro Carvalho Chehab			If not specified, kernel-doc will auto-detect using
9193351d41SMauro Carvalho Chehab			the sphinx-build version found on PATH.
9293351d41SMauro Carvalho Chehab
93fadc0b31SJani NikulaOutput selection (mutually exclusive):
9486ae2e38SJani Nikula  -export		Only output documentation for symbols that have been
9586ae2e38SJani Nikula			exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
96c9b2cfb3SJani Nikula                        in any input FILE or -export-file FILE.
9786ae2e38SJani Nikula  -internal		Only output documentation for symbols that have NOT been
9886ae2e38SJani Nikula			exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
99c9b2cfb3SJani Nikula                        in any input FILE or -export-file FILE.
100fadc0b31SJani Nikula  -function NAME	Only output documentation for the given function(s)
101fadc0b31SJani Nikula			or DOC: section title(s). All other functions and DOC:
102fadc0b31SJani Nikula			sections are ignored. May be specified multiple times.
103eab795ddSMauro Carvalho Chehab  -nosymbol NAME	Exclude the specified symbols from the output
104eab795ddSMauro Carvalho Chehab		        documentation. May be specified multiple times.
105fadc0b31SJani Nikula
106fadc0b31SJani NikulaOutput selection modifiers:
107fadc0b31SJani Nikula  -no-doc-sections	Do not output DOC: sections.
1080b0f5f29SDaniel Vetter  -enable-lineno        Enable output of #define LINENO lines. Only works with
1090b0f5f29SDaniel Vetter                        reStructuredText format.
11088c2b57dSJani Nikula  -export-file FILE     Specify an additional FILE in which to look for
11188c2b57dSJani Nikula                        EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with
11288c2b57dSJani Nikula                        -export or -internal. May be specified multiple times.
113fadc0b31SJani Nikula
114fadc0b31SJani NikulaOther parameters:
115fadc0b31SJani Nikula  -v			Verbose output, more warnings and other information.
116fadc0b31SJani Nikula  -h			Print this help.
1172c12c810SPierre-Louis Bossart  -Werror		Treat warnings as errors.
118fadc0b31SJani Nikula
119fadc0b31SJani NikulaEOF
120fadc0b31SJani Nikula    print $message;
121fadc0b31SJani Nikula    exit 1;
122fadc0b31SJani Nikula}
1231da177e4SLinus Torvalds
1241da177e4SLinus Torvalds#
1251da177e4SLinus Torvalds# format of comments.
1261da177e4SLinus Torvalds# In the following table, (...)? signifies optional structure.
1271da177e4SLinus Torvalds#                         (...)* signifies 0 or more structure elements
1281da177e4SLinus Torvalds# /**
1291da177e4SLinus Torvalds#  * function_name(:)? (- short description)?
1301da177e4SLinus Torvalds# (* @parameterx: (description of parameter x)?)*
1311da177e4SLinus Torvalds# (* a blank line)?
1321da177e4SLinus Torvalds#  * (Description:)? (Description of function)?
1331da177e4SLinus Torvalds#  * (section header: (section description)? )*
1341da177e4SLinus Torvalds#  (*)?*/
1351da177e4SLinus Torvalds#
1361da177e4SLinus Torvalds# So .. the trivial example would be:
1371da177e4SLinus Torvalds#
1381da177e4SLinus Torvalds# /**
1391da177e4SLinus Torvalds#  * my_function
140b9d97328SRandy Dunlap#  */
1411da177e4SLinus Torvalds#
142891dcd2fSRandy Dunlap# If the Description: header tag is omitted, then there must be a blank line
1431da177e4SLinus Torvalds# after the last parameter specification.
1441da177e4SLinus Torvalds# e.g.
1451da177e4SLinus Torvalds# /**
1461da177e4SLinus Torvalds#  * my_function - does my stuff
1471da177e4SLinus Torvalds#  * @my_arg: its mine damnit
1481da177e4SLinus Torvalds#  *
1491da177e4SLinus Torvalds#  * Does my stuff explained.
1501da177e4SLinus Torvalds#  */
1511da177e4SLinus Torvalds#
1521da177e4SLinus Torvalds#  or, could also use:
1531da177e4SLinus Torvalds# /**
1541da177e4SLinus Torvalds#  * my_function - does my stuff
1551da177e4SLinus Torvalds#  * @my_arg: its mine damnit
1561da177e4SLinus Torvalds#  * Description: Does my stuff explained.
1571da177e4SLinus Torvalds#  */
1581da177e4SLinus Torvalds# etc.
1591da177e4SLinus Torvalds#
160b9d97328SRandy Dunlap# Besides functions you can also write documentation for structs, unions,
1611da177e4SLinus Torvalds# enums and typedefs. Instead of the function name you must write the name
1621da177e4SLinus Torvalds# of the declaration;  the struct/union/enum/typedef must always precede
1631da177e4SLinus Torvalds# the name. Nesting of declarations is not supported.
1641da177e4SLinus Torvalds# Use the argument mechanism to document members or constants.
1651da177e4SLinus Torvalds# e.g.
1661da177e4SLinus Torvalds# /**
1671da177e4SLinus Torvalds#  * struct my_struct - short description
1681da177e4SLinus Torvalds#  * @a: first member
1691da177e4SLinus Torvalds#  * @b: second member
1701da177e4SLinus Torvalds#  *
1711da177e4SLinus Torvalds#  * Longer description
1721da177e4SLinus Torvalds#  */
1731da177e4SLinus Torvalds# struct my_struct {
1741da177e4SLinus Torvalds#     int a;
1751da177e4SLinus Torvalds#     int b;
176aeec46b9SMartin Waitz# /* private: */
177aeec46b9SMartin Waitz#     int c;
1781da177e4SLinus Torvalds# };
1791da177e4SLinus Torvalds#
1801da177e4SLinus Torvalds# All descriptions can be multiline, except the short function description.
1811da177e4SLinus Torvalds#
182a4c6ebedSDanilo Cesar Lemes de Paula# For really longs structs, you can also describe arguments inside the
183a4c6ebedSDanilo Cesar Lemes de Paula# body of the struct.
184a4c6ebedSDanilo Cesar Lemes de Paula# eg.
185a4c6ebedSDanilo Cesar Lemes de Paula# /**
186a4c6ebedSDanilo Cesar Lemes de Paula#  * struct my_struct - short description
187a4c6ebedSDanilo Cesar Lemes de Paula#  * @a: first member
188a4c6ebedSDanilo Cesar Lemes de Paula#  * @b: second member
189a4c6ebedSDanilo Cesar Lemes de Paula#  *
190a4c6ebedSDanilo Cesar Lemes de Paula#  * Longer description
191a4c6ebedSDanilo Cesar Lemes de Paula#  */
192a4c6ebedSDanilo Cesar Lemes de Paula# struct my_struct {
193a4c6ebedSDanilo Cesar Lemes de Paula#     int a;
194a4c6ebedSDanilo Cesar Lemes de Paula#     int b;
195a4c6ebedSDanilo Cesar Lemes de Paula#     /**
196a4c6ebedSDanilo Cesar Lemes de Paula#      * @c: This is longer description of C
197a4c6ebedSDanilo Cesar Lemes de Paula#      *
198a4c6ebedSDanilo Cesar Lemes de Paula#      * You can use paragraphs to describe arguments
199a4c6ebedSDanilo Cesar Lemes de Paula#      * using this method.
200a4c6ebedSDanilo Cesar Lemes de Paula#      */
201a4c6ebedSDanilo Cesar Lemes de Paula#     int c;
202a4c6ebedSDanilo Cesar Lemes de Paula# };
203a4c6ebedSDanilo Cesar Lemes de Paula#
204a4c6ebedSDanilo Cesar Lemes de Paula# This should be use only for struct/enum members.
205a4c6ebedSDanilo Cesar Lemes de Paula#
2061da177e4SLinus Torvalds# You can also add additional sections. When documenting kernel functions you
2071da177e4SLinus Torvalds# should document the "Context:" of the function, e.g. whether the functions
2081da177e4SLinus Torvalds# can be called form interrupts. Unlike other sections you can end it with an
2091da177e4SLinus Torvalds# empty line.
2104092bac7SYacine Belkadi# A non-void function should have a "Return:" section describing the return
2114092bac7SYacine Belkadi# value(s).
2121da177e4SLinus Torvalds# Example-sections should contain the string EXAMPLE so that they are marked
2131da177e4SLinus Torvalds# appropriately in DocBook.
2141da177e4SLinus Torvalds#
2151da177e4SLinus Torvalds# Example:
2161da177e4SLinus Torvalds# /**
2171da177e4SLinus Torvalds#  * user_function - function that can only be called in user context
2181da177e4SLinus Torvalds#  * @a: some argument
2191da177e4SLinus Torvalds#  * Context: !in_interrupt()
2201da177e4SLinus Torvalds#  *
2211da177e4SLinus Torvalds#  * Some description
2221da177e4SLinus Torvalds#  * Example:
2231da177e4SLinus Torvalds#  *    user_function(22);
2241da177e4SLinus Torvalds#  */
2251da177e4SLinus Torvalds# ...
2261da177e4SLinus Torvalds#
2271da177e4SLinus Torvalds#
2281da177e4SLinus Torvalds# All descriptive text is further processed, scanning for the following special
2291da177e4SLinus Torvalds# patterns, which are highlighted appropriately.
2301da177e4SLinus Torvalds#
2311da177e4SLinus Torvalds# 'funcname()' - function
2321da177e4SLinus Torvalds# '$ENVVAR' - environmental variable
2331da177e4SLinus Torvalds# '&struct_name' - name of a structure (up to two words including 'struct')
2345267dd35SPaolo Bonzini# '&struct_name.member' - name of a structure member
2351da177e4SLinus Torvalds# '@parameter' - name of a parameter
2361da177e4SLinus Torvalds# '%CONST' - name of a constant.
237b97f193aSMauro Carvalho Chehab# '``LITERAL``' - literal string without any spaces on it.
2381da177e4SLinus Torvalds
2398484baaaSRandy Dunlap## init lots of data
2408484baaaSRandy Dunlap
2411da177e4SLinus Torvaldsmy $errors = 0;
2421da177e4SLinus Torvaldsmy $warnings = 0;
2435f8c7c98SRandy Dunlapmy $anon_struct_union = 0;
2441da177e4SLinus Torvalds
2451da177e4SLinus Torvalds# match expressions used to find embedded type information
246b97f193aSMauro Carvalho Chehabmy $type_constant = '\b``([^\`]+)``\b';
247b97f193aSMauro Carvalho Chehabmy $type_constant2 = '\%([-_\w]+)';
2481da177e4SLinus Torvaldsmy $type_func = '(\w+)\(\)';
249bfd228c7SMike Rapoportmy $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
250ee2aa759SMauro Carvalho Chehabmy $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
2515219f18aSJonathan Corbetmy $type_fp_param = '\@(\w+)\(\)';  # Special RST handling for func ptr params
252346282dbSMauro Carvalho Chehabmy $type_fp_param2 = '\@(\w+->\S+)\(\)';  # Special RST handling for structs with func ptr params
2531da177e4SLinus Torvaldsmy $type_env = '(\$\w+)';
254df31175bSPaolo Bonzinimy $type_enum = '\&(enum\s*([_\w]+))';
255df31175bSPaolo Bonzinimy $type_struct = '\&(struct\s*([_\w]+))';
256df31175bSPaolo Bonzinimy $type_typedef = '\&(typedef\s*([_\w]+))';
257df31175bSPaolo Bonzinimy $type_union = '\&(union\s*([_\w]+))';
2585267dd35SPaolo Bonzinimy $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
259df31175bSPaolo Bonzinimy $type_fallback = '\&([_\w]+)';
260f3341dcfSJani Nikulamy $type_member_func = $type_member . '\(\)';
2611da177e4SLinus Torvalds
2621da177e4SLinus Torvalds# Output conversion substitutions.
2631da177e4SLinus Torvalds#  One for each output format
2641da177e4SLinus Torvalds
2651da177e4SLinus Torvalds# these are pretty rough
2664d732701SDanilo Cesar Lemes de Paulamy @highlights_man = (
2674d732701SDanilo Cesar Lemes de Paula                      [$type_constant, "\$1"],
268b97f193aSMauro Carvalho Chehab                      [$type_constant2, "\$1"],
2694d732701SDanilo Cesar Lemes de Paula                      [$type_func, "\\\\fB\$1\\\\fP"],
270df31175bSPaolo Bonzini                      [$type_enum, "\\\\fI\$1\\\\fP"],
2714d732701SDanilo Cesar Lemes de Paula                      [$type_struct, "\\\\fI\$1\\\\fP"],
272df31175bSPaolo Bonzini                      [$type_typedef, "\\\\fI\$1\\\\fP"],
273df31175bSPaolo Bonzini                      [$type_union, "\\\\fI\$1\\\\fP"],
2745267dd35SPaolo Bonzini                      [$type_param, "\\\\fI\$1\\\\fP"],
275ee2aa759SMauro Carvalho Chehab                      [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
276df31175bSPaolo Bonzini                      [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
277df31175bSPaolo Bonzini                      [$type_fallback, "\\\\fI\$1\\\\fP"]
2784d732701SDanilo Cesar Lemes de Paula		     );
2791da177e4SLinus Torvaldsmy $blankline_man = "";
2801da177e4SLinus Torvalds
281c0d1b6eeSJonathan Corbet# rst-mode
282c0d1b6eeSJonathan Corbetmy @highlights_rst = (
283c0d1b6eeSJonathan Corbet                       [$type_constant, "``\$1``"],
284b97f193aSMauro Carvalho Chehab                       [$type_constant2, "``\$1``"],
285f3341dcfSJani Nikula                       # Note: need to escape () to avoid func matching later
2865267dd35SPaolo Bonzini                       [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
2875267dd35SPaolo Bonzini                       [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
2885219f18aSJonathan Corbet		       [$type_fp_param, "**\$1\\\\(\\\\)**"],
289346282dbSMauro Carvalho Chehab		       [$type_fp_param2, "**\$1\\\\(\\\\)**"],
290344fdb28SJonathan Corbet                       [$type_func, "\$1()"],
291df31175bSPaolo Bonzini                       [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
292df31175bSPaolo Bonzini                       [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
293df31175bSPaolo Bonzini                       [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
294df31175bSPaolo Bonzini                       [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
295a7291e7eSJani Nikula                       # in rst this can refer to any type
296df31175bSPaolo Bonzini                       [$type_fallback, "\\:c\\:type\\:`\$1`"],
297ee2aa759SMauro Carvalho Chehab                       [$type_param_ref, "**\$1\$2**"]
298c0d1b6eeSJonathan Corbet		      );
299c0d1b6eeSJonathan Corbetmy $blankline_rst = "\n";
300c0d1b6eeSJonathan Corbet
3011da177e4SLinus Torvalds# read arguments
3021da177e4SLinus Torvaldsif ($#ARGV == -1) {
30343caf1a6STomasz Warniełło	pod2usage(
30443caf1a6STomasz Warniełło		-message => "No arguments!\n",
30543caf1a6STomasz Warniełło		-exitval => 1,
30643caf1a6STomasz Warniełło		-verbose => 99,
30743caf1a6STomasz Warniełło		-sections => 'SYNOPSIS',
30843caf1a6STomasz Warniełło		-output => \*STDERR,
30943caf1a6STomasz Warniełło	);
3101da177e4SLinus Torvalds}
3111da177e4SLinus Torvalds
3128484baaaSRandy Dunlapmy $kernelversion;
31393351d41SMauro Carvalho Chehabmy ($sphinx_major, $sphinx_minor, $sphinx_patch);
314efa44475SMauro Carvalho Chehab
3158484baaaSRandy Dunlapmy $dohighlight = "";
3168484baaaSRandy Dunlap
3171da177e4SLinus Torvaldsmy $verbose = 0;
3182c12c810SPierre-Louis Bossartmy $Werror = 0;
319bdfe2be3SMauro Carvalho Chehabmy $output_mode = "rst";
320e314ba31SDaniel Santosmy $output_preformatted = 0;
3214b44595aSJohannes Bergmy $no_doc_sections = 0;
3220b0f5f29SDaniel Vettermy $enable_lineno = 0;
323bdfe2be3SMauro Carvalho Chehabmy @highlights = @highlights_rst;
324bdfe2be3SMauro Carvalho Chehabmy $blankline = $blankline_rst;
3251da177e4SLinus Torvaldsmy $modulename = "Kernel API";
326b6c3f456SJani Nikula
327b6c3f456SJani Nikulause constant {
328b6c3f456SJani Nikula    OUTPUT_ALL          => 0, # output all symbols and doc sections
329b6c3f456SJani Nikula    OUTPUT_INCLUDE      => 1, # output only specified symbols
330eab795ddSMauro Carvalho Chehab    OUTPUT_EXPORTED     => 2, # output exported symbols
331eab795ddSMauro Carvalho Chehab    OUTPUT_INTERNAL     => 3, # output non-exported symbols
332b6c3f456SJani Nikula};
333b6c3f456SJani Nikulamy $output_selection = OUTPUT_ALL;
334b0d60bfbSJonathan Corbetmy $show_not_found = 0;	# No longer used
335b2c4105bSBen Hutchings
33688c2b57dSJani Nikulamy @export_file_list;
33788c2b57dSJani Nikula
338b2c4105bSBen Hutchingsmy @build_time;
339b2c4105bSBen Hutchingsif (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
340b2c4105bSBen Hutchings    (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
341b2c4105bSBen Hutchings    @build_time = gmtime($seconds);
342b2c4105bSBen Hutchings} else {
343b2c4105bSBen Hutchings    @build_time = localtime;
344b2c4105bSBen Hutchings}
345b2c4105bSBen Hutchings
3461da177e4SLinus Torvaldsmy $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
3471da177e4SLinus Torvalds		'July', 'August', 'September', 'October',
348b2c4105bSBen Hutchings		'November', 'December')[$build_time[4]] .
349b2c4105bSBen Hutchings  " " . ($build_time[5]+1900);
3501da177e4SLinus Torvalds
3518484baaaSRandy Dunlap# Essentially these are globals.
352b9d97328SRandy Dunlap# They probably want to be tidied up, made more localised or something.
353b9d97328SRandy Dunlap# CAVEAT EMPTOR!  Some of the others I localised may not want to be, which
3541da177e4SLinus Torvalds# could cause "use of undefined value" or other bugs.
3551da177e4SLinus Torvaldsmy ($function, %function_table, %parametertypes, $declaration_purpose);
356eab795ddSMauro Carvalho Chehabmy %nosymbol_table = ();
3570b0f5f29SDaniel Vettermy $declaration_start_line;
3581da177e4SLinus Torvaldsmy ($type, $declaration_name, $return_type);
3591c32fd0cSIlya Dryomovmy ($newsection, $newcontents, $prototype, $brcount, %source_map);
3601da177e4SLinus Torvalds
361bd0e88e5SRandy Dunlapif (defined($ENV{'KBUILD_VERBOSE'})) {
362bd0e88e5SRandy Dunlap	$verbose = "$ENV{'KBUILD_VERBOSE'}";
363bd0e88e5SRandy Dunlap}
364bd0e88e5SRandy Dunlap
3652c12c810SPierre-Louis Bossartif (defined($ENV{'KCFLAGS'})) {
3662c12c810SPierre-Louis Bossart	my $kcflags = "$ENV{'KCFLAGS'}";
3672c12c810SPierre-Louis Bossart
3682c12c810SPierre-Louis Bossart	if ($kcflags =~ /Werror/) {
3692c12c810SPierre-Louis Bossart		$Werror = 1;
3702c12c810SPierre-Louis Bossart	}
3712c12c810SPierre-Louis Bossart}
3722c12c810SPierre-Louis Bossart
373bed4ed30SLaurent Pinchartif (defined($ENV{'KDOC_WERROR'})) {
374bed4ed30SLaurent Pinchart	$Werror = "$ENV{'KDOC_WERROR'}";
375bed4ed30SLaurent Pinchart}
376bed4ed30SLaurent Pinchart
3771da177e4SLinus Torvalds# Generated docbook code is inserted in a template at a point where
3781da177e4SLinus Torvalds# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
37993431e06SAlexander A. Klimov# https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
3801da177e4SLinus Torvalds# We keep track of number of generated entries and generate a dummy
3811da177e4SLinus Torvalds# if needs be to ensure the expanded template can be postprocessed
3821da177e4SLinus Torvalds# into html.
3831da177e4SLinus Torvaldsmy $section_counter = 0;
3841da177e4SLinus Torvalds
3851da177e4SLinus Torvaldsmy $lineprefix="";
3861da177e4SLinus Torvalds
38748af606aSJani Nikula# Parser states
38848af606aSJani Nikulause constant {
38948af606aSJani Nikula    STATE_NORMAL        => 0,        # normal code
39048af606aSJani Nikula    STATE_NAME          => 1,        # looking for function name
39117b78717SJonathan Corbet    STATE_BODY_MAYBE    => 2,        # body - or maybe more description
39217b78717SJonathan Corbet    STATE_BODY          => 3,        # the body of the comment
3930d55d48bSMauro Carvalho Chehab    STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
3940d55d48bSMauro Carvalho Chehab    STATE_PROTO         => 5,        # scanning prototype
3950d55d48bSMauro Carvalho Chehab    STATE_DOCBLOCK      => 6,        # documentation block
3960d55d48bSMauro Carvalho Chehab    STATE_INLINE        => 7,        # gathering doc outside main block
39748af606aSJani Nikula};
3981da177e4SLinus Torvaldsmy $state;
399850622dfSRandy Dunlapmy $in_doc_sect;
400d742f24dSJonathan Corbetmy $leading_space;
4011da177e4SLinus Torvalds
40248af606aSJani Nikula# Inline documentation state
40348af606aSJani Nikulause constant {
40448af606aSJani Nikula    STATE_INLINE_NA     => 0, # not applicable ($state != STATE_INLINE)
40548af606aSJani Nikula    STATE_INLINE_NAME   => 1, # looking for member name (@foo:)
40648af606aSJani Nikula    STATE_INLINE_TEXT   => 2, # looking for member documentation
40748af606aSJani Nikula    STATE_INLINE_END    => 3, # done
40848af606aSJani Nikula    STATE_INLINE_ERROR  => 4, # error - Comment without header was found.
40948af606aSJani Nikula                              # Spit a warning as it's not
410a4c6ebedSDanilo Cesar Lemes de Paula                              # proper kernel-doc and ignore the rest.
41148af606aSJani Nikula};
41248af606aSJani Nikulamy $inline_doc_state;
413a4c6ebedSDanilo Cesar Lemes de Paula
4141da177e4SLinus Torvalds#declaration types: can be
4151da177e4SLinus Torvalds# 'function', 'struct', 'union', 'enum', 'typedef'
4161da177e4SLinus Torvaldsmy $decl_type;
4171da177e4SLinus Torvalds
41852042e2dSMauro Carvalho Chehab# Name of the kernel-doc identifier for non-DOC markups
41952042e2dSMauro Carvalho Chehabmy $identifier;
42052042e2dSMauro Carvalho Chehab
4211da177e4SLinus Torvaldsmy $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
4221da177e4SLinus Torvaldsmy $doc_end = '\*/';
4231da177e4SLinus Torvaldsmy $doc_com = '\s*\*\s*';
42412ae6779SDaniel Santosmy $doc_com_body = '\s*\* ?';
4251da177e4SLinus Torvaldsmy $doc_decl = $doc_com . '(\w+)';
426f624adefSJani Nikula# @params and a strictly limited set of supported section names
427212209cfSJonathan Corbet# Specifically:
428212209cfSJonathan Corbet#   Match @word:
429212209cfSJonathan Corbet#	  @...:
430212209cfSJonathan Corbet#         @{section-name}:
431212209cfSJonathan Corbet# while trying to not match literal block starts like "example::"
432212209cfSJonathan Corbet#
4338569de68SJonathan Corbetmy $doc_sect = $doc_com .
434212209cfSJonathan Corbet    '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:([^:].*)?$';
43512ae6779SDaniel Santosmy $doc_content = $doc_com_body . '(.*)';
4361da177e4SLinus Torvaldsmy $doc_block = $doc_com . 'DOC:\s*(.*)?';
43748af606aSJani Nikulamy $doc_inline_start = '^\s*/\*\*\s*$';
438fe7bc493SMauro Carvalho Chehabmy $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
43948af606aSJani Nikulamy $doc_inline_end = '^\s*\*/\s*$';
4400c9aa209SJani Nikulamy $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
44186ae2e38SJani Nikulamy $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
442e86bdb24SAditya Srivastavamy $function_pointer = qr{([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)};
443e86bdb24SAditya Srivastavamy $attribute = qr{__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)}i;
4441da177e4SLinus Torvalds
4451da177e4SLinus Torvaldsmy %parameterdescs;
4460b0f5f29SDaniel Vettermy %parameterdesc_start_lines;
4471da177e4SLinus Torvaldsmy @parameterlist;
4481da177e4SLinus Torvaldsmy %sections;
4491da177e4SLinus Torvaldsmy @sectionlist;
4500b0f5f29SDaniel Vettermy %section_start_lines;
451a1d94aa5SRandy Dunlapmy $sectcheck;
452a1d94aa5SRandy Dunlapmy $struct_actual;
4531da177e4SLinus Torvalds
4541da177e4SLinus Torvaldsmy $contents = "";
4550b0f5f29SDaniel Vettermy $new_start_line = 0;
456f624adefSJani Nikula
457f624adefSJani Nikula# the canonical section names. see also $doc_sect above.
4581da177e4SLinus Torvaldsmy $section_default = "Description";	# default section
4591da177e4SLinus Torvaldsmy $section_intro = "Introduction";
4601da177e4SLinus Torvaldsmy $section = $section_default;
4611da177e4SLinus Torvaldsmy $section_context = "Context";
4624092bac7SYacine Belkadimy $section_return = "Return";
4631da177e4SLinus Torvalds
4641da177e4SLinus Torvaldsmy $undescribed = "-- undescribed --";
4651da177e4SLinus Torvalds
4661da177e4SLinus Torvaldsreset_state();
4671da177e4SLinus Torvalds
468b031ac4eSMauro Carvalho Chehabwhile ($ARGV[0] =~ m/^--?(.*)/) {
469b031ac4eSMauro Carvalho Chehab    my $cmd = $1;
470b031ac4eSMauro Carvalho Chehab    shift @ARGV;
471b031ac4eSMauro Carvalho Chehab    if ($cmd eq "man") {
4721da177e4SLinus Torvalds	$output_mode = "man";
4734d732701SDanilo Cesar Lemes de Paula	@highlights = @highlights_man;
4741da177e4SLinus Torvalds	$blankline = $blankline_man;
475b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "rst") {
476c0d1b6eeSJonathan Corbet	$output_mode = "rst";
477c0d1b6eeSJonathan Corbet	@highlights = @highlights_rst;
478c0d1b6eeSJonathan Corbet	$blankline = $blankline_rst;
479b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "none") {
4803a025e1dSMatthew Wilcox	$output_mode = "none";
481b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
4821da177e4SLinus Torvalds	$modulename = shift @ARGV;
483b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "function") { # to only output specific functions
484b6c3f456SJani Nikula	$output_selection = OUTPUT_INCLUDE;
4851da177e4SLinus Torvalds	$function = shift @ARGV;
4861da177e4SLinus Torvalds	$function_table{$function} = 1;
487eab795ddSMauro Carvalho Chehab    } elsif ($cmd eq "nosymbol") { # Exclude specific symbols
488eab795ddSMauro Carvalho Chehab	my $symbol = shift @ARGV;
489eab795ddSMauro Carvalho Chehab	$nosymbol_table{$symbol} = 1;
490b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "export") { # only exported symbols
491b6c3f456SJani Nikula	$output_selection = OUTPUT_EXPORTED;
492da9726ecSJani Nikula	%function_table = ();
493b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "internal") { # only non-exported symbols
494b6c3f456SJani Nikula	$output_selection = OUTPUT_INTERNAL;
495da9726ecSJani Nikula	%function_table = ();
496b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "export-file") {
49788c2b57dSJani Nikula	my $file = shift @ARGV;
49888c2b57dSJani Nikula	push(@export_file_list, $file);
499b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq "v") {
5001da177e4SLinus Torvalds	$verbose = 1;
5012c12c810SPierre-Louis Bossart    } elsif ($cmd eq "Werror") {
5022c12c810SPierre-Louis Bossart	$Werror = 1;
503b031ac4eSMauro Carvalho Chehab    } elsif (($cmd eq "h") || ($cmd eq "help")) {
5041da177e4SLinus Torvalds	usage();
505b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq 'no-doc-sections') {
5064b44595aSJohannes Berg	    $no_doc_sections = 1;
507b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq 'enable-lineno') {
5080b0f5f29SDaniel Vetter	    $enable_lineno = 1;
509b031ac4eSMauro Carvalho Chehab    } elsif ($cmd eq 'show-not-found') {
510b0d60bfbSJonathan Corbet	$show_not_found = 1;  # A no-op but don't fail
51193351d41SMauro Carvalho Chehab    } elsif ($cmd eq "sphinx-version") {
51293351d41SMauro Carvalho Chehab	my $ver_string = shift @ARGV;
51393351d41SMauro Carvalho Chehab	if ($ver_string =~ m/^(\d+)(\.\d+)?(\.\d+)?/) {
51493351d41SMauro Carvalho Chehab	    $sphinx_major = $1;
51593351d41SMauro Carvalho Chehab	    if (defined($2)) {
51693351d41SMauro Carvalho Chehab		$sphinx_minor = substr($2,1);
51793351d41SMauro Carvalho Chehab	    } else {
51893351d41SMauro Carvalho Chehab		$sphinx_minor = 0;
51993351d41SMauro Carvalho Chehab	    }
52093351d41SMauro Carvalho Chehab	    if (defined($3)) {
52193351d41SMauro Carvalho Chehab		$sphinx_patch = substr($3,1)
52293351d41SMauro Carvalho Chehab	    } else {
52393351d41SMauro Carvalho Chehab		$sphinx_patch = 0;
52493351d41SMauro Carvalho Chehab	    }
52593351d41SMauro Carvalho Chehab	} else {
52693351d41SMauro Carvalho Chehab	    die "Sphinx version should either major.minor or major.minor.patch format\n";
52793351d41SMauro Carvalho Chehab	}
528b031ac4eSMauro Carvalho Chehab    } else {
529b031ac4eSMauro Carvalho Chehab		# Unknown argument
53043caf1a6STomasz Warniełło		pod2usage(
53143caf1a6STomasz Warniełło			-message => "Argument unknown!\n",
53243caf1a6STomasz Warniełło			-exitval => 1,
53343caf1a6STomasz Warniełło			-verbose => 99,
53443caf1a6STomasz Warniełło			-sections => 'SYNOPSIS',
53543caf1a6STomasz Warniełło			-output => \*STDERR,
53643caf1a6STomasz Warniełło		);
5371da177e4SLinus Torvalds    }
5381da177e4SLinus Torvalds}
5391da177e4SLinus Torvalds
5408484baaaSRandy Dunlap# continue execution near EOF;
5418484baaaSRandy Dunlap
542efa44475SMauro Carvalho Chehab# The C domain dialect changed on Sphinx 3. So, we need to check the
543efa44475SMauro Carvalho Chehab# version in order to produce the right tags.
544efa44475SMauro Carvalho Chehabsub findprog($)
545efa44475SMauro Carvalho Chehab{
546efa44475SMauro Carvalho Chehab	foreach(split(/:/, $ENV{PATH})) {
547efa44475SMauro Carvalho Chehab		return "$_/$_[0]" if(-x "$_/$_[0]");
548efa44475SMauro Carvalho Chehab	}
549efa44475SMauro Carvalho Chehab}
550efa44475SMauro Carvalho Chehab
551efa44475SMauro Carvalho Chehabsub get_sphinx_version()
552efa44475SMauro Carvalho Chehab{
553efa44475SMauro Carvalho Chehab	my $ver;
554efa44475SMauro Carvalho Chehab
555efa44475SMauro Carvalho Chehab	my $cmd = "sphinx-build";
556efa44475SMauro Carvalho Chehab	if (!findprog($cmd)) {
557efa44475SMauro Carvalho Chehab		my $cmd = "sphinx-build3";
55893351d41SMauro Carvalho Chehab		if (!findprog($cmd)) {
55993351d41SMauro Carvalho Chehab			$sphinx_major = 1;
56093351d41SMauro Carvalho Chehab			$sphinx_minor = 2;
56193351d41SMauro Carvalho Chehab			$sphinx_patch = 0;
56293351d41SMauro Carvalho Chehab			printf STDERR "Warning: Sphinx version not found. Using default (Sphinx version %d.%d.%d)\n",
56393351d41SMauro Carvalho Chehab			       $sphinx_major, $sphinx_minor, $sphinx_patch;
56493351d41SMauro Carvalho Chehab			return;
56593351d41SMauro Carvalho Chehab		}
566efa44475SMauro Carvalho Chehab	}
567efa44475SMauro Carvalho Chehab
568efa44475SMauro Carvalho Chehab	open IN, "$cmd --version 2>&1 |";
569efa44475SMauro Carvalho Chehab	while (<IN>) {
570efa44475SMauro Carvalho Chehab		if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) {
57193351d41SMauro Carvalho Chehab			$sphinx_major = $1;
57293351d41SMauro Carvalho Chehab			$sphinx_minor = $2;
57393351d41SMauro Carvalho Chehab			$sphinx_patch = $3;
574efa44475SMauro Carvalho Chehab			last;
575efa44475SMauro Carvalho Chehab		}
576efa44475SMauro Carvalho Chehab		# Sphinx 1.2.x uses a different format
577efa44475SMauro Carvalho Chehab		if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) {
57893351d41SMauro Carvalho Chehab			$sphinx_major = $1;
57993351d41SMauro Carvalho Chehab			$sphinx_minor = $2;
58093351d41SMauro Carvalho Chehab			$sphinx_patch = $3;
581efa44475SMauro Carvalho Chehab			last;
582efa44475SMauro Carvalho Chehab		}
583efa44475SMauro Carvalho Chehab	}
584efa44475SMauro Carvalho Chehab	close IN;
585efa44475SMauro Carvalho Chehab}
586efa44475SMauro Carvalho Chehab
58753f049faSBorislav Petkov# get kernel version from env
58853f049faSBorislav Petkovsub get_kernel_version() {
5891b9bc22dSJohannes Berg    my $version = 'unknown kernel version';
59053f049faSBorislav Petkov
59153f049faSBorislav Petkov    if (defined($ENV{'KERNELVERSION'})) {
59253f049faSBorislav Petkov	$version = $ENV{'KERNELVERSION'};
59353f049faSBorislav Petkov    }
59453f049faSBorislav Petkov    return $version;
59553f049faSBorislav Petkov}
5961da177e4SLinus Torvalds
5970b0f5f29SDaniel Vetter#
5980b0f5f29SDaniel Vettersub print_lineno {
5990b0f5f29SDaniel Vetter    my $lineno = shift;
6000b0f5f29SDaniel Vetter    if ($enable_lineno && defined($lineno)) {
6010b0f5f29SDaniel Vetter        print "#define LINENO " . $lineno . "\n";
6020b0f5f29SDaniel Vetter    }
6030b0f5f29SDaniel Vetter}
6041da177e4SLinus Torvalds##
6051da177e4SLinus Torvalds# dumps section contents to arrays/hashes intended for that purpose.
6061da177e4SLinus Torvalds#
6071da177e4SLinus Torvaldssub dump_section {
60894dc7ad5SRandy Dunlap    my $file = shift;
6091da177e4SLinus Torvalds    my $name = shift;
6101da177e4SLinus Torvalds    my $contents = join "\n", @_;
6111da177e4SLinus Torvalds
61213901ef2SJani Nikula    if ($name =~ m/$type_param/) {
6131da177e4SLinus Torvalds	$name = $1;
6141da177e4SLinus Torvalds	$parameterdescs{$name} = $contents;
615a1d94aa5SRandy Dunlap	$sectcheck = $sectcheck . $name . " ";
6160b0f5f29SDaniel Vetter        $parameterdesc_start_lines{$name} = $new_start_line;
6170b0f5f29SDaniel Vetter        $new_start_line = 0;
618ced69090SRandy Dunlap    } elsif ($name eq "@\.\.\.") {
619ced69090SRandy Dunlap	$name = "...";
620ced69090SRandy Dunlap	$parameterdescs{$name} = $contents;
621a1d94aa5SRandy Dunlap	$sectcheck = $sectcheck . $name . " ";
6220b0f5f29SDaniel Vetter        $parameterdesc_start_lines{$name} = $new_start_line;
6230b0f5f29SDaniel Vetter        $new_start_line = 0;
6241da177e4SLinus Torvalds    } else {
62594dc7ad5SRandy Dunlap	if (defined($sections{$name}) && ($sections{$name} ne "")) {
62695b6be9dSJani Nikula	    # Only warn on user specified duplicate section names.
62795b6be9dSJani Nikula	    if ($name ne $section_default) {
62832217761SJani Nikula		print STDERR "${file}:$.: warning: duplicate section name '$name'\n";
62932217761SJani Nikula		++$warnings;
63095b6be9dSJani Nikula	    }
63132217761SJani Nikula	    $sections{$name} .= $contents;
63232217761SJani Nikula	} else {
6331da177e4SLinus Torvalds	    $sections{$name} = $contents;
6341da177e4SLinus Torvalds	    push @sectionlist, $name;
6350b0f5f29SDaniel Vetter            $section_start_lines{$name} = $new_start_line;
6360b0f5f29SDaniel Vetter            $new_start_line = 0;
6371da177e4SLinus Torvalds	}
6381da177e4SLinus Torvalds    }
63932217761SJani Nikula}
6401da177e4SLinus Torvalds
6411da177e4SLinus Torvalds##
642b112e0f7SJohannes Berg# dump DOC: section after checking that it should go out
643b112e0f7SJohannes Berg#
644b112e0f7SJohannes Bergsub dump_doc_section {
64594dc7ad5SRandy Dunlap    my $file = shift;
646b112e0f7SJohannes Berg    my $name = shift;
647b112e0f7SJohannes Berg    my $contents = join "\n", @_;
648b112e0f7SJohannes Berg
6494b44595aSJohannes Berg    if ($no_doc_sections) {
6504b44595aSJohannes Berg        return;
6514b44595aSJohannes Berg    }
6524b44595aSJohannes Berg
653eab795ddSMauro Carvalho Chehab    return if (defined($nosymbol_table{$name}));
654eab795ddSMauro Carvalho Chehab
655b6c3f456SJani Nikula    if (($output_selection == OUTPUT_ALL) ||
656eab795ddSMauro Carvalho Chehab	(($output_selection == OUTPUT_INCLUDE) &&
657eab795ddSMauro Carvalho Chehab	 defined($function_table{$name})))
658b112e0f7SJohannes Berg    {
65994dc7ad5SRandy Dunlap	dump_section($file, $name, $contents);
660b112e0f7SJohannes Berg	output_blockhead({'sectionlist' => \@sectionlist,
661b112e0f7SJohannes Berg			  'sections' => \%sections,
662b112e0f7SJohannes Berg			  'module' => $modulename,
663b6c3f456SJani Nikula			  'content-only' => ($output_selection != OUTPUT_ALL), });
664b112e0f7SJohannes Berg    }
665b112e0f7SJohannes Berg}
666b112e0f7SJohannes Berg
667b112e0f7SJohannes Berg##
6681da177e4SLinus Torvalds# output function
6691da177e4SLinus Torvalds#
6701da177e4SLinus Torvalds# parameterdescs, a hash.
6711da177e4SLinus Torvalds#  function => "function name"
6721da177e4SLinus Torvalds#  parameterlist => @list of parameters
6731da177e4SLinus Torvalds#  parameterdescs => %parameter descriptions
6741da177e4SLinus Torvalds#  sectionlist => @list of sections
675a21217daSRandy Dunlap#  sections => %section descriptions
6761da177e4SLinus Torvalds#
6771da177e4SLinus Torvalds
6781da177e4SLinus Torvaldssub output_highlight {
6791da177e4SLinus Torvalds    my $contents = join "\n",@_;
6801da177e4SLinus Torvalds    my $line;
6811da177e4SLinus Torvalds
6821da177e4SLinus Torvalds#   DEBUG
6831da177e4SLinus Torvalds#   if (!defined $contents) {
6841da177e4SLinus Torvalds#	use Carp;
6851da177e4SLinus Torvalds#	confess "output_highlight got called with no args?\n";
6861da177e4SLinus Torvalds#   }
6871da177e4SLinus Torvalds
6883eb014a1SRandy Dunlap#   print STDERR "contents b4:$contents\n";
6891da177e4SLinus Torvalds    eval $dohighlight;
6901da177e4SLinus Torvalds    die $@ if $@;
6913eb014a1SRandy Dunlap#   print STDERR "contents af:$contents\n";
6923eb014a1SRandy Dunlap
6931da177e4SLinus Torvalds    foreach $line (split "\n", $contents) {
69412ae6779SDaniel Santos	if (! $output_preformatted) {
69512ae6779SDaniel Santos	    $line =~ s/^\s*//;
69612ae6779SDaniel Santos	}
6971da177e4SLinus Torvalds	if ($line eq ""){
698e314ba31SDaniel Santos	    if (! $output_preformatted) {
6990bba924cSJonathan Corbet		print $lineprefix, $blankline;
700e314ba31SDaniel Santos	    }
7011da177e4SLinus Torvalds	} else {
702cdccb316SRandy Dunlap	    if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
703cdccb316SRandy Dunlap		print "\\&$line";
704cdccb316SRandy Dunlap	    } else {
7051da177e4SLinus Torvalds		print $lineprefix, $line;
7061da177e4SLinus Torvalds	    }
707cdccb316SRandy Dunlap	}
7081da177e4SLinus Torvalds	print "\n";
7091da177e4SLinus Torvalds    }
7101da177e4SLinus Torvalds}
7111da177e4SLinus Torvalds
7121da177e4SLinus Torvalds##
7131da177e4SLinus Torvalds# output function in man
7141da177e4SLinus Torvaldssub output_function_man(%) {
7151da177e4SLinus Torvalds    my %args = %{$_[0]};
7161da177e4SLinus Torvalds    my ($parameter, $section);
7171da177e4SLinus Torvalds    my $count;
7181da177e4SLinus Torvalds
7191da177e4SLinus Torvalds    print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
7201da177e4SLinus Torvalds
7211da177e4SLinus Torvalds    print ".SH NAME\n";
7221da177e4SLinus Torvalds    print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
7231da177e4SLinus Torvalds
7241da177e4SLinus Torvalds    print ".SH SYNOPSIS\n";
725a21217daSRandy Dunlap    if ($args{'functiontype'} ne "") {
7261da177e4SLinus Torvalds	print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
727a21217daSRandy Dunlap    } else {
728a21217daSRandy Dunlap	print ".B \"" . $args{'function'} . "\n";
729a21217daSRandy Dunlap    }
7301da177e4SLinus Torvalds    $count = 0;
7311da177e4SLinus Torvalds    my $parenth = "(";
7321da177e4SLinus Torvalds    my $post = ",";
7331da177e4SLinus Torvalds    foreach my $parameter (@{$args{'parameterlist'}}) {
7341da177e4SLinus Torvalds	if ($count == $#{$args{'parameterlist'}}) {
7351da177e4SLinus Torvalds	    $post = ");";
7361da177e4SLinus Torvalds	}
7371da177e4SLinus Torvalds	$type = $args{'parametertypes'}{$parameter};
738e86bdb24SAditya Srivastava	if ($type =~ m/$function_pointer/) {
7391da177e4SLinus Torvalds	    # pointer-to-function
740ed8348e2SMauro Carvalho Chehab	    print ".BI \"" . $parenth . $1 . "\" " . " \") (" . $2 . ")" . $post . "\"\n";
7411da177e4SLinus Torvalds	} else {
7421da177e4SLinus Torvalds	    $type =~ s/([^\*])$/$1 /;
743ed8348e2SMauro Carvalho Chehab	    print ".BI \"" . $parenth . $type . "\" " . " \"" . $post . "\"\n";
7441da177e4SLinus Torvalds	}
7451da177e4SLinus Torvalds	$count++;
7461da177e4SLinus Torvalds	$parenth = "";
7471da177e4SLinus Torvalds    }
7481da177e4SLinus Torvalds
7491da177e4SLinus Torvalds    print ".SH ARGUMENTS\n";
7501da177e4SLinus Torvalds    foreach $parameter (@{$args{'parameterlist'}}) {
7511da177e4SLinus Torvalds	my $parameter_name = $parameter;
7521da177e4SLinus Torvalds	$parameter_name =~ s/\[.*//;
7531da177e4SLinus Torvalds
7541da177e4SLinus Torvalds	print ".IP \"" . $parameter . "\" 12\n";
7551da177e4SLinus Torvalds	output_highlight($args{'parameterdescs'}{$parameter_name});
7561da177e4SLinus Torvalds    }
7571da177e4SLinus Torvalds    foreach $section (@{$args{'sectionlist'}}) {
7581da177e4SLinus Torvalds	print ".SH \"", uc $section, "\"\n";
7591da177e4SLinus Torvalds	output_highlight($args{'sections'}{$section});
7601da177e4SLinus Torvalds    }
7611da177e4SLinus Torvalds}
7621da177e4SLinus Torvalds
7631da177e4SLinus Torvalds##
7641da177e4SLinus Torvalds# output enum in man
7651da177e4SLinus Torvaldssub output_enum_man(%) {
7661da177e4SLinus Torvalds    my %args = %{$_[0]};
7671da177e4SLinus Torvalds    my ($parameter, $section);
7681da177e4SLinus Torvalds    my $count;
7691da177e4SLinus Torvalds
7701da177e4SLinus Torvalds    print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
7711da177e4SLinus Torvalds
7721da177e4SLinus Torvalds    print ".SH NAME\n";
7731da177e4SLinus Torvalds    print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
7741da177e4SLinus Torvalds
7751da177e4SLinus Torvalds    print ".SH SYNOPSIS\n";
7761da177e4SLinus Torvalds    print "enum " . $args{'enum'} . " {\n";
7771da177e4SLinus Torvalds    $count = 0;
7781da177e4SLinus Torvalds    foreach my $parameter (@{$args{'parameterlist'}}) {
7791da177e4SLinus Torvalds	print ".br\n.BI \"    $parameter\"\n";
7801da177e4SLinus Torvalds	if ($count == $#{$args{'parameterlist'}}) {
7811da177e4SLinus Torvalds	    print "\n};\n";
7821da177e4SLinus Torvalds	    last;
7831da177e4SLinus Torvalds	}
7841da177e4SLinus Torvalds	else {
7851da177e4SLinus Torvalds	    print ", \n.br\n";
7861da177e4SLinus Torvalds	}
7871da177e4SLinus Torvalds	$count++;
7881da177e4SLinus Torvalds    }
7891da177e4SLinus Torvalds
7901da177e4SLinus Torvalds    print ".SH Constants\n";
7911da177e4SLinus Torvalds    foreach $parameter (@{$args{'parameterlist'}}) {
7921da177e4SLinus Torvalds	my $parameter_name = $parameter;
7931da177e4SLinus Torvalds	$parameter_name =~ s/\[.*//;
7941da177e4SLinus Torvalds
7951da177e4SLinus Torvalds	print ".IP \"" . $parameter . "\" 12\n";
7961da177e4SLinus Torvalds	output_highlight($args{'parameterdescs'}{$parameter_name});
7971da177e4SLinus Torvalds    }
7981da177e4SLinus Torvalds    foreach $section (@{$args{'sectionlist'}}) {
7991da177e4SLinus Torvalds	print ".SH \"$section\"\n";
8001da177e4SLinus Torvalds	output_highlight($args{'sections'}{$section});
8011da177e4SLinus Torvalds    }
8021da177e4SLinus Torvalds}
8031da177e4SLinus Torvalds
8041da177e4SLinus Torvalds##
8051da177e4SLinus Torvalds# output struct in man
8061da177e4SLinus Torvaldssub output_struct_man(%) {
8071da177e4SLinus Torvalds    my %args = %{$_[0]};
8081da177e4SLinus Torvalds    my ($parameter, $section);
8091da177e4SLinus Torvalds
8101da177e4SLinus Torvalds    print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
8111da177e4SLinus Torvalds
8121da177e4SLinus Torvalds    print ".SH NAME\n";
8131da177e4SLinus Torvalds    print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
8141da177e4SLinus Torvalds
8158ad72163SMauro Carvalho Chehab    my $declaration = $args{'definition'};
8168ad72163SMauro Carvalho Chehab    $declaration =~ s/\t/  /g;
8178ad72163SMauro Carvalho Chehab    $declaration =~ s/\n/"\n.br\n.BI \"/g;
8181da177e4SLinus Torvalds    print ".SH SYNOPSIS\n";
8191da177e4SLinus Torvalds    print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
8208ad72163SMauro Carvalho Chehab    print ".BI \"$declaration\n};\n.br\n\n";
8211da177e4SLinus Torvalds
822c51d3dacSRandy Dunlap    print ".SH Members\n";
8231da177e4SLinus Torvalds    foreach $parameter (@{$args{'parameterlist'}}) {
8241da177e4SLinus Torvalds	($parameter =~ /^#/) && next;
8251da177e4SLinus Torvalds
8261da177e4SLinus Torvalds	my $parameter_name = $parameter;
8271da177e4SLinus Torvalds	$parameter_name =~ s/\[.*//;
8281da177e4SLinus Torvalds
8291da177e4SLinus Torvalds	($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
8301da177e4SLinus Torvalds	print ".IP \"" . $parameter . "\" 12\n";
8311da177e4SLinus Torvalds	output_highlight($args{'parameterdescs'}{$parameter_name});
8321da177e4SLinus Torvalds    }
8331da177e4SLinus Torvalds    foreach $section (@{$args{'sectionlist'}}) {
8341da177e4SLinus Torvalds	print ".SH \"$section\"\n";
8351da177e4SLinus Torvalds	output_highlight($args{'sections'}{$section});
8361da177e4SLinus Torvalds    }
8371da177e4SLinus Torvalds}
8381da177e4SLinus Torvalds
8391da177e4SLinus Torvalds##
8401da177e4SLinus Torvalds# output typedef in man
8411da177e4SLinus Torvaldssub output_typedef_man(%) {
8421da177e4SLinus Torvalds    my %args = %{$_[0]};
8431da177e4SLinus Torvalds    my ($parameter, $section);
8441da177e4SLinus Torvalds
8451da177e4SLinus Torvalds    print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
8461da177e4SLinus Torvalds
8471da177e4SLinus Torvalds    print ".SH NAME\n";
8481da177e4SLinus Torvalds    print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
8491da177e4SLinus Torvalds
8501da177e4SLinus Torvalds    foreach $section (@{$args{'sectionlist'}}) {
8511da177e4SLinus Torvalds	print ".SH \"$section\"\n";
8521da177e4SLinus Torvalds	output_highlight($args{'sections'}{$section});
8531da177e4SLinus Torvalds    }
8541da177e4SLinus Torvalds}
8551da177e4SLinus Torvalds
856b112e0f7SJohannes Bergsub output_blockhead_man(%) {
8571da177e4SLinus Torvalds    my %args = %{$_[0]};
8581da177e4SLinus Torvalds    my ($parameter, $section);
8591da177e4SLinus Torvalds    my $count;
8601da177e4SLinus Torvalds
8611da177e4SLinus Torvalds    print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
8621da177e4SLinus Torvalds
8631da177e4SLinus Torvalds    foreach $section (@{$args{'sectionlist'}}) {
8641da177e4SLinus Torvalds	print ".SH \"$section\"\n";
8651da177e4SLinus Torvalds	output_highlight($args{'sections'}{$section});
8661da177e4SLinus Torvalds    }
8671da177e4SLinus Torvalds}
8681da177e4SLinus Torvalds
8691da177e4SLinus Torvalds##
870c0d1b6eeSJonathan Corbet# output in restructured text
871c0d1b6eeSJonathan Corbet#
872c0d1b6eeSJonathan Corbet
873c0d1b6eeSJonathan Corbet#
874c0d1b6eeSJonathan Corbet# This could use some work; it's used to output the DOC: sections, and
875c0d1b6eeSJonathan Corbet# starts by putting out the name of the doc section itself, but that tends
876c0d1b6eeSJonathan Corbet# to duplicate a header already in the template file.
877c0d1b6eeSJonathan Corbet#
878c0d1b6eeSJonathan Corbetsub output_blockhead_rst(%) {
879c0d1b6eeSJonathan Corbet    my %args = %{$_[0]};
880c0d1b6eeSJonathan Corbet    my ($parameter, $section);
881c0d1b6eeSJonathan Corbet
882c0d1b6eeSJonathan Corbet    foreach $section (@{$args{'sectionlist'}}) {
883eab795ddSMauro Carvalho Chehab	next if (defined($nosymbol_table{$section}));
884eab795ddSMauro Carvalho Chehab
8859e72184bSJani Nikula	if ($output_selection != OUTPUT_INCLUDE) {
88606a755d6SMichal Wajdeczko	    print ".. _$section:\n\n";
887c0d1b6eeSJonathan Corbet	    print "**$section**\n\n";
8889e72184bSJani Nikula	}
8890b0f5f29SDaniel Vetter        print_lineno($section_start_lines{$section});
890c0d1b6eeSJonathan Corbet	output_highlight_rst($args{'sections'}{$section});
891c0d1b6eeSJonathan Corbet	print "\n";
892c0d1b6eeSJonathan Corbet    }
893c0d1b6eeSJonathan Corbet}
894c0d1b6eeSJonathan Corbet
895af250290SJonathan Corbet#
896af250290SJonathan Corbet# Apply the RST highlights to a sub-block of text.
897af250290SJonathan Corbet#
898af250290SJonathan Corbetsub highlight_block($) {
899af250290SJonathan Corbet    # The dohighlight kludge requires the text be called $contents
900af250290SJonathan Corbet    my $contents = shift;
901c0d1b6eeSJonathan Corbet    eval $dohighlight;
902c0d1b6eeSJonathan Corbet    die $@ if $@;
903af250290SJonathan Corbet    return $contents;
904af250290SJonathan Corbet}
905c0d1b6eeSJonathan Corbet
906af250290SJonathan Corbet#
907af250290SJonathan Corbet# Regexes used only here.
908af250290SJonathan Corbet#
909af250290SJonathan Corbetmy $sphinx_literal = '^[^.].*::$';
910af250290SJonathan Corbetmy $sphinx_cblock = '^\.\.\ +code-block::';
911af250290SJonathan Corbet
912af250290SJonathan Corbetsub output_highlight_rst {
913af250290SJonathan Corbet    my $input = join "\n",@_;
914af250290SJonathan Corbet    my $output = "";
915af250290SJonathan Corbet    my $line;
916af250290SJonathan Corbet    my $in_literal = 0;
917af250290SJonathan Corbet    my $litprefix;
918af250290SJonathan Corbet    my $block = "";
919af250290SJonathan Corbet
920af250290SJonathan Corbet    foreach $line (split "\n",$input) {
921af250290SJonathan Corbet	#
922af250290SJonathan Corbet	# If we're in a literal block, see if we should drop out
923af250290SJonathan Corbet	# of it.  Otherwise pass the line straight through unmunged.
924af250290SJonathan Corbet	#
925af250290SJonathan Corbet	if ($in_literal) {
926af250290SJonathan Corbet	    if (! ($line =~ /^\s*$/)) {
927af250290SJonathan Corbet		#
928af250290SJonathan Corbet		# If this is the first non-blank line in a literal
929af250290SJonathan Corbet		# block we need to figure out what the proper indent is.
930af250290SJonathan Corbet		#
931af250290SJonathan Corbet		if ($litprefix eq "") {
932af250290SJonathan Corbet		    $line =~ /^(\s*)/;
933af250290SJonathan Corbet		    $litprefix = '^' . $1;
934af250290SJonathan Corbet		    $output .= $line . "\n";
935af250290SJonathan Corbet		} elsif (! ($line =~ /$litprefix/)) {
936af250290SJonathan Corbet		    $in_literal = 0;
937af250290SJonathan Corbet		} else {
938af250290SJonathan Corbet		    $output .= $line . "\n";
939af250290SJonathan Corbet		}
940af250290SJonathan Corbet	    } else {
941af250290SJonathan Corbet		$output .= $line . "\n";
942af250290SJonathan Corbet	    }
943af250290SJonathan Corbet	}
944af250290SJonathan Corbet	#
945af250290SJonathan Corbet	# Not in a literal block (or just dropped out)
946af250290SJonathan Corbet	#
947af250290SJonathan Corbet	if (! $in_literal) {
948af250290SJonathan Corbet	    $block .= $line . "\n";
949af250290SJonathan Corbet	    if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
950af250290SJonathan Corbet		$in_literal = 1;
951af250290SJonathan Corbet		$litprefix = "";
952af250290SJonathan Corbet		$output .= highlight_block($block);
953af250290SJonathan Corbet		$block = ""
954af250290SJonathan Corbet	    }
955af250290SJonathan Corbet	}
956af250290SJonathan Corbet    }
957af250290SJonathan Corbet
958af250290SJonathan Corbet    if ($block) {
959af250290SJonathan Corbet	$output .= highlight_block($block);
960af250290SJonathan Corbet    }
961af250290SJonathan Corbet    foreach $line (split "\n", $output) {
962830066a7SJani Nikula	print $lineprefix . $line . "\n";
963c0d1b6eeSJonathan Corbet    }
964c0d1b6eeSJonathan Corbet}
965c0d1b6eeSJonathan Corbet
966c0d1b6eeSJonathan Corbetsub output_function_rst(%) {
967c0d1b6eeSJonathan Corbet    my %args = %{$_[0]};
968c0d1b6eeSJonathan Corbet    my ($parameter, $section);
969c099ff69SJani Nikula    my $oldprefix = $lineprefix;
97082801d06SMauro Carvalho Chehab    my $start = "";
9716e9e4158SMauro Carvalho Chehab    my $is_macro = 0;
972c0d1b6eeSJonathan Corbet
973efa44475SMauro Carvalho Chehab    if ($sphinx_major < 3) {
974e3ad05feSMauro Carvalho Chehab	if ($args{'typedef'}) {
97582801d06SMauro Carvalho Chehab	    print ".. c:type:: ". $args{'function'} . "\n\n";
97682801d06SMauro Carvalho Chehab	    print_lineno($declaration_start_line);
97782801d06SMauro Carvalho Chehab	    print "   **Typedef**: ";
97882801d06SMauro Carvalho Chehab	    $lineprefix = "";
97982801d06SMauro Carvalho Chehab	    output_highlight_rst($args{'purpose'});
98082801d06SMauro Carvalho Chehab	    $start = "\n\n**Syntax**\n\n  ``";
9816e9e4158SMauro Carvalho Chehab	    $is_macro = 1;
982c0d1b6eeSJonathan Corbet	} else {
98382801d06SMauro Carvalho Chehab	    print ".. c:function:: ";
98482801d06SMauro Carvalho Chehab	}
985e3ad05feSMauro Carvalho Chehab    } else {
9866e9e4158SMauro Carvalho Chehab	if ($args{'typedef'} || $args{'functiontype'} eq "") {
9876e9e4158SMauro Carvalho Chehab	    $is_macro = 1;
988e3ad05feSMauro Carvalho Chehab	    print ".. c:macro:: ". $args{'function'} . "\n\n";
9896e9e4158SMauro Carvalho Chehab	} else {
9906e9e4158SMauro Carvalho Chehab	    print ".. c:function:: ";
9916e9e4158SMauro Carvalho Chehab	}
992e3ad05feSMauro Carvalho Chehab
993e3ad05feSMauro Carvalho Chehab	if ($args{'typedef'}) {
994e3ad05feSMauro Carvalho Chehab	    print_lineno($declaration_start_line);
995e3ad05feSMauro Carvalho Chehab	    print "   **Typedef**: ";
996e3ad05feSMauro Carvalho Chehab	    $lineprefix = "";
997e3ad05feSMauro Carvalho Chehab	    output_highlight_rst($args{'purpose'});
998e3ad05feSMauro Carvalho Chehab	    $start = "\n\n**Syntax**\n\n  ``";
999e3ad05feSMauro Carvalho Chehab	} else {
10006e9e4158SMauro Carvalho Chehab	    print "``" if ($is_macro);
1001e3ad05feSMauro Carvalho Chehab	}
1002e3ad05feSMauro Carvalho Chehab    }
100382801d06SMauro Carvalho Chehab    if ($args{'functiontype'} ne "") {
100482801d06SMauro Carvalho Chehab	$start .= $args{'functiontype'} . " " . $args{'function'} . " (";
100582801d06SMauro Carvalho Chehab    } else {
100682801d06SMauro Carvalho Chehab	$start .= $args{'function'} . " (";
1007c0d1b6eeSJonathan Corbet    }
1008c0d1b6eeSJonathan Corbet    print $start;
1009c0d1b6eeSJonathan Corbet
1010c0d1b6eeSJonathan Corbet    my $count = 0;
1011c0d1b6eeSJonathan Corbet    foreach my $parameter (@{$args{'parameterlist'}}) {
1012c0d1b6eeSJonathan Corbet	if ($count ne 0) {
1013c0d1b6eeSJonathan Corbet	    print ", ";
1014c0d1b6eeSJonathan Corbet	}
1015c0d1b6eeSJonathan Corbet	$count++;
1016c0d1b6eeSJonathan Corbet	$type = $args{'parametertypes'}{$parameter};
1017a88b1672SMauro Carvalho Chehab
1018e86bdb24SAditya Srivastava	if ($type =~ m/$function_pointer/) {
1019c0d1b6eeSJonathan Corbet	    # pointer-to-function
1020e8f4ba83SPeter Maydell	    print $1 . $parameter . ") (" . $2 . ")";
1021c0d1b6eeSJonathan Corbet	} else {
1022ed8348e2SMauro Carvalho Chehab	    print $type;
1023c0d1b6eeSJonathan Corbet	}
1024c0d1b6eeSJonathan Corbet    }
10256e9e4158SMauro Carvalho Chehab    if ($is_macro) {
10266e9e4158SMauro Carvalho Chehab	print ")``\n\n";
102782801d06SMauro Carvalho Chehab    } else {
1028c099ff69SJani Nikula	print ")\n\n";
1029e3ad05feSMauro Carvalho Chehab    }
10306e9e4158SMauro Carvalho Chehab    if (!$args{'typedef'}) {
10310b0f5f29SDaniel Vetter	print_lineno($declaration_start_line);
1032c099ff69SJani Nikula	$lineprefix = "   ";
1033c099ff69SJani Nikula	output_highlight_rst($args{'purpose'});
1034c099ff69SJani Nikula	print "\n";
103582801d06SMauro Carvalho Chehab    }
1036c0d1b6eeSJonathan Corbet
1037ecbcfba1SJani Nikula    print "**Parameters**\n\n";
1038c099ff69SJani Nikula    $lineprefix = "  ";
1039c0d1b6eeSJonathan Corbet    foreach $parameter (@{$args{'parameterlist'}}) {
1040c0d1b6eeSJonathan Corbet	my $parameter_name = $parameter;
1041ada5f446SGabriel Krisman Bertazi	$parameter_name =~ s/\[.*//;
1042c0d1b6eeSJonathan Corbet	$type = $args{'parametertypes'}{$parameter};
1043c0d1b6eeSJonathan Corbet
1044c0d1b6eeSJonathan Corbet	if ($type ne "") {
1045ed8348e2SMauro Carvalho Chehab	    print "``$type``\n";
1046c0d1b6eeSJonathan Corbet	} else {
1047c0d1b6eeSJonathan Corbet	    print "``$parameter``\n";
1048c0d1b6eeSJonathan Corbet	}
10490b0f5f29SDaniel Vetter
10500b0f5f29SDaniel Vetter        print_lineno($parameterdesc_start_lines{$parameter_name});
10510b0f5f29SDaniel Vetter
10525e64fa9cSJani Nikula	if (defined($args{'parameterdescs'}{$parameter_name}) &&
10535e64fa9cSJani Nikula	    $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
1054c0d1b6eeSJonathan Corbet	    output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1055c0d1b6eeSJonathan Corbet	} else {
1056d4b08e0cSJani Nikula	    print "  *undescribed*\n";
1057c0d1b6eeSJonathan Corbet	}
1058c0d1b6eeSJonathan Corbet	print "\n";
1059c0d1b6eeSJonathan Corbet    }
1060c099ff69SJani Nikula
1061c099ff69SJani Nikula    $lineprefix = $oldprefix;
1062c0d1b6eeSJonathan Corbet    output_section_rst(@_);
1063c0d1b6eeSJonathan Corbet}
1064c0d1b6eeSJonathan Corbet
1065c0d1b6eeSJonathan Corbetsub output_section_rst(%) {
1066c0d1b6eeSJonathan Corbet    my %args = %{$_[0]};
1067c0d1b6eeSJonathan Corbet    my $section;
1068c0d1b6eeSJonathan Corbet    my $oldprefix = $lineprefix;
1069c0d1b6eeSJonathan Corbet    $lineprefix = "";
1070c0d1b6eeSJonathan Corbet
1071c0d1b6eeSJonathan Corbet    foreach $section (@{$args{'sectionlist'}}) {
1072ecbcfba1SJani Nikula	print "**$section**\n\n";
10730b0f5f29SDaniel Vetter        print_lineno($section_start_lines{$section});
1074c0d1b6eeSJonathan Corbet	output_highlight_rst($args{'sections'}{$section});
1075c0d1b6eeSJonathan Corbet	print "\n";
1076c0d1b6eeSJonathan Corbet    }
1077c0d1b6eeSJonathan Corbet    print "\n";
1078c0d1b6eeSJonathan Corbet    $lineprefix = $oldprefix;
1079c0d1b6eeSJonathan Corbet}
1080c0d1b6eeSJonathan Corbet
1081c0d1b6eeSJonathan Corbetsub output_enum_rst(%) {
1082c0d1b6eeSJonathan Corbet    my %args = %{$_[0]};
1083c0d1b6eeSJonathan Corbet    my ($parameter);
1084c099ff69SJani Nikula    my $oldprefix = $lineprefix;
1085c0d1b6eeSJonathan Corbet    my $count;
108662850976SJani Nikula
1087efa44475SMauro Carvalho Chehab    if ($sphinx_major < 3) {
1088efa44475SMauro Carvalho Chehab	my $name = "enum " . $args{'enum'};
108962850976SJani Nikula	print "\n\n.. c:type:: " . $name . "\n\n";
1090efa44475SMauro Carvalho Chehab    } else {
1091efa44475SMauro Carvalho Chehab	my $name = $args{'enum'};
1092efa44475SMauro Carvalho Chehab	print "\n\n.. c:enum:: " . $name . "\n\n";
1093efa44475SMauro Carvalho Chehab    }
10940b0f5f29SDaniel Vetter    print_lineno($declaration_start_line);
1095c099ff69SJani Nikula    $lineprefix = "   ";
1096c099ff69SJani Nikula    output_highlight_rst($args{'purpose'});
1097c099ff69SJani Nikula    print "\n";
1098c0d1b6eeSJonathan Corbet
1099ecbcfba1SJani Nikula    print "**Constants**\n\n";
1100c0d1b6eeSJonathan Corbet    $lineprefix = "  ";
1101c0d1b6eeSJonathan Corbet    foreach $parameter (@{$args{'parameterlist'}}) {
1102ecbcfba1SJani Nikula	print "``$parameter``\n";
1103c0d1b6eeSJonathan Corbet	if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1104c0d1b6eeSJonathan Corbet	    output_highlight_rst($args{'parameterdescs'}{$parameter});
1105c0d1b6eeSJonathan Corbet	} else {
1106d4b08e0cSJani Nikula	    print "  *undescribed*\n";
1107c0d1b6eeSJonathan Corbet	}
1108c0d1b6eeSJonathan Corbet	print "\n";
1109c0d1b6eeSJonathan Corbet    }
1110c099ff69SJani Nikula
1111c0d1b6eeSJonathan Corbet    $lineprefix = $oldprefix;
1112c0d1b6eeSJonathan Corbet    output_section_rst(@_);
1113c0d1b6eeSJonathan Corbet}
1114c0d1b6eeSJonathan Corbet
1115c0d1b6eeSJonathan Corbetsub output_typedef_rst(%) {
1116c0d1b6eeSJonathan Corbet    my %args = %{$_[0]};
1117c0d1b6eeSJonathan Corbet    my ($parameter);
1118c099ff69SJani Nikula    my $oldprefix = $lineprefix;
1119efa44475SMauro Carvalho Chehab    my $name;
1120c0d1b6eeSJonathan Corbet
1121efa44475SMauro Carvalho Chehab    if ($sphinx_major < 3) {
1122efa44475SMauro Carvalho Chehab	$name = "typedef " . $args{'typedef'};
1123efa44475SMauro Carvalho Chehab    } else {
1124efa44475SMauro Carvalho Chehab	$name = $args{'typedef'};
1125efa44475SMauro Carvalho Chehab    }
112662850976SJani Nikula    print "\n\n.. c:type:: " . $name . "\n\n";
11270b0f5f29SDaniel Vetter    print_lineno($declaration_start_line);
1128c099ff69SJani Nikula    $lineprefix = "   ";
1129c099ff69SJani Nikula    output_highlight_rst($args{'purpose'});
1130c099ff69SJani Nikula    print "\n";
1131c0d1b6eeSJonathan Corbet
1132c099ff69SJani Nikula    $lineprefix = $oldprefix;
1133c0d1b6eeSJonathan Corbet    output_section_rst(@_);
1134c0d1b6eeSJonathan Corbet}
1135c0d1b6eeSJonathan Corbet
1136c0d1b6eeSJonathan Corbetsub output_struct_rst(%) {
1137c0d1b6eeSJonathan Corbet    my %args = %{$_[0]};
1138c0d1b6eeSJonathan Corbet    my ($parameter);
1139c099ff69SJani Nikula    my $oldprefix = $lineprefix;
1140c0d1b6eeSJonathan Corbet
1141efa44475SMauro Carvalho Chehab    if ($sphinx_major < 3) {
1142efa44475SMauro Carvalho Chehab	my $name = $args{'type'} . " " . $args{'struct'};
114362850976SJani Nikula	print "\n\n.. c:type:: " . $name . "\n\n";
1144efa44475SMauro Carvalho Chehab    } else {
1145efa44475SMauro Carvalho Chehab	my $name = $args{'struct'};
114672b97d0bSMauro Carvalho Chehab	if ($args{'type'} eq 'union') {
114772b97d0bSMauro Carvalho Chehab	    print "\n\n.. c:union:: " . $name . "\n\n";
114872b97d0bSMauro Carvalho Chehab	} else {
1149efa44475SMauro Carvalho Chehab	    print "\n\n.. c:struct:: " . $name . "\n\n";
1150efa44475SMauro Carvalho Chehab	}
115172b97d0bSMauro Carvalho Chehab    }
11520b0f5f29SDaniel Vetter    print_lineno($declaration_start_line);
1153c099ff69SJani Nikula    $lineprefix = "   ";
1154c099ff69SJani Nikula    output_highlight_rst($args{'purpose'});
1155c099ff69SJani Nikula    print "\n";
1156c0d1b6eeSJonathan Corbet
1157ecbcfba1SJani Nikula    print "**Definition**\n\n";
1158c0d1b6eeSJonathan Corbet    print "::\n\n";
11598ad72163SMauro Carvalho Chehab    my $declaration = $args{'definition'};
11608ad72163SMauro Carvalho Chehab    $declaration =~ s/\t/  /g;
11618ad72163SMauro Carvalho Chehab    print "  " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration  };\n\n";
1162c0d1b6eeSJonathan Corbet
1163ecbcfba1SJani Nikula    print "**Members**\n\n";
1164c099ff69SJani Nikula    $lineprefix = "  ";
1165c0d1b6eeSJonathan Corbet    foreach $parameter (@{$args{'parameterlist'}}) {
1166c0d1b6eeSJonathan Corbet	($parameter =~ /^#/) && next;
1167c0d1b6eeSJonathan Corbet
1168c0d1b6eeSJonathan Corbet	my $parameter_name = $parameter;
1169c0d1b6eeSJonathan Corbet	$parameter_name =~ s/\[.*//;
1170c0d1b6eeSJonathan Corbet
1171c0d1b6eeSJonathan Corbet	($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1172c0d1b6eeSJonathan Corbet	$type = $args{'parametertypes'}{$parameter};
11730b0f5f29SDaniel Vetter        print_lineno($parameterdesc_start_lines{$parameter_name});
11746d232c80SMauro Carvalho Chehab	print "``" . $parameter . "``\n";
1175c0d1b6eeSJonathan Corbet	output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1176c0d1b6eeSJonathan Corbet	print "\n";
1177c0d1b6eeSJonathan Corbet    }
1178c0d1b6eeSJonathan Corbet    print "\n";
1179c099ff69SJani Nikula
1180c099ff69SJani Nikula    $lineprefix = $oldprefix;
1181c0d1b6eeSJonathan Corbet    output_section_rst(@_);
1182c0d1b6eeSJonathan Corbet}
1183c0d1b6eeSJonathan Corbet
11843a025e1dSMatthew Wilcox## none mode output functions
11853a025e1dSMatthew Wilcox
11863a025e1dSMatthew Wilcoxsub output_function_none(%) {
11873a025e1dSMatthew Wilcox}
11883a025e1dSMatthew Wilcox
11893a025e1dSMatthew Wilcoxsub output_enum_none(%) {
11903a025e1dSMatthew Wilcox}
11913a025e1dSMatthew Wilcox
11923a025e1dSMatthew Wilcoxsub output_typedef_none(%) {
11933a025e1dSMatthew Wilcox}
11943a025e1dSMatthew Wilcox
11953a025e1dSMatthew Wilcoxsub output_struct_none(%) {
11963a025e1dSMatthew Wilcox}
11973a025e1dSMatthew Wilcox
11983a025e1dSMatthew Wilcoxsub output_blockhead_none(%) {
11993a025e1dSMatthew Wilcox}
12003a025e1dSMatthew Wilcox
12011da177e4SLinus Torvalds##
120227205744SRandy Dunlap# generic output function for all types (function, struct/union, typedef, enum);
120327205744SRandy Dunlap# calls the generated, variable output_ function name based on
120427205744SRandy Dunlap# functype and output_mode
12051da177e4SLinus Torvaldssub output_declaration {
12061da177e4SLinus Torvalds    no strict 'refs';
12071da177e4SLinus Torvalds    my $name = shift;
12081da177e4SLinus Torvalds    my $functype = shift;
12091da177e4SLinus Torvalds    my $func = "output_${functype}_$output_mode";
1210eab795ddSMauro Carvalho Chehab
1211eab795ddSMauro Carvalho Chehab    return if (defined($nosymbol_table{$name}));
1212eab795ddSMauro Carvalho Chehab
1213b6c3f456SJani Nikula    if (($output_selection == OUTPUT_ALL) ||
1214b6c3f456SJani Nikula	(($output_selection == OUTPUT_INCLUDE ||
1215b6c3f456SJani Nikula	  $output_selection == OUTPUT_EXPORTED) &&
121686ae2e38SJani Nikula	 defined($function_table{$name})) ||
1217eab795ddSMauro Carvalho Chehab	($output_selection == OUTPUT_INTERNAL &&
121886ae2e38SJani Nikula	 !($functype eq "function" && defined($function_table{$name}))))
12191da177e4SLinus Torvalds    {
12201da177e4SLinus Torvalds	&$func(@_);
12211da177e4SLinus Torvalds	$section_counter++;
12221da177e4SLinus Torvalds    }
12231da177e4SLinus Torvalds}
12241da177e4SLinus Torvalds
12251da177e4SLinus Torvalds##
122627205744SRandy Dunlap# generic output function - calls the right one based on current output mode.
1227b112e0f7SJohannes Bergsub output_blockhead {
12281da177e4SLinus Torvalds    no strict 'refs';
1229b112e0f7SJohannes Berg    my $func = "output_blockhead_" . $output_mode;
12301da177e4SLinus Torvalds    &$func(@_);
12311da177e4SLinus Torvalds    $section_counter++;
12321da177e4SLinus Torvalds}
12331da177e4SLinus Torvalds
12341da177e4SLinus Torvalds##
12351da177e4SLinus Torvalds# takes a declaration (struct, union, enum, typedef) and
12361da177e4SLinus Torvalds# invokes the right handler. NOT called for functions.
12371da177e4SLinus Torvaldssub dump_declaration($$) {
12381da177e4SLinus Torvalds    no strict 'refs';
12391da177e4SLinus Torvalds    my ($prototype, $file) = @_;
12401da177e4SLinus Torvalds    my $func = "dump_" . $decl_type;
12411da177e4SLinus Torvalds    &$func(@_);
12421da177e4SLinus Torvalds}
12431da177e4SLinus Torvalds
12441da177e4SLinus Torvaldssub dump_union($$) {
12451da177e4SLinus Torvalds    dump_struct(@_);
12461da177e4SLinus Torvalds}
12471da177e4SLinus Torvalds
12481da177e4SLinus Torvaldssub dump_struct($$) {
12491da177e4SLinus Torvalds    my $x = shift;
12501da177e4SLinus Torvalds    my $file = shift;
1251a746fe32SAditya Srivastava    my $decl_type;
1252a746fe32SAditya Srivastava    my $members;
1253a746fe32SAditya Srivastava    my $type = qr{struct|union};
1254a746fe32SAditya Srivastava    # For capturing struct/union definition body, i.e. "{members*}qualifiers*"
1255e86bdb24SAditya Srivastava    my $qualifiers = qr{$attribute|__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned};
1256e86bdb24SAditya Srivastava    my $definition_body = qr{\{(.*)\}\s*$qualifiers*};
1257e86bdb24SAditya Srivastava    my $struct_members = qr{($type)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;};
12581da177e4SLinus Torvalds
1259a746fe32SAditya Srivastava    if ($x =~ /($type)\s+(\w+)\s*$definition_body/) {
1260a746fe32SAditya Srivastava	$decl_type = $1;
12611da177e4SLinus Torvalds	$declaration_name = $2;
1262a746fe32SAditya Srivastava	$members = $3;
1263a746fe32SAditya Srivastava    } elsif ($x =~ /typedef\s+($type)\s*$definition_body\s*(\w+)\s*;/) {
1264a746fe32SAditya Srivastava	$decl_type = $1;
1265a746fe32SAditya Srivastava	$declaration_name = $3;
1266a746fe32SAditya Srivastava	$members = $2;
1267a746fe32SAditya Srivastava    }
12681da177e4SLinus Torvalds
1269a746fe32SAditya Srivastava    if ($members) {
127052042e2dSMauro Carvalho Chehab	if ($identifier ne $declaration_name) {
127152042e2dSMauro Carvalho Chehab	    print STDERR "${file}:$.: warning: expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n";
127252042e2dSMauro Carvalho Chehab	    return;
127352042e2dSMauro Carvalho Chehab	}
127452042e2dSMauro Carvalho Chehab
1275aeec46b9SMartin Waitz	# ignore members marked private:
12760d8c39e6SMauro Carvalho Chehab	$members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
12770d8c39e6SMauro Carvalho Chehab	$members =~ s/\/\*\s*private:.*//gosi;
1278aeec46b9SMartin Waitz	# strip comments:
1279aeec46b9SMartin Waitz	$members =~ s/\/\*.*?\*\///gos;
1280ef5da59fSRandy Dunlap	# strip attributes
1281e86bdb24SAditya Srivastava	$members =~ s/\s*$attribute/ /gi;
12823d9bfb19SSakari Ailus	$members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
12833d9bfb19SSakari Ailus	$members =~ s/\s*__packed\s*/ /gos;
1284f0074929SJonathan Corbet	$members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
1285f861537dSAndré Almeida	$members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
1286a070991fSJonathan Cameron	$members =~ s/\s*____cacheline_aligned/ /gos;
128750d7bd38SKees Cook	# unwrap struct_group():
128850d7bd38SKees Cook	# - first eat non-declaration parameters and rewrite for final match
128950d7bd38SKees Cook	# - then remove macro, outer parens, and trailing semicolon
129050d7bd38SKees Cook	$members =~ s/\bstruct_group\s*\(([^,]*,)/STRUCT_GROUP(/gos;
129150d7bd38SKees Cook	$members =~ s/\bstruct_group_(attr|tagged)\s*\(([^,]*,){2}/STRUCT_GROUP(/gos;
129250d7bd38SKees Cook	$members =~ s/\b__struct_group\s*\(([^,]*,){3}/STRUCT_GROUP(/gos;
129350d7bd38SKees Cook	$members =~ s/\bSTRUCT_GROUP(\(((?:(?>[^)(]+)|(?1))*)\))[^;]*;/$2/gos;
12943556108eSMauro Carvalho Chehab
1295e86bdb24SAditya Srivastava	my $args = qr{([^,)]+)};
1296b22b5a9eSConchúr Navid	# replace DECLARE_BITMAP
12973556108eSMauro Carvalho Chehab	$members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos;
1298603bdf5dSRandy Dunlap	$members =~ s/DECLARE_PHY_INTERFACE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, PHY_INTERFACE_MODE_MAX)/gos;
1299e86bdb24SAditya Srivastava	$members =~ s/DECLARE_BITMAP\s*\($args,\s*$args\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
13001cb566baSJakub Kicinski	# replace DECLARE_HASHTABLE
1301e86bdb24SAditya Srivastava	$members =~ s/DECLARE_HASHTABLE\s*\($args,\s*$args\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
130245005b27SMauro Carvalho Chehab	# replace DECLARE_KFIFO
1303e86bdb24SAditya Srivastava	$members =~ s/DECLARE_KFIFO\s*\($args,\s*$args,\s*$args\)/$2 \*$1/gos;
130445005b27SMauro Carvalho Chehab	# replace DECLARE_KFIFO_PTR
1305e86bdb24SAditya Srivastava	$members =~ s/DECLARE_KFIFO_PTR\s*\($args,\s*$args\)/$2 \*$1/gos;
13063080ea55SKees Cook	# replace DECLARE_FLEX_ARRAY
13073080ea55SKees Cook	$members =~ s/(?:__)?DECLARE_FLEX_ARRAY\s*\($args,\s*$args\)/$1 $2\[\]/gos;
13088ad72163SMauro Carvalho Chehab	my $declaration = $members;
13098ad72163SMauro Carvalho Chehab
13108ad72163SMauro Carvalho Chehab	# Split nested struct/union elements as newer ones
1311e86bdb24SAditya Srivastava	while ($members =~ m/$struct_members/) {
131284ce5b98SMauro Carvalho Chehab		my $newmember;
131384ce5b98SMauro Carvalho Chehab		my $maintype = $1;
131484ce5b98SMauro Carvalho Chehab		my $ids = $4;
13158ad72163SMauro Carvalho Chehab		my $content = $3;
131684ce5b98SMauro Carvalho Chehab		foreach my $id(split /,/, $ids) {
131784ce5b98SMauro Carvalho Chehab			$newmember .= "$maintype $id; ";
131884ce5b98SMauro Carvalho Chehab
13198ad72163SMauro Carvalho Chehab			$id =~ s/[:\[].*//;
132084ce5b98SMauro Carvalho Chehab			$id =~ s/^\s*\**(\S+)\s*/$1/;
13218ad72163SMauro Carvalho Chehab			foreach my $arg (split /;/, $content) {
13228ad72163SMauro Carvalho Chehab				next if ($arg =~ m/^\s*$/);
13237c0d7e87SMauro Carvalho Chehab				if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) {
13247c0d7e87SMauro Carvalho Chehab					# pointer-to-function
13257c0d7e87SMauro Carvalho Chehab					my $type = $1;
13267c0d7e87SMauro Carvalho Chehab					my $name = $2;
13277c0d7e87SMauro Carvalho Chehab					my $extra = $3;
13287c0d7e87SMauro Carvalho Chehab					next if (!$name);
13297c0d7e87SMauro Carvalho Chehab					if ($id =~ m/^\s*$/) {
13307c0d7e87SMauro Carvalho Chehab						# anonymous struct/union
13317c0d7e87SMauro Carvalho Chehab						$newmember .= "$type$name$extra; ";
13327c0d7e87SMauro Carvalho Chehab					} else {
13337c0d7e87SMauro Carvalho Chehab						$newmember .= "$type$id.$name$extra; ";
13347c0d7e87SMauro Carvalho Chehab					}
13357c0d7e87SMauro Carvalho Chehab				} else {
133684ce5b98SMauro Carvalho Chehab					my $type;
133784ce5b98SMauro Carvalho Chehab					my $names;
133884ce5b98SMauro Carvalho Chehab					$arg =~ s/^\s+//;
133984ce5b98SMauro Carvalho Chehab					$arg =~ s/\s+$//;
134084ce5b98SMauro Carvalho Chehab					# Handle bitmaps
134184ce5b98SMauro Carvalho Chehab					$arg =~ s/:\s*\d+\s*//g;
134284ce5b98SMauro Carvalho Chehab					# Handle arrays
1343d404d579SMauro Carvalho Chehab					$arg =~ s/\[.*\]//g;
134484ce5b98SMauro Carvalho Chehab					# The type may have multiple words,
134584ce5b98SMauro Carvalho Chehab					# and multiple IDs can be defined, like:
134684ce5b98SMauro Carvalho Chehab					#	const struct foo, *bar, foobar
134784ce5b98SMauro Carvalho Chehab					# So, we remove spaces when parsing the
134884ce5b98SMauro Carvalho Chehab					# names, in order to match just names
134984ce5b98SMauro Carvalho Chehab					# and commas for the names
135084ce5b98SMauro Carvalho Chehab					$arg =~ s/\s*,\s*/,/g;
135184ce5b98SMauro Carvalho Chehab					if ($arg =~ m/(.*)\s+([\S+,]+)/) {
135284ce5b98SMauro Carvalho Chehab						$type = $1;
135384ce5b98SMauro Carvalho Chehab						$names = $2;
135484ce5b98SMauro Carvalho Chehab					} else {
135584ce5b98SMauro Carvalho Chehab						$newmember .= "$arg; ";
135684ce5b98SMauro Carvalho Chehab						next;
135784ce5b98SMauro Carvalho Chehab					}
135884ce5b98SMauro Carvalho Chehab					foreach my $name (split /,/, $names) {
135984ce5b98SMauro Carvalho Chehab						$name =~ s/^\s*\**(\S+)\s*/$1/;
13608ad72163SMauro Carvalho Chehab						next if (($name =~ m/^\s*$/));
13618ad72163SMauro Carvalho Chehab						if ($id =~ m/^\s*$/) {
13628ad72163SMauro Carvalho Chehab							# anonymous struct/union
13638ad72163SMauro Carvalho Chehab							$newmember .= "$type $name; ";
13648ad72163SMauro Carvalho Chehab						} else {
13658ad72163SMauro Carvalho Chehab							$newmember .= "$type $id.$name; ";
13668ad72163SMauro Carvalho Chehab						}
13678ad72163SMauro Carvalho Chehab					}
13687c0d7e87SMauro Carvalho Chehab				}
136984ce5b98SMauro Carvalho Chehab			}
137084ce5b98SMauro Carvalho Chehab		}
1371e86bdb24SAditya Srivastava		$members =~ s/$struct_members/$newmember/;
137284ce5b98SMauro Carvalho Chehab	}
13738ad72163SMauro Carvalho Chehab
13748ad72163SMauro Carvalho Chehab	# Ignore other nested elements, like enums
1375673bb2dfSBen Hutchings	$members =~ s/(\{[^\{\}]*\})//g;
13768ad72163SMauro Carvalho Chehab
1377151c468bSMauro Carvalho Chehab	create_parameterlist($members, ';', $file, $declaration_name);
13781081de2dSMauro Carvalho Chehab	check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
13791da177e4SLinus Torvalds
13808ad72163SMauro Carvalho Chehab	# Adjust declaration for better display
1381673bb2dfSBen Hutchings	$declaration =~ s/([\{;])/$1\n/g;
1382673bb2dfSBen Hutchings	$declaration =~ s/\}\s+;/};/g;
13838ad72163SMauro Carvalho Chehab	# Better handle inlined enums
1384673bb2dfSBen Hutchings	do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
13858ad72163SMauro Carvalho Chehab
13868ad72163SMauro Carvalho Chehab	my @def_args = split /\n/, $declaration;
13878ad72163SMauro Carvalho Chehab	my $level = 1;
13888ad72163SMauro Carvalho Chehab	$declaration = "";
13898ad72163SMauro Carvalho Chehab	foreach my $clause (@def_args) {
13908ad72163SMauro Carvalho Chehab		$clause =~ s/^\s+//;
13918ad72163SMauro Carvalho Chehab		$clause =~ s/\s+$//;
13928ad72163SMauro Carvalho Chehab		$clause =~ s/\s+/ /;
13938ad72163SMauro Carvalho Chehab		next if (!$clause);
1394673bb2dfSBen Hutchings		$level-- if ($clause =~ m/(\})/ && $level > 1);
13958ad72163SMauro Carvalho Chehab		if (!($clause =~ m/^\s*#/)) {
13968ad72163SMauro Carvalho Chehab			$declaration .= "\t" x $level;
13978ad72163SMauro Carvalho Chehab		}
13988ad72163SMauro Carvalho Chehab		$declaration .= "\t" . $clause . "\n";
1399673bb2dfSBen Hutchings		$level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
14008ad72163SMauro Carvalho Chehab	}
14011da177e4SLinus Torvalds	output_declaration($declaration_name,
14021da177e4SLinus Torvalds			   'struct',
14031da177e4SLinus Torvalds			   {'struct' => $declaration_name,
14041da177e4SLinus Torvalds			    'module' => $modulename,
14058ad72163SMauro Carvalho Chehab			    'definition' => $declaration,
14061da177e4SLinus Torvalds			    'parameterlist' => \@parameterlist,
14071da177e4SLinus Torvalds			    'parameterdescs' => \%parameterdescs,
14081da177e4SLinus Torvalds			    'parametertypes' => \%parametertypes,
14091da177e4SLinus Torvalds			    'sectionlist' => \@sectionlist,
14101da177e4SLinus Torvalds			    'sections' => \%sections,
14111da177e4SLinus Torvalds			    'purpose' => $declaration_purpose,
14121da177e4SLinus Torvalds			    'type' => $decl_type
14131da177e4SLinus Torvalds			   });
14141da177e4SLinus Torvalds    }
14151da177e4SLinus Torvalds    else {
1416d40e1e65SBart Van Assche	print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
14171da177e4SLinus Torvalds	++$errors;
14181da177e4SLinus Torvalds    }
14191da177e4SLinus Torvalds}
14201da177e4SLinus Torvalds
142185afe608SMauro Carvalho Chehab
142285afe608SMauro Carvalho Chehabsub show_warnings($$) {
142385afe608SMauro Carvalho Chehab	my $functype = shift;
142485afe608SMauro Carvalho Chehab	my $name = shift;
142585afe608SMauro Carvalho Chehab
1426eab795ddSMauro Carvalho Chehab	return 0 if (defined($nosymbol_table{$name}));
1427eab795ddSMauro Carvalho Chehab
142885afe608SMauro Carvalho Chehab	return 1 if ($output_selection == OUTPUT_ALL);
142985afe608SMauro Carvalho Chehab
143085afe608SMauro Carvalho Chehab	if ($output_selection == OUTPUT_EXPORTED) {
143185afe608SMauro Carvalho Chehab		if (defined($function_table{$name})) {
143285afe608SMauro Carvalho Chehab			return 1;
143385afe608SMauro Carvalho Chehab		} else {
143485afe608SMauro Carvalho Chehab			return 0;
143585afe608SMauro Carvalho Chehab		}
143685afe608SMauro Carvalho Chehab	}
143785afe608SMauro Carvalho Chehab        if ($output_selection == OUTPUT_INTERNAL) {
143885afe608SMauro Carvalho Chehab		if (!($functype eq "function" && defined($function_table{$name}))) {
143985afe608SMauro Carvalho Chehab			return 1;
144085afe608SMauro Carvalho Chehab		} else {
144185afe608SMauro Carvalho Chehab			return 0;
144285afe608SMauro Carvalho Chehab		}
144385afe608SMauro Carvalho Chehab	}
144485afe608SMauro Carvalho Chehab	if ($output_selection == OUTPUT_INCLUDE) {
144585afe608SMauro Carvalho Chehab		if (defined($function_table{$name})) {
144685afe608SMauro Carvalho Chehab			return 1;
144785afe608SMauro Carvalho Chehab		} else {
144885afe608SMauro Carvalho Chehab			return 0;
144985afe608SMauro Carvalho Chehab		}
145085afe608SMauro Carvalho Chehab	}
145185afe608SMauro Carvalho Chehab	die("Please add the new output type at show_warnings()");
145285afe608SMauro Carvalho Chehab}
145385afe608SMauro Carvalho Chehab
14541da177e4SLinus Torvaldssub dump_enum($$) {
14551da177e4SLinus Torvalds    my $x = shift;
14561da177e4SLinus Torvalds    my $file = shift;
1457d38c8cfbSMauro Carvalho Chehab    my $members;
1458d38c8cfbSMauro Carvalho Chehab
14591da177e4SLinus Torvalds
1460aeec46b9SMartin Waitz    $x =~ s@/\*.*?\*/@@gos;	# strip comments.
14614468e21eSConchúr Navid    # strip #define macros inside enums
14624468e21eSConchúr Navid    $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
1463b6d676dbSRandy Dunlap
1464d38c8cfbSMauro Carvalho Chehab    if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) {
1465d38c8cfbSMauro Carvalho Chehab	$declaration_name = $2;
1466d38c8cfbSMauro Carvalho Chehab	$members = $1;
1467d38c8cfbSMauro Carvalho Chehab    } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
14681da177e4SLinus Torvalds	$declaration_name = $1;
1469d38c8cfbSMauro Carvalho Chehab	$members = $2;
1470d38c8cfbSMauro Carvalho Chehab    }
1471d38c8cfbSMauro Carvalho Chehab
1472ae5b17e4SAndy Shevchenko    if ($members) {
147352042e2dSMauro Carvalho Chehab	if ($identifier ne $declaration_name) {
14740b54c2e3SMauro Carvalho Chehab	    if ($identifier eq "") {
14750b54c2e3SMauro Carvalho Chehab		print STDERR "${file}:$.: warning: wrong kernel-doc identifier on line:\n";
14760b54c2e3SMauro Carvalho Chehab	    } else {
147752042e2dSMauro Carvalho Chehab		print STDERR "${file}:$.: warning: expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n";
14780b54c2e3SMauro Carvalho Chehab	    }
147952042e2dSMauro Carvalho Chehab	    return;
148052042e2dSMauro Carvalho Chehab	}
14810b54c2e3SMauro Carvalho Chehab	$declaration_name = "(anonymous)" if ($declaration_name eq "");
148252042e2dSMauro Carvalho Chehab
14835cb5c31cSJohannes Berg	my %_members;
14845cb5c31cSJohannes Berg
1485463a0fdcSMarkus Heiser	$members =~ s/\s+$//;
14861da177e4SLinus Torvalds
14871da177e4SLinus Torvalds	foreach my $arg (split ',', $members) {
14881da177e4SLinus Torvalds	    $arg =~ s/^\s*(\w+).*/$1/;
14891da177e4SLinus Torvalds	    push @parameterlist, $arg;
14901da177e4SLinus Torvalds	    if (!$parameterdescs{$arg}) {
14911da177e4SLinus Torvalds		$parameterdescs{$arg} = $undescribed;
149285afe608SMauro Carvalho Chehab	        if (show_warnings("enum", $declaration_name)) {
14932defb272SMauro Carvalho Chehab			print STDERR "${file}:$.: warning: Enum value '$arg' not described in enum '$declaration_name'\n";
14942defb272SMauro Carvalho Chehab		}
14951da177e4SLinus Torvalds	    }
14965cb5c31cSJohannes Berg	    $_members{$arg} = 1;
14975cb5c31cSJohannes Berg	}
14981da177e4SLinus Torvalds
14995cb5c31cSJohannes Berg	while (my ($k, $v) = each %parameterdescs) {
15005cb5c31cSJohannes Berg	    if (!exists($_members{$k})) {
150185afe608SMauro Carvalho Chehab	        if (show_warnings("enum", $declaration_name)) {
15022defb272SMauro Carvalho Chehab		     print STDERR "${file}:$.: warning: Excess enum value '$k' description in '$declaration_name'\n";
15032defb272SMauro Carvalho Chehab		}
15045cb5c31cSJohannes Berg	    }
15051da177e4SLinus Torvalds        }
15061da177e4SLinus Torvalds
15071da177e4SLinus Torvalds	output_declaration($declaration_name,
15081da177e4SLinus Torvalds			   'enum',
15091da177e4SLinus Torvalds			   {'enum' => $declaration_name,
15101da177e4SLinus Torvalds			    'module' => $modulename,
15111da177e4SLinus Torvalds			    'parameterlist' => \@parameterlist,
15121da177e4SLinus Torvalds			    'parameterdescs' => \%parameterdescs,
15131da177e4SLinus Torvalds			    'sectionlist' => \@sectionlist,
15141da177e4SLinus Torvalds			    'sections' => \%sections,
15151da177e4SLinus Torvalds			    'purpose' => $declaration_purpose
15161da177e4SLinus Torvalds			   });
1517d38c8cfbSMauro Carvalho Chehab    } else {
1518d40e1e65SBart Van Assche	print STDERR "${file}:$.: error: Cannot parse enum!\n";
15191da177e4SLinus Torvalds	++$errors;
15201da177e4SLinus Torvalds    }
15211da177e4SLinus Torvalds}
15221da177e4SLinus Torvalds
15237d2c6b1eSMauro Carvalho Chehabmy $typedef_type = qr { ((?:\s+[\w\*]+\b){1,8})\s* }x;
15247efc6c42SMauro Carvalho Chehabmy $typedef_ident = qr { \*?\s*(\w\S+)\s* }x;
15257efc6c42SMauro Carvalho Chehabmy $typedef_args = qr { \s*\((.*)\); }x;
15267efc6c42SMauro Carvalho Chehab
15277efc6c42SMauro Carvalho Chehabmy $typedef1 = qr { typedef$typedef_type\($typedef_ident\)$typedef_args }x;
15287efc6c42SMauro Carvalho Chehabmy $typedef2 = qr { typedef$typedef_type$typedef_ident$typedef_args }x;
15297efc6c42SMauro Carvalho Chehab
15301da177e4SLinus Torvaldssub dump_typedef($$) {
15311da177e4SLinus Torvalds    my $x = shift;
15321da177e4SLinus Torvalds    my $file = shift;
15331da177e4SLinus Torvalds
1534aeec46b9SMartin Waitz    $x =~ s@/\*.*?\*/@@gos;	# strip comments.
153583766452SMauro Carvalho Chehab
15367efc6c42SMauro Carvalho Chehab    # Parse function typedef prototypes
15377efc6c42SMauro Carvalho Chehab    if ($x =~ $typedef1 || $x =~ $typedef2) {
153883766452SMauro Carvalho Chehab	$return_type = $1;
153983766452SMauro Carvalho Chehab	$declaration_name = $2;
154083766452SMauro Carvalho Chehab	my $args = $3;
15416b80975cSMauro Carvalho Chehab	$return_type =~ s/^\s+//;
154283766452SMauro Carvalho Chehab
154352042e2dSMauro Carvalho Chehab	if ($identifier ne $declaration_name) {
154452042e2dSMauro Carvalho Chehab	    print STDERR "${file}:$.: warning: expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n";
154552042e2dSMauro Carvalho Chehab	    return;
154652042e2dSMauro Carvalho Chehab	}
154752042e2dSMauro Carvalho Chehab
1548151c468bSMauro Carvalho Chehab	create_parameterlist($args, ',', $file, $declaration_name);
154983766452SMauro Carvalho Chehab
155083766452SMauro Carvalho Chehab	output_declaration($declaration_name,
155183766452SMauro Carvalho Chehab			   'function',
155283766452SMauro Carvalho Chehab			   {'function' => $declaration_name,
155382801d06SMauro Carvalho Chehab			    'typedef' => 1,
155483766452SMauro Carvalho Chehab			    'module' => $modulename,
155583766452SMauro Carvalho Chehab			    'functiontype' => $return_type,
155683766452SMauro Carvalho Chehab			    'parameterlist' => \@parameterlist,
155783766452SMauro Carvalho Chehab			    'parameterdescs' => \%parameterdescs,
155883766452SMauro Carvalho Chehab			    'parametertypes' => \%parametertypes,
155983766452SMauro Carvalho Chehab			    'sectionlist' => \@sectionlist,
156083766452SMauro Carvalho Chehab			    'sections' => \%sections,
156183766452SMauro Carvalho Chehab			    'purpose' => $declaration_purpose
156283766452SMauro Carvalho Chehab			   });
156383766452SMauro Carvalho Chehab	return;
156483766452SMauro Carvalho Chehab    }
156583766452SMauro Carvalho Chehab
15661da177e4SLinus Torvalds    while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
15671da177e4SLinus Torvalds	$x =~ s/\(*.\)\s*;$/;/;
15681da177e4SLinus Torvalds	$x =~ s/\[*.\]\s*;$/;/;
15691da177e4SLinus Torvalds    }
15701da177e4SLinus Torvalds
15711da177e4SLinus Torvalds    if ($x =~ /typedef.*\s+(\w+)\s*;/) {
15721da177e4SLinus Torvalds	$declaration_name = $1;
15731da177e4SLinus Torvalds
157452042e2dSMauro Carvalho Chehab	if ($identifier ne $declaration_name) {
157552042e2dSMauro Carvalho Chehab	    print STDERR "${file}:$.: warning: expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n";
157652042e2dSMauro Carvalho Chehab	    return;
157752042e2dSMauro Carvalho Chehab	}
157852042e2dSMauro Carvalho Chehab
15791da177e4SLinus Torvalds	output_declaration($declaration_name,
15801da177e4SLinus Torvalds			   'typedef',
15811da177e4SLinus Torvalds			   {'typedef' => $declaration_name,
15821da177e4SLinus Torvalds			    'module' => $modulename,
15831da177e4SLinus Torvalds			    'sectionlist' => \@sectionlist,
15841da177e4SLinus Torvalds			    'sections' => \%sections,
15851da177e4SLinus Torvalds			    'purpose' => $declaration_purpose
15861da177e4SLinus Torvalds			   });
15871da177e4SLinus Torvalds    }
15881da177e4SLinus Torvalds    else {
1589d40e1e65SBart Van Assche	print STDERR "${file}:$.: error: Cannot parse typedef!\n";
15901da177e4SLinus Torvalds	++$errors;
15911da177e4SLinus Torvalds    }
15921da177e4SLinus Torvalds}
15931da177e4SLinus Torvalds
1594a1d94aa5SRandy Dunlapsub save_struct_actual($) {
1595a1d94aa5SRandy Dunlap    my $actual = shift;
1596a1d94aa5SRandy Dunlap
1597a1d94aa5SRandy Dunlap    # strip all spaces from the actual param so that it looks like one string item
1598a1d94aa5SRandy Dunlap    $actual =~ s/\s*//g;
1599a1d94aa5SRandy Dunlap    $struct_actual = $struct_actual . $actual . " ";
1600a1d94aa5SRandy Dunlap}
1601a1d94aa5SRandy Dunlap
1602151c468bSMauro Carvalho Chehabsub create_parameterlist($$$$) {
16031da177e4SLinus Torvalds    my $args = shift;
16041da177e4SLinus Torvalds    my $splitter = shift;
16051da177e4SLinus Torvalds    my $file = shift;
1606151c468bSMauro Carvalho Chehab    my $declaration_name = shift;
16071da177e4SLinus Torvalds    my $type;
16081da177e4SLinus Torvalds    my $param;
16091da177e4SLinus Torvalds
1610a6d3fe77SMartin Waitz    # temporarily replace commas inside function pointer definition
1611e86bdb24SAditya Srivastava    my $arg_expr = qr{\([^\),]+};
1612e86bdb24SAditya Srivastava    while ($args =~ /$arg_expr,/) {
1613e86bdb24SAditya Srivastava	$args =~ s/($arg_expr),/$1#/g;
16141da177e4SLinus Torvalds    }
16151da177e4SLinus Torvalds
16161da177e4SLinus Torvalds    foreach my $arg (split($splitter, $args)) {
16171da177e4SLinus Torvalds	# strip comments
16181da177e4SLinus Torvalds	$arg =~ s/\/\*.*\*\///;
16191da177e4SLinus Torvalds	# strip leading/trailing spaces
16201da177e4SLinus Torvalds	$arg =~ s/^\s*//;
16211da177e4SLinus Torvalds	$arg =~ s/\s*$//;
16221da177e4SLinus Torvalds	$arg =~ s/\s+/ /;
16231da177e4SLinus Torvalds
16241da177e4SLinus Torvalds	if ($arg =~ /^#/) {
16251da177e4SLinus Torvalds	    # Treat preprocessor directive as a typeless variable just to fill
16261da177e4SLinus Torvalds	    # corresponding data structures "correctly". Catch it later in
16271da177e4SLinus Torvalds	    # output_* subs.
1628ed8348e2SMauro Carvalho Chehab	    push_parameter($arg, "", "", $file);
162900d62961SRichard Kennedy	} elsif ($arg =~ m/\(.+\)\s*\(/) {
16301da177e4SLinus Torvalds	    # pointer-to-function
16311da177e4SLinus Torvalds	    $arg =~ tr/#/,/;
1632336ced2dSAditya Srivastava	    $arg =~ m/[^\(]+\(\*?\s*([\w\[\]\.]*)\s*\)/;
16331da177e4SLinus Torvalds	    $param = $1;
16341da177e4SLinus Torvalds	    $type = $arg;
163500d62961SRichard Kennedy	    $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
1636a1d94aa5SRandy Dunlap	    save_struct_actual($param);
1637ed8348e2SMauro Carvalho Chehab	    push_parameter($param, $type, $arg, $file, $declaration_name);
1638aeec46b9SMartin Waitz	} elsif ($arg) {
16391da177e4SLinus Torvalds	    $arg =~ s/\s*:\s*/:/g;
16401da177e4SLinus Torvalds	    $arg =~ s/\s*\[/\[/g;
16411da177e4SLinus Torvalds
16421da177e4SLinus Torvalds	    my @args = split('\s*,\s*', $arg);
16431da177e4SLinus Torvalds	    if ($args[0] =~ m/\*/) {
16441da177e4SLinus Torvalds		$args[0] =~ s/(\*+)\s*/ $1/;
16451da177e4SLinus Torvalds	    }
1646884f2810SBorislav Petkov
1647884f2810SBorislav Petkov	    my @first_arg;
1648884f2810SBorislav Petkov	    if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1649884f2810SBorislav Petkov		    shift @args;
1650884f2810SBorislav Petkov		    push(@first_arg, split('\s+', $1));
1651884f2810SBorislav Petkov		    push(@first_arg, $2);
1652884f2810SBorislav Petkov	    } else {
1653884f2810SBorislav Petkov		    @first_arg = split('\s+', shift @args);
1654884f2810SBorislav Petkov	    }
1655884f2810SBorislav Petkov
16561da177e4SLinus Torvalds	    unshift(@args, pop @first_arg);
16571da177e4SLinus Torvalds	    $type = join " ", @first_arg;
16581da177e4SLinus Torvalds
16591da177e4SLinus Torvalds	    foreach $param (@args) {
16601da177e4SLinus Torvalds		if ($param =~ m/^(\*+)\s*(.*)/) {
1661a1d94aa5SRandy Dunlap		    save_struct_actual($2);
1662ed8348e2SMauro Carvalho Chehab
1663ed8348e2SMauro Carvalho Chehab		    push_parameter($2, "$type $1", $arg, $file, $declaration_name);
16641da177e4SLinus Torvalds		}
16651da177e4SLinus Torvalds		elsif ($param =~ m/(.*?):(\d+)/) {
16667b97887eSRandy Dunlap		    if ($type ne "") { # skip unnamed bit-fields
1667a1d94aa5SRandy Dunlap			save_struct_actual($1);
1668ed8348e2SMauro Carvalho Chehab			push_parameter($1, "$type:$2", $arg, $file, $declaration_name)
16691da177e4SLinus Torvalds		    }
16707b97887eSRandy Dunlap		}
16711da177e4SLinus Torvalds		else {
1672a1d94aa5SRandy Dunlap		    save_struct_actual($param);
1673ed8348e2SMauro Carvalho Chehab		    push_parameter($param, $type, $arg, $file, $declaration_name);
16741da177e4SLinus Torvalds		}
16751da177e4SLinus Torvalds	    }
16761da177e4SLinus Torvalds	}
16771da177e4SLinus Torvalds    }
16781da177e4SLinus Torvalds}
16791da177e4SLinus Torvalds
1680ed8348e2SMauro Carvalho Chehabsub push_parameter($$$$$) {
16811da177e4SLinus Torvalds	my $param = shift;
16821da177e4SLinus Torvalds	my $type = shift;
1683ed8348e2SMauro Carvalho Chehab	my $org_arg = shift;
16841da177e4SLinus Torvalds	my $file = shift;
1685151c468bSMauro Carvalho Chehab	my $declaration_name = shift;
16861da177e4SLinus Torvalds
16875f8c7c98SRandy Dunlap	if (($anon_struct_union == 1) && ($type eq "") &&
16885f8c7c98SRandy Dunlap	    ($param eq "}")) {
16895f8c7c98SRandy Dunlap		return;		# ignore the ending }; from anon. struct/union
16905f8c7c98SRandy Dunlap	}
16915f8c7c98SRandy Dunlap
16925f8c7c98SRandy Dunlap	$anon_struct_union = 0;
1693f9b5c530SMauro Carvalho Chehab	$param =~ s/[\[\)].*//;
16941da177e4SLinus Torvalds
1695a6d3fe77SMartin Waitz	if ($type eq "" && $param =~ /\.\.\.$/)
16961da177e4SLinus Torvalds	{
1697c950a173SSilvio Fricke	    if (!$param =~ /\w\.\.\.$/) {
1698c950a173SSilvio Fricke	      # handles unnamed variable parameters
1699ef00028bSJonathan Corbet	      $param = "...";
1700c950a173SSilvio Fricke	    }
170143756e34SJonathan Neuschäfer	    elsif ($param =~ /\w\.\.\.$/) {
170243756e34SJonathan Neuschäfer	      # for named variable parameters of the form `x...`, remove the dots
170343756e34SJonathan Neuschäfer	      $param =~ s/\.\.\.$//;
170443756e34SJonathan Neuschäfer	    }
1705ced69090SRandy Dunlap	    if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1706a6d3fe77SMartin Waitz		$parameterdescs{$param} = "variable arguments";
17071da177e4SLinus Torvalds	    }
1708ced69090SRandy Dunlap	}
17091da177e4SLinus Torvalds	elsif ($type eq "" && ($param eq "" or $param eq "void"))
17101da177e4SLinus Torvalds	{
17111da177e4SLinus Torvalds	    $param="void";
17121da177e4SLinus Torvalds	    $parameterdescs{void} = "no arguments";
17131da177e4SLinus Torvalds	}
1714134fe01bSRandy Dunlap	elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1715134fe01bSRandy Dunlap	# handle unnamed (anonymous) union or struct:
1716134fe01bSRandy Dunlap	{
1717134fe01bSRandy Dunlap		$type = $param;
1718134fe01bSRandy Dunlap		$param = "{unnamed_" . $param . "}";
1719134fe01bSRandy Dunlap		$parameterdescs{$param} = "anonymous\n";
17205f8c7c98SRandy Dunlap		$anon_struct_union = 1;
1721134fe01bSRandy Dunlap	}
1722134fe01bSRandy Dunlap
1723a6d3fe77SMartin Waitz	# warn if parameter has no description
1724134fe01bSRandy Dunlap	# (but ignore ones starting with # as these are not parameters
1725134fe01bSRandy Dunlap	# but inline preprocessor statements);
1726151c468bSMauro Carvalho Chehab	# Note: It will also ignore void params and unnamed structs/unions
1727f9b5c530SMauro Carvalho Chehab	if (!defined $parameterdescs{$param} && $param !~ /^#/) {
1728f9b5c530SMauro Carvalho Chehab		$parameterdescs{$param} = $undescribed;
17291da177e4SLinus Torvalds
1730be5cd20cSJonathan Corbet	        if (show_warnings($type, $declaration_name) && $param !~ /\./) {
1731151c468bSMauro Carvalho Chehab			print STDERR
1732151c468bSMauro Carvalho Chehab			      "${file}:$.: warning: Function parameter or member '$param' not described in '$declaration_name'\n";
17331da177e4SLinus Torvalds			++$warnings;
17341da177e4SLinus Torvalds		}
17352defb272SMauro Carvalho Chehab	}
17361da177e4SLinus Torvalds
173725985edcSLucas De Marchi	# strip spaces from $param so that it is one continuous string
1738e34e7dbbSRandy Dunlap	# on @parameterlist;
1739e34e7dbbSRandy Dunlap	# this fixes a problem where check_sections() cannot find
1740e34e7dbbSRandy Dunlap	# a parameter like "addr[6 + 2]" because it actually appears
1741e34e7dbbSRandy Dunlap	# as "addr[6", "+", "2]" on the parameter list;
1742e34e7dbbSRandy Dunlap	# but it's better to maintain the param string unchanged for output,
1743e34e7dbbSRandy Dunlap	# so just weaken the string compare in check_sections() to ignore
1744e34e7dbbSRandy Dunlap	# "[blah" in a parameter string;
1745e34e7dbbSRandy Dunlap	###$param =~ s/\s*//g;
17461da177e4SLinus Torvalds	push @parameterlist, $param;
1747ed8348e2SMauro Carvalho Chehab	$org_arg =~ s/\s\s+/ /g;
1748ed8348e2SMauro Carvalho Chehab	$parametertypes{$param} = $org_arg;
17491da177e4SLinus Torvalds}
17501da177e4SLinus Torvalds
17511081de2dSMauro Carvalho Chehabsub check_sections($$$$$) {
17521081de2dSMauro Carvalho Chehab	my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
1753a1d94aa5SRandy Dunlap	my @sects = split ' ', $sectcheck;
1754a1d94aa5SRandy Dunlap	my @prms = split ' ', $prmscheck;
1755a1d94aa5SRandy Dunlap	my $err;
1756a1d94aa5SRandy Dunlap	my ($px, $sx);
1757a1d94aa5SRandy Dunlap	my $prm_clean;		# strip trailing "[array size]" and/or beginning "*"
1758a1d94aa5SRandy Dunlap
1759a1d94aa5SRandy Dunlap	foreach $sx (0 .. $#sects) {
1760a1d94aa5SRandy Dunlap		$err = 1;
1761a1d94aa5SRandy Dunlap		foreach $px (0 .. $#prms) {
1762a1d94aa5SRandy Dunlap			$prm_clean = $prms[$px];
1763a1d94aa5SRandy Dunlap			$prm_clean =~ s/\[.*\]//;
1764e86bdb24SAditya Srivastava			$prm_clean =~ s/$attribute//i;
1765e34e7dbbSRandy Dunlap			# ignore array size in a parameter string;
1766e34e7dbbSRandy Dunlap			# however, the original param string may contain
1767e34e7dbbSRandy Dunlap			# spaces, e.g.:  addr[6 + 2]
1768e34e7dbbSRandy Dunlap			# and this appears in @prms as "addr[6" since the
1769e34e7dbbSRandy Dunlap			# parameter list is split at spaces;
1770e34e7dbbSRandy Dunlap			# hence just ignore "[..." for the sections check;
1771e34e7dbbSRandy Dunlap			$prm_clean =~ s/\[.*//;
1772e34e7dbbSRandy Dunlap
1773a1d94aa5SRandy Dunlap			##$prm_clean =~ s/^\**//;
1774a1d94aa5SRandy Dunlap			if ($prm_clean eq $sects[$sx]) {
1775a1d94aa5SRandy Dunlap				$err = 0;
1776a1d94aa5SRandy Dunlap				last;
1777a1d94aa5SRandy Dunlap			}
1778a1d94aa5SRandy Dunlap		}
1779a1d94aa5SRandy Dunlap		if ($err) {
1780a1d94aa5SRandy Dunlap			if ($decl_type eq "function") {
1781d40e1e65SBart Van Assche				print STDERR "${file}:$.: warning: " .
1782a1d94aa5SRandy Dunlap					"Excess function parameter " .
1783a1d94aa5SRandy Dunlap					"'$sects[$sx]' " .
1784a1d94aa5SRandy Dunlap					"description in '$decl_name'\n";
1785a1d94aa5SRandy Dunlap				++$warnings;
1786a1d94aa5SRandy Dunlap			}
1787a1d94aa5SRandy Dunlap		}
1788a1d94aa5SRandy Dunlap	}
1789a1d94aa5SRandy Dunlap}
1790a1d94aa5SRandy Dunlap
17911da177e4SLinus Torvalds##
17924092bac7SYacine Belkadi# Checks the section describing the return value of a function.
17934092bac7SYacine Belkadisub check_return_section {
17944092bac7SYacine Belkadi        my $file = shift;
17954092bac7SYacine Belkadi        my $declaration_name = shift;
17964092bac7SYacine Belkadi        my $return_type = shift;
17974092bac7SYacine Belkadi
17984092bac7SYacine Belkadi        # Ignore an empty return type (It's a macro)
17994092bac7SYacine Belkadi        # Ignore functions with a "void" return type. (But don't ignore "void *")
18004092bac7SYacine Belkadi        if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
18014092bac7SYacine Belkadi                return;
18024092bac7SYacine Belkadi        }
18034092bac7SYacine Belkadi
18044092bac7SYacine Belkadi        if (!defined($sections{$section_return}) ||
18054092bac7SYacine Belkadi            $sections{$section_return} eq "") {
1806d40e1e65SBart Van Assche                print STDERR "${file}:$.: warning: " .
18074092bac7SYacine Belkadi                        "No description found for return value of " .
18084092bac7SYacine Belkadi                        "'$declaration_name'\n";
18094092bac7SYacine Belkadi                ++$warnings;
18104092bac7SYacine Belkadi        }
18114092bac7SYacine Belkadi}
18124092bac7SYacine Belkadi
18134092bac7SYacine Belkadi##
18141da177e4SLinus Torvalds# takes a function prototype and the name of the current file being
18151da177e4SLinus Torvalds# processed and spits out all the details stored in the global
18161da177e4SLinus Torvalds# arrays/hashes.
18171da177e4SLinus Torvaldssub dump_function($$) {
18181da177e4SLinus Torvalds    my $prototype = shift;
18191da177e4SLinus Torvalds    my $file = shift;
1820cbb4d3e6SHoria Geanta    my $noret = 0;
18211da177e4SLinus Torvalds
18225ef09c96SMauro Carvalho Chehab    print_lineno($new_start_line);
18235eb6b4b3SMauro Carvalho Chehab
18241da177e4SLinus Torvalds    $prototype =~ s/^static +//;
18251da177e4SLinus Torvalds    $prototype =~ s/^extern +//;
18264dc3b16bSPavel Pisa    $prototype =~ s/^asmlinkage +//;
18271da177e4SLinus Torvalds    $prototype =~ s/^inline +//;
18281da177e4SLinus Torvalds    $prototype =~ s/^__inline__ +//;
182932e79401SRandy Dunlap    $prototype =~ s/^__inline +//;
183032e79401SRandy Dunlap    $prototype =~ s/^__always_inline +//;
183132e79401SRandy Dunlap    $prototype =~ s/^noinline +//;
183274fc5c65SRandy Dunlap    $prototype =~ s/__init +//;
183320072205SRandy Dunlap    $prototype =~ s/__init_or_module +//;
183480342d48SMatthew Wilcox    $prototype =~ s/__deprecated +//;
1835084aa001SAditya Srivastava    $prototype =~ s/__flatten +//;
1836270a0096SRandy Dunlap    $prototype =~ s/__meminit +//;
183770c95b00SRandy Dunlap    $prototype =~ s/__must_check +//;
18380df7c0e3SRandy Dunlap    $prototype =~ s/__weak +//;
18390891f959SMatthew Wilcox    $prototype =~ s/__sched +//;
184095e760cbSRandy Dunlap    $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
1841a40a8a11SKees Cook    $prototype =~ s/__alloc_size\s*\(\s*\d+\s*(?:,\s*\d+\s*)?\) +//;
1842cbb4d3e6SHoria Geanta    my $define = $prototype =~ s/^#\s*define\s+//; #ak added
1843084aa001SAditya Srivastava    $prototype =~ s/__attribute_const__ +//;
1844b1aaa546SPaolo Bonzini    $prototype =~ s/__attribute__\s*\(\(
1845b1aaa546SPaolo Bonzini            (?:
1846b1aaa546SPaolo Bonzini                 [\w\s]++          # attribute name
1847b1aaa546SPaolo Bonzini                 (?:\([^)]*+\))?   # attribute arguments
1848b1aaa546SPaolo Bonzini                 \s*+,?            # optional comma at the end
1849b1aaa546SPaolo Bonzini            )+
1850b1aaa546SPaolo Bonzini          \)\)\s+//x;
18511da177e4SLinus Torvalds
18521da177e4SLinus Torvalds    # Yes, this truly is vile.  We are looking for:
18531da177e4SLinus Torvalds    # 1. Return type (may be nothing if we're looking at a macro)
18541da177e4SLinus Torvalds    # 2. Function name
18551da177e4SLinus Torvalds    # 3. Function parameters.
18561da177e4SLinus Torvalds    #
18571da177e4SLinus Torvalds    # All the while we have to watch out for function pointer parameters
18581da177e4SLinus Torvalds    # (which IIRC is what the two sections are for), C types (these
18591da177e4SLinus Torvalds    # regexps don't even start to express all the possibilities), and
18601da177e4SLinus Torvalds    # so on.
18611da177e4SLinus Torvalds    #
18621da177e4SLinus Torvalds    # If you mess with these regexps, it's a good idea to check that
18631da177e4SLinus Torvalds    # the following functions' documentation still comes out right:
18641da177e4SLinus Torvalds    # - parport_register_device (function pointer parameters)
18651da177e4SLinus Torvalds    # - atomic_set (macro)
18669598f91fSMartin Waitz    # - pci_match_device, __copy_to_user (long return type)
1867e86bdb24SAditya Srivastava    my $name = qr{[a-zA-Z0-9_~:]+};
1868e86bdb24SAditya Srivastava    my $prototype_end1 = qr{[^\(]*};
1869e86bdb24SAditya Srivastava    my $prototype_end2 = qr{[^\{]*};
1870e86bdb24SAditya Srivastava    my $prototype_end = qr{\(($prototype_end1|$prototype_end2)\)};
1871e86bdb24SAditya Srivastava    my $type1 = qr{[\w\s]+};
1872e86bdb24SAditya Srivastava    my $type2 = qr{$type1\*+};
18731da177e4SLinus Torvalds
1874e86bdb24SAditya Srivastava    if ($define && $prototype =~ m/^()($name)\s+/) {
1875cbb4d3e6SHoria Geanta        # This is an object-like macro, it has no return type and no parameter
1876cbb4d3e6SHoria Geanta        # list.
1877cbb4d3e6SHoria Geanta        # Function-like macros are not allowed to have spaces between
1878cbb4d3e6SHoria Geanta        # declaration_name and opening parenthesis (notice the \s+).
1879cbb4d3e6SHoria Geanta        $return_type = $1;
1880cbb4d3e6SHoria Geanta        $declaration_name = $2;
1881cbb4d3e6SHoria Geanta        $noret = 1;
1882e86bdb24SAditya Srivastava    } elsif ($prototype =~ m/^()($name)\s*$prototype_end/ ||
1883e86bdb24SAditya Srivastava	$prototype =~ m/^($type1)\s+($name)\s*$prototype_end/ ||
1884e86bdb24SAditya Srivastava	$prototype =~ m/^($type2+)\s*($name)\s*$prototype_end/)  {
18851da177e4SLinus Torvalds	$return_type = $1;
18861da177e4SLinus Torvalds	$declaration_name = $2;
18871da177e4SLinus Torvalds	my $args = $3;
18881da177e4SLinus Torvalds
1889151c468bSMauro Carvalho Chehab	create_parameterlist($args, ',', $file, $declaration_name);
18901da177e4SLinus Torvalds    } else {
1891d40e1e65SBart Van Assche	print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
18921da177e4SLinus Torvalds	return;
18931da177e4SLinus Torvalds    }
18941da177e4SLinus Torvalds
189552042e2dSMauro Carvalho Chehab    if ($identifier ne $declaration_name) {
189652042e2dSMauro Carvalho Chehab	print STDERR "${file}:$.: warning: expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n";
189752042e2dSMauro Carvalho Chehab	return;
189852042e2dSMauro Carvalho Chehab    }
189952042e2dSMauro Carvalho Chehab
1900a1d94aa5SRandy Dunlap    my $prms = join " ", @parameterlist;
19011081de2dSMauro Carvalho Chehab    check_sections($file, $declaration_name, "function", $sectcheck, $prms);
1902a1d94aa5SRandy Dunlap
19034092bac7SYacine Belkadi    # This check emits a lot of warnings at the moment, because many
19044092bac7SYacine Belkadi    # functions don't have a 'Return' doc section. So until the number
19054092bac7SYacine Belkadi    # of warnings goes sufficiently down, the check is only performed in
19064092bac7SYacine Belkadi    # verbose mode.
19074092bac7SYacine Belkadi    # TODO: always perform the check.
1908cbb4d3e6SHoria Geanta    if ($verbose && !$noret) {
19094092bac7SYacine Belkadi	    check_return_section($file, $declaration_name, $return_type);
19104092bac7SYacine Belkadi    }
19114092bac7SYacine Belkadi
191247bcacfdSMauro Carvalho Chehab    # The function parser can be called with a typedef parameter.
191347bcacfdSMauro Carvalho Chehab    # Handle it.
191447bcacfdSMauro Carvalho Chehab    if ($return_type =~ /typedef/) {
191547bcacfdSMauro Carvalho Chehab	output_declaration($declaration_name,
191647bcacfdSMauro Carvalho Chehab			   'function',
191747bcacfdSMauro Carvalho Chehab			   {'function' => $declaration_name,
191847bcacfdSMauro Carvalho Chehab			    'typedef' => 1,
191947bcacfdSMauro Carvalho Chehab			    'module' => $modulename,
192047bcacfdSMauro Carvalho Chehab			    'functiontype' => $return_type,
192147bcacfdSMauro Carvalho Chehab			    'parameterlist' => \@parameterlist,
192247bcacfdSMauro Carvalho Chehab			    'parameterdescs' => \%parameterdescs,
192347bcacfdSMauro Carvalho Chehab			    'parametertypes' => \%parametertypes,
192447bcacfdSMauro Carvalho Chehab			    'sectionlist' => \@sectionlist,
192547bcacfdSMauro Carvalho Chehab			    'sections' => \%sections,
192647bcacfdSMauro Carvalho Chehab			    'purpose' => $declaration_purpose
192747bcacfdSMauro Carvalho Chehab			   });
192847bcacfdSMauro Carvalho Chehab    } else {
19291da177e4SLinus Torvalds	output_declaration($declaration_name,
19301da177e4SLinus Torvalds			   'function',
19311da177e4SLinus Torvalds			   {'function' => $declaration_name,
19321da177e4SLinus Torvalds			    'module' => $modulename,
19331da177e4SLinus Torvalds			    'functiontype' => $return_type,
19341da177e4SLinus Torvalds			    'parameterlist' => \@parameterlist,
19351da177e4SLinus Torvalds			    'parameterdescs' => \%parameterdescs,
19361da177e4SLinus Torvalds			    'parametertypes' => \%parametertypes,
19371da177e4SLinus Torvalds			    'sectionlist' => \@sectionlist,
19381da177e4SLinus Torvalds			    'sections' => \%sections,
19391da177e4SLinus Torvalds			    'purpose' => $declaration_purpose
19401da177e4SLinus Torvalds			   });
19411da177e4SLinus Torvalds    }
194247bcacfdSMauro Carvalho Chehab}
19431da177e4SLinus Torvalds
19441da177e4SLinus Torvaldssub reset_state {
19451da177e4SLinus Torvalds    $function = "";
19461da177e4SLinus Torvalds    %parameterdescs = ();
19471da177e4SLinus Torvalds    %parametertypes = ();
19481da177e4SLinus Torvalds    @parameterlist = ();
19491da177e4SLinus Torvalds    %sections = ();
19501da177e4SLinus Torvalds    @sectionlist = ();
1951a1d94aa5SRandy Dunlap    $sectcheck = "";
1952a1d94aa5SRandy Dunlap    $struct_actual = "";
19531da177e4SLinus Torvalds    $prototype = "";
19541da177e4SLinus Torvalds
195548af606aSJani Nikula    $state = STATE_NORMAL;
195648af606aSJani Nikula    $inline_doc_state = STATE_INLINE_NA;
19571da177e4SLinus Torvalds}
19581da177e4SLinus Torvalds
195956afb0f8SJason Baronsub tracepoint_munge($) {
196056afb0f8SJason Baron	my $file = shift;
196156afb0f8SJason Baron	my $tracepointname = 0;
196256afb0f8SJason Baron	my $tracepointargs = 0;
196356afb0f8SJason Baron
196456afb0f8SJason Baron	if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
196556afb0f8SJason Baron		$tracepointname = $1;
196656afb0f8SJason Baron	}
19673a9089fdSJason Baron	if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
19683a9089fdSJason Baron		$tracepointname = $1;
19693a9089fdSJason Baron	}
19703a9089fdSJason Baron	if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
19713a9089fdSJason Baron		$tracepointname = $2;
19723a9089fdSJason Baron	}
19733a9089fdSJason Baron	$tracepointname =~ s/^\s+//; #strip leading whitespace
197456afb0f8SJason Baron	if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
197556afb0f8SJason Baron		$tracepointargs = $1;
197656afb0f8SJason Baron	}
197756afb0f8SJason Baron	if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
1978d40e1e65SBart Van Assche		print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
197956afb0f8SJason Baron			     "$prototype\n";
198056afb0f8SJason Baron	} else {
198156afb0f8SJason Baron		$prototype = "static inline void trace_$tracepointname($tracepointargs)";
198252042e2dSMauro Carvalho Chehab		$identifier = "trace_$identifier";
198356afb0f8SJason Baron	}
198456afb0f8SJason Baron}
198556afb0f8SJason Baron
1986b4870bc5SRandy Dunlapsub syscall_munge() {
1987b4870bc5SRandy Dunlap	my $void = 0;
1988b4870bc5SRandy Dunlap
19897c9aa015SMauro Carvalho Chehab	$prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
1990b4870bc5SRandy Dunlap##	if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1991b4870bc5SRandy Dunlap	if ($prototype =~ m/SYSCALL_DEFINE0/) {
1992b4870bc5SRandy Dunlap		$void = 1;
1993b4870bc5SRandy Dunlap##		$prototype = "long sys_$1(void)";
1994b4870bc5SRandy Dunlap	}
1995b4870bc5SRandy Dunlap
1996b4870bc5SRandy Dunlap	$prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1997b4870bc5SRandy Dunlap	if ($prototype =~ m/long (sys_.*?),/) {
1998b4870bc5SRandy Dunlap		$prototype =~ s/,/\(/;
1999b4870bc5SRandy Dunlap	} elsif ($void) {
2000b4870bc5SRandy Dunlap		$prototype =~ s/\)/\(void\)/;
2001b4870bc5SRandy Dunlap	}
2002b4870bc5SRandy Dunlap
2003b4870bc5SRandy Dunlap	# now delete all of the odd-number commas in $prototype
2004b4870bc5SRandy Dunlap	# so that arg types & arg names don't have a comma between them
2005b4870bc5SRandy Dunlap	my $count = 0;
2006b4870bc5SRandy Dunlap	my $len = length($prototype);
2007b4870bc5SRandy Dunlap	if ($void) {
2008b4870bc5SRandy Dunlap		$len = 0;	# skip the for-loop
2009b4870bc5SRandy Dunlap	}
2010b4870bc5SRandy Dunlap	for (my $ix = 0; $ix < $len; $ix++) {
2011b4870bc5SRandy Dunlap		if (substr($prototype, $ix, 1) eq ',') {
2012b4870bc5SRandy Dunlap			$count++;
2013b4870bc5SRandy Dunlap			if ($count % 2 == 1) {
2014b4870bc5SRandy Dunlap				substr($prototype, $ix, 1) = ' ';
2015b4870bc5SRandy Dunlap			}
2016b4870bc5SRandy Dunlap		}
2017b4870bc5SRandy Dunlap	}
2018b4870bc5SRandy Dunlap}
2019b4870bc5SRandy Dunlap
2020b7afa92bSDaniel Vettersub process_proto_function($$) {
20211da177e4SLinus Torvalds    my $x = shift;
20221da177e4SLinus Torvalds    my $file = shift;
20231da177e4SLinus Torvalds
202451f5a0c8SRandy Dunlap    $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
202551f5a0c8SRandy Dunlap
2026890c78c2SRandy Dunlap    if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
20271da177e4SLinus Torvalds	# do nothing
20281da177e4SLinus Torvalds    }
20291da177e4SLinus Torvalds    elsif ($x =~ /([^\{]*)/) {
20301da177e4SLinus Torvalds	$prototype .= $1;
20311da177e4SLinus Torvalds    }
2032b4870bc5SRandy Dunlap
2033890c78c2SRandy Dunlap    if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
20341da177e4SLinus Torvalds	$prototype =~ s@/\*.*?\*/@@gos;	# strip comments.
20351da177e4SLinus Torvalds	$prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
20361da177e4SLinus Torvalds	$prototype =~ s@^\s+@@gos; # strip leading spaces
20377ae281b0SMauro Carvalho Chehab
20387ae281b0SMauro Carvalho Chehab	 # Handle prototypes for function pointers like:
20397ae281b0SMauro Carvalho Chehab	 # int (*pcs_config)(struct foo)
20407ae281b0SMauro Carvalho Chehab	$prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos;
20417ae281b0SMauro Carvalho Chehab
2042b4870bc5SRandy Dunlap	if ($prototype =~ /SYSCALL_DEFINE/) {
2043b4870bc5SRandy Dunlap		syscall_munge();
2044b4870bc5SRandy Dunlap	}
20453a9089fdSJason Baron	if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
20463a9089fdSJason Baron	    $prototype =~ /DEFINE_SINGLE_EVENT/)
20473a9089fdSJason Baron	{
204856afb0f8SJason Baron		tracepoint_munge($file);
204956afb0f8SJason Baron	}
20501da177e4SLinus Torvalds	dump_function($prototype, $file);
20511da177e4SLinus Torvalds	reset_state();
20521da177e4SLinus Torvalds    }
20531da177e4SLinus Torvalds}
20541da177e4SLinus Torvalds
2055b7afa92bSDaniel Vettersub process_proto_type($$) {
20561da177e4SLinus Torvalds    my $x = shift;
20571da177e4SLinus Torvalds    my $file = shift;
20581da177e4SLinus Torvalds
20591da177e4SLinus Torvalds    $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
20601da177e4SLinus Torvalds    $x =~ s@^\s+@@gos; # strip leading spaces
20611da177e4SLinus Torvalds    $x =~ s@\s+$@@gos; # strip trailing spaces
206251f5a0c8SRandy Dunlap    $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
206351f5a0c8SRandy Dunlap
20641da177e4SLinus Torvalds    if ($x =~ /^#/) {
20651da177e4SLinus Torvalds	# To distinguish preprocessor directive from regular declaration later.
20661da177e4SLinus Torvalds	$x .= ";";
20671da177e4SLinus Torvalds    }
20681da177e4SLinus Torvalds
20691da177e4SLinus Torvalds    while (1) {
2070673bb2dfSBen Hutchings	if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
2071463a0fdcSMarkus Heiser            if( length $prototype ) {
2072463a0fdcSMarkus Heiser                $prototype .= " "
2073463a0fdcSMarkus Heiser            }
20741da177e4SLinus Torvalds	    $prototype .= $1 . $2;
20751da177e4SLinus Torvalds	    ($2 eq '{') && $brcount++;
20761da177e4SLinus Torvalds	    ($2 eq '}') && $brcount--;
20771da177e4SLinus Torvalds	    if (($2 eq ';') && ($brcount == 0)) {
20781da177e4SLinus Torvalds		dump_declaration($prototype, $file);
20791da177e4SLinus Torvalds		reset_state();
20801da177e4SLinus Torvalds		last;
20811da177e4SLinus Torvalds	    }
20821da177e4SLinus Torvalds	    $x = $3;
20831da177e4SLinus Torvalds	} else {
20841da177e4SLinus Torvalds	    $prototype .= $x;
20851da177e4SLinus Torvalds	    last;
20861da177e4SLinus Torvalds	}
20871da177e4SLinus Torvalds    }
20881da177e4SLinus Torvalds}
20891da177e4SLinus Torvalds
20906b5b55f6SRandy Dunlap
20911ad560e4SJani Nikulasub map_filename($) {
20921ad560e4SJani Nikula    my $file;
20931ad560e4SJani Nikula    my ($orig_file) = @_;
20941ad560e4SJani Nikula
20951ad560e4SJani Nikula    if (defined($ENV{'SRCTREE'})) {
20961ad560e4SJani Nikula	$file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
20971ad560e4SJani Nikula    } else {
20981ad560e4SJani Nikula	$file = $orig_file;
20991ad560e4SJani Nikula    }
21001ad560e4SJani Nikula
21011ad560e4SJani Nikula    if (defined($source_map{$file})) {
21021ad560e4SJani Nikula	$file = $source_map{$file};
21031ad560e4SJani Nikula    }
21041ad560e4SJani Nikula
21051ad560e4SJani Nikula    return $file;
21061ad560e4SJani Nikula}
21071ad560e4SJani Nikula
210888c2b57dSJani Nikulasub process_export_file($) {
210988c2b57dSJani Nikula    my ($orig_file) = @_;
211088c2b57dSJani Nikula    my $file = map_filename($orig_file);
211188c2b57dSJani Nikula
211288c2b57dSJani Nikula    if (!open(IN,"<$file")) {
211388c2b57dSJani Nikula	print STDERR "Error: Cannot open file $file\n";
211488c2b57dSJani Nikula	++$errors;
211588c2b57dSJani Nikula	return;
211688c2b57dSJani Nikula    }
211788c2b57dSJani Nikula
211888c2b57dSJani Nikula    while (<IN>) {
211988c2b57dSJani Nikula	if (/$export_symbol/) {
2120eab795ddSMauro Carvalho Chehab	    next if (defined($nosymbol_table{$2}));
212188c2b57dSJani Nikula	    $function_table{$2} = 1;
212288c2b57dSJani Nikula	}
212388c2b57dSJani Nikula    }
212488c2b57dSJani Nikula
212588c2b57dSJani Nikula    close(IN);
212688c2b57dSJani Nikula}
212788c2b57dSJani Nikula
212807048d13SJonathan Corbet#
212907048d13SJonathan Corbet# Parsers for the various processing states.
213007048d13SJonathan Corbet#
213107048d13SJonathan Corbet# STATE_NORMAL: looking for the /** to begin everything.
213207048d13SJonathan Corbet#
213307048d13SJonathan Corbetsub process_normal() {
21341da177e4SLinus Torvalds    if (/$doc_start/o) {
213548af606aSJani Nikula	$state = STATE_NAME;	# next line is always the function name
2136850622dfSRandy Dunlap	$in_doc_sect = 0;
21370b0f5f29SDaniel Vetter	$declaration_start_line = $. + 1;
21381da177e4SLinus Torvalds    }
213907048d13SJonathan Corbet}
214007048d13SJonathan Corbet
21413cac2bc4SJonathan Corbet#
21423cac2bc4SJonathan Corbet# STATE_NAME: Looking for the "name - description" line
21433cac2bc4SJonathan Corbet#
21443cac2bc4SJonathan Corbetsub process_name($$) {
21453cac2bc4SJonathan Corbet    my $file = shift;
21461da177e4SLinus Torvalds    my $descr;
21471da177e4SLinus Torvalds
21481da177e4SLinus Torvalds    if (/$doc_block/o) {
214948af606aSJani Nikula	$state = STATE_DOCBLOCK;
21501da177e4SLinus Torvalds	$contents = "";
21515ef09c96SMauro Carvalho Chehab	$new_start_line = $.;
21520b0f5f29SDaniel Vetter
21531da177e4SLinus Torvalds	if ( $1 eq "" ) {
21541da177e4SLinus Torvalds	    $section = $section_intro;
21551da177e4SLinus Torvalds	} else {
21561da177e4SLinus Torvalds	    $section = $1;
21571da177e4SLinus Torvalds	}
215852042e2dSMauro Carvalho Chehab    } elsif (/$doc_decl/o) {
21591da177e4SLinus Torvalds	$identifier = $1;
21603e58e839SAditya Srivastava	my $is_kernel_comment = 0;
2161e86bdb24SAditya Srivastava	my $decl_start = qr{$doc_com};
2162f9bbc12cSAditya Srivastava	# test for pointer declaration type, foo * bar() - desc
2163f9bbc12cSAditya Srivastava	my $fn_type = qr{\w+\s*\*\s*};
2164f9bbc12cSAditya Srivastava	my $parenthesis = qr{\(\w*\)};
2165f9bbc12cSAditya Srivastava	my $decl_end = qr{[-:].*};
2166e86bdb24SAditya Srivastava	if (/^$decl_start([\w\s]+?)$parenthesis?\s*$decl_end?$/) {
21671da177e4SLinus Torvalds	    $identifier = $1;
21681da177e4SLinus Torvalds	}
216952042e2dSMauro Carvalho Chehab	if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) {
217052042e2dSMauro Carvalho Chehab	    $decl_type = $1;
217152042e2dSMauro Carvalho Chehab	    $identifier = $2;
21723e58e839SAditya Srivastava	    $is_kernel_comment = 1;
217352042e2dSMauro Carvalho Chehab	}
2174f9bbc12cSAditya Srivastava	# Look for foo() or static void foo() - description; or misspelt
2175f9bbc12cSAditya Srivastava	# identifier
2176e86bdb24SAditya Srivastava	elsif (/^$decl_start$fn_type?(\w+)\s*$parenthesis?\s*$decl_end?$/ ||
2177e86bdb24SAditya Srivastava	    /^$decl_start$fn_type?(\w+.*)$parenthesis?\s*$decl_end$/) {
2178f9bbc12cSAditya Srivastava	    $identifier = $1;
2179f9bbc12cSAditya Srivastava	    $decl_type = 'function';
2180f9bbc12cSAditya Srivastava	    $identifier =~ s/^define\s+//;
2181f9bbc12cSAditya Srivastava	    $is_kernel_comment = 1;
2182f9bbc12cSAditya Srivastava	}
218352042e2dSMauro Carvalho Chehab	$identifier =~ s/\s+$//;
21841da177e4SLinus Torvalds
218517b78717SJonathan Corbet	$state = STATE_BODY;
21860b0f5f29SDaniel Vetter	# if there's no @param blocks need to set up default section
21870b0f5f29SDaniel Vetter	# here
21882f4ad40aSJani Nikula	$contents = "";
21892f4ad40aSJani Nikula	$section = $section_default;
21900b0f5f29SDaniel Vetter	$new_start_line = $. + 1;
219152042e2dSMauro Carvalho Chehab	if (/[-:](.*)/) {
219251f5a0c8SRandy Dunlap	    # strip leading/trailing/multiple spaces
2193a21217daSRandy Dunlap	    $descr= $1;
2194a21217daSRandy Dunlap	    $descr =~ s/^\s*//;
2195a21217daSRandy Dunlap	    $descr =~ s/\s*$//;
219612ae6779SDaniel Santos	    $descr =~ s/\s+/ /g;
21970bba924cSJonathan Corbet	    $declaration_purpose = $descr;
219817b78717SJonathan Corbet	    $state = STATE_BODY_MAYBE;
21991da177e4SLinus Torvalds	} else {
22001da177e4SLinus Torvalds	    $declaration_purpose = "";
22011da177e4SLinus Torvalds	}
220277cc23b8SRandy Dunlap
22033e58e839SAditya Srivastava	if (!$is_kernel_comment) {
22043e58e839SAditya Srivastava	    print STDERR "${file}:$.: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst\n";
22053e58e839SAditya Srivastava	    print STDERR $_;
22063e58e839SAditya Srivastava	    ++$warnings;
22073e58e839SAditya Srivastava	    $state = STATE_NORMAL;
22083e58e839SAditya Srivastava	}
22093e58e839SAditya Srivastava
221077cc23b8SRandy Dunlap	if (($declaration_purpose eq "") && $verbose) {
2211d40e1e65SBart Van Assche	    print STDERR "${file}:$.: warning: missing initial short description on line:\n";
221277cc23b8SRandy Dunlap	    print STDERR $_;
221377cc23b8SRandy Dunlap	    ++$warnings;
221477cc23b8SRandy Dunlap	}
221577cc23b8SRandy Dunlap
22160b54c2e3SMauro Carvalho Chehab	if ($identifier eq "" && $decl_type ne "enum") {
221752042e2dSMauro Carvalho Chehab	    print STDERR "${file}:$.: warning: wrong kernel-doc identifier on line:\n";
221852042e2dSMauro Carvalho Chehab	    print STDERR $_;
221952042e2dSMauro Carvalho Chehab	    ++$warnings;
222052042e2dSMauro Carvalho Chehab	    $state = STATE_NORMAL;
22211da177e4SLinus Torvalds	}
22221da177e4SLinus Torvalds
22231da177e4SLinus Torvalds	if ($verbose) {
222452042e2dSMauro Carvalho Chehab	    print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n";
22251da177e4SLinus Torvalds	}
22261da177e4SLinus Torvalds    } else {
2227d40e1e65SBart Van Assche	print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
22281da177e4SLinus Torvalds	    " - I thought it was a doc line\n";
22291da177e4SLinus Torvalds	++$warnings;
223048af606aSJani Nikula	$state = STATE_NORMAL;
22311da177e4SLinus Torvalds    }
22323cac2bc4SJonathan Corbet}
22333cac2bc4SJonathan Corbet
22343cac2bc4SJonathan Corbet
2235d742f24dSJonathan Corbet#
2236d742f24dSJonathan Corbet# STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
2237d742f24dSJonathan Corbet#
2238d742f24dSJonathan Corbetsub process_body($$) {
2239d742f24dSJonathan Corbet    my $file = shift;
22403cac2bc4SJonathan Corbet
224143756e34SJonathan Neuschäfer    # Until all named variable macro parameters are
224243756e34SJonathan Neuschäfer    # documented using the bare name (`x`) rather than with
224343756e34SJonathan Neuschäfer    # dots (`x...`), strip the dots:
224443756e34SJonathan Neuschäfer    if ($section =~ /\w\.\.\.$/) {
224543756e34SJonathan Neuschäfer	$section =~ s/\.\.\.$//;
224643756e34SJonathan Neuschäfer
224743756e34SJonathan Neuschäfer	if ($verbose) {
224843756e34SJonathan Neuschäfer	    print STDERR "${file}:$.: warning: Variable macro arguments should be documented without dots\n";
224943756e34SJonathan Neuschäfer	    ++$warnings;
225043756e34SJonathan Neuschäfer	}
225143756e34SJonathan Neuschäfer    }
225243756e34SJonathan Neuschäfer
22530d55d48bSMauro Carvalho Chehab    if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
22540d55d48bSMauro Carvalho Chehab	dump_section($file, $section, $contents);
22550d55d48bSMauro Carvalho Chehab	$section = $section_default;
22565ef09c96SMauro Carvalho Chehab	$new_start_line = $.;
22570d55d48bSMauro Carvalho Chehab	$contents = "";
22580d55d48bSMauro Carvalho Chehab    }
22590d55d48bSMauro Carvalho Chehab
2260f624adefSJani Nikula    if (/$doc_sect/i) { # case insensitive for supported section names
22611da177e4SLinus Torvalds	$newsection = $1;
22621da177e4SLinus Torvalds	$newcontents = $2;
22631da177e4SLinus Torvalds
2264f624adefSJani Nikula	# map the supported section names to the canonical names
2265f624adefSJani Nikula	if ($newsection =~ m/^description$/i) {
2266f624adefSJani Nikula	    $newsection = $section_default;
2267f624adefSJani Nikula	} elsif ($newsection =~ m/^context$/i) {
2268f624adefSJani Nikula	    $newsection = $section_context;
2269f624adefSJani Nikula	} elsif ($newsection =~ m/^returns?$/i) {
2270f624adefSJani Nikula	    $newsection = $section_return;
2271f624adefSJani Nikula	} elsif ($newsection =~ m/^\@return$/) {
2272f624adefSJani Nikula	    # special: @return is a section, not a param description
2273f624adefSJani Nikula	    $newsection = $section_return;
2274f624adefSJani Nikula	}
2275f624adefSJani Nikula
2276792aa2f2SRandy Dunlap	if (($contents ne "") && ($contents ne "\n")) {
2277850622dfSRandy Dunlap	    if (!$in_doc_sect && $verbose) {
2278d40e1e65SBart Van Assche		print STDERR "${file}:$.: warning: contents before sections\n";
2279850622dfSRandy Dunlap		++$warnings;
2280850622dfSRandy Dunlap	    }
22810bba924cSJonathan Corbet	    dump_section($file, $section, $contents);
22821da177e4SLinus Torvalds	    $section = $section_default;
22831da177e4SLinus Torvalds	}
22841da177e4SLinus Torvalds
2285850622dfSRandy Dunlap	$in_doc_sect = 1;
228617b78717SJonathan Corbet	$state = STATE_BODY;
22871da177e4SLinus Torvalds	$contents = $newcontents;
22880b0f5f29SDaniel Vetter	$new_start_line = $.;
22897c9aa015SMauro Carvalho Chehab	while (substr($contents, 0, 1) eq " ") {
229005189497SRandy Dunlap	    $contents = substr($contents, 1);
229105189497SRandy Dunlap	}
22920a726301SJani Nikula	if ($contents ne "") {
22931da177e4SLinus Torvalds	    $contents .= "\n";
22941da177e4SLinus Torvalds	}
22951da177e4SLinus Torvalds	$section = $newsection;
2296b7886de4SJani Nikula	$leading_space = undef;
22971da177e4SLinus Torvalds    } elsif (/$doc_end/) {
22984c98ecafSRandy Dunlap	if (($contents ne "") && ($contents ne "\n")) {
22990bba924cSJonathan Corbet	    dump_section($file, $section, $contents);
23001da177e4SLinus Torvalds	    $section = $section_default;
23011da177e4SLinus Torvalds	    $contents = "";
23021da177e4SLinus Torvalds	}
230346b958ebSRandy Dunlap	# look for doc_com + <text> + doc_end:
230446b958ebSRandy Dunlap	if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2305d40e1e65SBart Van Assche	    print STDERR "${file}:$.: warning: suspicious ending line: $_";
230646b958ebSRandy Dunlap	    ++$warnings;
230746b958ebSRandy Dunlap	}
23081da177e4SLinus Torvalds
23091da177e4SLinus Torvalds	$prototype = "";
231048af606aSJani Nikula	$state = STATE_PROTO;
23111da177e4SLinus Torvalds	$brcount = 0;
23125ef09c96SMauro Carvalho Chehab        $new_start_line = $. + 1;
23131da177e4SLinus Torvalds    } elsif (/$doc_content/) {
23146423133bSJohannes Weiner	if ($1 eq "") {
23150d55d48bSMauro Carvalho Chehab	    if ($section eq $section_context) {
23160bba924cSJonathan Corbet		dump_section($file, $section, $contents);
23171da177e4SLinus Torvalds		$section = $section_default;
23181da177e4SLinus Torvalds		$contents = "";
23190b0f5f29SDaniel Vetter		$new_start_line = $.;
23200d55d48bSMauro Carvalho Chehab		$state = STATE_BODY;
23211da177e4SLinus Torvalds	    } else {
23220d55d48bSMauro Carvalho Chehab		if ($section ne $section_default) {
23230d55d48bSMauro Carvalho Chehab		    $state = STATE_BODY_WITH_BLANK_LINE;
23240d55d48bSMauro Carvalho Chehab		} else {
23250d55d48bSMauro Carvalho Chehab		    $state = STATE_BODY;
23260d55d48bSMauro Carvalho Chehab		}
23276423133bSJohannes Weiner		$contents .= "\n";
23286423133bSJohannes Weiner	    }
232917b78717SJonathan Corbet	} elsif ($state == STATE_BODY_MAYBE) {
23306423133bSJohannes Weiner	    # Continued declaration purpose
23316423133bSJohannes Weiner	    chomp($declaration_purpose);
23320bba924cSJonathan Corbet	    $declaration_purpose .= " " . $1;
233312ae6779SDaniel Santos	    $declaration_purpose =~ s/\s+/ /g;
23346423133bSJohannes Weiner	} else {
2335b7886de4SJani Nikula	    my $cont = $1;
2336b7886de4SJani Nikula	    if ($section =~ m/^@/ || $section eq $section_context) {
2337b7886de4SJani Nikula		if (!defined $leading_space) {
2338b7886de4SJani Nikula		    if ($cont =~ m/^(\s+)/) {
2339b7886de4SJani Nikula			$leading_space = $1;
2340b7886de4SJani Nikula		    } else {
2341b7886de4SJani Nikula			$leading_space = "";
2342b7886de4SJani Nikula		    }
2343b7886de4SJani Nikula		}
2344b7886de4SJani Nikula		$cont =~ s/^$leading_space//;
2345b7886de4SJani Nikula	    }
2346b7886de4SJani Nikula	    $contents .= $cont . "\n";
23471da177e4SLinus Torvalds	}
23481da177e4SLinus Torvalds    } else {
23491da177e4SLinus Torvalds	# i dont know - bad line?  ignore.
2350d40e1e65SBart Van Assche	print STDERR "${file}:$.: warning: bad line: $_";
23511da177e4SLinus Torvalds	++$warnings;
23521da177e4SLinus Torvalds    }
2353d742f24dSJonathan Corbet}
2354d742f24dSJonathan Corbet
2355d742f24dSJonathan Corbet
2356cc794812SJonathan Corbet#
2357cc794812SJonathan Corbet# STATE_PROTO: reading a function/whatever prototype.
2358cc794812SJonathan Corbet#
2359cc794812SJonathan Corbetsub process_proto($$) {
2360cc794812SJonathan Corbet    my $file = shift;
2361cc794812SJonathan Corbet
2362cc794812SJonathan Corbet    if (/$doc_inline_oneline/) {
2363cc794812SJonathan Corbet	$section = $1;
2364cc794812SJonathan Corbet	$contents = $2;
2365cc794812SJonathan Corbet	if ($contents ne "") {
2366cc794812SJonathan Corbet	    $contents .= "\n";
2367cc794812SJonathan Corbet	    dump_section($file, $section, $contents);
2368cc794812SJonathan Corbet	    $section = $section_default;
2369cc794812SJonathan Corbet	    $contents = "";
2370cc794812SJonathan Corbet	}
2371cc794812SJonathan Corbet    } elsif (/$doc_inline_start/) {
2372cc794812SJonathan Corbet	$state = STATE_INLINE;
2373cc794812SJonathan Corbet	$inline_doc_state = STATE_INLINE_NAME;
2374cc794812SJonathan Corbet    } elsif ($decl_type eq 'function') {
2375cc794812SJonathan Corbet	process_proto_function($_, $file);
2376cc794812SJonathan Corbet    } else {
2377cc794812SJonathan Corbet	process_proto_type($_, $file);
2378cc794812SJonathan Corbet    }
2379cc794812SJonathan Corbet}
2380cc794812SJonathan Corbet
2381c17add56SJonathan Corbet#
2382c17add56SJonathan Corbet# STATE_DOCBLOCK: within a DOC: block.
2383c17add56SJonathan Corbet#
2384c17add56SJonathan Corbetsub process_docblock($$) {
2385c17add56SJonathan Corbet    my $file = shift;
2386cc794812SJonathan Corbet
2387c17add56SJonathan Corbet    if (/$doc_end/) {
2388c17add56SJonathan Corbet	dump_doc_section($file, $section, $contents);
2389c17add56SJonathan Corbet	$section = $section_default;
2390c17add56SJonathan Corbet	$contents = "";
2391c17add56SJonathan Corbet	$function = "";
2392c17add56SJonathan Corbet	%parameterdescs = ();
2393c17add56SJonathan Corbet	%parametertypes = ();
2394c17add56SJonathan Corbet	@parameterlist = ();
2395c17add56SJonathan Corbet	%sections = ();
2396c17add56SJonathan Corbet	@sectionlist = ();
2397c17add56SJonathan Corbet	$prototype = "";
2398c17add56SJonathan Corbet	$state = STATE_NORMAL;
2399c17add56SJonathan Corbet    } elsif (/$doc_content/) {
2400c17add56SJonathan Corbet	if ( $1 eq "" )	{
2401c17add56SJonathan Corbet	    $contents .= $blankline;
2402c17add56SJonathan Corbet	} else {
2403c17add56SJonathan Corbet	    $contents .= $1 . "\n";
2404c17add56SJonathan Corbet	}
2405c17add56SJonathan Corbet    }
2406d742f24dSJonathan Corbet}
2407d742f24dSJonathan Corbet
2408c17add56SJonathan Corbet#
2409c17add56SJonathan Corbet# STATE_INLINE: docbook comments within a prototype.
2410c17add56SJonathan Corbet#
2411c17add56SJonathan Corbetsub process_inline($$) {
2412c17add56SJonathan Corbet    my $file = shift;
2413d742f24dSJonathan Corbet
2414a4c6ebedSDanilo Cesar Lemes de Paula    # First line (state 1) needs to be a @parameter
241548af606aSJani Nikula    if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
2416a4c6ebedSDanilo Cesar Lemes de Paula	$section = $1;
2417a4c6ebedSDanilo Cesar Lemes de Paula	$contents = $2;
24180b0f5f29SDaniel Vetter	$new_start_line = $.;
2419a4c6ebedSDanilo Cesar Lemes de Paula	if ($contents ne "") {
24207c9aa015SMauro Carvalho Chehab	    while (substr($contents, 0, 1) eq " ") {
2421a4c6ebedSDanilo Cesar Lemes de Paula		$contents = substr($contents, 1);
2422a4c6ebedSDanilo Cesar Lemes de Paula	    }
2423a4c6ebedSDanilo Cesar Lemes de Paula	    $contents .= "\n";
2424a4c6ebedSDanilo Cesar Lemes de Paula	}
242548af606aSJani Nikula	$inline_doc_state = STATE_INLINE_TEXT;
2426a4c6ebedSDanilo Cesar Lemes de Paula	# Documentation block end */
242748af606aSJani Nikula    } elsif (/$doc_inline_end/) {
2428a4c6ebedSDanilo Cesar Lemes de Paula	if (($contents ne "") && ($contents ne "\n")) {
24290bba924cSJonathan Corbet	    dump_section($file, $section, $contents);
2430a4c6ebedSDanilo Cesar Lemes de Paula	    $section = $section_default;
2431a4c6ebedSDanilo Cesar Lemes de Paula	    $contents = "";
2432a4c6ebedSDanilo Cesar Lemes de Paula	}
243348af606aSJani Nikula	$state = STATE_PROTO;
243448af606aSJani Nikula	$inline_doc_state = STATE_INLINE_NA;
2435a4c6ebedSDanilo Cesar Lemes de Paula	# Regular text
2436a4c6ebedSDanilo Cesar Lemes de Paula    } elsif (/$doc_content/) {
243748af606aSJani Nikula	if ($inline_doc_state == STATE_INLINE_TEXT) {
2438a4c6ebedSDanilo Cesar Lemes de Paula	    $contents .= $1 . "\n";
24396450c895SJani Nikula	    # nuke leading blank lines
24406450c895SJani Nikula	    if ($contents =~ /^\s*$/) {
24416450c895SJani Nikula		$contents = "";
24426450c895SJani Nikula	    }
244348af606aSJani Nikula	} elsif ($inline_doc_state == STATE_INLINE_NAME) {
244448af606aSJani Nikula	    $inline_doc_state = STATE_INLINE_ERROR;
2445e7ca311eSDaniel Vetter	    print STDERR "${file}:$.: warning: ";
2446a4c6ebedSDanilo Cesar Lemes de Paula	    print STDERR "Incorrect use of kernel-doc format: $_";
2447a4c6ebedSDanilo Cesar Lemes de Paula	    ++$warnings;
2448a4c6ebedSDanilo Cesar Lemes de Paula	}
2449a4c6ebedSDanilo Cesar Lemes de Paula    }
24500c9aa209SJani Nikula}
2451c17add56SJonathan Corbet
2452c17add56SJonathan Corbet
2453c17add56SJonathan Corbetsub process_file($) {
2454c17add56SJonathan Corbet    my $file;
2455c17add56SJonathan Corbet    my $initial_section_counter = $section_counter;
2456c17add56SJonathan Corbet    my ($orig_file) = @_;
2457c17add56SJonathan Corbet
2458c17add56SJonathan Corbet    $file = map_filename($orig_file);
2459c17add56SJonathan Corbet
2460dbe8ba00SMauro Carvalho Chehab    if (!open(IN_FILE,"<$file")) {
2461c17add56SJonathan Corbet	print STDERR "Error: Cannot open file $file\n";
2462c17add56SJonathan Corbet	++$errors;
2463c17add56SJonathan Corbet	return;
24641da177e4SLinus Torvalds    }
2465c17add56SJonathan Corbet
2466c17add56SJonathan Corbet    $. = 1;
2467c17add56SJonathan Corbet
2468c17add56SJonathan Corbet    $section_counter = 0;
2469dbe8ba00SMauro Carvalho Chehab    while (<IN_FILE>) {
2470c17add56SJonathan Corbet	while (s/\\\s*$//) {
2471dbe8ba00SMauro Carvalho Chehab	    $_ .= <IN_FILE>;
2472c17add56SJonathan Corbet	}
2473c17add56SJonathan Corbet	# Replace tabs by spaces
2474c17add56SJonathan Corbet        while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
2475c17add56SJonathan Corbet	# Hand this line to the appropriate state handler
2476c17add56SJonathan Corbet	if ($state == STATE_NORMAL) {
2477c17add56SJonathan Corbet	    process_normal();
2478c17add56SJonathan Corbet	} elsif ($state == STATE_NAME) {
2479c17add56SJonathan Corbet	    process_name($file, $_);
24800d55d48bSMauro Carvalho Chehab	} elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
24810d55d48bSMauro Carvalho Chehab		 $state == STATE_BODY_WITH_BLANK_LINE) {
2482c17add56SJonathan Corbet	    process_body($file, $_);
2483c17add56SJonathan Corbet	} elsif ($state == STATE_INLINE) { # scanning for inline parameters
2484c17add56SJonathan Corbet	    process_inline($file, $_);
2485cc794812SJonathan Corbet	} elsif ($state == STATE_PROTO) {
2486cc794812SJonathan Corbet	    process_proto($file, $_);
248748af606aSJani Nikula	} elsif ($state == STATE_DOCBLOCK) {
2488c17add56SJonathan Corbet	    process_docblock($file, $_);
24891da177e4SLinus Torvalds	}
24901da177e4SLinus Torvalds    }
2491c17add56SJonathan Corbet
2492c17add56SJonathan Corbet    # Make sure we got something interesting.
2493b0d60bfbSJonathan Corbet    if ($initial_section_counter == $section_counter && $
2494b0d60bfbSJonathan Corbet	output_mode ne "none") {
2495b0d60bfbSJonathan Corbet	if ($output_selection == OUTPUT_INCLUDE) {
2496b0d60bfbSJonathan Corbet	    print STDERR "${file}:1: warning: '$_' not found\n"
2497b0d60bfbSJonathan Corbet		for keys %function_table;
24983a025e1dSMatthew Wilcox	}
2499b0d60bfbSJonathan Corbet	else {
2500b0d60bfbSJonathan Corbet	    print STDERR "${file}:1: warning: no structured comments found\n";
2501e946c43aSJohannes Berg	}
25021da177e4SLinus Torvalds    }
2503dbe8ba00SMauro Carvalho Chehab    close IN_FILE;
25041da177e4SLinus Torvalds}
25058484baaaSRandy Dunlap
25068484baaaSRandy Dunlap
250793351d41SMauro Carvalho Chehabif ($output_mode eq "rst") {
250893351d41SMauro Carvalho Chehab	get_sphinx_version() if (!$sphinx_major);
250993351d41SMauro Carvalho Chehab}
251093351d41SMauro Carvalho Chehab
25118484baaaSRandy Dunlap$kernelversion = get_kernel_version();
25128484baaaSRandy Dunlap
25138484baaaSRandy Dunlap# generate a sequence of code that will splice in highlighting information
25148484baaaSRandy Dunlap# using the s// operator.
25151ef06233SMauro Carvalho Chehabfor (my $k = 0; $k < @highlights; $k++) {
25164d732701SDanilo Cesar Lemes de Paula    my $pattern = $highlights[$k][0];
25174d732701SDanilo Cesar Lemes de Paula    my $result = $highlights[$k][1];
25184d732701SDanilo Cesar Lemes de Paula#   print STDERR "scanning pattern:$pattern, highlight:($result)\n";
25194d732701SDanilo Cesar Lemes de Paula    $dohighlight .=  "\$contents =~ s:$pattern:$result:gs;\n";
25208484baaaSRandy Dunlap}
25218484baaaSRandy Dunlap
25228484baaaSRandy Dunlap# Read the file that maps relative names to absolute names for
25238484baaaSRandy Dunlap# separate source and object directories and for shadow trees.
25248484baaaSRandy Dunlapif (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
25258484baaaSRandy Dunlap	my ($relname, $absname);
25268484baaaSRandy Dunlap	while(<SOURCE_MAP>) {
25278484baaaSRandy Dunlap		chop();
25288484baaaSRandy Dunlap		($relname, $absname) = (split())[0..1];
25298484baaaSRandy Dunlap		$relname =~ s:^/+::;
25308484baaaSRandy Dunlap		$source_map{$relname} = $absname;
25318484baaaSRandy Dunlap	}
25328484baaaSRandy Dunlap	close(SOURCE_MAP);
25338484baaaSRandy Dunlap}
25348484baaaSRandy Dunlap
253588c2b57dSJani Nikulaif ($output_selection == OUTPUT_EXPORTED ||
253688c2b57dSJani Nikula    $output_selection == OUTPUT_INTERNAL) {
2537c9b2cfb3SJani Nikula
2538c9b2cfb3SJani Nikula    push(@export_file_list, @ARGV);
2539c9b2cfb3SJani Nikula
254088c2b57dSJani Nikula    foreach (@export_file_list) {
254188c2b57dSJani Nikula	chomp;
254288c2b57dSJani Nikula	process_export_file($_);
254388c2b57dSJani Nikula    }
254488c2b57dSJani Nikula}
254588c2b57dSJani Nikula
25468484baaaSRandy Dunlapforeach (@ARGV) {
25478484baaaSRandy Dunlap    chomp;
25488484baaaSRandy Dunlap    process_file($_);
25498484baaaSRandy Dunlap}
25508484baaaSRandy Dunlapif ($verbose && $errors) {
25518484baaaSRandy Dunlap  print STDERR "$errors errors\n";
25528484baaaSRandy Dunlap}
25538484baaaSRandy Dunlapif ($verbose && $warnings) {
25548484baaaSRandy Dunlap  print STDERR "$warnings warnings\n";
25558484baaaSRandy Dunlap}
25568484baaaSRandy Dunlap
25572c12c810SPierre-Louis Bossartif ($Werror && $warnings) {
25582c12c810SPierre-Louis Bossart    print STDERR "$warnings warnings as Errors\n";
25592c12c810SPierre-Louis Bossart    exit($warnings);
25602c12c810SPierre-Louis Bossart} else {
25612c12c810SPierre-Louis Bossart    exit($output_mode eq "none" ? 0 : $errors)
25622c12c810SPierre-Louis Bossart}
2563*2875f787STomasz Warniełło
2564*2875f787STomasz Warniełło__END__
2565*2875f787STomasz Warniełło
2566*2875f787STomasz Warniełło=head1 OPTIONS
2567*2875f787STomasz Warniełło
2568*2875f787STomasz Warniełło=head2 Output format selection (mutually exclusive):
2569*2875f787STomasz Warniełło
2570*2875f787STomasz Warniełło=over 8
2571*2875f787STomasz Warniełło
2572*2875f787STomasz Warniełło=item -man
2573*2875f787STomasz Warniełło
2574*2875f787STomasz WarniełłoOutput troff manual page format.
2575*2875f787STomasz Warniełło
2576*2875f787STomasz Warniełło=item -rst
2577*2875f787STomasz Warniełło
2578*2875f787STomasz WarniełłoOutput reStructuredText format. This is the default.
2579*2875f787STomasz Warniełło
2580*2875f787STomasz Warniełło=item -none
2581*2875f787STomasz Warniełło
2582*2875f787STomasz WarniełłoDo not output documentation, only warnings.
2583*2875f787STomasz Warniełło
2584*2875f787STomasz Warniełło=back
2585*2875f787STomasz Warniełło
2586*2875f787STomasz Warniełło=cut
2587