blob: 096317ef2e974cdb6846c95dc36f5f37a592fc03 [file] [log] [blame]
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02001#!/usr/bin/env perl
Jonathan Corbet38476372018-02-20 12:24:23 -07002# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02004use warnings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005use strict;
6
7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
9## Copyright (C) 2001 Simon Huggins ##
Randy Dunlap70c95b02012-01-21 10:31:54 -080010## Copyright (C) 2005-2012 Randy Dunlap ##
Dan Luedtke1b40c192012-08-12 10:46:15 +020011## Copyright (C) 2012 Dan Luedtke ##
Linus Torvalds1da177e2005-04-16 15:20:36 -070012## ##
13## #define enhancements by Armin Kuster <akuster@mvista.com> ##
14## Copyright (c) 2000 MontaVista Software, Inc. ##
15## ##
16## This software falls under the GNU General Public License. ##
17## Please read the COPYING file for more information ##
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019# 18/01/2001 - Cleanups
20# Functions prototyped as foo(void) same as foo()
21# Stop eval'ing where we don't need to.
22# -- huggie@earth.li
23
24# 27/06/2001 - Allowed whitespace after initial "/**" and
25# allowed comments before function declarations.
26# -- Christian Kreibich <ck@whoop.org>
27
28# Still to do:
29# - add perldoc documentation
30# - Look more closely at some of the scarier bits :)
31
32# 26/05/2001 - Support for separate source and object trees.
33# Return error code.
34# Keith Owens <kaos@ocs.com.au>
35
36# 23/09/2001 - Added support for typedefs, structs, enums and unions
37# Support for Context section; can be terminated using empty line
38# Small fixes (like spaces vs. \s in regex)
39# -- Tim Jansen <tim@tjansen.de>
40
Dan Luedtke1b40c192012-08-12 10:46:15 +020041# 25/07/2012 - Added support for HTML5
42# -- Dan Luedtke <mail@danrl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jani Nikulafadc0b32016-05-12 16:15:36 +030044sub usage {
45 my $message = <<"EOF";
46Usage: $0 [OPTION ...] FILE ...
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Jani Nikulafadc0b32016-05-12 16:15:36 +030048Read C language source or header FILEs, extract embedded documentation comments,
49and print formatted documentation to standard output.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Jani Nikulafadc0b32016-05-12 16:15:36 +030051The documentation comments are identified by "/**" opening comment mark. See
Mauro Carvalho Chehab857af3b2017-12-18 10:30:08 -020052Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
Jani Nikulafadc0b32016-05-12 16:15:36 +030053
54Output format selection (mutually exclusive):
Jani Nikulafadc0b32016-05-12 16:15:36 +030055 -man Output troff manual page format. This is the default.
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +030056 -rst Output reStructuredText format.
Matthew Wilcox3a025e12017-11-20 10:40:40 -080057 -none Do not output documentation, only warnings.
Jani Nikulafadc0b32016-05-12 16:15:36 +030058
59Output selection (mutually exclusive):
Jani Nikula86ae2e32016-01-21 13:05:22 +020060 -export Only output documentation for symbols that have been
61 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
Jani Nikulac9b2cfb2016-06-07 11:05:53 +030062 in any input FILE or -export-file FILE.
Jani Nikula86ae2e32016-01-21 13:05:22 +020063 -internal Only output documentation for symbols that have NOT been
64 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
Jani Nikulac9b2cfb2016-06-07 11:05:53 +030065 in any input FILE or -export-file FILE.
Jani Nikulafadc0b32016-05-12 16:15:36 +030066 -function NAME Only output documentation for the given function(s)
67 or DOC: section title(s). All other functions and DOC:
68 sections are ignored. May be specified multiple times.
69 -nofunction NAME Do NOT output documentation for the given function(s);
70 only output documentation for the other functions and
71 DOC: sections. May be specified multiple times.
72
73Output selection modifiers:
74 -no-doc-sections Do not output DOC: sections.
Daniel Vetter0b0f5f292016-06-03 22:21:34 +020075 -enable-lineno Enable output of #define LINENO lines. Only works with
76 reStructuredText format.
Jani Nikula88c2b572016-06-07 11:00:52 +030077 -export-file FILE Specify an additional FILE in which to look for
78 EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with
79 -export or -internal. May be specified multiple times.
Jani Nikulafadc0b32016-05-12 16:15:36 +030080
81Other parameters:
82 -v Verbose output, more warnings and other information.
83 -h Print this help.
Pierre-Louis Bossart2c12c812020-07-28 11:20:40 -050084 -Werror Treat warnings as errors.
Jani Nikulafadc0b32016-05-12 16:15:36 +030085
86EOF
87 print $message;
88 exit 1;
89}
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#
92# format of comments.
93# In the following table, (...)? signifies optional structure.
94# (...)* signifies 0 or more structure elements
95# /**
96# * function_name(:)? (- short description)?
97# (* @parameterx: (description of parameter x)?)*
98# (* a blank line)?
99# * (Description:)? (Description of function)?
100# * (section header: (section description)? )*
101# (*)?*/
102#
103# So .. the trivial example would be:
104#
105# /**
106# * my_function
Randy Dunlapb9d973282009-06-09 08:50:38 -0700107# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#
Randy Dunlap891dcd22007-02-10 01:45:53 -0800109# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110# after the last parameter specification.
111# e.g.
112# /**
113# * my_function - does my stuff
114# * @my_arg: its mine damnit
115# *
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800116# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117# */
118#
119# or, could also use:
120# /**
121# * my_function - does my stuff
122# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800123# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124# */
125# etc.
126#
Randy Dunlapb9d973282009-06-09 08:50:38 -0700127# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800128# enums and typedefs. Instead of the function name you must write the name
129# of the declaration; the struct/union/enum/typedef must always precede
130# the name. Nesting of declarations is not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131# Use the argument mechanism to document members or constants.
132# e.g.
133# /**
134# * struct my_struct - short description
135# * @a: first member
136# * @b: second member
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800137# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138# * Longer description
139# */
140# struct my_struct {
141# int a;
142# int b;
Martin Waitzaeec46b2005-11-13 16:08:13 -0800143# /* private: */
144# int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145# };
146#
147# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800148#
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300149# For really longs structs, you can also describe arguments inside the
150# body of the struct.
151# eg.
152# /**
153# * struct my_struct - short description
154# * @a: first member
155# * @b: second member
156# *
157# * Longer description
158# */
159# struct my_struct {
160# int a;
161# int b;
162# /**
163# * @c: This is longer description of C
164# *
165# * You can use paragraphs to describe arguments
166# * using this method.
167# */
168# int c;
169# };
170#
171# This should be use only for struct/enum members.
172#
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800173# You can also add additional sections. When documenting kernel functions you
174# should document the "Context:" of the function, e.g. whether the functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800176# empty line.
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100177# A non-void function should have a "Return:" section describing the return
178# value(s).
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800179# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180# appropriately in DocBook.
181#
182# Example:
183# /**
184# * user_function - function that can only be called in user context
185# * @a: some argument
186# * Context: !in_interrupt()
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800187# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188# * Some description
189# * Example:
190# * user_function(22);
191# */
192# ...
193#
194#
195# All descriptive text is further processed, scanning for the following special
196# patterns, which are highlighted appropriately.
197#
198# 'funcname()' - function
199# '$ENVVAR' - environmental variable
200# '&struct_name' - name of a structure (up to two words including 'struct')
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100201# '&struct_name.member' - name of a structure member
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202# '@parameter' - name of a parameter
203# '%CONST' - name of a constant.
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300204# '``LITERAL``' - literal string without any spaces on it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Randy Dunlap8484baa2011-01-05 16:28:43 -0800206## init lots of data
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208my $errors = 0;
209my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -0700210my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212# match expressions used to find embedded type information
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300213my $type_constant = '\b``([^\`]+)``\b';
214my $type_constant2 = '\%([-_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215my $type_func = '(\w+)\(\)';
Mike Rapoportbfd228c2018-11-07 18:47:13 +0200216my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
Mauro Carvalho Chehabee2aa752020-04-14 18:48:28 +0200217my $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
Jonathan Corbet5219f182016-08-24 16:31:15 -0600218my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
Mauro Carvalho Chehab346282d2020-04-14 18:48:27 +0200219my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220my $type_env = '(\$\w+)';
Paolo Bonzinidf311752017-01-02 16:22:27 +0100221my $type_enum = '\&(enum\s*([_\w]+))';
222my $type_struct = '\&(struct\s*([_\w]+))';
223my $type_typedef = '\&(typedef\s*([_\w]+))';
224my $type_union = '\&(union\s*([_\w]+))';
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100225my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
Paolo Bonzinidf311752017-01-02 16:22:27 +0100226my $type_fallback = '\&([_\w]+)';
Jani Nikulaf3341dc2016-05-26 16:35:02 +0300227my $type_member_func = $type_member . '\(\)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229# Output conversion substitutions.
230# One for each output format
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232# these are pretty rough
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300233my @highlights_man = (
234 [$type_constant, "\$1"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300235 [$type_constant2, "\$1"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300236 [$type_func, "\\\\fB\$1\\\\fP"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100237 [$type_enum, "\\\\fI\$1\\\\fP"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300238 [$type_struct, "\\\\fI\$1\\\\fP"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100239 [$type_typedef, "\\\\fI\$1\\\\fP"],
240 [$type_union, "\\\\fI\$1\\\\fP"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100241 [$type_param, "\\\\fI\$1\\\\fP"],
Mauro Carvalho Chehabee2aa752020-04-14 18:48:28 +0200242 [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100243 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
244 [$type_fallback, "\\\\fI\$1\\\\fP"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300245 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246my $blankline_man = "";
247
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300248# rst-mode
249my @highlights_rst = (
250 [$type_constant, "``\$1``"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300251 [$type_constant2, "``\$1``"],
Jani Nikulaf3341dc2016-05-26 16:35:02 +0300252 # Note: need to escape () to avoid func matching later
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100253 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
254 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
Jonathan Corbet5219f182016-08-24 16:31:15 -0600255 [$type_fp_param, "**\$1\\\\(\\\\)**"],
Mauro Carvalho Chehab346282d2020-04-14 18:48:27 +0200256 [$type_fp_param2, "**\$1\\\\(\\\\)**"],
Jonathan Corbet344fdb22019-06-21 17:34:30 -0600257 [$type_func, "\$1()"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100258 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
259 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
260 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
261 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
Jani Nikulaa7291e72016-05-26 13:57:06 +0300262 # in rst this can refer to any type
Paolo Bonzinidf311752017-01-02 16:22:27 +0100263 [$type_fallback, "\\:c\\:type\\:`\$1`"],
Mauro Carvalho Chehabee2aa752020-04-14 18:48:28 +0200264 [$type_param_ref, "**\$1\$2**"]
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300265 );
266my $blankline_rst = "\n";
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268# read arguments
Randy Dunlapb9d973282009-06-09 08:50:38 -0700269if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 usage();
271}
272
Randy Dunlap8484baa2011-01-05 16:28:43 -0800273my $kernelversion;
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +0200274my $sphinx_major;
275
Randy Dunlap8484baa2011-01-05 16:28:43 -0800276my $dohighlight = "";
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278my $verbose = 0;
Pierre-Louis Bossart2c12c812020-07-28 11:20:40 -0500279my $Werror = 0;
Mauro Carvalho Chehabbdfe2be2017-12-18 10:30:11 -0200280my $output_mode = "rst";
Daniel Santose314ba32012-10-04 17:15:08 -0700281my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 15:08:48 -0700282my $no_doc_sections = 0;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200283my $enable_lineno = 0;
Mauro Carvalho Chehabbdfe2be2017-12-18 10:30:11 -0200284my @highlights = @highlights_rst;
285my $blankline = $blankline_rst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286my $modulename = "Kernel API";
Jani Nikulab6c3f452016-05-29 22:19:35 +0300287
288use constant {
289 OUTPUT_ALL => 0, # output all symbols and doc sections
290 OUTPUT_INCLUDE => 1, # output only specified symbols
291 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
292 OUTPUT_EXPORTED => 3, # output exported symbols
293 OUTPUT_INTERNAL => 4, # output non-exported symbols
294};
295my $output_selection = OUTPUT_ALL;
Jonathan Corbetb0d60bf2019-05-24 14:52:01 -0600296my $show_not_found = 0; # No longer used
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100297
Jani Nikula88c2b572016-06-07 11:00:52 +0300298my @export_file_list;
299
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100300my @build_time;
301if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
302 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
303 @build_time = gmtime($seconds);
304} else {
305 @build_time = localtime;
306}
307
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800308my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
309 'July', 'August', 'September', 'October',
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100310 'November', 'December')[$build_time[4]] .
311 " " . ($build_time[5]+1900);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Randy Dunlap8484baa2011-01-05 16:28:43 -0800313# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700314# They probably want to be tidied up, made more localised or something.
315# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700317my ($function, %function_table, %parametertypes, $declaration_purpose);
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200318my $declaration_start_line;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700319my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 13:06:03 -0800320my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Randy Dunlapbd0e88e2008-03-13 12:32:43 -0700322if (defined($ENV{'KBUILD_VERBOSE'})) {
323 $verbose = "$ENV{'KBUILD_VERBOSE'}";
324}
325
Pierre-Louis Bossart2c12c812020-07-28 11:20:40 -0500326if (defined($ENV{'KDOC_WERROR'})) {
327 $Werror = "$ENV{'KDOC_WERROR'}";
328}
329
330if (defined($ENV{'KCFLAGS'})) {
331 my $kcflags = "$ENV{'KCFLAGS'}";
332
333 if ($kcflags =~ /Werror/) {
334 $Werror = 1;
335 }
336}
337
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800338# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
Alexander A. Klimov93431e02020-05-26 08:05:44 +0200340# https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341# We keep track of number of generated entries and generate a dummy
342# if needs be to ensure the expanded template can be postprocessed
343# into html.
344my $section_counter = 0;
345
346my $lineprefix="";
347
Jani Nikula48af6062016-05-26 14:56:05 +0300348# Parser states
349use constant {
Mauro Carvalho Chehab0d55d482020-04-14 18:48:29 +0200350 STATE_NORMAL => 0, # normal code
351 STATE_NAME => 1, # looking for function name
352 STATE_BODY_MAYBE => 2, # body - or maybe more description
353 STATE_BODY => 3, # the body of the comment
354 STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
355 STATE_PROTO => 5, # scanning prototype
356 STATE_DOCBLOCK => 6, # documentation block
357 STATE_INLINE => 7, # gathering doc outside main block
Jani Nikula48af6062016-05-26 14:56:05 +0300358};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359my $state;
Randy Dunlap850622d2006-06-25 05:48:55 -0700360my $in_doc_sect;
Jonathan Corbetd742f242018-02-05 15:36:05 -0700361my $leading_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jani Nikula48af6062016-05-26 14:56:05 +0300363# Inline documentation state
364use constant {
365 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
366 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
367 STATE_INLINE_TEXT => 2, # looking for member documentation
368 STATE_INLINE_END => 3, # done
369 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
370 # Spit a warning as it's not
371 # proper kernel-doc and ignore the rest.
372};
373my $inline_doc_state;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375#declaration types: can be
376# 'function', 'struct', 'union', 'enum', 'typedef'
377my $decl_type;
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
380my $doc_end = '\*/';
381my $doc_com = '\s*\*\s*';
Daniel Santos12ae6772012-10-04 17:15:10 -0700382my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700383my $doc_decl = $doc_com . '(\w+)';
Jani Nikulaf624ade2016-05-29 11:35:28 +0300384# @params and a strictly limited set of supported section names
Mike Rapoport76dd3e72018-11-07 18:47:12 +0200385my $doc_sect = $doc_com .
Jonathan Corbetef000282016-08-26 07:14:08 -0600386 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)';
Daniel Santos12ae6772012-10-04 17:15:10 -0700387my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700388my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Jani Nikula48af6062016-05-26 14:56:05 +0300389my $doc_inline_start = '^\s*/\*\*\s*$';
Mauro Carvalho Chehabfe7bc492018-02-16 11:48:18 -0200390my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
Jani Nikula48af6062016-05-26 14:56:05 +0300391my $doc_inline_end = '^\s*\*/\s*$';
Jani Nikula0c9aa202016-11-16 17:26:16 +0200392my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
Jani Nikula86ae2e32016-01-21 13:05:22 +0200393my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395my %parameterdescs;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200396my %parameterdesc_start_lines;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397my @parameterlist;
398my %sections;
399my @sectionlist;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200400my %section_start_lines;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800401my $sectcheck;
402my $struct_actual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404my $contents = "";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200405my $new_start_line = 0;
Jani Nikulaf624ade2016-05-29 11:35:28 +0300406
407# the canonical section names. see also $doc_sect above.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408my $section_default = "Description"; # default section
409my $section_intro = "Introduction";
410my $section = $section_default;
411my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100412my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414my $undescribed = "-- undescribed --";
415
416reset_state();
417
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200418while ($ARGV[0] =~ m/^--?(.*)/) {
419 my $cmd = $1;
420 shift @ARGV;
421 if ($cmd eq "man") {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 $output_mode = "man";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300423 @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 $blankline = $blankline_man;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200425 } elsif ($cmd eq "rst") {
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300426 $output_mode = "rst";
427 @highlights = @highlights_rst;
428 $blankline = $blankline_rst;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200429 } elsif ($cmd eq "none") {
Matthew Wilcox3a025e12017-11-20 10:40:40 -0800430 $output_mode = "none";
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200431 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 $modulename = shift @ARGV;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200433 } elsif ($cmd eq "function") { # to only output specific functions
Jani Nikulab6c3f452016-05-29 22:19:35 +0300434 $output_selection = OUTPUT_INCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 $function = shift @ARGV;
436 $function_table{$function} = 1;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200437 } elsif ($cmd eq "nofunction") { # output all except specific functions
Jani Nikulab6c3f452016-05-29 22:19:35 +0300438 $output_selection = OUTPUT_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 $function = shift @ARGV;
440 $function_table{$function} = 1;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200441 } elsif ($cmd eq "export") { # only exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300442 $output_selection = OUTPUT_EXPORTED;
Jani Nikulada9726e2016-06-07 10:29:59 +0300443 %function_table = ();
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200444 } elsif ($cmd eq "internal") { # only non-exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300445 $output_selection = OUTPUT_INTERNAL;
Jani Nikulada9726e2016-06-07 10:29:59 +0300446 %function_table = ();
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200447 } elsif ($cmd eq "export-file") {
Jani Nikula88c2b572016-06-07 11:00:52 +0300448 my $file = shift @ARGV;
449 push(@export_file_list, $file);
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200450 } elsif ($cmd eq "v") {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 $verbose = 1;
Pierre-Louis Bossart2c12c812020-07-28 11:20:40 -0500452 } elsif ($cmd eq "Werror") {
453 $Werror = 1;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200454 } elsif (($cmd eq "h") || ($cmd eq "help")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 usage();
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200456 } elsif ($cmd eq 'no-doc-sections') {
Johannes Berg4b445952007-10-24 15:08:48 -0700457 $no_doc_sections = 1;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200458 } elsif ($cmd eq 'enable-lineno') {
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200459 $enable_lineno = 1;
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200460 } elsif ($cmd eq 'show-not-found') {
Jonathan Corbetb0d60bf2019-05-24 14:52:01 -0600461 $show_not_found = 1; # A no-op but don't fail
Mauro Carvalho Chehabb031ac42017-12-18 10:30:10 -0200462 } else {
463 # Unknown argument
464 usage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466}
467
Randy Dunlap8484baa2011-01-05 16:28:43 -0800468# continue execution near EOF;
469
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +0200470# The C domain dialect changed on Sphinx 3. So, we need to check the
471# version in order to produce the right tags.
472sub findprog($)
473{
474 foreach(split(/:/, $ENV{PATH})) {
475 return "$_/$_[0]" if(-x "$_/$_[0]");
476 }
477}
478
479sub get_sphinx_version()
480{
481 my $ver;
482 my $major = 1;
483
484 my $cmd = "sphinx-build";
485 if (!findprog($cmd)) {
486 my $cmd = "sphinx-build3";
487 return $major if (!findprog($cmd));
488 }
489
490 open IN, "$cmd --version 2>&1 |";
491 while (<IN>) {
492 if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) {
493 $major=$1;
494 last;
495 }
496 # Sphinx 1.2.x uses a different format
497 if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) {
498 $major=$1;
499 last;
500 }
501 }
502 close IN;
503
504 return $major;
505}
506
Borislav Petkov53f049f2007-05-08 00:30:54 -0700507# get kernel version from env
508sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 15:08:48 -0700509 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 00:30:54 -0700510
511 if (defined($ENV{'KERNELVERSION'})) {
512 $version = $ENV{'KERNELVERSION'};
513 }
514 return $version;
515}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200517#
518sub print_lineno {
519 my $lineno = shift;
520 if ($enable_lineno && defined($lineno)) {
521 print "#define LINENO " . $lineno . "\n";
522 }
523}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524##
525# dumps section contents to arrays/hashes intended for that purpose.
526#
527sub dump_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700528 my $file = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 my $name = shift;
530 my $contents = join "\n", @_;
531
Jani Nikula13901ef2016-05-26 08:57:29 +0300532 if ($name =~ m/$type_param/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 $name = $1;
534 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800535 $sectcheck = $sectcheck . $name . " ";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200536 $parameterdesc_start_lines{$name} = $new_start_line;
537 $new_start_line = 0;
Randy Dunlapced69092008-12-01 13:14:03 -0800538 } elsif ($name eq "@\.\.\.") {
Randy Dunlapced69092008-12-01 13:14:03 -0800539 $name = "...";
540 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800541 $sectcheck = $sectcheck . $name . " ";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200542 $parameterdesc_start_lines{$name} = $new_start_line;
543 $new_start_line = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 } else {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700545 if (defined($sections{$name}) && ($sections{$name} ne "")) {
Jani Nikula95b6be92016-06-10 11:14:05 +0300546 # Only warn on user specified duplicate section names.
547 if ($name ne $section_default) {
548 print STDERR "${file}:$.: warning: duplicate section name '$name'\n";
549 ++$warnings;
550 }
Jani Nikula32217762016-05-29 09:40:44 +0300551 $sections{$name} .= $contents;
552 } else {
553 $sections{$name} = $contents;
554 push @sectionlist, $name;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200555 $section_start_lines{$name} = $new_start_line;
556 $new_start_line = 0;
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559}
560
561##
Johannes Bergb112e0f2007-10-24 15:08:48 -0700562# dump DOC: section after checking that it should go out
563#
564sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700565 my $file = shift;
Johannes Bergb112e0f2007-10-24 15:08:48 -0700566 my $name = shift;
567 my $contents = join "\n", @_;
568
Johannes Berg4b445952007-10-24 15:08:48 -0700569 if ($no_doc_sections) {
570 return;
571 }
572
Jani Nikulab6c3f452016-05-29 22:19:35 +0300573 if (($output_selection == OUTPUT_ALL) ||
574 ($output_selection == OUTPUT_INCLUDE &&
575 defined($function_table{$name})) ||
576 ($output_selection == OUTPUT_EXCLUDE &&
577 !defined($function_table{$name})))
Johannes Bergb112e0f2007-10-24 15:08:48 -0700578 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700579 dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 15:08:48 -0700580 output_blockhead({'sectionlist' => \@sectionlist,
581 'sections' => \%sections,
582 'module' => $modulename,
Jani Nikulab6c3f452016-05-29 22:19:35 +0300583 'content-only' => ($output_selection != OUTPUT_ALL), });
Johannes Bergb112e0f2007-10-24 15:08:48 -0700584 }
585}
586
587##
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588# output function
589#
590# parameterdescs, a hash.
591# function => "function name"
592# parameterlist => @list of parameters
593# parameterdescs => %parameter descriptions
594# sectionlist => @list of sections
Randy Dunlapa21217d2007-02-10 01:46:04 -0800595# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800596#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598sub output_highlight {
599 my $contents = join "\n",@_;
600 my $line;
601
602# DEBUG
603# if (!defined $contents) {
604# use Carp;
605# confess "output_highlight got called with no args?\n";
606# }
607
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700608# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 eval $dohighlight;
610 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700611# print STDERR "contents af:$contents\n";
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-04 17:15:10 -0700614 if (! $output_preformatted) {
615 $line =~ s/^\s*//;
616 }
Randy Dunlap3c308792007-05-08 00:24:39 -0700617 if ($line eq ""){
Daniel Santose314ba32012-10-04 17:15:08 -0700618 if (! $output_preformatted) {
Jonathan Corbet0bba9242018-02-05 12:40:15 -0700619 print $lineprefix, $blankline;
Daniel Santose314ba32012-10-04 17:15:08 -0700620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 } else {
Randy Dunlapcdccb312007-07-19 01:48:25 -0700622 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
623 print "\\&$line";
624 } else {
625 print $lineprefix, $line;
626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628 print "\n";
629 }
630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632##
633# output function in man
634sub output_function_man(%) {
635 my %args = %{$_[0]};
636 my ($parameter, $section);
637 my $count;
638
639 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
640
641 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700642 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 print ".SH SYNOPSIS\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -0800645 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700646 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -0800647 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700648 print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -0800649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 $count = 0;
651 my $parenth = "(";
652 my $post = ",";
653 foreach my $parameter (@{$args{'parameterlist'}}) {
654 if ($count == $#{$args{'parameterlist'}}) {
655 $post = ");";
656 }
657 $type = $args{'parametertypes'}{$parameter};
658 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
659 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -0700660 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 } else {
662 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700663 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665 $count++;
666 $parenth = "";
667 }
668
669 print ".SH ARGUMENTS\n";
670 foreach $parameter (@{$args{'parameterlist'}}) {
671 my $parameter_name = $parameter;
672 $parameter_name =~ s/\[.*//;
673
Randy Dunlapb9d973282009-06-09 08:50:38 -0700674 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 output_highlight($args{'parameterdescs'}{$parameter_name});
676 }
677 foreach $section (@{$args{'sectionlist'}}) {
678 print ".SH \"", uc $section, "\"\n";
679 output_highlight($args{'sections'}{$section});
680 }
681}
682
683##
684# output enum in man
685sub output_enum_man(%) {
686 my %args = %{$_[0]};
687 my ($parameter, $section);
688 my $count;
689
690 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
691
692 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700693 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700696 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 $count = 0;
698 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -0700699 print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if ($count == $#{$args{'parameterlist'}}) {
701 print "\n};\n";
702 last;
703 }
704 else {
705 print ", \n.br\n";
706 }
707 $count++;
708 }
709
710 print ".SH Constants\n";
711 foreach $parameter (@{$args{'parameterlist'}}) {
712 my $parameter_name = $parameter;
713 $parameter_name =~ s/\[.*//;
714
Randy Dunlapb9d973282009-06-09 08:50:38 -0700715 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 output_highlight($args{'parameterdescs'}{$parameter_name});
717 }
718 foreach $section (@{$args{'sectionlist'}}) {
719 print ".SH \"$section\"\n";
720 output_highlight($args{'sections'}{$section});
721 }
722}
723
724##
725# output struct in man
726sub output_struct_man(%) {
727 my %args = %{$_[0]};
728 my ($parameter, $section);
729
Randy Dunlapb9d973282009-06-09 08:50:38 -0700730 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700733 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -0200735 my $declaration = $args{'definition'};
736 $declaration =~ s/\t/ /g;
737 $declaration =~ s/\n/"\n.br\n.BI \"/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700739 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -0200740 print ".BI \"$declaration\n};\n.br\n\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Randy Dunlapc51d3dac2006-06-25 05:49:14 -0700742 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 foreach $parameter (@{$args{'parameterlist'}}) {
744 ($parameter =~ /^#/) && next;
745
746 my $parameter_name = $parameter;
747 $parameter_name =~ s/\[.*//;
748
Randy Dunlap3c308792007-05-08 00:24:39 -0700749 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700750 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 output_highlight($args{'parameterdescs'}{$parameter_name});
752 }
753 foreach $section (@{$args{'sectionlist'}}) {
754 print ".SH \"$section\"\n";
755 output_highlight($args{'sections'}{$section});
756 }
757}
758
759##
760# output typedef in man
761sub output_typedef_man(%) {
762 my %args = %{$_[0]};
763 my ($parameter, $section);
764
765 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
766
767 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700768 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 foreach $section (@{$args{'sectionlist'}}) {
771 print ".SH \"$section\"\n";
772 output_highlight($args{'sections'}{$section});
773 }
774}
775
Johannes Bergb112e0f2007-10-24 15:08:48 -0700776sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 my %args = %{$_[0]};
778 my ($parameter, $section);
779 my $count;
780
781 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
782
783 foreach $section (@{$args{'sectionlist'}}) {
784 print ".SH \"$section\"\n";
785 output_highlight($args{'sections'}{$section});
786 }
787}
788
789##
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300790# output in restructured text
791#
792
793#
794# This could use some work; it's used to output the DOC: sections, and
795# starts by putting out the name of the doc section itself, but that tends
796# to duplicate a header already in the template file.
797#
798sub output_blockhead_rst(%) {
799 my %args = %{$_[0]};
800 my ($parameter, $section);
801
802 foreach $section (@{$args{'sectionlist'}}) {
Jani Nikula9e721842016-05-29 22:27:35 +0300803 if ($output_selection != OUTPUT_INCLUDE) {
804 print "**$section**\n\n";
805 }
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200806 print_lineno($section_start_lines{$section});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300807 output_highlight_rst($args{'sections'}{$section});
808 print "\n";
809 }
810}
811
Jonathan Corbetaf250292018-02-06 15:58:45 -0700812#
813# Apply the RST highlights to a sub-block of text.
Mike Rapoport76dd3e72018-11-07 18:47:12 +0200814#
Jonathan Corbetaf250292018-02-06 15:58:45 -0700815sub highlight_block($) {
816 # The dohighlight kludge requires the text be called $contents
817 my $contents = shift;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300818 eval $dohighlight;
819 die $@ if $@;
Jonathan Corbetaf250292018-02-06 15:58:45 -0700820 return $contents;
821}
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300822
Jonathan Corbetaf250292018-02-06 15:58:45 -0700823#
824# Regexes used only here.
825#
826my $sphinx_literal = '^[^.].*::$';
827my $sphinx_cblock = '^\.\.\ +code-block::';
828
829sub output_highlight_rst {
830 my $input = join "\n",@_;
831 my $output = "";
832 my $line;
833 my $in_literal = 0;
834 my $litprefix;
835 my $block = "";
836
837 foreach $line (split "\n",$input) {
838 #
839 # If we're in a literal block, see if we should drop out
840 # of it. Otherwise pass the line straight through unmunged.
841 #
842 if ($in_literal) {
843 if (! ($line =~ /^\s*$/)) {
844 #
845 # If this is the first non-blank line in a literal
846 # block we need to figure out what the proper indent is.
847 #
848 if ($litprefix eq "") {
849 $line =~ /^(\s*)/;
850 $litprefix = '^' . $1;
851 $output .= $line . "\n";
852 } elsif (! ($line =~ /$litprefix/)) {
853 $in_literal = 0;
854 } else {
855 $output .= $line . "\n";
856 }
857 } else {
858 $output .= $line . "\n";
859 }
860 }
861 #
862 # Not in a literal block (or just dropped out)
863 #
864 if (! $in_literal) {
865 $block .= $line . "\n";
866 if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
867 $in_literal = 1;
868 $litprefix = "";
869 $output .= highlight_block($block);
870 $block = ""
871 }
872 }
873 }
874
875 if ($block) {
876 $output .= highlight_block($block);
877 }
878 foreach $line (split "\n", $output) {
Jani Nikula830066a2016-05-26 22:04:33 +0300879 print $lineprefix . $line . "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300880 }
881}
882
883sub output_function_rst(%) {
884 my %args = %{$_[0]};
885 my ($parameter, $section);
Jani Nikulac099ff62016-05-26 17:18:17 +0300886 my $oldprefix = $lineprefix;
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -0300887 my $start = "";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300888
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -0300889 if ($args{'typedef'}) {
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +0200890 if ($sphinx_major < 3) {
891 print ".. c:type:: ". $args{'function'} . "\n\n";
892 } else {
893 print ".. c:function:: ". $args{'function'} . "\n\n";
894 }
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -0300895 print_lineno($declaration_start_line);
896 print " **Typedef**: ";
897 $lineprefix = "";
898 output_highlight_rst($args{'purpose'});
899 $start = "\n\n**Syntax**\n\n ``";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300900 } else {
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -0300901 print ".. c:function:: ";
902 }
903 if ($args{'functiontype'} ne "") {
904 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
905 } else {
906 $start .= $args{'function'} . " (";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300907 }
908 print $start;
909
910 my $count = 0;
911 foreach my $parameter (@{$args{'parameterlist'}}) {
912 if ($count ne 0) {
913 print ", ";
914 }
915 $count++;
916 $type = $args{'parametertypes'}{$parameter};
Mauro Carvalho Chehaba88b1672016-07-22 11:46:36 -0300917
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300918 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
919 # pointer-to-function
Peter Maydelle8f4ba82020-04-14 15:37:43 +0100920 print $1 . $parameter . ") (" . $2 . ")";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300921 } else {
922 print $type . " " . $parameter;
923 }
924 }
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -0300925 if ($args{'typedef'}) {
926 print ");``\n\n";
927 } else {
928 print ")\n\n";
929 print_lineno($declaration_start_line);
930 $lineprefix = " ";
931 output_highlight_rst($args{'purpose'});
932 print "\n";
933 }
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300934
Jani Nikulaecbcfba2016-05-26 18:30:27 +0300935 print "**Parameters**\n\n";
936 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300937 foreach $parameter (@{$args{'parameterlist'}}) {
938 my $parameter_name = $parameter;
Gabriel Krisman Bertaziada5f442017-01-09 18:11:57 -0200939 $parameter_name =~ s/\[.*//;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300940 $type = $args{'parametertypes'}{$parameter};
941
942 if ($type ne "") {
Jani Nikulaecbcfba2016-05-26 18:30:27 +0300943 print "``$type $parameter``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300944 } else {
Jani Nikulaecbcfba2016-05-26 18:30:27 +0300945 print "``$parameter``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300946 }
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200947
948 print_lineno($parameterdesc_start_lines{$parameter_name});
949
Jani Nikula5e64fa92016-05-19 20:32:48 +0300950 if (defined($args{'parameterdescs'}{$parameter_name}) &&
951 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300952 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300953 } else {
Jani Nikulad4b08e02016-05-28 00:48:17 +0300954 print " *undescribed*\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300955 }
956 print "\n";
957 }
Jani Nikulac099ff62016-05-26 17:18:17 +0300958
959 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300960 output_section_rst(@_);
961}
962
963sub output_section_rst(%) {
964 my %args = %{$_[0]};
965 my $section;
966 my $oldprefix = $lineprefix;
Jani Nikulaecbcfba2016-05-26 18:30:27 +0300967 $lineprefix = "";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300968
969 foreach $section (@{$args{'sectionlist'}}) {
Jani Nikulaecbcfba2016-05-26 18:30:27 +0300970 print "**$section**\n\n";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200971 print_lineno($section_start_lines{$section});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300972 output_highlight_rst($args{'sections'}{$section});
973 print "\n";
974 }
975 print "\n";
976 $lineprefix = $oldprefix;
977}
978
979sub output_enum_rst(%) {
980 my %args = %{$_[0]};
981 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +0300982 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300983 my $count;
Jani Nikula62850972016-05-12 16:15:38 +0300984
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +0200985 if ($sphinx_major < 3) {
986 my $name = "enum " . $args{'enum'};
987 print "\n\n.. c:type:: " . $name . "\n\n";
988 } else {
989 my $name = $args{'enum'};
990 print "\n\n.. c:enum:: " . $name . "\n\n";
991 }
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200992 print_lineno($declaration_start_line);
Jani Nikulac099ff62016-05-26 17:18:17 +0300993 $lineprefix = " ";
994 output_highlight_rst($args{'purpose'});
995 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300996
Jani Nikulaecbcfba2016-05-26 18:30:27 +0300997 print "**Constants**\n\n";
998 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300999 foreach $parameter (@{$args{'parameterlist'}}) {
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001000 print "``$parameter``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001001 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1002 output_highlight_rst($args{'parameterdescs'}{$parameter});
1003 } else {
Jani Nikulad4b08e02016-05-28 00:48:17 +03001004 print " *undescribed*\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001005 }
1006 print "\n";
1007 }
Jani Nikulac099ff62016-05-26 17:18:17 +03001008
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001009 $lineprefix = $oldprefix;
1010 output_section_rst(@_);
1011}
1012
1013sub output_typedef_rst(%) {
1014 my %args = %{$_[0]};
1015 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03001016 my $oldprefix = $lineprefix;
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +02001017 my $name;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001018
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +02001019 if ($sphinx_major < 3) {
1020 $name = "typedef " . $args{'typedef'};
1021 } else {
1022 $name = $args{'typedef'};
1023 }
Jani Nikula62850972016-05-12 16:15:38 +03001024 print "\n\n.. c:type:: " . $name . "\n\n";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001025 print_lineno($declaration_start_line);
Jani Nikulac099ff62016-05-26 17:18:17 +03001026 $lineprefix = " ";
1027 output_highlight_rst($args{'purpose'});
1028 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001029
Jani Nikulac099ff62016-05-26 17:18:17 +03001030 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001031 output_section_rst(@_);
1032}
1033
1034sub output_struct_rst(%) {
1035 my %args = %{$_[0]};
1036 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03001037 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001038
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +02001039 if ($sphinx_major < 3) {
1040 my $name = $args{'type'} . " " . $args{'struct'};
1041 print "\n\n.. c:type:: " . $name . "\n\n";
1042 } else {
1043 my $name = $args{'struct'};
1044 print "\n\n.. c:struct:: " . $name . "\n\n";
1045 }
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001046 print_lineno($declaration_start_line);
Jani Nikulac099ff62016-05-26 17:18:17 +03001047 $lineprefix = " ";
1048 output_highlight_rst($args{'purpose'});
1049 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001050
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001051 print "**Definition**\n\n";
1052 print "::\n\n";
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001053 my $declaration = $args{'definition'};
1054 $declaration =~ s/\t/ /g;
1055 print " " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration };\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001056
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001057 print "**Members**\n\n";
1058 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001059 foreach $parameter (@{$args{'parameterlist'}}) {
1060 ($parameter =~ /^#/) && next;
1061
1062 my $parameter_name = $parameter;
1063 $parameter_name =~ s/\[.*//;
1064
1065 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1066 $type = $args{'parametertypes'}{$parameter};
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001067 print_lineno($parameterdesc_start_lines{$parameter_name});
Mauro Carvalho Chehab6d232c82016-08-22 22:02:57 -03001068 print "``" . $parameter . "``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001069 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001070 print "\n";
1071 }
1072 print "\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001073
1074 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001075 output_section_rst(@_);
1076}
1077
Matthew Wilcox3a025e12017-11-20 10:40:40 -08001078## none mode output functions
1079
1080sub output_function_none(%) {
1081}
1082
1083sub output_enum_none(%) {
1084}
1085
1086sub output_typedef_none(%) {
1087}
1088
1089sub output_struct_none(%) {
1090}
1091
1092sub output_blockhead_none(%) {
1093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095##
Randy Dunlap27205742006-10-11 01:22:12 -07001096# generic output function for all types (function, struct/union, typedef, enum);
1097# calls the generated, variable output_ function name based on
1098# functype and output_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099sub output_declaration {
1100 no strict 'refs';
1101 my $name = shift;
1102 my $functype = shift;
1103 my $func = "output_${functype}_$output_mode";
Jani Nikulab6c3f452016-05-29 22:19:35 +03001104 if (($output_selection == OUTPUT_ALL) ||
1105 (($output_selection == OUTPUT_INCLUDE ||
1106 $output_selection == OUTPUT_EXPORTED) &&
1107 defined($function_table{$name})) ||
1108 (($output_selection == OUTPUT_EXCLUDE ||
1109 $output_selection == OUTPUT_INTERNAL) &&
1110 !($functype eq "function" && defined($function_table{$name}))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 {
Randy Dunlap3c308792007-05-08 00:24:39 -07001112 &$func(@_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 $section_counter++;
1114 }
1115}
1116
1117##
Randy Dunlap27205742006-10-11 01:22:12 -07001118# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 15:08:48 -07001119sub output_blockhead {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 no strict 'refs';
Randy Dunlapb9d973282009-06-09 08:50:38 -07001121 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 &$func(@_);
1123 $section_counter++;
1124}
1125
1126##
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001127# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128# invokes the right handler. NOT called for functions.
1129sub dump_declaration($$) {
1130 no strict 'refs';
1131 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001132 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 &$func(@_);
1134}
1135
1136sub dump_union($$) {
1137 dump_struct(@_);
1138}
1139
1140sub dump_struct($$) {
1141 my $x = shift;
1142 my $file = shift;
1143
Jonathan Camerona0709912020-09-10 19:54:15 +01001144 if ($x =~ /(struct|union)\s+(\w+)\s*\{(.*)\}(\s*(__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned|__attribute__\s*\(\([a-z0-9,_\s\(\)]*\)\)))*/) {
Johannes Berg5cb5c312017-09-19 13:08:13 +02001145 my $decl_type = $1;
Randy Dunlap3c308792007-05-08 00:24:39 -07001146 $declaration_name = $2;
1147 my $members = $3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Martin Waitzaeec46b2005-11-13 16:08:13 -08001149 # ignore members marked private:
Mauro Carvalho Chehab0d8c39e2015-10-05 09:03:48 -03001150 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1151 $members =~ s/\/\*\s*private:.*//gosi;
Martin Waitzaeec46b2005-11-13 16:08:13 -08001152 # strip comments:
1153 $members =~ s/\/\*.*?\*\///gos;
Randy Dunlapef5da592010-03-23 13:35:14 -07001154 # strip attributes
André Almeida2b5f78e2019-09-17 16:41:45 -03001155 $members =~ s/\s*__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)/ /gi;
1156 $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
1157 $members =~ s/\s*__packed\s*/ /gos;
1158 $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
André Almeidaf8615372019-09-17 16:41:46 -03001159 $members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
Jonathan Camerona0709912020-09-10 19:54:15 +01001160 $members =~ s/\s*____cacheline_aligned/ /gos;
Mauro Carvalho Chehab35561082020-06-23 09:09:00 +02001161
Conchúr Navidb22b5a92015-11-08 10:52:00 +01001162 # replace DECLARE_BITMAP
Mauro Carvalho Chehab35561082020-06-23 09:09:00 +02001163 $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos;
Mauro Carvalho Chehab45005b22017-12-08 09:05:12 -05001164 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
Jakub Kicinski1cb566b2017-06-30 19:09:59 -07001165 # replace DECLARE_HASHTABLE
Mauro Carvalho Chehab45005b22017-12-08 09:05:12 -05001166 $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
1167 # replace DECLARE_KFIFO
1168 $members =~ s/DECLARE_KFIFO\s*\(([^,)]+),\s*([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
1169 # replace DECLARE_KFIFO_PTR
1170 $members =~ s/DECLARE_KFIFO_PTR\s*\(([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08001171
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001172 my $declaration = $members;
1173
1174 # Split nested struct/union elements as newer ones
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001175 while ($members =~ m/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/) {
1176 my $newmember;
1177 my $maintype = $1;
1178 my $ids = $4;
1179 my $content = $3;
1180 foreach my $id(split /,/, $ids) {
1181 $newmember .= "$maintype $id; ";
1182
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001183 $id =~ s/[:\[].*//;
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001184 $id =~ s/^\s*\**(\S+)\s*/$1/;
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001185 foreach my $arg (split /;/, $content) {
1186 next if ($arg =~ m/^\s*$/);
Mauro Carvalho Chehab7c0d7e82017-12-18 10:30:16 -02001187 if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) {
1188 # pointer-to-function
1189 my $type = $1;
1190 my $name = $2;
1191 my $extra = $3;
1192 next if (!$name);
1193 if ($id =~ m/^\s*$/) {
1194 # anonymous struct/union
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001195 $newmember .= "$type$name$extra; ";
Mauro Carvalho Chehab7c0d7e82017-12-18 10:30:16 -02001196 } else {
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001197 $newmember .= "$type$id.$name$extra; ";
Mauro Carvalho Chehab7c0d7e82017-12-18 10:30:16 -02001198 }
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001199 } else {
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001200 my $type;
1201 my $names;
1202 $arg =~ s/^\s+//;
1203 $arg =~ s/\s+$//;
1204 # Handle bitmaps
1205 $arg =~ s/:\s*\d+\s*//g;
1206 # Handle arrays
Mauro Carvalho Chehabd404d572018-03-29 10:58:59 -04001207 $arg =~ s/\[.*\]//g;
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001208 # The type may have multiple words,
1209 # and multiple IDs can be defined, like:
1210 # const struct foo, *bar, foobar
1211 # So, we remove spaces when parsing the
1212 # names, in order to match just names
1213 # and commas for the names
1214 $arg =~ s/\s*,\s*/,/g;
1215 if ($arg =~ m/(.*)\s+([\S+,]+)/) {
1216 $type = $1;
1217 $names = $2;
Mauro Carvalho Chehab7c0d7e82017-12-18 10:30:16 -02001218 } else {
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001219 $newmember .= "$arg; ";
1220 next;
1221 }
1222 foreach my $name (split /,/, $names) {
1223 $name =~ s/^\s*\**(\S+)\s*/$1/;
1224 next if (($name =~ m/^\s*$/));
1225 if ($id =~ m/^\s*$/) {
1226 # anonymous struct/union
1227 $newmember .= "$type $name; ";
1228 } else {
1229 $newmember .= "$type $id.$name; ";
1230 }
Mauro Carvalho Chehab7c0d7e82017-12-18 10:30:16 -02001231 }
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001232 }
1233 }
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001234 }
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001235 $members =~ s/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/$newmember/;
Mauro Carvalho Chehab84ce5b92017-12-18 10:30:17 -02001236 }
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001237
1238 # Ignore other nested elements, like enums
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001239 $members =~ s/(\{[^\{\}]*\})//g;
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001240
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001241 create_parameterlist($members, ';', $file, $declaration_name);
Mauro Carvalho Chehab1081de22017-12-18 10:30:14 -02001242 check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001244 # Adjust declaration for better display
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001245 $declaration =~ s/([\{;])/$1\n/g;
1246 $declaration =~ s/\}\s+;/};/g;
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001247 # Better handle inlined enums
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001248 do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001249
1250 my @def_args = split /\n/, $declaration;
1251 my $level = 1;
1252 $declaration = "";
1253 foreach my $clause (@def_args) {
1254 $clause =~ s/^\s+//;
1255 $clause =~ s/\s+$//;
1256 $clause =~ s/\s+/ /;
1257 next if (!$clause);
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001258 $level-- if ($clause =~ m/(\})/ && $level > 1);
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001259 if (!($clause =~ m/^\s*#/)) {
1260 $declaration .= "\t" x $level;
1261 }
1262 $declaration .= "\t" . $clause . "\n";
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001263 $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 output_declaration($declaration_name,
1266 'struct',
1267 {'struct' => $declaration_name,
1268 'module' => $modulename,
Mauro Carvalho Chehab8ad72162017-12-18 10:30:13 -02001269 'definition' => $declaration,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 'parameterlist' => \@parameterlist,
1271 'parameterdescs' => \%parameterdescs,
1272 'parametertypes' => \%parametertypes,
1273 'sectionlist' => \@sectionlist,
1274 'sections' => \%sections,
1275 'purpose' => $declaration_purpose,
1276 'type' => $decl_type
1277 });
1278 }
1279 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001280 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 ++$errors;
1282 }
1283}
1284
Mauro Carvalho Chehab85afe602017-12-30 22:32:55 -02001285
1286sub show_warnings($$) {
1287 my $functype = shift;
1288 my $name = shift;
1289
1290 return 1 if ($output_selection == OUTPUT_ALL);
1291
1292 if ($output_selection == OUTPUT_EXPORTED) {
1293 if (defined($function_table{$name})) {
1294 return 1;
1295 } else {
1296 return 0;
1297 }
1298 }
1299 if ($output_selection == OUTPUT_INTERNAL) {
1300 if (!($functype eq "function" && defined($function_table{$name}))) {
1301 return 1;
1302 } else {
1303 return 0;
1304 }
1305 }
1306 if ($output_selection == OUTPUT_INCLUDE) {
1307 if (defined($function_table{$name})) {
1308 return 1;
1309 } else {
1310 return 0;
1311 }
1312 }
1313 if ($output_selection == OUTPUT_EXCLUDE) {
1314 if (!defined($function_table{$name})) {
1315 return 1;
1316 } else {
1317 return 0;
1318 }
1319 }
1320 die("Please add the new output type at show_warnings()");
1321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323sub dump_enum($$) {
1324 my $x = shift;
1325 my $file = shift;
Mauro Carvalho Chehabd38c8cf2020-10-01 08:23:52 +02001326 my $members;
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Martin Waitzaeec46b2005-11-13 16:08:13 -08001329 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Conchúr Navid4468e212015-11-08 10:48:05 +01001330 # strip #define macros inside enums
1331 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001332
Mauro Carvalho Chehabd38c8cf2020-10-01 08:23:52 +02001333 if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) {
1334 $declaration_name = $2;
1335 $members = $1;
1336 } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001337 $declaration_name = $1;
Mauro Carvalho Chehabd38c8cf2020-10-01 08:23:52 +02001338 $members = $2;
1339 }
1340
1341 if ($declaration_name) {
Johannes Berg5cb5c312017-09-19 13:08:13 +02001342 my %_members;
1343
Markus Heiser463a0fd2017-06-16 21:27:48 +02001344 $members =~ s/\s+$//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 foreach my $arg (split ',', $members) {
1347 $arg =~ s/^\s*(\w+).*/$1/;
1348 push @parameterlist, $arg;
1349 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001350 $parameterdescs{$arg} = $undescribed;
Mauro Carvalho Chehab85afe602017-12-30 22:32:55 -02001351 if (show_warnings("enum", $declaration_name)) {
Mauro Carvalho Chehab2defb272017-12-18 10:30:18 -02001352 print STDERR "${file}:$.: warning: Enum value '$arg' not described in enum '$declaration_name'\n";
1353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Johannes Berg5cb5c312017-09-19 13:08:13 +02001355 $_members{$arg} = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001357
Johannes Berg5cb5c312017-09-19 13:08:13 +02001358 while (my ($k, $v) = each %parameterdescs) {
1359 if (!exists($_members{$k})) {
Mauro Carvalho Chehab85afe602017-12-30 22:32:55 -02001360 if (show_warnings("enum", $declaration_name)) {
Mauro Carvalho Chehab2defb272017-12-18 10:30:18 -02001361 print STDERR "${file}:$.: warning: Excess enum value '$k' description in '$declaration_name'\n";
1362 }
Johannes Berg5cb5c312017-09-19 13:08:13 +02001363 }
1364 }
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 output_declaration($declaration_name,
1367 'enum',
1368 {'enum' => $declaration_name,
1369 'module' => $modulename,
1370 'parameterlist' => \@parameterlist,
1371 'parameterdescs' => \%parameterdescs,
1372 'sectionlist' => \@sectionlist,
1373 'sections' => \%sections,
1374 'purpose' => $declaration_purpose
1375 });
Mauro Carvalho Chehabd38c8cf2020-10-01 08:23:52 +02001376 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001377 print STDERR "${file}:$.: error: Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 ++$errors;
1379 }
1380}
1381
1382sub dump_typedef($$) {
1383 my $x = shift;
1384 my $file = shift;
1385
Martin Waitzaeec46b2005-11-13 16:08:13 -08001386 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03001387
1388 # Parse function prototypes
Mauro Carvalho Chehabd37c43c2016-08-30 20:20:57 -03001389 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ ||
1390 $x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) {
1391
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03001392 # Function typedefs
1393 $return_type = $1;
1394 $declaration_name = $2;
1395 my $args = $3;
1396
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001397 create_parameterlist($args, ',', $file, $declaration_name);
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03001398
1399 output_declaration($declaration_name,
1400 'function',
1401 {'function' => $declaration_name,
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -03001402 'typedef' => 1,
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03001403 'module' => $modulename,
1404 'functiontype' => $return_type,
1405 'parameterlist' => \@parameterlist,
1406 'parameterdescs' => \%parameterdescs,
1407 'parametertypes' => \%parametertypes,
1408 'sectionlist' => \@sectionlist,
1409 'sections' => \%sections,
1410 'purpose' => $declaration_purpose
1411 });
1412 return;
1413 }
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001416 $x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 $x =~ s/\[*.\]\s*;$/;/;
1418 }
1419
1420 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001421 $declaration_name = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 output_declaration($declaration_name,
1424 'typedef',
1425 {'typedef' => $declaration_name,
1426 'module' => $modulename,
1427 'sectionlist' => \@sectionlist,
1428 'sections' => \%sections,
1429 'purpose' => $declaration_purpose
1430 });
1431 }
1432 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001433 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 ++$errors;
1435 }
1436}
1437
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001438sub save_struct_actual($) {
1439 my $actual = shift;
1440
1441 # strip all spaces from the actual param so that it looks like one string item
1442 $actual =~ s/\s*//g;
1443 $struct_actual = $struct_actual . $actual . " ";
1444}
1445
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001446sub create_parameterlist($$$$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 my $args = shift;
1448 my $splitter = shift;
1449 my $file = shift;
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001450 my $declaration_name = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 my $type;
1452 my $param;
1453
Martin Waitza6d3fe72006-01-09 20:53:55 -08001454 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001456 $args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 foreach my $arg (split($splitter, $args)) {
1460 # strip comments
1461 $arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 00:24:39 -07001462 # strip leading/trailing spaces
1463 $arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 $arg =~ s/\s*$//;
1465 $arg =~ s/\s+/ /;
1466
1467 if ($arg =~ /^#/) {
1468 # Treat preprocessor directive as a typeless variable just to fill
1469 # corresponding data structures "correctly". Catch it later in
1470 # output_* subs.
1471 push_parameter($arg, "", $file);
Richard Kennedy00d62962008-02-23 15:24:01 -08001472 } elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 # pointer-to-function
1474 $arg =~ tr/#/,/;
Mauro Carvalho Chehab7c0d7e82017-12-18 10:30:16 -02001475 $arg =~ m/[^\(]+\(\*?\s*([\w\.]*)\s*\)/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 $param = $1;
1477 $type = $arg;
Richard Kennedy00d62962008-02-23 15:24:01 -08001478 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001479 save_struct_actual($param);
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001480 push_parameter($param, $type, $file, $declaration_name);
Martin Waitzaeec46b2005-11-13 16:08:13 -08001481 } elsif ($arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 $arg =~ s/\s*:\s*/:/g;
1483 $arg =~ s/\s*\[/\[/g;
1484
1485 my @args = split('\s*,\s*', $arg);
1486 if ($args[0] =~ m/\*/) {
1487 $args[0] =~ s/(\*+)\s*/ $1/;
1488 }
Borislav Petkov884f2812007-05-08 00:29:05 -07001489
1490 my @first_arg;
1491 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1492 shift @args;
1493 push(@first_arg, split('\s+', $1));
1494 push(@first_arg, $2);
1495 } else {
1496 @first_arg = split('\s+', shift @args);
1497 }
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 unshift(@args, pop @first_arg);
1500 $type = join " ", @first_arg;
1501
1502 foreach $param (@args) {
1503 if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001504 save_struct_actual($2);
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001505 push_parameter($2, "$type $1", $file, $declaration_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507 elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 15:45:52 -07001508 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001509 save_struct_actual($1);
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001510 push_parameter($1, "$type:$2", $file, $declaration_name)
Randy Dunlap7b978872008-05-16 15:45:52 -07001511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513 else {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001514 save_struct_actual($param);
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001515 push_parameter($param, $type, $file, $declaration_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
1517 }
1518 }
1519 }
1520}
1521
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001522sub push_parameter($$$$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 my $param = shift;
1524 my $type = shift;
1525 my $file = shift;
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001526 my $declaration_name = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07001528 if (($anon_struct_union == 1) && ($type eq "") &&
1529 ($param eq "}")) {
1530 return; # ignore the ending }; from anon. struct/union
1531 }
1532
1533 $anon_struct_union = 0;
Mauro Carvalho Chehabf9b5c532017-03-30 17:11:29 -03001534 $param =~ s/[\[\)].*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Martin Waitza6d3fe72006-01-09 20:53:55 -08001536 if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 {
Silvio Frickec950a172016-10-28 10:14:08 +02001538 if (!$param =~ /\w\.\.\.$/) {
1539 # handles unnamed variable parameters
1540 $param = "...";
1541 }
Jonathan Neuschäfer43756e32019-11-07 14:41:33 +01001542 elsif ($param =~ /\w\.\.\.$/) {
1543 # for named variable parameters of the form `x...`, remove the dots
1544 $param =~ s/\.\.\.$//;
1545 }
Randy Dunlapced69092008-12-01 13:14:03 -08001546 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1547 $parameterdescs{$param} = "variable arguments";
1548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550 elsif ($type eq "" && ($param eq "" or $param eq "void"))
1551 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 $param="void";
1553 $parameterdescs{void} = "no arguments";
1554 }
Randy Dunlap134fe012006-12-22 01:10:50 -08001555 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1556 # handle unnamed (anonymous) union or struct:
1557 {
1558 $type = $param;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07001559 $param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 01:10:50 -08001560 $parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07001561 $anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 01:10:50 -08001562 }
1563
Martin Waitza6d3fe72006-01-09 20:53:55 -08001564 # warn if parameter has no description
Randy Dunlap134fe012006-12-22 01:10:50 -08001565 # (but ignore ones starting with # as these are not parameters
1566 # but inline preprocessor statements);
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001567 # Note: It will also ignore void params and unnamed structs/unions
Mauro Carvalho Chehabf9b5c532017-03-30 17:11:29 -03001568 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001569 $parameterdescs{$param} = $undescribed;
Martin Waitza6d3fe72006-01-09 20:53:55 -08001570
Jonathan Corbetbe5cd20c2019-01-11 12:31:39 -07001571 if (show_warnings($type, $declaration_name) && $param !~ /\./) {
Mauro Carvalho Chehab2defb272017-12-18 10:30:18 -02001572 print STDERR
1573 "${file}:$.: warning: Function parameter or member '$param' not described in '$declaration_name'\n";
1574 ++$warnings;
1575 }
Randy Dunlap3c308792007-05-08 00:24:39 -07001576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001578 # strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-17 17:37:47 -07001579 # on @parameterlist;
1580 # this fixes a problem where check_sections() cannot find
1581 # a parameter like "addr[6 + 2]" because it actually appears
1582 # as "addr[6", "+", "2]" on the parameter list;
1583 # but it's better to maintain the param string unchanged for output,
1584 # so just weaken the string compare in check_sections() to ignore
1585 # "[blah" in a parameter string;
1586 ###$param =~ s/\s*//g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 push @parameterlist, $param;
Paolo Bonzini02a4f4f2017-01-02 16:22:23 +01001588 $type =~ s/\s\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 $parametertypes{$param} = $type;
1590}
1591
Mauro Carvalho Chehab1081de22017-12-18 10:30:14 -02001592sub check_sections($$$$$) {
1593 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001594 my @sects = split ' ', $sectcheck;
1595 my @prms = split ' ', $prmscheck;
1596 my $err;
1597 my ($px, $sx);
1598 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
1599
1600 foreach $sx (0 .. $#sects) {
1601 $err = 1;
1602 foreach $px (0 .. $#prms) {
1603 $prm_clean = $prms[$px];
1604 $prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 15:55:12 -07001605 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-17 17:37:47 -07001606 # ignore array size in a parameter string;
1607 # however, the original param string may contain
1608 # spaces, e.g.: addr[6 + 2]
1609 # and this appears in @prms as "addr[6" since the
1610 # parameter list is split at spaces;
1611 # hence just ignore "[..." for the sections check;
1612 $prm_clean =~ s/\[.*//;
1613
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001614 ##$prm_clean =~ s/^\**//;
1615 if ($prm_clean eq $sects[$sx]) {
1616 $err = 0;
1617 last;
1618 }
1619 }
1620 if ($err) {
1621 if ($decl_type eq "function") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001622 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001623 "Excess function parameter " .
1624 "'$sects[$sx]' " .
1625 "description in '$decl_name'\n";
1626 ++$warnings;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001627 }
1628 }
1629 }
1630}
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632##
Yacine Belkadi4092bac2012-11-26 22:22:27 +01001633# Checks the section describing the return value of a function.
1634sub check_return_section {
1635 my $file = shift;
1636 my $declaration_name = shift;
1637 my $return_type = shift;
1638
1639 # Ignore an empty return type (It's a macro)
1640 # Ignore functions with a "void" return type. (But don't ignore "void *")
1641 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
1642 return;
1643 }
1644
1645 if (!defined($sections{$section_return}) ||
1646 $sections{$section_return} eq "") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001647 print STDERR "${file}:$.: warning: " .
Yacine Belkadi4092bac2012-11-26 22:22:27 +01001648 "No description found for return value of " .
1649 "'$declaration_name'\n";
1650 ++$warnings;
1651 }
1652}
1653
1654##
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655# takes a function prototype and the name of the current file being
1656# processed and spits out all the details stored in the global
1657# arrays/hashes.
1658sub dump_function($$) {
1659 my $prototype = shift;
1660 my $file = shift;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07001661 my $noret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Mauro Carvalho Chehab5eb6b4b2020-09-09 16:10:33 +02001663 print_lineno($.);
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 $prototype =~ s/^static +//;
1666 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 08:59:25 -07001667 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 $prototype =~ s/^inline +//;
1669 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 01:22:10 -07001670 $prototype =~ s/^__inline +//;
1671 $prototype =~ s/^__always_inline +//;
1672 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 16:03:29 -07001673 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 13:35:24 -07001674 $prototype =~ s/__init_or_module +//;
Randy Dunlap270a0092014-08-24 18:17:17 -07001675 $prototype =~ s/__meminit +//;
Randy Dunlap70c95b02012-01-21 10:31:54 -08001676 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 16:23:20 -07001677 $prototype =~ s/__weak +//;
Matthew Wilcox0891f952018-03-15 05:06:23 -07001678 $prototype =~ s/__sched +//;
Randy Dunlap95e760c2019-08-05 09:29:50 -07001679 $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07001680 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
Paolo Bonzinib1aaa542017-01-02 16:22:24 +01001681 $prototype =~ s/__attribute__\s*\(\(
1682 (?:
1683 [\w\s]++ # attribute name
1684 (?:\([^)]*+\))? # attribute arguments
1685 \s*+,? # optional comma at the end
1686 )+
1687 \)\)\s+//x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 # Yes, this truly is vile. We are looking for:
1690 # 1. Return type (may be nothing if we're looking at a macro)
1691 # 2. Function name
1692 # 3. Function parameters.
1693 #
1694 # All the while we have to watch out for function pointer parameters
1695 # (which IIRC is what the two sections are for), C types (these
1696 # regexps don't even start to express all the possibilities), and
1697 # so on.
1698 #
1699 # If you mess with these regexps, it's a good idea to check that
1700 # the following functions' documentation still comes out right:
1701 # - parport_register_device (function pointer parameters)
1702 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 03:06:55 -08001703 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Horia Geantacbb4d3e2014-07-12 09:55:03 -07001705 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
1706 # This is an object-like macro, it has no return type and no parameter
1707 # list.
1708 # Function-like macros are not allowed to have spaces between
1709 # declaration_name and opening parenthesis (notice the \s+).
1710 $return_type = $1;
1711 $declaration_name = $2;
1712 $noret = 1;
1713 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08001715 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 00:13:26 -08001717 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08001719 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1721 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08001722 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08001724 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08001726 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 03:06:55 -08001727 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08001728 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1729 $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 $return_type = $1;
1731 $declaration_name = $2;
1732 my $args = $3;
1733
Mauro Carvalho Chehab151c4682017-12-18 10:30:15 -02001734 create_parameterlist($args, ',', $file, $declaration_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001736 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return;
1738 }
1739
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001740 my $prms = join " ", @parameterlist;
Mauro Carvalho Chehab1081de22017-12-18 10:30:14 -02001741 check_sections($file, $declaration_name, "function", $sectcheck, $prms);
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001742
Yacine Belkadi4092bac2012-11-26 22:22:27 +01001743 # This check emits a lot of warnings at the moment, because many
1744 # functions don't have a 'Return' doc section. So until the number
1745 # of warnings goes sufficiently down, the check is only performed in
1746 # verbose mode.
1747 # TODO: always perform the check.
Horia Geantacbb4d3e2014-07-12 09:55:03 -07001748 if ($verbose && !$noret) {
Yacine Belkadi4092bac2012-11-26 22:22:27 +01001749 check_return_section($file, $declaration_name, $return_type);
1750 }
1751
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001752 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 'function',
1754 {'function' => $declaration_name,
1755 'module' => $modulename,
1756 'functiontype' => $return_type,
1757 'parameterlist' => \@parameterlist,
1758 'parameterdescs' => \%parameterdescs,
1759 'parametertypes' => \%parametertypes,
1760 'sectionlist' => \@sectionlist,
1761 'sections' => \%sections,
1762 'purpose' => $declaration_purpose
1763 });
1764}
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766sub reset_state {
1767 $function = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 %parameterdescs = ();
1769 %parametertypes = ();
1770 @parameterlist = ();
1771 %sections = ();
1772 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001773 $sectcheck = "";
1774 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 $prototype = "";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001776
Jani Nikula48af6062016-05-26 14:56:05 +03001777 $state = STATE_NORMAL;
1778 $inline_doc_state = STATE_INLINE_NA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
Jason Baron56afb0f2009-04-30 13:29:36 -04001781sub tracepoint_munge($) {
1782 my $file = shift;
1783 my $tracepointname = 0;
1784 my $tracepointargs = 0;
1785
Jason Baron3a9089f2009-12-01 12:18:49 -05001786 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04001787 $tracepointname = $1;
1788 }
Jason Baron3a9089f2009-12-01 12:18:49 -05001789 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1790 $tracepointname = $1;
1791 }
1792 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1793 $tracepointname = $2;
1794 }
1795 $tracepointname =~ s/^\s+//; #strip leading whitespace
1796 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04001797 $tracepointargs = $1;
1798 }
1799 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07001800 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
Jason Baron56afb0f2009-04-30 13:29:36 -04001801 "$prototype\n";
1802 } else {
1803 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
1804 }
1805}
1806
Randy Dunlapb4870bc2009-02-11 13:04:33 -08001807sub syscall_munge() {
1808 my $void = 0;
1809
Mauro Carvalho Chehab7c9aa012017-12-18 10:30:12 -02001810 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
Randy Dunlapb4870bc2009-02-11 13:04:33 -08001811## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1812 if ($prototype =~ m/SYSCALL_DEFINE0/) {
1813 $void = 1;
1814## $prototype = "long sys_$1(void)";
1815 }
1816
1817 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1818 if ($prototype =~ m/long (sys_.*?),/) {
1819 $prototype =~ s/,/\(/;
1820 } elsif ($void) {
1821 $prototype =~ s/\)/\(void\)/;
1822 }
1823
1824 # now delete all of the odd-number commas in $prototype
1825 # so that arg types & arg names don't have a comma between them
1826 my $count = 0;
1827 my $len = length($prototype);
1828 if ($void) {
1829 $len = 0; # skip the for-loop
1830 }
1831 for (my $ix = 0; $ix < $len; $ix++) {
1832 if (substr($prototype, $ix, 1) eq ',') {
1833 $count++;
1834 if ($count % 2 == 1) {
1835 substr($prototype, $ix, 1) = ' ';
1836 }
1837 }
1838 }
1839}
1840
Daniel Vetterb7afa922016-06-01 23:46:24 +02001841sub process_proto_function($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 my $x = shift;
1843 my $file = shift;
1844
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001845 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1846
Randy Dunlap890c78c2008-10-25 17:06:43 -07001847 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 # do nothing
1849 }
1850 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001851 $prototype .= $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08001853
Randy Dunlap890c78c2008-10-25 17:06:43 -07001854 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001855 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1857 $prototype =~ s@^\s+@@gos; # strip leading spaces
Mauro Carvalho Chehab7ae281b2020-06-23 09:09:02 +02001858
1859 # Handle prototypes for function pointers like:
1860 # int (*pcs_config)(struct foo)
1861 $prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos;
1862
Randy Dunlapb4870bc2009-02-11 13:04:33 -08001863 if ($prototype =~ /SYSCALL_DEFINE/) {
1864 syscall_munge();
1865 }
Jason Baron3a9089f2009-12-01 12:18:49 -05001866 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1867 $prototype =~ /DEFINE_SINGLE_EVENT/)
1868 {
Jason Baron56afb0f2009-04-30 13:29:36 -04001869 tracepoint_munge($file);
1870 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08001871 dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 reset_state();
1873 }
1874}
1875
Daniel Vetterb7afa922016-06-01 23:46:24 +02001876sub process_proto_type($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 my $x = shift;
1878 my $file = shift;
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1881 $x =~ s@^\s+@@gos; # strip leading spaces
1882 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001883 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if ($x =~ /^#/) {
1886 # To distinguish preprocessor directive from regular declaration later.
1887 $x .= ";";
1888 }
1889
1890 while (1) {
Ben Hutchings673bb2d2018-08-05 17:41:09 +01001891 if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
Markus Heiser463a0fd2017-06-16 21:27:48 +02001892 if( length $prototype ) {
1893 $prototype .= " "
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 $prototype .= $1 . $2;
1896 ($2 eq '{') && $brcount++;
1897 ($2 eq '}') && $brcount--;
1898 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001899 dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 reset_state();
Randy Dunlap3c308792007-05-08 00:24:39 -07001901 last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903 $x = $3;
Randy Dunlap3c308792007-05-08 00:24:39 -07001904 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 $prototype .= $x;
1906 last;
1907 }
1908 }
1909}
1910
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07001911
Jani Nikula1ad560e2016-06-07 10:53:39 +03001912sub map_filename($) {
1913 my $file;
1914 my ($orig_file) = @_;
1915
1916 if (defined($ENV{'SRCTREE'})) {
1917 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1918 } else {
1919 $file = $orig_file;
1920 }
1921
1922 if (defined($source_map{$file})) {
1923 $file = $source_map{$file};
1924 }
1925
1926 return $file;
1927}
1928
Jani Nikula88c2b572016-06-07 11:00:52 +03001929sub process_export_file($) {
1930 my ($orig_file) = @_;
1931 my $file = map_filename($orig_file);
1932
1933 if (!open(IN,"<$file")) {
1934 print STDERR "Error: Cannot open file $file\n";
1935 ++$errors;
1936 return;
1937 }
1938
1939 while (<IN>) {
1940 if (/$export_symbol/) {
1941 $function_table{$2} = 1;
1942 }
1943 }
1944
1945 close(IN);
1946}
1947
Jonathan Corbet07048d12018-02-05 14:15:19 -07001948#
1949# Parsers for the various processing states.
1950#
1951# STATE_NORMAL: looking for the /** to begin everything.
1952#
1953sub process_normal() {
1954 if (/$doc_start/o) {
1955 $state = STATE_NAME; # next line is always the function name
1956 $in_doc_sect = 0;
1957 $declaration_start_line = $. + 1;
1958 }
1959}
1960
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07001961#
1962# STATE_NAME: Looking for the "name - description" line
1963#
1964sub process_name($$) {
1965 my $file = shift;
1966 my $identifier;
1967 my $descr;
Jonathan Corbet07048d12018-02-05 14:15:19 -07001968
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07001969 if (/$doc_block/o) {
1970 $state = STATE_DOCBLOCK;
1971 $contents = "";
1972 $new_start_line = $. + 1;
1973
1974 if ( $1 eq "" ) {
1975 $section = $section_intro;
1976 } else {
1977 $section = $1;
1978 }
1979 }
1980 elsif (/$doc_decl/o) {
1981 $identifier = $1;
Jonathan Corbetfcdf1df2018-02-20 12:29:50 -07001982 if (/\s*([\w\s]+?)(\(\))?\s*-/) {
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07001983 $identifier = $1;
1984 }
1985
1986 $state = STATE_BODY;
1987 # if there's no @param blocks need to set up default section
1988 # here
1989 $contents = "";
1990 $section = $section_default;
1991 $new_start_line = $. + 1;
1992 if (/-(.*)/) {
1993 # strip leading/trailing/multiple spaces
1994 $descr= $1;
1995 $descr =~ s/^\s*//;
1996 $descr =~ s/\s*$//;
1997 $descr =~ s/\s+/ /g;
1998 $declaration_purpose = $descr;
1999 $state = STATE_BODY_MAYBE;
2000 } else {
2001 $declaration_purpose = "";
2002 }
2003
2004 if (($declaration_purpose eq "") && $verbose) {
2005 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
2006 print STDERR $_;
2007 ++$warnings;
2008 }
2009
Randy Dunlapcf419d52018-10-17 21:07:27 -07002010 if ($identifier =~ m/^struct\b/) {
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07002011 $decl_type = 'struct';
Randy Dunlapcf419d52018-10-17 21:07:27 -07002012 } elsif ($identifier =~ m/^union\b/) {
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07002013 $decl_type = 'union';
Randy Dunlapcf419d52018-10-17 21:07:27 -07002014 } elsif ($identifier =~ m/^enum\b/) {
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07002015 $decl_type = 'enum';
Randy Dunlapcf419d52018-10-17 21:07:27 -07002016 } elsif ($identifier =~ m/^typedef\b/) {
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07002017 $decl_type = 'typedef';
2018 } else {
2019 $decl_type = 'function';
2020 }
2021
2022 if ($verbose) {
2023 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
2024 }
2025 } else {
2026 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
2027 " - I thought it was a doc line\n";
2028 ++$warnings;
2029 $state = STATE_NORMAL;
2030 }
2031}
Jonathan Corbet07048d12018-02-05 14:15:19 -07002032
Jonathan Corbetd742f242018-02-05 15:36:05 -07002033
2034#
2035# STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
2036#
2037sub process_body($$) {
2038 my $file = shift;
2039
Jonathan Neuschäfer43756e32019-11-07 14:41:33 +01002040 # Until all named variable macro parameters are
2041 # documented using the bare name (`x`) rather than with
2042 # dots (`x...`), strip the dots:
2043 if ($section =~ /\w\.\.\.$/) {
2044 $section =~ s/\.\.\.$//;
2045
2046 if ($verbose) {
2047 print STDERR "${file}:$.: warning: Variable macro arguments should be documented without dots\n";
2048 ++$warnings;
2049 }
2050 }
2051
Mauro Carvalho Chehab0d55d482020-04-14 18:48:29 +02002052 if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
2053 dump_section($file, $section, $contents);
2054 $section = $section_default;
2055 $contents = "";
2056 }
2057
Jonathan Corbetd742f242018-02-05 15:36:05 -07002058 if (/$doc_sect/i) { # case insensitive for supported section names
2059 $newsection = $1;
2060 $newcontents = $2;
2061
2062 # map the supported section names to the canonical names
2063 if ($newsection =~ m/^description$/i) {
2064 $newsection = $section_default;
2065 } elsif ($newsection =~ m/^context$/i) {
2066 $newsection = $section_context;
2067 } elsif ($newsection =~ m/^returns?$/i) {
2068 $newsection = $section_return;
2069 } elsif ($newsection =~ m/^\@return$/) {
2070 # special: @return is a section, not a param description
2071 $newsection = $section_return;
2072 }
2073
2074 if (($contents ne "") && ($contents ne "\n")) {
2075 if (!$in_doc_sect && $verbose) {
2076 print STDERR "${file}:$.: warning: contents before sections\n";
2077 ++$warnings;
2078 }
2079 dump_section($file, $section, $contents);
2080 $section = $section_default;
2081 }
2082
2083 $in_doc_sect = 1;
2084 $state = STATE_BODY;
2085 $contents = $newcontents;
2086 $new_start_line = $.;
2087 while (substr($contents, 0, 1) eq " ") {
2088 $contents = substr($contents, 1);
2089 }
2090 if ($contents ne "") {
2091 $contents .= "\n";
2092 }
2093 $section = $newsection;
2094 $leading_space = undef;
2095 } elsif (/$doc_end/) {
2096 if (($contents ne "") && ($contents ne "\n")) {
2097 dump_section($file, $section, $contents);
2098 $section = $section_default;
2099 $contents = "";
2100 }
2101 # look for doc_com + <text> + doc_end:
2102 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2103 print STDERR "${file}:$.: warning: suspicious ending line: $_";
2104 ++$warnings;
2105 }
2106
2107 $prototype = "";
2108 $state = STATE_PROTO;
2109 $brcount = 0;
2110 } elsif (/$doc_content/) {
Jonathan Corbetd742f242018-02-05 15:36:05 -07002111 if ($1 eq "") {
Mauro Carvalho Chehab0d55d482020-04-14 18:48:29 +02002112 if ($section eq $section_context) {
Jonathan Corbetd742f242018-02-05 15:36:05 -07002113 dump_section($file, $section, $contents);
2114 $section = $section_default;
2115 $contents = "";
2116 $new_start_line = $.;
Mauro Carvalho Chehab0d55d482020-04-14 18:48:29 +02002117 $state = STATE_BODY;
Jonathan Corbetd742f242018-02-05 15:36:05 -07002118 } else {
Mauro Carvalho Chehab0d55d482020-04-14 18:48:29 +02002119 if ($section ne $section_default) {
2120 $state = STATE_BODY_WITH_BLANK_LINE;
2121 } else {
2122 $state = STATE_BODY;
2123 }
Jonathan Corbetd742f242018-02-05 15:36:05 -07002124 $contents .= "\n";
2125 }
Jonathan Corbetd742f242018-02-05 15:36:05 -07002126 } elsif ($state == STATE_BODY_MAYBE) {
2127 # Continued declaration purpose
2128 chomp($declaration_purpose);
2129 $declaration_purpose .= " " . $1;
2130 $declaration_purpose =~ s/\s+/ /g;
2131 } else {
2132 my $cont = $1;
2133 if ($section =~ m/^@/ || $section eq $section_context) {
2134 if (!defined $leading_space) {
2135 if ($cont =~ m/^(\s+)/) {
2136 $leading_space = $1;
2137 } else {
2138 $leading_space = "";
2139 }
2140 }
2141 $cont =~ s/^$leading_space//;
2142 }
2143 $contents .= $cont . "\n";
2144 }
2145 } else {
2146 # i dont know - bad line? ignore.
2147 print STDERR "${file}:$.: warning: bad line: $_";
2148 ++$warnings;
2149 }
2150}
2151
2152
Jonathan Corbetcc794812018-02-05 15:46:30 -07002153#
2154# STATE_PROTO: reading a function/whatever prototype.
2155#
2156sub process_proto($$) {
2157 my $file = shift;
2158
2159 if (/$doc_inline_oneline/) {
2160 $section = $1;
2161 $contents = $2;
2162 if ($contents ne "") {
2163 $contents .= "\n";
2164 dump_section($file, $section, $contents);
2165 $section = $section_default;
2166 $contents = "";
2167 }
2168 } elsif (/$doc_inline_start/) {
2169 $state = STATE_INLINE;
2170 $inline_doc_state = STATE_INLINE_NAME;
2171 } elsif ($decl_type eq 'function') {
2172 process_proto_function($_, $file);
2173 } else {
2174 process_proto_type($_, $file);
2175 }
2176}
2177
Jonathan Corbetc17add52018-02-05 16:11:47 -07002178#
2179# STATE_DOCBLOCK: within a DOC: block.
2180#
2181sub process_docblock($$) {
2182 my $file = shift;
2183
2184 if (/$doc_end/) {
2185 dump_doc_section($file, $section, $contents);
2186 $section = $section_default;
2187 $contents = "";
2188 $function = "";
2189 %parameterdescs = ();
2190 %parametertypes = ();
2191 @parameterlist = ();
2192 %sections = ();
2193 @sectionlist = ();
2194 $prototype = "";
2195 $state = STATE_NORMAL;
2196 } elsif (/$doc_content/) {
2197 if ( $1 eq "" ) {
2198 $contents .= $blankline;
2199 } else {
2200 $contents .= $1 . "\n";
2201 }
2202 }
2203}
2204
2205#
2206# STATE_INLINE: docbook comments within a prototype.
2207#
2208sub process_inline($$) {
2209 my $file = shift;
2210
2211 # First line (state 1) needs to be a @parameter
2212 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
2213 $section = $1;
2214 $contents = $2;
2215 $new_start_line = $.;
2216 if ($contents ne "") {
2217 while (substr($contents, 0, 1) eq " ") {
2218 $contents = substr($contents, 1);
2219 }
2220 $contents .= "\n";
2221 }
2222 $inline_doc_state = STATE_INLINE_TEXT;
2223 # Documentation block end */
2224 } elsif (/$doc_inline_end/) {
2225 if (($contents ne "") && ($contents ne "\n")) {
2226 dump_section($file, $section, $contents);
2227 $section = $section_default;
2228 $contents = "";
2229 }
2230 $state = STATE_PROTO;
2231 $inline_doc_state = STATE_INLINE_NA;
2232 # Regular text
2233 } elsif (/$doc_content/) {
2234 if ($inline_doc_state == STATE_INLINE_TEXT) {
2235 $contents .= $1 . "\n";
2236 # nuke leading blank lines
2237 if ($contents =~ /^\s*$/) {
2238 $contents = "";
2239 }
2240 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2241 $inline_doc_state = STATE_INLINE_ERROR;
2242 print STDERR "${file}:$.: warning: ";
2243 print STDERR "Incorrect use of kernel-doc format: $_";
2244 ++$warnings;
2245 }
2246 }
2247}
2248
Jonathan Corbetcc794812018-02-05 15:46:30 -07002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250sub process_file($) {
Randy Dunlap2283a112005-07-07 15:39:26 -07002251 my $file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 my $initial_section_counter = $section_counter;
Ben Hutchings68f86662015-09-01 23:48:49 +01002253 my ($orig_file) = @_;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Jani Nikula1ad560e2016-06-07 10:53:39 +03002255 $file = map_filename($orig_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 if (!open(IN,"<$file")) {
2258 print STDERR "Error: Cannot open file $file\n";
2259 ++$errors;
2260 return;
2261 }
2262
Ilya Dryomova9e73142010-02-26 13:05:47 -08002263 $. = 1;
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 $section_counter = 0;
2266 while (<IN>) {
Daniel Santos65478422012-10-04 17:15:05 -07002267 while (s/\\\s*$//) {
2268 $_ .= <IN>;
2269 }
Mauro Carvalho Chehab7c9aa012017-12-18 10:30:12 -02002270 # Replace tabs by spaces
2271 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
Jonathan Corbetc17add52018-02-05 16:11:47 -07002272 # Hand this line to the appropriate state handler
Jani Nikula48af6062016-05-26 14:56:05 +03002273 if ($state == STATE_NORMAL) {
Jonathan Corbet07048d12018-02-05 14:15:19 -07002274 process_normal();
Jonathan Corbet3cac2bc2018-02-05 14:36:33 -07002275 } elsif ($state == STATE_NAME) {
2276 process_name($file, $_);
Mauro Carvalho Chehab0d55d482020-04-14 18:48:29 +02002277 } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
2278 $state == STATE_BODY_WITH_BLANK_LINE) {
Jonathan Corbetd742f242018-02-05 15:36:05 -07002279 process_body($file, $_);
Jani Nikula48af6062016-05-26 14:56:05 +03002280 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
Jonathan Corbetc17add52018-02-05 16:11:47 -07002281 process_inline($file, $_);
Jonathan Corbetcc794812018-02-05 15:46:30 -07002282 } elsif ($state == STATE_PROTO) {
2283 process_proto($file, $_);
Jani Nikula48af6062016-05-26 14:56:05 +03002284 } elsif ($state == STATE_DOCBLOCK) {
Jonathan Corbetc17add52018-02-05 16:11:47 -07002285 process_docblock($file, $_);
Randy Dunlap3c308792007-05-08 00:24:39 -07002286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
Jonathan Corbetc17add52018-02-05 16:11:47 -07002288
2289 # Make sure we got something interesting.
Jonathan Corbetb0d60bf2019-05-24 14:52:01 -06002290 if ($initial_section_counter == $section_counter && $
2291 output_mode ne "none") {
2292 if ($output_selection == OUTPUT_INCLUDE) {
2293 print STDERR "${file}:1: warning: '$_' not found\n"
2294 for keys %function_table;
Matthew Wilcox3a025e12017-11-20 10:40:40 -08002295 }
Jonathan Corbetb0d60bf2019-05-24 14:52:01 -06002296 else {
2297 print STDERR "${file}:1: warning: no structured comments found\n";
Johannes Berge946c43a2013-11-12 15:11:12 -08002298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300}
Randy Dunlap8484baa2011-01-05 16:28:43 -08002301
2302
Mauro Carvalho Chehabefa444752020-09-24 15:30:37 +02002303$sphinx_major = get_sphinx_version();
Randy Dunlap8484baa2011-01-05 16:28:43 -08002304$kernelversion = get_kernel_version();
2305
2306# generate a sequence of code that will splice in highlighting information
2307# using the s// operator.
Mauro Carvalho Chehab1ef06232015-11-17 13:29:49 -02002308for (my $k = 0; $k < @highlights; $k++) {
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -03002309 my $pattern = $highlights[$k][0];
2310 my $result = $highlights[$k][1];
2311# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2312 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -08002313}
2314
2315# Read the file that maps relative names to absolute names for
2316# separate source and object directories and for shadow trees.
2317if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2318 my ($relname, $absname);
2319 while(<SOURCE_MAP>) {
2320 chop();
2321 ($relname, $absname) = (split())[0..1];
2322 $relname =~ s:^/+::;
2323 $source_map{$relname} = $absname;
2324 }
2325 close(SOURCE_MAP);
2326}
2327
Jani Nikula88c2b572016-06-07 11:00:52 +03002328if ($output_selection == OUTPUT_EXPORTED ||
2329 $output_selection == OUTPUT_INTERNAL) {
Jani Nikulac9b2cfb2016-06-07 11:05:53 +03002330
2331 push(@export_file_list, @ARGV);
2332
Jani Nikula88c2b572016-06-07 11:00:52 +03002333 foreach (@export_file_list) {
2334 chomp;
2335 process_export_file($_);
2336 }
2337}
2338
Randy Dunlap8484baa2011-01-05 16:28:43 -08002339foreach (@ARGV) {
2340 chomp;
2341 process_file($_);
2342}
2343if ($verbose && $errors) {
2344 print STDERR "$errors errors\n";
2345}
2346if ($verbose && $warnings) {
2347 print STDERR "$warnings warnings\n";
2348}
2349
Pierre-Louis Bossart2c12c812020-07-28 11:20:40 -05002350if ($Werror && $warnings) {
2351 print STDERR "$warnings warnings as Errors\n";
2352 exit($warnings);
2353} else {
2354 exit($output_mode eq "none" ? 0 : $errors)
2355}