blob: bd29a92b4b48aa1648f8c892c980f1a72c2ad67e [file] [log] [blame]
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02001#!/usr/bin/env perl
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02003use warnings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004use strict;
5
6## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
7## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
8## Copyright (C) 2001 Simon Huggins ##
Randy Dunlap70c95b02012-01-21 10:31:54 -08009## Copyright (C) 2005-2012 Randy Dunlap ##
Dan Luedtke1b40c192012-08-12 10:46:15 +020010## Copyright (C) 2012 Dan Luedtke ##
Linus Torvalds1da177e2005-04-16 15:20:36 -070011## ##
12## #define enhancements by Armin Kuster <akuster@mvista.com> ##
13## Copyright (c) 2000 MontaVista Software, Inc. ##
14## ##
15## This software falls under the GNU General Public License. ##
16## Please read the COPYING file for more information ##
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018# 18/01/2001 - Cleanups
19# Functions prototyped as foo(void) same as foo()
20# Stop eval'ing where we don't need to.
21# -- huggie@earth.li
22
23# 27/06/2001 - Allowed whitespace after initial "/**" and
24# allowed comments before function declarations.
25# -- Christian Kreibich <ck@whoop.org>
26
27# Still to do:
28# - add perldoc documentation
29# - Look more closely at some of the scarier bits :)
30
31# 26/05/2001 - Support for separate source and object trees.
32# Return error code.
33# Keith Owens <kaos@ocs.com.au>
34
35# 23/09/2001 - Added support for typedefs, structs, enums and unions
36# Support for Context section; can be terminated using empty line
37# Small fixes (like spaces vs. \s in regex)
38# -- Tim Jansen <tim@tjansen.de>
39
Dan Luedtke1b40c192012-08-12 10:46:15 +020040# 25/07/2012 - Added support for HTML5
41# -- Dan Luedtke <mail@danrl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Jani Nikulafadc0b32016-05-12 16:15:36 +030043sub usage {
44 my $message = <<"EOF";
45Usage: $0 [OPTION ...] FILE ...
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Jani Nikulafadc0b32016-05-12 16:15:36 +030047Read C language source or header FILEs, extract embedded documentation comments,
48and print formatted documentation to standard output.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Jani Nikulafadc0b32016-05-12 16:15:36 +030050The documentation comments are identified by "/**" opening comment mark. See
51Documentation/kernel-doc-nano-HOWTO.txt for the documentation comment syntax.
52
53Output format selection (mutually exclusive):
54 -docbook Output DocBook format.
55 -html Output HTML format.
56 -html5 Output HTML5 format.
57 -list Output symbol list format. This is for use by docproc.
58 -man Output troff manual page format. This is the default.
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +030059 -rst Output reStructuredText format.
Jani Nikulafadc0b32016-05-12 16:15:36 +030060 -text Output plain text format.
Matthew Wilcox3a025e12017-11-20 10:40:40 -080061 -none Do not output documentation, only warnings.
Jani Nikulafadc0b32016-05-12 16:15:36 +030062
63Output selection (mutually exclusive):
Jani Nikula86ae2e32016-01-21 13:05:22 +020064 -export Only output documentation for symbols that have been
65 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
Jani Nikulac9b2cfb2016-06-07 11:05:53 +030066 in any input FILE or -export-file FILE.
Jani Nikula86ae2e32016-01-21 13:05:22 +020067 -internal Only output documentation for symbols that have NOT been
68 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
Jani Nikulac9b2cfb2016-06-07 11:05:53 +030069 in any input FILE or -export-file FILE.
Jani Nikulafadc0b32016-05-12 16:15:36 +030070 -function NAME Only output documentation for the given function(s)
71 or DOC: section title(s). All other functions and DOC:
72 sections are ignored. May be specified multiple times.
73 -nofunction NAME Do NOT output documentation for the given function(s);
74 only output documentation for the other functions and
75 DOC: sections. May be specified multiple times.
76
77Output selection modifiers:
78 -no-doc-sections Do not output DOC: sections.
Daniel Vetter0b0f5f292016-06-03 22:21:34 +020079 -enable-lineno Enable output of #define LINENO lines. Only works with
80 reStructuredText format.
Jani Nikula88c2b572016-06-07 11:00:52 +030081 -export-file FILE Specify an additional FILE in which to look for
82 EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with
83 -export or -internal. May be specified multiple times.
Jani Nikulafadc0b32016-05-12 16:15:36 +030084
85Other parameters:
86 -v Verbose output, more warnings and other information.
87 -h Print this help.
88
89EOF
90 print $message;
91 exit 1;
92}
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94#
95# format of comments.
96# In the following table, (...)? signifies optional structure.
97# (...)* signifies 0 or more structure elements
98# /**
99# * function_name(:)? (- short description)?
100# (* @parameterx: (description of parameter x)?)*
101# (* a blank line)?
102# * (Description:)? (Description of function)?
103# * (section header: (section description)? )*
104# (*)?*/
105#
106# So .. the trivial example would be:
107#
108# /**
109# * my_function
Randy Dunlapb9d973282009-06-09 08:50:38 -0700110# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#
Randy Dunlap891dcd22007-02-10 01:45:53 -0800112# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113# after the last parameter specification.
114# e.g.
115# /**
116# * my_function - does my stuff
117# * @my_arg: its mine damnit
118# *
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800119# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120# */
121#
122# or, could also use:
123# /**
124# * my_function - does my stuff
125# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800126# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127# */
128# etc.
129#
Randy Dunlapb9d973282009-06-09 08:50:38 -0700130# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800131# enums and typedefs. Instead of the function name you must write the name
132# of the declaration; the struct/union/enum/typedef must always precede
133# the name. Nesting of declarations is not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134# Use the argument mechanism to document members or constants.
135# e.g.
136# /**
137# * struct my_struct - short description
138# * @a: first member
139# * @b: second member
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800140# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141# * Longer description
142# */
143# struct my_struct {
144# int a;
145# int b;
Martin Waitzaeec46b2005-11-13 16:08:13 -0800146# /* private: */
147# int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148# };
149#
150# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800151#
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300152# For really longs structs, you can also describe arguments inside the
153# body of the struct.
154# eg.
155# /**
156# * struct my_struct - short description
157# * @a: first member
158# * @b: second member
159# *
160# * Longer description
161# */
162# struct my_struct {
163# int a;
164# int b;
165# /**
166# * @c: This is longer description of C
167# *
168# * You can use paragraphs to describe arguments
169# * using this method.
170# */
171# int c;
172# };
173#
174# This should be use only for struct/enum members.
175#
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800176# You can also add additional sections. When documenting kernel functions you
177# should document the "Context:" of the function, e.g. whether the functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800179# empty line.
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100180# A non-void function should have a "Return:" section describing the return
181# value(s).
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800182# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183# appropriately in DocBook.
184#
185# Example:
186# /**
187# * user_function - function that can only be called in user context
188# * @a: some argument
189# * Context: !in_interrupt()
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800190# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191# * Some description
192# * Example:
193# * user_function(22);
194# */
195# ...
196#
197#
198# All descriptive text is further processed, scanning for the following special
199# patterns, which are highlighted appropriately.
200#
201# 'funcname()' - function
202# '$ENVVAR' - environmental variable
203# '&struct_name' - name of a structure (up to two words including 'struct')
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100204# '&struct_name.member' - name of a structure member
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205# '@parameter' - name of a parameter
206# '%CONST' - name of a constant.
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300207# '``LITERAL``' - literal string without any spaces on it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Randy Dunlap8484baa2011-01-05 16:28:43 -0800209## init lots of data
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211my $errors = 0;
212my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -0700213my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215# match expressions used to find embedded type information
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300216my $type_constant = '\b``([^\`]+)``\b';
217my $type_constant2 = '\%([-_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218my $type_func = '(\w+)\(\)';
Silvio Frickec950a172016-10-28 10:14:08 +0200219my $type_param = '\@(\w+(\.\.\.)?)';
Jonathan Corbet5219f182016-08-24 16:31:15 -0600220my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221my $type_env = '(\$\w+)';
Paolo Bonzinidf311752017-01-02 16:22:27 +0100222my $type_enum = '\&(enum\s*([_\w]+))';
223my $type_struct = '\&(struct\s*([_\w]+))';
224my $type_typedef = '\&(typedef\s*([_\w]+))';
225my $type_union = '\&(union\s*([_\w]+))';
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100226my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
Paolo Bonzinidf311752017-01-02 16:22:27 +0100227my $type_fallback = '\&([_\w]+)';
228my $type_enum_xml = '\&amp;(enum\s*([_\w]+))';
229my $type_struct_xml = '\&amp;(struct\s*([_\w]+))';
230my $type_typedef_xml = '\&amp;(typedef\s*([_\w]+))';
231my $type_union_xml = '\&amp;(union\s*([_\w]+))';
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100232my $type_member_xml = '\&amp;([_\w]+)(\.|-\&gt;)([_\w]+)';
Paolo Bonzinidf311752017-01-02 16:22:27 +0100233my $type_fallback_xml = '\&amp([_\w]+)';
Jani Nikulaf3341dc2016-05-26 16:35:02 +0300234my $type_member_func = $type_member . '\(\)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236# Output conversion substitutions.
237# One for each output format
238
239# these work fairly well
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300240my @highlights_html = (
241 [$type_constant, "<i>\$1</i>"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300242 [$type_constant2, "<i>\$1</i>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300243 [$type_func, "<b>\$1</b>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100244 [$type_enum_xml, "<i>\$1</i>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300245 [$type_struct_xml, "<i>\$1</i>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100246 [$type_typedef_xml, "<i>\$1</i>"],
247 [$type_union_xml, "<i>\$1</i>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300248 [$type_env, "<b><i>\$1</i></b>"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100249 [$type_param, "<tt><b>\$1</b></tt>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100250 [$type_member_xml, "<tt><i>\$1</i>\$2\$3</tt>"],
251 [$type_fallback_xml, "<i>\$1</i>"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300252 );
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700253my $local_lt = "\\\\\\\\lt:";
254my $local_gt = "\\\\\\\\gt:";
255my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Dan Luedtke1b40c192012-08-12 10:46:15 +0200257# html version 5
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300258my @highlights_html5 = (
259 [$type_constant, "<span class=\"const\">\$1</span>"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300260 [$type_constant2, "<span class=\"const\">\$1</span>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300261 [$type_func, "<span class=\"func\">\$1</span>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100262 [$type_enum_xml, "<span class=\"enum\">\$1</span>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300263 [$type_struct_xml, "<span class=\"struct\">\$1</span>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100264 [$type_typedef_xml, "<span class=\"typedef\">\$1</span>"],
265 [$type_union_xml, "<span class=\"union\">\$1</span>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300266 [$type_env, "<span class=\"env\">\$1</span>"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100267 [$type_param, "<span class=\"param\">\$1</span>]"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100268 [$type_member_xml, "<span class=\"literal\"><span class=\"struct\">\$1</span>\$2<span class=\"member\">\$3</span></span>"],
269 [$type_fallback_xml, "<span class=\"struct\">\$1</span>"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300270 );
Dan Luedtke1b40c192012-08-12 10:46:15 +0200271my $blankline_html5 = $local_lt . "br /" . $local_gt;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273# XML, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300274my @highlights_xml = (
275 ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"],
276 [$type_constant, "<constant>\$1</constant>"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300277 [$type_constant2, "<constant>\$1</constant>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100278 [$type_enum_xml, "<type>\$1</type>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300279 [$type_struct_xml, "<structname>\$1</structname>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100280 [$type_typedef_xml, "<type>\$1</type>"],
281 [$type_union_xml, "<structname>\$1</structname>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300282 [$type_param, "<parameter>\$1</parameter>"],
283 [$type_func, "<function>\$1</function>"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100284 [$type_env, "<envar>\$1</envar>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100285 [$type_member_xml, "<literal><structname>\$1</structname>\$2<structfield>\$3</structfield></literal>"],
286 [$type_fallback_xml, "<structname>\$1</structname>"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300287 );
Johannes Berg5c98fc02007-10-24 15:08:48 -0700288my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290# gnome, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300291my @highlights_gnome = (
292 [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300293 [$type_constant2, "<replaceable class=\"option\">\$1</replaceable>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300294 [$type_func, "<function>\$1</function>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100295 [$type_enum, "<type>\$1</type>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300296 [$type_struct, "<structname>\$1</structname>"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100297 [$type_typedef, "<type>\$1</type>"],
298 [$type_union, "<structname>\$1</structname>"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300299 [$type_env, "<envar>\$1</envar>"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100300 [$type_param, "<parameter>\$1</parameter>" ],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100301 [$type_member, "<literal><structname>\$1</structname>\$2<structfield>\$3</structfield></literal>"],
302 [$type_fallback, "<structname>\$1</structname>"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300303 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304my $blankline_gnome = "</para><para>\n";
305
306# these are pretty rough
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300307my @highlights_man = (
308 [$type_constant, "\$1"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300309 [$type_constant2, "\$1"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300310 [$type_func, "\\\\fB\$1\\\\fP"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100311 [$type_enum, "\\\\fI\$1\\\\fP"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300312 [$type_struct, "\\\\fI\$1\\\\fP"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100313 [$type_typedef, "\\\\fI\$1\\\\fP"],
314 [$type_union, "\\\\fI\$1\\\\fP"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100315 [$type_param, "\\\\fI\$1\\\\fP"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100316 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
317 [$type_fallback, "\\\\fI\$1\\\\fP"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300318 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319my $blankline_man = "";
320
321# text-mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300322my @highlights_text = (
323 [$type_constant, "\$1"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300324 [$type_constant2, "\$1"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300325 [$type_func, "\$1"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100326 [$type_enum, "\$1"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300327 [$type_struct, "\$1"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100328 [$type_typedef, "\$1"],
329 [$type_union, "\$1"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100330 [$type_param, "\$1"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100331 [$type_member, "\$1\$2\$3"],
332 [$type_fallback, "\$1"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300333 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334my $blankline_text = "";
335
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300336# rst-mode
337my @highlights_rst = (
338 [$type_constant, "``\$1``"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300339 [$type_constant2, "``\$1``"],
Jani Nikulaf3341dc2016-05-26 16:35:02 +0300340 # Note: need to escape () to avoid func matching later
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100341 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
342 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
Jonathan Corbet5219f182016-08-24 16:31:15 -0600343 [$type_fp_param, "**\$1\\\\(\\\\)**"],
Jani Nikulaa19bce62016-05-26 11:28:16 +0300344 [$type_func, "\\:c\\:func\\:`\$1()`"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100345 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
346 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
347 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
348 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
Jani Nikulaa7291e72016-05-26 13:57:06 +0300349 # in rst this can refer to any type
Paolo Bonzinidf311752017-01-02 16:22:27 +0100350 [$type_fallback, "\\:c\\:type\\:`\$1`"],
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300351 [$type_param, "**\$1**"]
352 );
353my $blankline_rst = "\n";
354
Johannes Bergeda603f2010-09-11 15:55:22 -0700355# list mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300356my @highlights_list = (
357 [$type_constant, "\$1"],
Mauro Carvalho Chehabb97f1932017-03-30 17:11:28 -0300358 [$type_constant2, "\$1"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300359 [$type_func, "\$1"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100360 [$type_enum, "\$1"],
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300361 [$type_struct, "\$1"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100362 [$type_typedef, "\$1"],
363 [$type_union, "\$1"],
Paolo Bonzini5267dd32017-01-02 16:22:26 +0100364 [$type_param, "\$1"],
Paolo Bonzinidf311752017-01-02 16:22:27 +0100365 [$type_member, "\$1"],
366 [$type_fallback, "\$1"]
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300367 );
Johannes Bergeda603f2010-09-11 15:55:22 -0700368my $blankline_list = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370# read arguments
Randy Dunlapb9d973282009-06-09 08:50:38 -0700371if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 usage();
373}
374
Randy Dunlap8484baa2011-01-05 16:28:43 -0800375my $kernelversion;
376my $dohighlight = "";
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378my $verbose = 0;
379my $output_mode = "man";
Daniel Santose314ba32012-10-04 17:15:08 -0700380my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 15:08:48 -0700381my $no_doc_sections = 0;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200382my $enable_lineno = 0;
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300383my @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384my $blankline = $blankline_man;
385my $modulename = "Kernel API";
Jani Nikulab6c3f452016-05-29 22:19:35 +0300386
387use constant {
388 OUTPUT_ALL => 0, # output all symbols and doc sections
389 OUTPUT_INCLUDE => 1, # output only specified symbols
390 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
391 OUTPUT_EXPORTED => 3, # output exported symbols
392 OUTPUT_INTERNAL => 4, # output non-exported symbols
393};
394my $output_selection = OUTPUT_ALL;
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100395my $show_not_found = 0;
396
Jani Nikula88c2b572016-06-07 11:00:52 +0300397my @export_file_list;
398
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100399my @build_time;
400if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
401 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
402 @build_time = gmtime($seconds);
403} else {
404 @build_time = localtime;
405}
406
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800407my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
408 'July', 'August', 'September', 'October',
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100409 'November', 'December')[$build_time[4]] .
410 " " . ($build_time[5]+1900);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Randy Dunlap8484baa2011-01-05 16:28:43 -0800412# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700413# They probably want to be tidied up, made more localised or something.
414# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700416my ($function, %function_table, %parametertypes, $declaration_purpose);
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200417my $declaration_start_line;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700418my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 13:06:03 -0800419my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Randy Dunlapbd0e88e2008-03-13 12:32:43 -0700421if (defined($ENV{'KBUILD_VERBOSE'})) {
422 $verbose = "$ENV{'KBUILD_VERBOSE'}";
423}
424
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800425# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
427# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
428# We keep track of number of generated entries and generate a dummy
429# if needs be to ensure the expanded template can be postprocessed
430# into html.
431my $section_counter = 0;
432
433my $lineprefix="";
434
Jani Nikula48af6062016-05-26 14:56:05 +0300435# Parser states
436use constant {
437 STATE_NORMAL => 0, # normal code
438 STATE_NAME => 1, # looking for function name
439 STATE_FIELD => 2, # scanning field start
440 STATE_PROTO => 3, # scanning prototype
441 STATE_DOCBLOCK => 4, # documentation block
442 STATE_INLINE => 5, # gathering documentation outside main block
443};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444my $state;
Randy Dunlap850622d2006-06-25 05:48:55 -0700445my $in_doc_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Jani Nikula48af6062016-05-26 14:56:05 +0300447# Inline documentation state
448use constant {
449 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
450 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
451 STATE_INLINE_TEXT => 2, # looking for member documentation
452 STATE_INLINE_END => 3, # done
453 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
454 # Spit a warning as it's not
455 # proper kernel-doc and ignore the rest.
456};
457my $inline_doc_state;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#declaration types: can be
460# 'function', 'struct', 'union', 'enum', 'typedef'
461my $decl_type;
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
464my $doc_end = '\*/';
465my $doc_com = '\s*\*\s*';
Daniel Santos12ae6772012-10-04 17:15:10 -0700466my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700467my $doc_decl = $doc_com . '(\w+)';
Jani Nikulaf624ade2016-05-29 11:35:28 +0300468# @params and a strictly limited set of supported section names
Jonathan Corbet8569de62016-06-09 13:35:05 -0600469my $doc_sect = $doc_com .
Jonathan Corbetef000282016-08-26 07:14:08 -0600470 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)';
Daniel Santos12ae6772012-10-04 17:15:10 -0700471my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700472my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Jani Nikula48af6062016-05-26 14:56:05 +0300473my $doc_inline_start = '^\s*/\*\*\s*$';
474my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)';
475my $doc_inline_end = '^\s*\*/\s*$';
Jani Nikula0c9aa202016-11-16 17:26:16 +0200476my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
Jani Nikula86ae2e32016-01-21 13:05:22 +0200477my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479my %parameterdescs;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200480my %parameterdesc_start_lines;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481my @parameterlist;
482my %sections;
483my @sectionlist;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200484my %section_start_lines;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800485my $sectcheck;
486my $struct_actual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488my $contents = "";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200489my $new_start_line = 0;
Jani Nikulaf624ade2016-05-29 11:35:28 +0300490
491# the canonical section names. see also $doc_sect above.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492my $section_default = "Description"; # default section
493my $section_intro = "Introduction";
494my $section = $section_default;
495my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100496my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498my $undescribed = "-- undescribed --";
499
500reset_state();
501
502while ($ARGV[0] =~ m/^-(.*)/) {
503 my $cmd = shift @ARGV;
504 if ($cmd eq "-html") {
505 $output_mode = "html";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300506 @highlights = @highlights_html;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 $blankline = $blankline_html;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200508 } elsif ($cmd eq "-html5") {
509 $output_mode = "html5";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300510 @highlights = @highlights_html5;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200511 $blankline = $blankline_html5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } elsif ($cmd eq "-man") {
513 $output_mode = "man";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300514 @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 $blankline = $blankline_man;
516 } elsif ($cmd eq "-text") {
517 $output_mode = "text";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300518 @highlights = @highlights_text;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 $blankline = $blankline_text;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300520 } elsif ($cmd eq "-rst") {
521 $output_mode = "rst";
522 @highlights = @highlights_rst;
523 $blankline = $blankline_rst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 } elsif ($cmd eq "-docbook") {
525 $output_mode = "xml";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300526 @highlights = @highlights_xml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 $blankline = $blankline_xml;
Johannes Bergeda603f2010-09-11 15:55:22 -0700528 } elsif ($cmd eq "-list") {
529 $output_mode = "list";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300530 @highlights = @highlights_list;
Johannes Bergeda603f2010-09-11 15:55:22 -0700531 $blankline = $blankline_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 } elsif ($cmd eq "-gnome") {
533 $output_mode = "gnome";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300534 @highlights = @highlights_gnome;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 $blankline = $blankline_gnome;
Matthew Wilcox3a025e12017-11-20 10:40:40 -0800536 } elsif ($cmd eq "-none") {
537 $output_mode = "none";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
539 $modulename = shift @ARGV;
540 } elsif ($cmd eq "-function") { # to only output specific functions
Jani Nikulab6c3f452016-05-29 22:19:35 +0300541 $output_selection = OUTPUT_INCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 $function = shift @ARGV;
543 $function_table{$function} = 1;
Jani Nikulab6c3f452016-05-29 22:19:35 +0300544 } elsif ($cmd eq "-nofunction") { # output all except specific functions
545 $output_selection = OUTPUT_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 $function = shift @ARGV;
547 $function_table{$function} = 1;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200548 } elsif ($cmd eq "-export") { # only exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300549 $output_selection = OUTPUT_EXPORTED;
Jani Nikulada9726e2016-06-07 10:29:59 +0300550 %function_table = ();
Jani Nikula86ae2e32016-01-21 13:05:22 +0200551 } elsif ($cmd eq "-internal") { # only non-exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300552 $output_selection = OUTPUT_INTERNAL;
Jani Nikulada9726e2016-06-07 10:29:59 +0300553 %function_table = ();
Jani Nikula88c2b572016-06-07 11:00:52 +0300554 } elsif ($cmd eq "-export-file") {
555 my $file = shift @ARGV;
556 push(@export_file_list, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 } elsif ($cmd eq "-v") {
558 $verbose = 1;
559 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
560 usage();
Johannes Berg4b445952007-10-24 15:08:48 -0700561 } elsif ($cmd eq '-no-doc-sections') {
562 $no_doc_sections = 1;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200563 } elsif ($cmd eq '-enable-lineno') {
564 $enable_lineno = 1;
Johannes Berge946c43a2013-11-12 15:11:12 -0800565 } elsif ($cmd eq '-show-not-found') {
566 $show_not_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568}
569
Randy Dunlap8484baa2011-01-05 16:28:43 -0800570# continue execution near EOF;
571
Borislav Petkov53f049f2007-05-08 00:30:54 -0700572# get kernel version from env
573sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 15:08:48 -0700574 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 00:30:54 -0700575
576 if (defined($ENV{'KERNELVERSION'})) {
577 $version = $ENV{'KERNELVERSION'};
578 }
579 return $version;
580}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200582#
583sub print_lineno {
584 my $lineno = shift;
585 if ($enable_lineno && defined($lineno)) {
586 print "#define LINENO " . $lineno . "\n";
587 }
588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589##
590# dumps section contents to arrays/hashes intended for that purpose.
591#
592sub dump_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700593 my $file = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 my $name = shift;
595 my $contents = join "\n", @_;
596
Jani Nikula13901ef2016-05-26 08:57:29 +0300597 if ($name =~ m/$type_param/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 $name = $1;
599 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800600 $sectcheck = $sectcheck . $name . " ";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200601 $parameterdesc_start_lines{$name} = $new_start_line;
602 $new_start_line = 0;
Randy Dunlapced69092008-12-01 13:14:03 -0800603 } elsif ($name eq "@\.\.\.") {
Randy Dunlapced69092008-12-01 13:14:03 -0800604 $name = "...";
605 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800606 $sectcheck = $sectcheck . $name . " ";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200607 $parameterdesc_start_lines{$name} = $new_start_line;
608 $new_start_line = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 } else {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700610 if (defined($sections{$name}) && ($sections{$name} ne "")) {
Jani Nikula95b6be92016-06-10 11:14:05 +0300611 # Only warn on user specified duplicate section names.
612 if ($name ne $section_default) {
613 print STDERR "${file}:$.: warning: duplicate section name '$name'\n";
614 ++$warnings;
615 }
Jani Nikula32217762016-05-29 09:40:44 +0300616 $sections{$name} .= $contents;
617 } else {
618 $sections{$name} = $contents;
619 push @sectionlist, $name;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +0200620 $section_start_lines{$name} = $new_start_line;
621 $new_start_line = 0;
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624}
625
626##
Johannes Bergb112e0f2007-10-24 15:08:48 -0700627# dump DOC: section after checking that it should go out
628#
629sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700630 my $file = shift;
Johannes Bergb112e0f2007-10-24 15:08:48 -0700631 my $name = shift;
632 my $contents = join "\n", @_;
633
Johannes Berg4b445952007-10-24 15:08:48 -0700634 if ($no_doc_sections) {
635 return;
636 }
637
Jani Nikulab6c3f452016-05-29 22:19:35 +0300638 if (($output_selection == OUTPUT_ALL) ||
639 ($output_selection == OUTPUT_INCLUDE &&
640 defined($function_table{$name})) ||
641 ($output_selection == OUTPUT_EXCLUDE &&
642 !defined($function_table{$name})))
Johannes Bergb112e0f2007-10-24 15:08:48 -0700643 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700644 dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 15:08:48 -0700645 output_blockhead({'sectionlist' => \@sectionlist,
646 'sections' => \%sections,
647 'module' => $modulename,
Jani Nikulab6c3f452016-05-29 22:19:35 +0300648 'content-only' => ($output_selection != OUTPUT_ALL), });
Johannes Bergb112e0f2007-10-24 15:08:48 -0700649 }
650}
651
652##
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653# output function
654#
655# parameterdescs, a hash.
656# function => "function name"
657# parameterlist => @list of parameters
658# parameterdescs => %parameter descriptions
659# sectionlist => @list of sections
Randy Dunlapa21217d2007-02-10 01:46:04 -0800660# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800661#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663sub output_highlight {
664 my $contents = join "\n",@_;
665 my $line;
666
667# DEBUG
668# if (!defined $contents) {
669# use Carp;
670# confess "output_highlight got called with no args?\n";
671# }
672
Dan Luedtke1b40c192012-08-12 10:46:15 +0200673 if ($output_mode eq "html" || $output_mode eq "html5" ||
674 $output_mode eq "xml") {
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700675 $contents = local_unescape($contents);
676 # convert data read & converted thru xml_escape() into &xyz; format:
Randy Dunlap2b35f4d2010-11-18 12:27:31 -0800677 $contents =~ s/\\\\\\/\&/g;
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700678 }
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700679# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 eval $dohighlight;
681 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700682# print STDERR "contents af:$contents\n";
683
Dan Luedtke1b40c192012-08-12 10:46:15 +0200684# strip whitespaces when generating html5
685 if ($output_mode eq "html5") {
686 $contents =~ s/^\s+//;
687 $contents =~ s/\s+$//;
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-04 17:15:10 -0700690 if (! $output_preformatted) {
691 $line =~ s/^\s*//;
692 }
Randy Dunlap3c308792007-05-08 00:24:39 -0700693 if ($line eq ""){
Daniel Santose314ba32012-10-04 17:15:08 -0700694 if (! $output_preformatted) {
695 print $lineprefix, local_unescape($blankline);
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -0700698 $line =~ s/\\\\\\/\&/g;
Randy Dunlapcdccb312007-07-19 01:48:25 -0700699 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
700 print "\\&$line";
701 } else {
702 print $lineprefix, $line;
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705 print "\n";
706 }
707}
708
Dan Luedtke1b40c192012-08-12 10:46:15 +0200709# output sections in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710sub output_section_html(%) {
711 my %args = %{$_[0]};
712 my $section;
713
714 foreach $section (@{$args{'sectionlist'}}) {
715 print "<h3>$section</h3>\n";
716 print "<blockquote>\n";
717 output_highlight($args{'sections'}{$section});
718 print "</blockquote>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722# output enum in html
723sub output_enum_html(%) {
724 my %args = %{$_[0]};
725 my ($parameter);
726 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700727 print "<h2>enum " . $args{'enum'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Randy Dunlapb9d973282009-06-09 08:50:38 -0700729 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 $count = 0;
731 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700732 print " <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if ($count != $#{$args{'parameterlist'}}) {
734 $count++;
735 print ",\n";
736 }
737 print "<br>";
738 }
739 print "};<br>\n";
740
741 print "<h3>Constants</h3>\n";
742 print "<dl>\n";
743 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700744 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 print "<dd>";
746 output_highlight($args{'parameterdescs'}{$parameter});
747 }
748 print "</dl>\n";
749 output_section_html(@_);
750 print "<hr>\n";
751}
752
Randy Dunlapd28bee02006-02-01 03:06:57 -0800753# output typedef in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754sub output_typedef_html(%) {
755 my %args = %{$_[0]};
756 my ($parameter);
757 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700758 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Randy Dunlapb9d973282009-06-09 08:50:38 -0700760 print "<b>typedef " . $args{'typedef'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 output_section_html(@_);
762 print "<hr>\n";
763}
764
765# output struct in html
766sub output_struct_html(%) {
767 my %args = %{$_[0]};
768 my ($parameter);
769
Randy Dunlapb9d973282009-06-09 08:50:38 -0700770 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
771 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 foreach $parameter (@{$args{'parameterlist'}}) {
773 if ($parameter =~ /^#/) {
774 print "$parameter<br>\n";
775 next;
776 }
777 my $parameter_name = $parameter;
778 $parameter_name =~ s/\[.*//;
779
Randy Dunlap3c308792007-05-08 00:24:39 -0700780 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 $type = $args{'parametertypes'}{$parameter};
782 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
783 # pointer-to-function
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700784 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700786 # bitfield
787 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 } else {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700789 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 }
792 print "};<br>\n";
793
794 print "<h3>Members</h3>\n";
795 print "<dl>\n";
796 foreach $parameter (@{$args{'parameterlist'}}) {
797 ($parameter =~ /^#/) && next;
798
799 my $parameter_name = $parameter;
800 $parameter_name =~ s/\[.*//;
801
Randy Dunlap3c308792007-05-08 00:24:39 -0700802 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700803 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 print "<dd>";
805 output_highlight($args{'parameterdescs'}{$parameter_name});
806 }
807 print "</dl>\n";
808 output_section_html(@_);
809 print "<hr>\n";
810}
811
812# output function in html
813sub output_function_html(%) {
814 my %args = %{$_[0]};
815 my ($parameter, $section);
816 my $count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Randy Dunlapb9d973282009-06-09 08:50:38 -0700818 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
819 print "<i>" . $args{'functiontype'} . "</i>\n";
820 print "<b>" . $args{'function'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 print "(";
822 $count = 0;
823 foreach $parameter (@{$args{'parameterlist'}}) {
824 $type = $args{'parametertypes'}{$parameter};
825 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
826 # pointer-to-function
827 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
828 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700829 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831 if ($count != $#{$args{'parameterlist'}}) {
832 $count++;
833 print ",\n";
834 }
835 }
836 print ")\n";
837
838 print "<h3>Arguments</h3>\n";
839 print "<dl>\n";
840 foreach $parameter (@{$args{'parameterlist'}}) {
841 my $parameter_name = $parameter;
842 $parameter_name =~ s/\[.*//;
843
Randy Dunlap3c308792007-05-08 00:24:39 -0700844 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700845 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 print "<dd>";
847 output_highlight($args{'parameterdescs'}{$parameter_name});
848 }
849 print "</dl>\n";
850 output_section_html(@_);
851 print "<hr>\n";
852}
853
Johannes Bergb112e0f2007-10-24 15:08:48 -0700854# output DOC: block header in html
855sub output_blockhead_html(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 my %args = %{$_[0]};
857 my ($parameter, $section);
858 my $count;
859
860 foreach $section (@{$args{'sectionlist'}}) {
861 print "<h3>$section</h3>\n";
862 print "<ul>\n";
863 output_highlight($args{'sections'}{$section});
864 print "</ul>\n";
865 }
866 print "<hr>\n";
867}
868
Dan Luedtke1b40c192012-08-12 10:46:15 +0200869# output sections in html5
870sub output_section_html5(%) {
871 my %args = %{$_[0]};
872 my $section;
873
874 foreach $section (@{$args{'sectionlist'}}) {
875 print "<section>\n";
876 print "<h1>$section</h1>\n";
877 print "<p>\n";
878 output_highlight($args{'sections'}{$section});
879 print "</p>\n";
880 print "</section>\n";
881 }
882}
883
884# output enum in html5
885sub output_enum_html5(%) {
886 my %args = %{$_[0]};
887 my ($parameter);
888 my $count;
889 my $html5id;
890
891 $html5id = $args{'enum'};
892 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
893 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
894 print "<h1>enum " . $args{'enum'} . "</h1>\n";
895 print "<ol class=\"code\">\n";
896 print "<li>";
897 print "<span class=\"keyword\">enum</span> ";
898 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
899 print "</li>\n";
900 $count = 0;
901 foreach $parameter (@{$args{'parameterlist'}}) {
902 print "<li class=\"indent\">";
903 print "<span class=\"param\">" . $parameter . "</span>";
904 if ($count != $#{$args{'parameterlist'}}) {
905 $count++;
906 print ",";
907 }
908 print "</li>\n";
909 }
910 print "<li>};</li>\n";
911 print "</ol>\n";
912
913 print "<section>\n";
914 print "<h1>Constants</h1>\n";
915 print "<dl>\n";
916 foreach $parameter (@{$args{'parameterlist'}}) {
917 print "<dt>" . $parameter . "</dt>\n";
918 print "<dd>";
919 output_highlight($args{'parameterdescs'}{$parameter});
920 print "</dd>\n";
921 }
922 print "</dl>\n";
923 print "</section>\n";
924 output_section_html5(@_);
925 print "</article>\n";
926}
927
928# output typedef in html5
929sub output_typedef_html5(%) {
930 my %args = %{$_[0]};
931 my ($parameter);
932 my $count;
933 my $html5id;
934
935 $html5id = $args{'typedef'};
936 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
937 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
938 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
939
940 print "<ol class=\"code\">\n";
941 print "<li>";
942 print "<span class=\"keyword\">typedef</span> ";
943 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
944 print "</li>\n";
945 print "</ol>\n";
946 output_section_html5(@_);
947 print "</article>\n";
948}
949
950# output struct in html5
951sub output_struct_html5(%) {
952 my %args = %{$_[0]};
953 my ($parameter);
954 my $html5id;
955
956 $html5id = $args{'struct'};
957 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
958 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
959 print "<hgroup>\n";
960 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
961 print "<h2>". $args{'purpose'} . "</h2>\n";
962 print "</hgroup>\n";
963 print "<ol class=\"code\">\n";
964 print "<li>";
965 print "<span class=\"type\">" . $args{'type'} . "</span> ";
966 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
967 print "</li>\n";
968 foreach $parameter (@{$args{'parameterlist'}}) {
969 print "<li class=\"indent\">";
970 if ($parameter =~ /^#/) {
971 print "<span class=\"param\">" . $parameter ."</span>\n";
972 print "</li>\n";
973 next;
974 }
975 my $parameter_name = $parameter;
976 $parameter_name =~ s/\[.*//;
977
978 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
979 $type = $args{'parametertypes'}{$parameter};
980 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
981 # pointer-to-function
982 print "<span class=\"type\">$1</span> ";
983 print "<span class=\"param\">$parameter</span>";
984 print "<span class=\"type\">)</span> ";
985 print "(<span class=\"args\">$2</span>);";
986 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
987 # bitfield
988 print "<span class=\"type\">$1</span> ";
989 print "<span class=\"param\">$parameter</span>";
990 print "<span class=\"bits\">$2</span>;";
991 } else {
992 print "<span class=\"type\">$type</span> ";
993 print "<span class=\"param\">$parameter</span>;";
994 }
995 print "</li>\n";
996 }
997 print "<li>};</li>\n";
998 print "</ol>\n";
999
1000 print "<section>\n";
1001 print "<h1>Members</h1>\n";
1002 print "<dl>\n";
1003 foreach $parameter (@{$args{'parameterlist'}}) {
1004 ($parameter =~ /^#/) && next;
1005
1006 my $parameter_name = $parameter;
1007 $parameter_name =~ s/\[.*//;
1008
1009 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1010 print "<dt>" . $parameter . "</dt>\n";
1011 print "<dd>";
1012 output_highlight($args{'parameterdescs'}{$parameter_name});
1013 print "</dd>\n";
1014 }
1015 print "</dl>\n";
1016 print "</section>\n";
1017 output_section_html5(@_);
1018 print "</article>\n";
1019}
1020
1021# output function in html5
1022sub output_function_html5(%) {
1023 my %args = %{$_[0]};
1024 my ($parameter, $section);
1025 my $count;
1026 my $html5id;
1027
1028 $html5id = $args{'function'};
1029 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
1030 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
1031 print "<hgroup>\n";
1032 print "<h1>" . $args{'function'} . "</h1>";
1033 print "<h2>" . $args{'purpose'} . "</h2>\n";
1034 print "</hgroup>\n";
1035 print "<ol class=\"code\">\n";
1036 print "<li>";
1037 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
1038 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
1039 print "</li>";
1040 $count = 0;
1041 foreach $parameter (@{$args{'parameterlist'}}) {
1042 print "<li class=\"indent\">";
1043 $type = $args{'parametertypes'}{$parameter};
1044 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1045 # pointer-to-function
1046 print "<span class=\"type\">$1</span> ";
1047 print "<span class=\"param\">$parameter</span>";
1048 print "<span class=\"type\">)</span> ";
1049 print "(<span class=\"args\">$2</span>)";
1050 } else {
1051 print "<span class=\"type\">$type</span> ";
1052 print "<span class=\"param\">$parameter</span>";
1053 }
1054 if ($count != $#{$args{'parameterlist'}}) {
1055 $count++;
1056 print ",";
1057 }
1058 print "</li>\n";
1059 }
1060 print "<li>)</li>\n";
1061 print "</ol>\n";
1062
1063 print "<section>\n";
1064 print "<h1>Arguments</h1>\n";
1065 print "<p>\n";
1066 print "<dl>\n";
1067 foreach $parameter (@{$args{'parameterlist'}}) {
1068 my $parameter_name = $parameter;
1069 $parameter_name =~ s/\[.*//;
1070
1071 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1072 print "<dt>" . $parameter . "</dt>\n";
1073 print "<dd>";
1074 output_highlight($args{'parameterdescs'}{$parameter_name});
1075 print "</dd>\n";
1076 }
1077 print "</dl>\n";
1078 print "</section>\n";
1079 output_section_html5(@_);
1080 print "</article>\n";
1081}
1082
1083# output DOC: block header in html5
1084sub output_blockhead_html5(%) {
1085 my %args = %{$_[0]};
1086 my ($parameter, $section);
1087 my $count;
1088 my $html5id;
1089
1090 foreach $section (@{$args{'sectionlist'}}) {
1091 $html5id = $section;
1092 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
1093 print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
1094 print "<h1>$section</h1>\n";
1095 print "<p>\n";
1096 output_highlight($args{'sections'}{$section});
1097 print "</p>\n";
1098 }
1099 print "</article>\n";
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102sub output_section_xml(%) {
1103 my %args = %{$_[0]};
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001104 my $section;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 # print out each section
1106 $lineprefix=" ";
1107 foreach $section (@{$args{'sectionlist'}}) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001108 print "<refsect1>\n";
1109 print "<title>$section</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001111 print "<informalexample><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001112 $output_preformatted = 1;
Rich Walkerc73894c2005-05-01 08:59:26 -07001113 } else {
1114 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001117 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001119 print "</programlisting></informalexample>\n";
1120 } else {
1121 print "</para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Rich Walkerc73894c2005-05-01 08:59:26 -07001123 print "</refsect1>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
1125}
1126
1127# output function in XML DocBook
1128sub output_function_xml(%) {
1129 my %args = %{$_[0]};
1130 my ($parameter, $section);
1131 my $count;
1132 my $id;
1133
Randy Dunlapb9d973282009-06-09 08:50:38 -07001134 $id = "API-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 $id =~ s/[^A-Za-z0-9]/-/g;
1136
Pavel Pisa5449bc92007-02-10 01:45:37 -08001137 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001138 print "<refentryinfo>\n";
1139 print " <title>LINUX</title>\n";
1140 print " <productname>Kernel Hackers Manual</productname>\n";
1141 print " <date>$man_date</date>\n";
1142 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001144 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001145 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001146 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 print "</refmeta>\n";
1148 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001149 print " <refname>" . $args{'function'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 print " <refpurpose>\n";
1151 print " ";
1152 output_highlight ($args{'purpose'});
1153 print " </refpurpose>\n";
1154 print "</refnamediv>\n";
1155
1156 print "<refsynopsisdiv>\n";
1157 print " <title>Synopsis</title>\n";
1158 print " <funcsynopsis><funcprototype>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001159 print " <funcdef>" . $args{'functiontype'} . " ";
1160 print "<function>" . $args{'function'} . " </function></funcdef>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 $count = 0;
1163 if ($#{$args{'parameterlist'}} >= 0) {
1164 foreach $parameter (@{$args{'parameterlist'}}) {
1165 $type = $args{'parametertypes'}{$parameter};
1166 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1167 # pointer-to-function
1168 print " <paramdef>$1<parameter>$parameter</parameter>)\n";
1169 print " <funcparams>$2</funcparams></paramdef>\n";
1170 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001171 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 print " <parameter>$parameter</parameter></paramdef>\n";
1173 }
1174 }
1175 } else {
Martin Waitz6013d542005-05-01 08:59:25 -07001176 print " <void/>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178 print " </funcprototype></funcsynopsis>\n";
1179 print "</refsynopsisdiv>\n";
1180
1181 # print parameters
1182 print "<refsect1>\n <title>Arguments</title>\n";
1183 if ($#{$args{'parameterlist'}} >= 0) {
1184 print " <variablelist>\n";
1185 foreach $parameter (@{$args{'parameterlist'}}) {
1186 my $parameter_name = $parameter;
1187 $parameter_name =~ s/\[.*//;
Paolo Bonzinifc6d7af2017-01-02 16:22:25 +01001188 $type = $args{'parametertypes'}{$parameter};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Paolo Bonzinifc6d7af2017-01-02 16:22:25 +01001190 print " <varlistentry>\n <term><parameter>$type $parameter</parameter></term>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 print " <listitem>\n <para>\n";
1192 $lineprefix=" ";
1193 output_highlight($args{'parameterdescs'}{$parameter_name});
1194 print " </para>\n </listitem>\n </varlistentry>\n";
1195 }
1196 print " </variablelist>\n";
1197 } else {
1198 print " <para>\n None\n </para>\n";
1199 }
1200 print "</refsect1>\n";
1201
1202 output_section_xml(@_);
1203 print "</refentry>\n\n";
1204}
1205
1206# output struct in XML DocBook
1207sub output_struct_xml(%) {
1208 my %args = %{$_[0]};
1209 my ($parameter, $section);
1210 my $id;
1211
Randy Dunlapb9d973282009-06-09 08:50:38 -07001212 $id = "API-struct-" . $args{'struct'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 $id =~ s/[^A-Za-z0-9]/-/g;
1214
Pavel Pisa5449bc92007-02-10 01:45:37 -08001215 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001216 print "<refentryinfo>\n";
1217 print " <title>LINUX</title>\n";
1218 print " <productname>Kernel Hackers Manual</productname>\n";
1219 print " <date>$man_date</date>\n";
1220 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001222 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001223 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001224 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 print "</refmeta>\n";
1226 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001227 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 print " <refpurpose>\n";
1229 print " ";
1230 output_highlight ($args{'purpose'});
1231 print " </refpurpose>\n";
1232 print "</refnamediv>\n";
1233
1234 print "<refsynopsisdiv>\n";
1235 print " <title>Synopsis</title>\n";
1236 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001237 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 foreach $parameter (@{$args{'parameterlist'}}) {
1239 if ($parameter =~ /^#/) {
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08001240 my $prm = $parameter;
1241 # convert data read & converted thru xml_escape() into &xyz; format:
1242 # This allows us to have #define macros interspersed in a struct.
1243 $prm =~ s/\\\\\\/\&/g;
1244 print "$prm\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 next;
1246 }
1247
1248 my $parameter_name = $parameter;
1249 $parameter_name =~ s/\[.*//;
1250
1251 defined($args{'parameterdescs'}{$parameter_name}) || next;
Randy Dunlap3c308792007-05-08 00:24:39 -07001252 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 $type = $args{'parametertypes'}{$parameter};
1254 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1255 # pointer-to-function
1256 print " $1 $parameter) ($2);\n";
1257 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001258 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 print " $1 $parameter$2;\n";
1260 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001261 print " " . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263 }
1264 print "};";
1265 print " </programlisting>\n";
1266 print "</refsynopsisdiv>\n";
1267
1268 print " <refsect1>\n";
1269 print " <title>Members</title>\n";
1270
Randy Dunlap39f00c02008-09-22 13:57:44 -07001271 if ($#{$args{'parameterlist'}} >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 print " <variablelist>\n";
1273 foreach $parameter (@{$args{'parameterlist'}}) {
1274 ($parameter =~ /^#/) && next;
1275
1276 my $parameter_name = $parameter;
1277 $parameter_name =~ s/\[.*//;
1278
1279 defined($args{'parameterdescs'}{$parameter_name}) || next;
1280 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Paolo Bonzinifc6d7af2017-01-02 16:22:25 +01001281 $type = $args{'parametertypes'}{$parameter};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 print " <varlistentry>";
Paolo Bonzinifc6d7af2017-01-02 16:22:25 +01001283 print " <term><literal>$type $parameter</literal></term>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 print " <listitem><para>\n";
1285 output_highlight($args{'parameterdescs'}{$parameter_name});
1286 print " </para></listitem>\n";
1287 print " </varlistentry>\n";
1288 }
1289 print " </variablelist>\n";
Randy Dunlap39f00c02008-09-22 13:57:44 -07001290 } else {
1291 print " <para>\n None\n </para>\n";
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 print " </refsect1>\n";
1294
1295 output_section_xml(@_);
1296
1297 print "</refentry>\n\n";
1298}
1299
1300# output enum in XML DocBook
1301sub output_enum_xml(%) {
1302 my %args = %{$_[0]};
1303 my ($parameter, $section);
1304 my $count;
1305 my $id;
1306
Randy Dunlapb9d973282009-06-09 08:50:38 -07001307 $id = "API-enum-" . $args{'enum'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 $id =~ s/[^A-Za-z0-9]/-/g;
1309
Pavel Pisa5449bc92007-02-10 01:45:37 -08001310 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001311 print "<refentryinfo>\n";
1312 print " <title>LINUX</title>\n";
1313 print " <productname>Kernel Hackers Manual</productname>\n";
1314 print " <date>$man_date</date>\n";
1315 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001317 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001318 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001319 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 print "</refmeta>\n";
1321 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001322 print " <refname>enum " . $args{'enum'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 print " <refpurpose>\n";
1324 print " ";
1325 output_highlight ($args{'purpose'});
1326 print " </refpurpose>\n";
1327 print "</refnamediv>\n";
1328
1329 print "<refsynopsisdiv>\n";
1330 print " <title>Synopsis</title>\n";
1331 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001332 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 $count = 0;
1334 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001335 print " $parameter";
1336 if ($count != $#{$args{'parameterlist'}}) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 $count++;
1338 print ",";
Randy Dunlap3c308792007-05-08 00:24:39 -07001339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 print "\n";
1341 }
1342 print "};";
1343 print " </programlisting>\n";
1344 print "</refsynopsisdiv>\n";
1345
1346 print "<refsect1>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001347 print " <title>Constants</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 print " <variablelist>\n";
1349 foreach $parameter (@{$args{'parameterlist'}}) {
1350 my $parameter_name = $parameter;
1351 $parameter_name =~ s/\[.*//;
1352
1353 print " <varlistentry>";
1354 print " <term>$parameter</term>\n";
1355 print " <listitem><para>\n";
1356 output_highlight($args{'parameterdescs'}{$parameter_name});
1357 print " </para></listitem>\n";
1358 print " </varlistentry>\n";
1359 }
1360 print " </variablelist>\n";
1361 print "</refsect1>\n";
1362
1363 output_section_xml(@_);
1364
1365 print "</refentry>\n\n";
1366}
1367
1368# output typedef in XML DocBook
1369sub output_typedef_xml(%) {
1370 my %args = %{$_[0]};
1371 my ($parameter, $section);
1372 my $id;
1373
Randy Dunlapb9d973282009-06-09 08:50:38 -07001374 $id = "API-typedef-" . $args{'typedef'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 $id =~ s/[^A-Za-z0-9]/-/g;
1376
Pavel Pisa5449bc92007-02-10 01:45:37 -08001377 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001378 print "<refentryinfo>\n";
1379 print " <title>LINUX</title>\n";
1380 print " <productname>Kernel Hackers Manual</productname>\n";
1381 print " <date>$man_date</date>\n";
1382 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001384 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001385 print " <manvolnum>9</manvolnum>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 print "</refmeta>\n";
1387 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001388 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 print " <refpurpose>\n";
1390 print " ";
1391 output_highlight ($args{'purpose'});
1392 print " </refpurpose>\n";
1393 print "</refnamediv>\n";
1394
1395 print "<refsynopsisdiv>\n";
1396 print " <title>Synopsis</title>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001397 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 print "</refsynopsisdiv>\n";
1399
1400 output_section_xml(@_);
1401
1402 print "</refentry>\n\n";
1403}
1404
1405# output in XML DocBook
Johannes Bergb112e0f2007-10-24 15:08:48 -07001406sub output_blockhead_xml(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 my %args = %{$_[0]};
1408 my ($parameter, $section);
1409 my $count;
1410
1411 my $id = $args{'module'};
1412 $id =~ s/[^A-Za-z0-9]/-/g;
1413
1414 # print out each section
1415 $lineprefix=" ";
1416 foreach $section (@{$args{'sectionlist'}}) {
Johannes Bergb112e0f2007-10-24 15:08:48 -07001417 if (!$args{'content-only'}) {
1418 print "<refsect1>\n <title>$section</title>\n";
1419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if ($section =~ m/EXAMPLE/i) {
1421 print "<example><para>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001422 $output_preformatted = 1;
Johannes Bergb112e0f2007-10-24 15:08:48 -07001423 } else {
1424 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001427 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if ($section =~ m/EXAMPLE/i) {
1429 print "</para></example>\n";
Johannes Bergb112e0f2007-10-24 15:08:48 -07001430 } else {
1431 print "</para>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
Johannes Bergb112e0f2007-10-24 15:08:48 -07001433 if (!$args{'content-only'}) {
1434 print "\n</refsect1>\n";
1435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437
1438 print "\n\n";
1439}
1440
1441# output in XML DocBook
1442sub output_function_gnome {
1443 my %args = %{$_[0]};
1444 my ($parameter, $section);
1445 my $count;
1446 my $id;
1447
Randy Dunlapb9d973282009-06-09 08:50:38 -07001448 $id = $args{'module'} . "-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 $id =~ s/[^A-Za-z0-9]/-/g;
1450
1451 print "<sect2>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001452 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 print " <funcsynopsis>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001455 print " <funcdef>" . $args{'functiontype'} . " ";
1456 print "<function>" . $args{'function'} . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 print "</function></funcdef>\n";
1458
1459 $count = 0;
1460 if ($#{$args{'parameterlist'}} >= 0) {
1461 foreach $parameter (@{$args{'parameterlist'}}) {
1462 $type = $args{'parametertypes'}{$parameter};
1463 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1464 # pointer-to-function
1465 print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1466 print " <funcparams>$2</funcparams></paramdef>\n";
1467 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001468 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 print " <parameter>$parameter</parameter></paramdef>\n";
1470 }
1471 }
1472 } else {
1473 print " <void>\n";
1474 }
1475 print " </funcsynopsis>\n";
1476 if ($#{$args{'parameterlist'}} >= 0) {
1477 print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1478 print "<tgroup cols=\"2\">\n";
1479 print "<colspec colwidth=\"2*\">\n";
1480 print "<colspec colwidth=\"8*\">\n";
1481 print "<tbody>\n";
1482 foreach $parameter (@{$args{'parameterlist'}}) {
1483 my $parameter_name = $parameter;
1484 $parameter_name =~ s/\[.*//;
1485
1486 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1487 print " <entry>\n";
1488 $lineprefix=" ";
1489 output_highlight($args{'parameterdescs'}{$parameter_name});
1490 print " </entry></row>\n";
1491 }
1492 print " </tbody></tgroup></informaltable>\n";
1493 } else {
1494 print " <para>\n None\n </para>\n";
1495 }
1496
1497 # print out each section
1498 $lineprefix=" ";
1499 foreach $section (@{$args{'sectionlist'}}) {
1500 print "<simplesect>\n <title>$section</title>\n";
1501 if ($section =~ m/EXAMPLE/i) {
1502 print "<example><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001503 $output_preformatted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 } else {
1505 }
1506 print "<para>\n";
1507 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001508 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 print "</para>\n";
1510 if ($section =~ m/EXAMPLE/i) {
1511 print "</programlisting></example>\n";
1512 } else {
1513 }
1514 print " </simplesect>\n";
1515 }
1516
1517 print "</sect2>\n\n";
1518}
1519
1520##
1521# output function in man
1522sub output_function_man(%) {
1523 my %args = %{$_[0]};
1524 my ($parameter, $section);
1525 my $count;
1526
1527 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1528
1529 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001530 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 print ".SH SYNOPSIS\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001533 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001534 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001535 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001536 print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 $count = 0;
1539 my $parenth = "(";
1540 my $post = ",";
1541 foreach my $parameter (@{$args{'parameterlist'}}) {
1542 if ($count == $#{$args{'parameterlist'}}) {
1543 $post = ");";
1544 }
1545 $type = $args{'parametertypes'}{$parameter};
1546 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1547 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001548 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 } else {
1550 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001551 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553 $count++;
1554 $parenth = "";
1555 }
1556
1557 print ".SH ARGUMENTS\n";
1558 foreach $parameter (@{$args{'parameterlist'}}) {
1559 my $parameter_name = $parameter;
1560 $parameter_name =~ s/\[.*//;
1561
Randy Dunlapb9d973282009-06-09 08:50:38 -07001562 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 output_highlight($args{'parameterdescs'}{$parameter_name});
1564 }
1565 foreach $section (@{$args{'sectionlist'}}) {
1566 print ".SH \"", uc $section, "\"\n";
1567 output_highlight($args{'sections'}{$section});
1568 }
1569}
1570
1571##
1572# output enum in man
1573sub output_enum_man(%) {
1574 my %args = %{$_[0]};
1575 my ($parameter, $section);
1576 my $count;
1577
1578 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1579
1580 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001581 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001584 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 $count = 0;
1586 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001587 print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if ($count == $#{$args{'parameterlist'}}) {
1589 print "\n};\n";
1590 last;
1591 }
1592 else {
1593 print ", \n.br\n";
1594 }
1595 $count++;
1596 }
1597
1598 print ".SH Constants\n";
1599 foreach $parameter (@{$args{'parameterlist'}}) {
1600 my $parameter_name = $parameter;
1601 $parameter_name =~ s/\[.*//;
1602
Randy Dunlapb9d973282009-06-09 08:50:38 -07001603 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 output_highlight($args{'parameterdescs'}{$parameter_name});
1605 }
1606 foreach $section (@{$args{'sectionlist'}}) {
1607 print ".SH \"$section\"\n";
1608 output_highlight($args{'sections'}{$section});
1609 }
1610}
1611
1612##
1613# output struct in man
1614sub output_struct_man(%) {
1615 my %args = %{$_[0]};
1616 my ($parameter, $section);
1617
Randy Dunlapb9d973282009-06-09 08:50:38 -07001618 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001621 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001624 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 foreach my $parameter (@{$args{'parameterlist'}}) {
1627 if ($parameter =~ /^#/) {
1628 print ".BI \"$parameter\"\n.br\n";
1629 next;
1630 }
1631 my $parameter_name = $parameter;
1632 $parameter_name =~ s/\[.*//;
1633
Randy Dunlap3c308792007-05-08 00:24:39 -07001634 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 $type = $args{'parametertypes'}{$parameter};
1636 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1637 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001638 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy.Dunlap1d7e1d42006-07-01 04:36:34 -07001640 # bitfield
Randy Dunlapb9d973282009-06-09 08:50:38 -07001641 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 } else {
1643 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001644 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646 print "\n.br\n";
1647 }
1648 print "};\n.br\n";
1649
Randy Dunlapc51d3da2006-06-25 05:49:14 -07001650 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 foreach $parameter (@{$args{'parameterlist'}}) {
1652 ($parameter =~ /^#/) && next;
1653
1654 my $parameter_name = $parameter;
1655 $parameter_name =~ s/\[.*//;
1656
Randy Dunlap3c308792007-05-08 00:24:39 -07001657 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001658 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 output_highlight($args{'parameterdescs'}{$parameter_name});
1660 }
1661 foreach $section (@{$args{'sectionlist'}}) {
1662 print ".SH \"$section\"\n";
1663 output_highlight($args{'sections'}{$section});
1664 }
1665}
1666
1667##
1668# output typedef in man
1669sub output_typedef_man(%) {
1670 my %args = %{$_[0]};
1671 my ($parameter, $section);
1672
1673 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1674
1675 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001676 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 foreach $section (@{$args{'sectionlist'}}) {
1679 print ".SH \"$section\"\n";
1680 output_highlight($args{'sections'}{$section});
1681 }
1682}
1683
Johannes Bergb112e0f2007-10-24 15:08:48 -07001684sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 my %args = %{$_[0]};
1686 my ($parameter, $section);
1687 my $count;
1688
1689 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1690
1691 foreach $section (@{$args{'sectionlist'}}) {
1692 print ".SH \"$section\"\n";
1693 output_highlight($args{'sections'}{$section});
1694 }
1695}
1696
1697##
1698# output in text
1699sub output_function_text(%) {
1700 my %args = %{$_[0]};
1701 my ($parameter, $section);
Randy Dunlapa21217d2007-02-10 01:46:04 -08001702 my $start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Randy Dunlapf47634b2006-07-01 04:36:36 -07001704 print "Name:\n\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001705 print $args{'function'} . " - " . $args{'purpose'} . "\n";
Randy Dunlapf47634b2006-07-01 04:36:36 -07001706
1707 print "\nSynopsis:\n\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001708 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001709 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001710 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001711 $start = $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 print $start;
Randy Dunlapa21217d2007-02-10 01:46:04 -08001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 my $count = 0;
1716 foreach my $parameter (@{$args{'parameterlist'}}) {
1717 $type = $args{'parametertypes'}{$parameter};
1718 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1719 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001720 print $1 . $parameter . ") (" . $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001722 print $type . " " . $parameter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
1724 if ($count != $#{$args{'parameterlist'}}) {
1725 $count++;
1726 print ",\n";
1727 print " " x length($start);
1728 } else {
1729 print ");\n\n";
1730 }
1731 }
1732
1733 print "Arguments:\n\n";
1734 foreach $parameter (@{$args{'parameterlist'}}) {
1735 my $parameter_name = $parameter;
1736 $parameter_name =~ s/\[.*//;
1737
Randy Dunlapb9d973282009-06-09 08:50:38 -07001738 print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
1740 output_section_text(@_);
1741}
1742
1743#output sections in text
1744sub output_section_text(%) {
1745 my %args = %{$_[0]};
1746 my $section;
1747
1748 print "\n";
1749 foreach $section (@{$args{'sectionlist'}}) {
1750 print "$section:\n\n";
1751 output_highlight($args{'sections'}{$section});
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 print "\n\n";
1754}
1755
1756# output enum in text
1757sub output_enum_text(%) {
1758 my %args = %{$_[0]};
1759 my ($parameter);
1760 my $count;
1761 print "Enum:\n\n";
1762
Randy Dunlapb9d973282009-06-09 08:50:38 -07001763 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1764 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 $count = 0;
1766 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001767 print "\t$parameter";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if ($count != $#{$args{'parameterlist'}}) {
1769 $count++;
1770 print ",";
1771 }
1772 print "\n";
1773 }
1774 print "};\n\n";
1775
1776 print "Constants:\n\n";
1777 foreach $parameter (@{$args{'parameterlist'}}) {
1778 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001779 print $args{'parameterdescs'}{$parameter} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
1782 output_section_text(@_);
1783}
1784
1785# output typedef in text
1786sub output_typedef_text(%) {
1787 my %args = %{$_[0]};
1788 my ($parameter);
1789 my $count;
1790 print "Typedef:\n\n";
1791
Randy Dunlapb9d973282009-06-09 08:50:38 -07001792 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 output_section_text(@_);
1794}
1795
1796# output struct as text
1797sub output_struct_text(%) {
1798 my %args = %{$_[0]};
1799 my ($parameter);
1800
Randy Dunlapb9d973282009-06-09 08:50:38 -07001801 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1802 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 foreach $parameter (@{$args{'parameterlist'}}) {
1804 if ($parameter =~ /^#/) {
1805 print "$parameter\n";
1806 next;
1807 }
1808
1809 my $parameter_name = $parameter;
1810 $parameter_name =~ s/\[.*//;
1811
Randy Dunlap3c308792007-05-08 00:24:39 -07001812 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 $type = $args{'parametertypes'}{$parameter};
1814 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1815 # pointer-to-function
1816 print "\t$1 $parameter) ($2);\n";
1817 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001818 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 print "\t$1 $parameter$2;\n";
1820 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001821 print "\t" . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823 }
1824 print "};\n\n";
1825
1826 print "Members:\n\n";
1827 foreach $parameter (@{$args{'parameterlist'}}) {
1828 ($parameter =~ /^#/) && next;
1829
1830 my $parameter_name = $parameter;
1831 $parameter_name =~ s/\[.*//;
1832
Randy Dunlap3c308792007-05-08 00:24:39 -07001833 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001835 print $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837 print "\n";
1838 output_section_text(@_);
1839}
1840
Johannes Bergb112e0f2007-10-24 15:08:48 -07001841sub output_blockhead_text(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 my %args = %{$_[0]};
1843 my ($parameter, $section);
1844
1845 foreach $section (@{$args{'sectionlist'}}) {
1846 print " $section:\n";
1847 print " -> ";
1848 output_highlight($args{'sections'}{$section});
1849 }
1850}
1851
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001852##
1853# output in restructured text
1854#
1855
1856#
1857# This could use some work; it's used to output the DOC: sections, and
1858# starts by putting out the name of the doc section itself, but that tends
1859# to duplicate a header already in the template file.
1860#
1861sub output_blockhead_rst(%) {
1862 my %args = %{$_[0]};
1863 my ($parameter, $section);
1864
1865 foreach $section (@{$args{'sectionlist'}}) {
Jani Nikula9e721842016-05-29 22:27:35 +03001866 if ($output_selection != OUTPUT_INCLUDE) {
1867 print "**$section**\n\n";
1868 }
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001869 print_lineno($section_start_lines{$section});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001870 output_highlight_rst($args{'sections'}{$section});
1871 print "\n";
1872 }
1873}
1874
1875sub output_highlight_rst {
1876 my $contents = join "\n",@_;
1877 my $line;
1878
1879 # undo the evil effects of xml_escape() earlier
1880 $contents = xml_unescape($contents);
1881
1882 eval $dohighlight;
1883 die $@ if $@;
1884
1885 foreach $line (split "\n", $contents) {
Jani Nikula830066a2016-05-26 22:04:33 +03001886 print $lineprefix . $line . "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001887 }
1888}
1889
1890sub output_function_rst(%) {
1891 my %args = %{$_[0]};
1892 my ($parameter, $section);
Jani Nikulac099ff62016-05-26 17:18:17 +03001893 my $oldprefix = $lineprefix;
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -03001894 my $start = "";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001895
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -03001896 if ($args{'typedef'}) {
1897 print ".. c:type:: ". $args{'function'} . "\n\n";
1898 print_lineno($declaration_start_line);
1899 print " **Typedef**: ";
1900 $lineprefix = "";
1901 output_highlight_rst($args{'purpose'});
1902 $start = "\n\n**Syntax**\n\n ``";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001903 } else {
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -03001904 print ".. c:function:: ";
1905 }
1906 if ($args{'functiontype'} ne "") {
1907 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
1908 } else {
1909 $start .= $args{'function'} . " (";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001910 }
1911 print $start;
1912
1913 my $count = 0;
1914 foreach my $parameter (@{$args{'parameterlist'}}) {
1915 if ($count ne 0) {
1916 print ", ";
1917 }
1918 $count++;
1919 $type = $args{'parametertypes'}{$parameter};
Mauro Carvalho Chehaba88b1672016-07-22 11:46:36 -03001920
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001921 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1922 # pointer-to-function
1923 print $1 . $parameter . ") (" . $2;
1924 } else {
1925 print $type . " " . $parameter;
1926 }
1927 }
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -03001928 if ($args{'typedef'}) {
1929 print ");``\n\n";
1930 } else {
1931 print ")\n\n";
1932 print_lineno($declaration_start_line);
1933 $lineprefix = " ";
1934 output_highlight_rst($args{'purpose'});
1935 print "\n";
1936 }
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001937
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001938 print "**Parameters**\n\n";
1939 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001940 foreach $parameter (@{$args{'parameterlist'}}) {
1941 my $parameter_name = $parameter;
Gabriel Krisman Bertaziada5f442017-01-09 18:11:57 -02001942 $parameter_name =~ s/\[.*//;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001943 $type = $args{'parametertypes'}{$parameter};
1944
1945 if ($type ne "") {
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001946 print "``$type $parameter``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001947 } else {
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001948 print "``$parameter``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001949 }
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001950
1951 print_lineno($parameterdesc_start_lines{$parameter_name});
1952
Jani Nikula5e64fa92016-05-19 20:32:48 +03001953 if (defined($args{'parameterdescs'}{$parameter_name}) &&
1954 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001955 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001956 } else {
Jani Nikulad4b08e02016-05-28 00:48:17 +03001957 print " *undescribed*\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001958 }
1959 print "\n";
1960 }
Jani Nikulac099ff62016-05-26 17:18:17 +03001961
1962 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001963 output_section_rst(@_);
1964}
1965
1966sub output_section_rst(%) {
1967 my %args = %{$_[0]};
1968 my $section;
1969 my $oldprefix = $lineprefix;
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001970 $lineprefix = "";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001971
1972 foreach $section (@{$args{'sectionlist'}}) {
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001973 print "**$section**\n\n";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001974 print_lineno($section_start_lines{$section});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001975 output_highlight_rst($args{'sections'}{$section});
1976 print "\n";
1977 }
1978 print "\n";
1979 $lineprefix = $oldprefix;
1980}
1981
1982sub output_enum_rst(%) {
1983 my %args = %{$_[0]};
1984 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03001985 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001986 my $count;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001987 my $name = "enum " . $args{'enum'};
Jani Nikula62850972016-05-12 16:15:38 +03001988
1989 print "\n\n.. c:type:: " . $name . "\n\n";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02001990 print_lineno($declaration_start_line);
Jani Nikulac099ff62016-05-26 17:18:17 +03001991 $lineprefix = " ";
1992 output_highlight_rst($args{'purpose'});
1993 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001994
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001995 print "**Constants**\n\n";
1996 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001997 foreach $parameter (@{$args{'parameterlist'}}) {
Jani Nikulaecbcfba2016-05-26 18:30:27 +03001998 print "``$parameter``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001999 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
2000 output_highlight_rst($args{'parameterdescs'}{$parameter});
2001 } else {
Jani Nikulad4b08e02016-05-28 00:48:17 +03002002 print " *undescribed*\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002003 }
2004 print "\n";
2005 }
Jani Nikulac099ff62016-05-26 17:18:17 +03002006
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002007 $lineprefix = $oldprefix;
2008 output_section_rst(@_);
2009}
2010
2011sub output_typedef_rst(%) {
2012 my %args = %{$_[0]};
2013 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03002014 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002015 my $name = "typedef " . $args{'typedef'};
2016
Jani Nikula62850972016-05-12 16:15:38 +03002017 print "\n\n.. c:type:: " . $name . "\n\n";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002018 print_lineno($declaration_start_line);
Jani Nikulac099ff62016-05-26 17:18:17 +03002019 $lineprefix = " ";
2020 output_highlight_rst($args{'purpose'});
2021 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002022
Jani Nikulac099ff62016-05-26 17:18:17 +03002023 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002024 output_section_rst(@_);
2025}
2026
2027sub output_struct_rst(%) {
2028 my %args = %{$_[0]};
2029 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03002030 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002031 my $name = $args{'type'} . " " . $args{'struct'};
2032
Jani Nikula62850972016-05-12 16:15:38 +03002033 print "\n\n.. c:type:: " . $name . "\n\n";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002034 print_lineno($declaration_start_line);
Jani Nikulac099ff62016-05-26 17:18:17 +03002035 $lineprefix = " ";
2036 output_highlight_rst($args{'purpose'});
2037 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002038
Jani Nikulaecbcfba2016-05-26 18:30:27 +03002039 print "**Definition**\n\n";
2040 print "::\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002041 print " " . $args{'type'} . " " . $args{'struct'} . " {\n";
2042 foreach $parameter (@{$args{'parameterlist'}}) {
2043 if ($parameter =~ /^#/) {
Jani Nikulaecbcfba2016-05-26 18:30:27 +03002044 print " " . "$parameter\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002045 next;
2046 }
2047
2048 my $parameter_name = $parameter;
2049 $parameter_name =~ s/\[.*//;
2050
2051 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
2052 $type = $args{'parametertypes'}{$parameter};
2053 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
2054 # pointer-to-function
2055 print " $1 $parameter) ($2);\n";
2056 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
2057 # bitfield
2058 print " $1 $parameter$2;\n";
2059 } else {
2060 print " " . $type . " " . $parameter . ";\n";
2061 }
2062 }
2063 print " };\n\n";
2064
Jani Nikulaecbcfba2016-05-26 18:30:27 +03002065 print "**Members**\n\n";
2066 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002067 foreach $parameter (@{$args{'parameterlist'}}) {
2068 ($parameter =~ /^#/) && next;
2069
2070 my $parameter_name = $parameter;
2071 $parameter_name =~ s/\[.*//;
2072
2073 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
2074 $type = $args{'parametertypes'}{$parameter};
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002075 print_lineno($parameterdesc_start_lines{$parameter_name});
Mauro Carvalho Chehab6d232c82016-08-22 22:02:57 -03002076 print "``" . $parameter . "``\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002077 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002078 print "\n";
2079 }
2080 print "\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03002081
2082 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002083 output_section_rst(@_);
2084}
2085
2086
Johannes Bergeda603f2010-09-11 15:55:22 -07002087## list mode output functions
2088
2089sub output_function_list(%) {
2090 my %args = %{$_[0]};
2091
2092 print $args{'function'} . "\n";
2093}
2094
2095# output enum in list
2096sub output_enum_list(%) {
2097 my %args = %{$_[0]};
2098 print $args{'enum'} . "\n";
2099}
2100
2101# output typedef in list
2102sub output_typedef_list(%) {
2103 my %args = %{$_[0]};
2104 print $args{'typedef'} . "\n";
2105}
2106
2107# output struct as list
2108sub output_struct_list(%) {
2109 my %args = %{$_[0]};
2110
2111 print $args{'struct'} . "\n";
2112}
2113
2114sub output_blockhead_list(%) {
2115 my %args = %{$_[0]};
2116 my ($parameter, $section);
2117
2118 foreach $section (@{$args{'sectionlist'}}) {
2119 print "DOC: $section\n";
2120 }
2121}
2122
Matthew Wilcox3a025e12017-11-20 10:40:40 -08002123
2124## none mode output functions
2125
2126sub output_function_none(%) {
2127}
2128
2129sub output_enum_none(%) {
2130}
2131
2132sub output_typedef_none(%) {
2133}
2134
2135sub output_struct_none(%) {
2136}
2137
2138sub output_blockhead_none(%) {
2139}
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141##
Randy Dunlap27205742006-10-11 01:22:12 -07002142# generic output function for all types (function, struct/union, typedef, enum);
2143# calls the generated, variable output_ function name based on
2144# functype and output_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145sub output_declaration {
2146 no strict 'refs';
2147 my $name = shift;
2148 my $functype = shift;
2149 my $func = "output_${functype}_$output_mode";
Jani Nikulab6c3f452016-05-29 22:19:35 +03002150 if (($output_selection == OUTPUT_ALL) ||
2151 (($output_selection == OUTPUT_INCLUDE ||
2152 $output_selection == OUTPUT_EXPORTED) &&
2153 defined($function_table{$name})) ||
2154 (($output_selection == OUTPUT_EXCLUDE ||
2155 $output_selection == OUTPUT_INTERNAL) &&
2156 !($functype eq "function" && defined($function_table{$name}))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 {
Randy Dunlap3c308792007-05-08 00:24:39 -07002158 &$func(@_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 $section_counter++;
2160 }
2161}
2162
2163##
Randy Dunlap27205742006-10-11 01:22:12 -07002164# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 15:08:48 -07002165sub output_blockhead {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 no strict 'refs';
Randy Dunlapb9d973282009-06-09 08:50:38 -07002167 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 &$func(@_);
2169 $section_counter++;
2170}
2171
2172##
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002173# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174# invokes the right handler. NOT called for functions.
2175sub dump_declaration($$) {
2176 no strict 'refs';
2177 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 08:50:38 -07002178 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 &$func(@_);
2180}
2181
2182sub dump_union($$) {
2183 dump_struct(@_);
2184}
2185
2186sub dump_struct($$) {
2187 my $x = shift;
2188 my $file = shift;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002189 my $nested;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Randy Dunlap52dc5ae2009-04-30 15:08:53 -07002191 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
Johannes Berg5cb5c312017-09-19 13:08:13 +02002192 my $decl_type = $1;
Randy Dunlap3c308792007-05-08 00:24:39 -07002193 $declaration_name = $2;
2194 my $members = $3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 # ignore embedded structs or unions
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002197 $members =~ s/({.*})//g;
2198 $nested = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Martin Waitzaeec46b2005-11-13 16:08:13 -08002200 # ignore members marked private:
Mauro Carvalho Chehab0d8c39e2015-10-05 09:03:48 -03002201 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
2202 $members =~ s/\/\*\s*private:.*//gosi;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002203 # strip comments:
2204 $members =~ s/\/\*.*?\*\///gos;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002205 $nested =~ s/\/\*.*?\*\///gos;
Randy Dunlapef5da592010-03-23 13:35:14 -07002206 # strip attributes
Jonathan Corbetf0074922015-08-23 13:35:23 -06002207 $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Johannes Berg7b990782014-12-10 15:41:28 -08002208 $members =~ s/__aligned\s*\([^;]*\)//gos;
Jonathan Corbetf0074922015-08-23 13:35:23 -06002209 $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
Conchúr Navidb22b5a92015-11-08 10:52:00 +01002210 # replace DECLARE_BITMAP
2211 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
Jakub Kicinski1cb566b2017-06-30 19:09:59 -07002212 # replace DECLARE_HASHTABLE
2213 $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 create_parameterlist($members, ';', $file);
Johannes Berg5cb5c312017-09-19 13:08:13 +02002216 check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual, $nested);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 output_declaration($declaration_name,
2219 'struct',
2220 {'struct' => $declaration_name,
2221 'module' => $modulename,
2222 'parameterlist' => \@parameterlist,
2223 'parameterdescs' => \%parameterdescs,
2224 'parametertypes' => \%parametertypes,
2225 'sectionlist' => \@sectionlist,
2226 'sections' => \%sections,
2227 'purpose' => $declaration_purpose,
2228 'type' => $decl_type
2229 });
2230 }
2231 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002232 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 ++$errors;
2234 }
2235}
2236
2237sub dump_enum($$) {
2238 my $x = shift;
2239 my $file = shift;
2240
Martin Waitzaeec46b2005-11-13 16:08:13 -08002241 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Conchúr Navid4468e212015-11-08 10:48:05 +01002242 # strip #define macros inside enums
2243 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002246 $declaration_name = $1;
2247 my $members = $2;
Johannes Berg5cb5c312017-09-19 13:08:13 +02002248 my %_members;
2249
Markus Heiser463a0fd2017-06-16 21:27:48 +02002250 $members =~ s/\s+$//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 foreach my $arg (split ',', $members) {
2253 $arg =~ s/^\s*(\w+).*/$1/;
2254 push @parameterlist, $arg;
2255 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002256 $parameterdescs{$arg} = $undescribed;
Bart Van Assched40e1e62015-09-04 15:43:21 -07002257 print STDERR "${file}:$.: warning: Enum value '$arg' ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 "not described in enum '$declaration_name'\n";
2259 }
Johannes Berg5cb5c312017-09-19 13:08:13 +02002260 $_members{$arg} = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002262
Johannes Berg5cb5c312017-09-19 13:08:13 +02002263 while (my ($k, $v) = each %parameterdescs) {
2264 if (!exists($_members{$k})) {
2265 print STDERR "${file}:$.: warning: Excess enum value " .
2266 "'$k' description in '$declaration_name'\n";
2267 }
2268 }
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 output_declaration($declaration_name,
2271 'enum',
2272 {'enum' => $declaration_name,
2273 'module' => $modulename,
2274 'parameterlist' => \@parameterlist,
2275 'parameterdescs' => \%parameterdescs,
2276 'sectionlist' => \@sectionlist,
2277 'sections' => \%sections,
2278 'purpose' => $declaration_purpose
2279 });
2280 }
2281 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002282 print STDERR "${file}:$.: error: Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 ++$errors;
2284 }
2285}
2286
2287sub dump_typedef($$) {
2288 my $x = shift;
2289 my $file = shift;
2290
Martin Waitzaeec46b2005-11-13 16:08:13 -08002291 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03002292
2293 # Parse function prototypes
Mauro Carvalho Chehabd37c43c2016-08-30 20:20:57 -03002294 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ ||
2295 $x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) {
2296
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03002297 # Function typedefs
2298 $return_type = $1;
2299 $declaration_name = $2;
2300 my $args = $3;
2301
2302 create_parameterlist($args, ',', $file);
2303
2304 output_declaration($declaration_name,
2305 'function',
2306 {'function' => $declaration_name,
Mauro Carvalho Chehab82801d02016-08-30 20:20:58 -03002307 'typedef' => 1,
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03002308 'module' => $modulename,
2309 'functiontype' => $return_type,
2310 'parameterlist' => \@parameterlist,
2311 'parameterdescs' => \%parameterdescs,
2312 'parametertypes' => \%parametertypes,
2313 'sectionlist' => \@sectionlist,
2314 'sections' => \%sections,
2315 'purpose' => $declaration_purpose
2316 });
2317 return;
2318 }
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002321 $x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 $x =~ s/\[*.\]\s*;$/;/;
2323 }
2324
2325 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002326 $declaration_name = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 output_declaration($declaration_name,
2329 'typedef',
2330 {'typedef' => $declaration_name,
2331 'module' => $modulename,
2332 'sectionlist' => \@sectionlist,
2333 'sections' => \%sections,
2334 'purpose' => $declaration_purpose
2335 });
2336 }
2337 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002338 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 ++$errors;
2340 }
2341}
2342
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002343sub save_struct_actual($) {
2344 my $actual = shift;
2345
2346 # strip all spaces from the actual param so that it looks like one string item
2347 $actual =~ s/\s*//g;
2348 $struct_actual = $struct_actual . $actual . " ";
2349}
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351sub create_parameterlist($$$) {
2352 my $args = shift;
2353 my $splitter = shift;
2354 my $file = shift;
2355 my $type;
2356 my $param;
2357
Martin Waitza6d3fe72006-01-09 20:53:55 -08002358 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002360 $args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 foreach my $arg (split($splitter, $args)) {
2364 # strip comments
2365 $arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 00:24:39 -07002366 # strip leading/trailing spaces
2367 $arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 $arg =~ s/\s*$//;
2369 $arg =~ s/\s+/ /;
2370
2371 if ($arg =~ /^#/) {
2372 # Treat preprocessor directive as a typeless variable just to fill
2373 # corresponding data structures "correctly". Catch it later in
2374 # output_* subs.
2375 push_parameter($arg, "", $file);
Richard Kennedy00d62962008-02-23 15:24:01 -08002376 } elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 # pointer-to-function
2378 $arg =~ tr/#/,/;
Richard Kennedy00d62962008-02-23 15:24:01 -08002379 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 $param = $1;
2381 $type = $arg;
Richard Kennedy00d62962008-02-23 15:24:01 -08002382 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002383 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 push_parameter($param, $type, $file);
Martin Waitzaeec46b2005-11-13 16:08:13 -08002385 } elsif ($arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 $arg =~ s/\s*:\s*/:/g;
2387 $arg =~ s/\s*\[/\[/g;
2388
2389 my @args = split('\s*,\s*', $arg);
2390 if ($args[0] =~ m/\*/) {
2391 $args[0] =~ s/(\*+)\s*/ $1/;
2392 }
Borislav Petkov884f2812007-05-08 00:29:05 -07002393
2394 my @first_arg;
2395 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
2396 shift @args;
2397 push(@first_arg, split('\s+', $1));
2398 push(@first_arg, $2);
2399 } else {
2400 @first_arg = split('\s+', shift @args);
2401 }
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 unshift(@args, pop @first_arg);
2404 $type = join " ", @first_arg;
2405
2406 foreach $param (@args) {
2407 if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002408 save_struct_actual($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 push_parameter($2, "$type $1", $file);
2410 }
2411 elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 15:45:52 -07002412 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002413 save_struct_actual($1);
Randy Dunlap7b978872008-05-16 15:45:52 -07002414 push_parameter($1, "$type:$2", $file)
2415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
2417 else {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002418 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 push_parameter($param, $type, $file);
2420 }
2421 }
2422 }
2423 }
2424}
2425
2426sub push_parameter($$$) {
2427 my $param = shift;
2428 my $type = shift;
2429 my $file = shift;
2430
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002431 if (($anon_struct_union == 1) && ($type eq "") &&
2432 ($param eq "}")) {
2433 return; # ignore the ending }; from anon. struct/union
2434 }
2435
2436 $anon_struct_union = 0;
Mauro Carvalho Chehabf9b5c532017-03-30 17:11:29 -03002437 $param =~ s/[\[\)].*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Martin Waitza6d3fe72006-01-09 20:53:55 -08002439 if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 {
Silvio Frickec950a172016-10-28 10:14:08 +02002441 if (!$param =~ /\w\.\.\.$/) {
2442 # handles unnamed variable parameters
2443 $param = "...";
2444 }
Randy Dunlapced69092008-12-01 13:14:03 -08002445 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
2446 $parameterdescs{$param} = "variable arguments";
2447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 }
2449 elsif ($type eq "" && ($param eq "" or $param eq "void"))
2450 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 $param="void";
2452 $parameterdescs{void} = "no arguments";
2453 }
Randy Dunlap134fe012006-12-22 01:10:50 -08002454 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
2455 # handle unnamed (anonymous) union or struct:
2456 {
2457 $type = $param;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002458 $param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 01:10:50 -08002459 $parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002460 $anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 01:10:50 -08002461 }
2462
Martin Waitza6d3fe72006-01-09 20:53:55 -08002463 # warn if parameter has no description
Randy Dunlap134fe012006-12-22 01:10:50 -08002464 # (but ignore ones starting with # as these are not parameters
2465 # but inline preprocessor statements);
2466 # also ignore unnamed structs/unions;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002467 if (!$anon_struct_union) {
Mauro Carvalho Chehabf9b5c532017-03-30 17:11:29 -03002468 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
Martin Waitza6d3fe72006-01-09 20:53:55 -08002469
Mauro Carvalho Chehabf9b5c532017-03-30 17:11:29 -03002470 $parameterdescs{$param} = $undescribed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 if (($type eq 'function') || ($type eq 'enum')) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002473 print STDERR "${file}:$.: warning: Function parameter ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 "or member '$param' not " .
2475 "described in '$declaration_name'\n";
2476 }
Bart Van Assched40e1e62015-09-04 15:43:21 -07002477 print STDERR "${file}:$.: warning:" .
Randy Dunlap3c308792007-05-08 00:24:39 -07002478 " No description found for parameter '$param'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 ++$warnings;
Randy Dunlap3c308792007-05-08 00:24:39 -07002480 }
2481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08002483 $param = xml_escape($param);
2484
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002485 # strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-17 17:37:47 -07002486 # on @parameterlist;
2487 # this fixes a problem where check_sections() cannot find
2488 # a parameter like "addr[6 + 2]" because it actually appears
2489 # as "addr[6", "+", "2]" on the parameter list;
2490 # but it's better to maintain the param string unchanged for output,
2491 # so just weaken the string compare in check_sections() to ignore
2492 # "[blah" in a parameter string;
2493 ###$param =~ s/\s*//g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 push @parameterlist, $param;
Paolo Bonzini02a4f4f2017-01-02 16:22:23 +01002495 $type =~ s/\s\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 $parametertypes{$param} = $type;
2497}
2498
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002499sub check_sections($$$$$$) {
2500 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2501 my @sects = split ' ', $sectcheck;
2502 my @prms = split ' ', $prmscheck;
2503 my $err;
2504 my ($px, $sx);
2505 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
2506
2507 foreach $sx (0 .. $#sects) {
2508 $err = 1;
2509 foreach $px (0 .. $#prms) {
2510 $prm_clean = $prms[$px];
2511 $prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 15:55:12 -07002512 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-17 17:37:47 -07002513 # ignore array size in a parameter string;
2514 # however, the original param string may contain
2515 # spaces, e.g.: addr[6 + 2]
2516 # and this appears in @prms as "addr[6" since the
2517 # parameter list is split at spaces;
2518 # hence just ignore "[..." for the sections check;
2519 $prm_clean =~ s/\[.*//;
2520
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002521 ##$prm_clean =~ s/^\**//;
2522 if ($prm_clean eq $sects[$sx]) {
2523 $err = 0;
2524 last;
2525 }
2526 }
2527 if ($err) {
2528 if ($decl_type eq "function") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002529 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002530 "Excess function parameter " .
2531 "'$sects[$sx]' " .
2532 "description in '$decl_name'\n";
2533 ++$warnings;
2534 } else {
2535 if ($nested !~ m/\Q$sects[$sx]\E/) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002536 print STDERR "${file}:$.: warning: " .
Johannes Berg5cb5c312017-09-19 13:08:13 +02002537 "Excess $decl_type member " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002538 "'$sects[$sx]' " .
2539 "description in '$decl_name'\n";
2540 ++$warnings;
2541 }
2542 }
2543 }
2544 }
2545}
2546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547##
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002548# Checks the section describing the return value of a function.
2549sub check_return_section {
2550 my $file = shift;
2551 my $declaration_name = shift;
2552 my $return_type = shift;
2553
2554 # Ignore an empty return type (It's a macro)
2555 # Ignore functions with a "void" return type. (But don't ignore "void *")
2556 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2557 return;
2558 }
2559
2560 if (!defined($sections{$section_return}) ||
2561 $sections{$section_return} eq "") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002562 print STDERR "${file}:$.: warning: " .
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002563 "No description found for return value of " .
2564 "'$declaration_name'\n";
2565 ++$warnings;
2566 }
2567}
2568
2569##
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570# takes a function prototype and the name of the current file being
2571# processed and spits out all the details stored in the global
2572# arrays/hashes.
2573sub dump_function($$) {
2574 my $prototype = shift;
2575 my $file = shift;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002576 my $noret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 $prototype =~ s/^static +//;
2579 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 08:59:25 -07002580 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 $prototype =~ s/^inline +//;
2582 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 01:22:10 -07002583 $prototype =~ s/^__inline +//;
2584 $prototype =~ s/^__always_inline +//;
2585 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 16:03:29 -07002586 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 13:35:24 -07002587 $prototype =~ s/__init_or_module +//;
Randy Dunlap270a0092014-08-24 18:17:17 -07002588 $prototype =~ s/__meminit +//;
Randy Dunlap70c95b02012-01-21 10:31:54 -08002589 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 16:23:20 -07002590 $prototype =~ s/__weak +//;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002591 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
Paolo Bonzinib1aaa542017-01-02 16:22:24 +01002592 $prototype =~ s/__attribute__\s*\(\(
2593 (?:
2594 [\w\s]++ # attribute name
2595 (?:\([^)]*+\))? # attribute arguments
2596 \s*+,? # optional comma at the end
2597 )+
2598 \)\)\s+//x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 # Yes, this truly is vile. We are looking for:
2601 # 1. Return type (may be nothing if we're looking at a macro)
2602 # 2. Function name
2603 # 3. Function parameters.
2604 #
2605 # All the while we have to watch out for function pointer parameters
2606 # (which IIRC is what the two sections are for), C types (these
2607 # regexps don't even start to express all the possibilities), and
2608 # so on.
2609 #
2610 # If you mess with these regexps, it's a good idea to check that
2611 # the following functions' documentation still comes out right:
2612 # - parport_register_device (function pointer parameters)
2613 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 03:06:55 -08002614 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002616 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2617 # This is an object-like macro, it has no return type and no parameter
2618 # list.
2619 # Function-like macros are not allowed to have spaces between
2620 # declaration_name and opening parenthesis (notice the \s+).
2621 $return_type = $1;
2622 $declaration_name = $2;
2623 $noret = 1;
2624 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08002626 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 00:13:26 -08002628 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08002630 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2632 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08002633 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08002635 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08002637 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 03:06:55 -08002638 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Matthew Wilcox5a0bc572017-01-23 00:18:10 -08002639 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2640 $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 $return_type = $1;
2642 $declaration_name = $2;
2643 my $args = $3;
2644
2645 create_parameterlist($args, ',', $file);
2646 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002647 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 return;
2649 }
2650
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002651 my $prms = join " ", @parameterlist;
2652 check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2653
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002654 # This check emits a lot of warnings at the moment, because many
2655 # functions don't have a 'Return' doc section. So until the number
2656 # of warnings goes sufficiently down, the check is only performed in
2657 # verbose mode.
2658 # TODO: always perform the check.
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002659 if ($verbose && !$noret) {
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002660 check_return_section($file, $declaration_name, $return_type);
2661 }
2662
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002663 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 'function',
2665 {'function' => $declaration_name,
2666 'module' => $modulename,
2667 'functiontype' => $return_type,
2668 'parameterlist' => \@parameterlist,
2669 'parameterdescs' => \%parameterdescs,
2670 'parametertypes' => \%parametertypes,
2671 'sectionlist' => \@sectionlist,
2672 'sections' => \%sections,
2673 'purpose' => $declaration_purpose
2674 });
2675}
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677sub reset_state {
2678 $function = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 %parameterdescs = ();
2680 %parametertypes = ();
2681 @parameterlist = ();
2682 %sections = ();
2683 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002684 $sectcheck = "";
2685 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 $prototype = "";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002687
Jani Nikula48af6062016-05-26 14:56:05 +03002688 $state = STATE_NORMAL;
2689 $inline_doc_state = STATE_INLINE_NA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
Jason Baron56afb0f2009-04-30 13:29:36 -04002692sub tracepoint_munge($) {
2693 my $file = shift;
2694 my $tracepointname = 0;
2695 my $tracepointargs = 0;
2696
Jason Baron3a9089f2009-12-01 12:18:49 -05002697 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002698 $tracepointname = $1;
2699 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002700 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2701 $tracepointname = $1;
2702 }
2703 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2704 $tracepointname = $2;
2705 }
2706 $tracepointname =~ s/^\s+//; #strip leading whitespace
2707 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002708 $tracepointargs = $1;
2709 }
2710 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002711 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
Jason Baron56afb0f2009-04-30 13:29:36 -04002712 "$prototype\n";
2713 } else {
2714 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2715 }
2716}
2717
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002718sub syscall_munge() {
2719 my $void = 0;
2720
2721 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2722## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2723 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2724 $void = 1;
2725## $prototype = "long sys_$1(void)";
2726 }
2727
2728 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2729 if ($prototype =~ m/long (sys_.*?),/) {
2730 $prototype =~ s/,/\(/;
2731 } elsif ($void) {
2732 $prototype =~ s/\)/\(void\)/;
2733 }
2734
2735 # now delete all of the odd-number commas in $prototype
2736 # so that arg types & arg names don't have a comma between them
2737 my $count = 0;
2738 my $len = length($prototype);
2739 if ($void) {
2740 $len = 0; # skip the for-loop
2741 }
2742 for (my $ix = 0; $ix < $len; $ix++) {
2743 if (substr($prototype, $ix, 1) eq ',') {
2744 $count++;
2745 if ($count % 2 == 1) {
2746 substr($prototype, $ix, 1) = ' ';
2747 }
2748 }
2749 }
2750}
2751
Daniel Vetterb7afa922016-06-01 23:46:24 +02002752sub process_proto_function($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 my $x = shift;
2754 my $file = shift;
2755
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002756 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2757
Randy Dunlap890c78c2008-10-25 17:06:43 -07002758 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 # do nothing
2760 }
2761 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002762 $prototype .= $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002764
Randy Dunlap890c78c2008-10-25 17:06:43 -07002765 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002766 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2768 $prototype =~ s@^\s+@@gos; # strip leading spaces
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002769 if ($prototype =~ /SYSCALL_DEFINE/) {
2770 syscall_munge();
2771 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002772 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2773 $prototype =~ /DEFINE_SINGLE_EVENT/)
2774 {
Jason Baron56afb0f2009-04-30 13:29:36 -04002775 tracepoint_munge($file);
2776 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002777 dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 reset_state();
2779 }
2780}
2781
Daniel Vetterb7afa922016-06-01 23:46:24 +02002782sub process_proto_type($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 my $x = shift;
2784 my $file = shift;
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2787 $x =~ s@^\s+@@gos; # strip leading spaces
2788 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002789 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if ($x =~ /^#/) {
2792 # To distinguish preprocessor directive from regular declaration later.
2793 $x .= ";";
2794 }
2795
2796 while (1) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002797 if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
Markus Heiser463a0fd2017-06-16 21:27:48 +02002798 if( length $prototype ) {
2799 $prototype .= " "
2800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 $prototype .= $1 . $2;
2802 ($2 eq '{') && $brcount++;
2803 ($2 eq '}') && $brcount--;
2804 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002805 dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 reset_state();
Randy Dunlap3c308792007-05-08 00:24:39 -07002807 last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 }
2809 $x = $3;
Randy Dunlap3c308792007-05-08 00:24:39 -07002810 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 $prototype .= $x;
2812 last;
2813 }
2814 }
2815}
2816
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002817# xml_escape: replace <, >, and & in the text stream;
2818#
2819# however, formatting controls that are generated internally/locally in the
2820# kernel-doc script are not escaped here; instead, they begin life like
2821# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2822# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2823# just before actual output; (this is done by local_unescape())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824sub xml_escape($) {
2825 my $text = shift;
Randy Dunlapecfb2512006-06-25 05:49:13 -07002826 if (($output_mode eq "text") || ($output_mode eq "man")) {
2827 return $text;
2828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 $text =~ s/\&/\\\\\\amp;/g;
2830 $text =~ s/\</\\\\\\lt;/g;
2831 $text =~ s/\>/\\\\\\gt;/g;
2832 return $text;
2833}
2834
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002835# xml_unescape: reverse the effects of xml_escape
2836sub xml_unescape($) {
2837 my $text = shift;
2838 if (($output_mode eq "text") || ($output_mode eq "man")) {
2839 return $text;
2840 }
2841 $text =~ s/\\\\\\amp;/\&/g;
2842 $text =~ s/\\\\\\lt;/</g;
2843 $text =~ s/\\\\\\gt;/>/g;
2844 return $text;
2845}
2846
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002847# convert local escape strings to html
2848# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2849sub local_unescape($) {
2850 my $text = shift;
2851 if (($output_mode eq "text") || ($output_mode eq "man")) {
2852 return $text;
2853 }
2854 $text =~ s/\\\\\\\\lt:/</g;
2855 $text =~ s/\\\\\\\\gt:/>/g;
2856 return $text;
2857}
2858
Jani Nikula1ad560e2016-06-07 10:53:39 +03002859sub map_filename($) {
2860 my $file;
2861 my ($orig_file) = @_;
2862
2863 if (defined($ENV{'SRCTREE'})) {
2864 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
2865 } else {
2866 $file = $orig_file;
2867 }
2868
2869 if (defined($source_map{$file})) {
2870 $file = $source_map{$file};
2871 }
2872
2873 return $file;
2874}
2875
Jani Nikula88c2b572016-06-07 11:00:52 +03002876sub process_export_file($) {
2877 my ($orig_file) = @_;
2878 my $file = map_filename($orig_file);
2879
2880 if (!open(IN,"<$file")) {
2881 print STDERR "Error: Cannot open file $file\n";
2882 ++$errors;
2883 return;
2884 }
2885
2886 while (<IN>) {
2887 if (/$export_symbol/) {
2888 $function_table{$2} = 1;
2889 }
2890 }
2891
2892 close(IN);
2893}
2894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895sub process_file($) {
Randy Dunlap2283a112005-07-07 15:39:26 -07002896 my $file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 my $identifier;
2898 my $func;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002899 my $descr;
Johannes Weiner64231332009-09-17 19:26:53 -07002900 my $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 my $initial_section_counter = $section_counter;
Ben Hutchings68f86662015-09-01 23:48:49 +01002902 my ($orig_file) = @_;
Jani Nikulab7886de2016-05-28 00:41:50 +03002903 my $leading_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Jani Nikula1ad560e2016-06-07 10:53:39 +03002905 $file = map_filename($orig_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 if (!open(IN,"<$file")) {
2908 print STDERR "Error: Cannot open file $file\n";
2909 ++$errors;
2910 return;
2911 }
2912
Ilya Dryomova9e73142010-02-26 13:05:47 -08002913 $. = 1;
2914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 $section_counter = 0;
2916 while (<IN>) {
Daniel Santos65478422012-10-04 17:15:05 -07002917 while (s/\\\s*$//) {
2918 $_ .= <IN>;
2919 }
Jani Nikula48af6062016-05-26 14:56:05 +03002920 if ($state == STATE_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 if (/$doc_start/o) {
Jani Nikula48af6062016-05-26 14:56:05 +03002922 $state = STATE_NAME; # next line is always the function name
Randy Dunlap850622d2006-06-25 05:48:55 -07002923 $in_doc_sect = 0;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002924 $declaration_start_line = $. + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 }
Jani Nikula48af6062016-05-26 14:56:05 +03002926 } elsif ($state == STATE_NAME) {# this line is the function name (always)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 if (/$doc_block/o) {
Jani Nikula48af6062016-05-26 14:56:05 +03002928 $state = STATE_DOCBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 $contents = "";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002930 $new_start_line = $. + 1;
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 if ( $1 eq "" ) {
2933 $section = $section_intro;
2934 } else {
2935 $section = $1;
2936 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 elsif (/$doc_decl/o) {
2939 $identifier = $1;
2940 if (/\s*([\w\s]+?)\s*-/) {
2941 $identifier = $1;
2942 }
2943
Jani Nikula48af6062016-05-26 14:56:05 +03002944 $state = STATE_FIELD;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002945 # if there's no @param blocks need to set up default section
2946 # here
Jani Nikula2f4ad402016-05-30 11:21:06 +03002947 $contents = "";
2948 $section = $section_default;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02002949 $new_start_line = $. + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if (/-(.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002951 # strip leading/trailing/multiple spaces
Randy Dunlapa21217d2007-02-10 01:46:04 -08002952 $descr= $1;
2953 $descr =~ s/^\s*//;
2954 $descr =~ s/\s*$//;
Daniel Santos12ae6772012-10-04 17:15:10 -07002955 $descr =~ s/\s+/ /g;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002956 $declaration_purpose = xml_escape($descr);
Johannes Weiner64231332009-09-17 19:26:53 -07002957 $in_purpose = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 } else {
2959 $declaration_purpose = "";
2960 }
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002961
2962 if (($declaration_purpose eq "") && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002963 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002964 print STDERR $_;
2965 ++$warnings;
2966 }
2967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 if ($identifier =~ m/^struct/) {
2969 $decl_type = 'struct';
2970 } elsif ($identifier =~ m/^union/) {
2971 $decl_type = 'union';
2972 } elsif ($identifier =~ m/^enum/) {
2973 $decl_type = 'enum';
2974 } elsif ($identifier =~ m/^typedef/) {
2975 $decl_type = 'typedef';
2976 } else {
2977 $decl_type = 'function';
2978 }
2979
2980 if ($verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002981 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 }
2983 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002984 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 " - I thought it was a doc line\n";
2986 ++$warnings;
Jani Nikula48af6062016-05-26 14:56:05 +03002987 $state = STATE_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 }
Jani Nikula48af6062016-05-26 14:56:05 +03002989 } elsif ($state == STATE_FIELD) { # look for head: lines, and include content
Jani Nikulaf624ade2016-05-29 11:35:28 +03002990 if (/$doc_sect/i) { # case insensitive for supported section names
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 $newsection = $1;
2992 $newcontents = $2;
2993
Jani Nikulaf624ade2016-05-29 11:35:28 +03002994 # map the supported section names to the canonical names
2995 if ($newsection =~ m/^description$/i) {
2996 $newsection = $section_default;
2997 } elsif ($newsection =~ m/^context$/i) {
2998 $newsection = $section_context;
2999 } elsif ($newsection =~ m/^returns?$/i) {
3000 $newsection = $section_return;
3001 } elsif ($newsection =~ m/^\@return$/) {
3002 # special: @return is a section, not a param description
3003 $newsection = $section_return;
3004 }
3005
Randy Dunlap792aa2f2008-02-07 00:13:41 -08003006 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap850622d2006-06-25 05:48:55 -07003007 if (!$in_doc_sect && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07003008 print STDERR "${file}:$.: warning: contents before sections\n";
Randy Dunlap850622d2006-06-25 05:48:55 -07003009 ++$warnings;
3010 }
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07003011 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 $section = $section_default;
3013 }
3014
Randy Dunlap850622d2006-06-25 05:48:55 -07003015 $in_doc_sect = 1;
Johannes Weiner64231332009-09-17 19:26:53 -07003016 $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 $contents = $newcontents;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02003018 $new_start_line = $.;
Jani Nikula0a726302016-05-28 14:50:20 +03003019 while ((substr($contents, 0, 1) eq " ") ||
3020 substr($contents, 0, 1) eq "\t") {
3021 $contents = substr($contents, 1);
3022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 if ($contents ne "") {
3024 $contents .= "\n";
3025 }
3026 $section = $newsection;
Jani Nikulab7886de2016-05-28 00:41:50 +03003027 $leading_space = undef;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 } elsif (/$doc_end/) {
Randy Dunlap4c98eca2010-03-10 15:22:02 -08003029 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07003030 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 $section = $section_default;
3032 $contents = "";
3033 }
Randy Dunlap46b958e2008-04-28 02:16:35 -07003034 # look for doc_com + <text> + doc_end:
3035 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
Bart Van Assched40e1e62015-09-04 15:43:21 -07003036 print STDERR "${file}:$.: warning: suspicious ending line: $_";
Randy Dunlap46b958e2008-04-28 02:16:35 -07003037 ++$warnings;
3038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 $prototype = "";
Jani Nikula48af6062016-05-26 14:56:05 +03003041 $state = STATE_PROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 $brcount = 0;
Randy Dunlap232acbc2006-06-25 05:47:48 -07003043# print STDERR "end of doc comment, looking for prototype\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 } elsif (/$doc_content/) {
3045 # miguel-style comment kludge, look for blank lines after
3046 # @parameter line to signify start of description
Johannes Weiner64231332009-09-17 19:26:53 -07003047 if ($1 eq "") {
3048 if ($section =~ m/^@/ || $section eq $section_context) {
3049 dump_section($file, $section, xml_escape($contents));
3050 $section = $section_default;
3051 $contents = "";
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02003052 $new_start_line = $.;
Johannes Weiner64231332009-09-17 19:26:53 -07003053 } else {
3054 $contents .= "\n";
3055 }
3056 $in_purpose = 0;
3057 } elsif ($in_purpose == 1) {
3058 # Continued declaration purpose
3059 chomp($declaration_purpose);
3060 $declaration_purpose .= " " . xml_escape($1);
Daniel Santos12ae6772012-10-04 17:15:10 -07003061 $declaration_purpose =~ s/\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 } else {
Jani Nikulab7886de2016-05-28 00:41:50 +03003063 my $cont = $1;
3064 if ($section =~ m/^@/ || $section eq $section_context) {
3065 if (!defined $leading_space) {
3066 if ($cont =~ m/^(\s+)/) {
3067 $leading_space = $1;
3068 } else {
3069 $leading_space = "";
3070 }
3071 }
3072
3073 $cont =~ s/^$leading_space//;
3074 }
3075 $contents .= $cont . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
3077 } else {
3078 # i dont know - bad line? ignore.
Bart Van Assched40e1e62015-09-04 15:43:21 -07003079 print STDERR "${file}:$.: warning: bad line: $_";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 ++$warnings;
3081 }
Jani Nikula48af6062016-05-26 14:56:05 +03003082 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003083 # First line (state 1) needs to be a @parameter
Jani Nikula48af6062016-05-26 14:56:05 +03003084 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003085 $section = $1;
3086 $contents = $2;
Daniel Vetter0b0f5f292016-06-03 22:21:34 +02003087 $new_start_line = $.;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003088 if ($contents ne "") {
3089 while ((substr($contents, 0, 1) eq " ") ||
3090 substr($contents, 0, 1) eq "\t") {
3091 $contents = substr($contents, 1);
3092 }
Jani Nikulaa0b96c22016-05-26 22:04:06 +03003093 $contents .= "\n";
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003094 }
Jani Nikula48af6062016-05-26 14:56:05 +03003095 $inline_doc_state = STATE_INLINE_TEXT;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003096 # Documentation block end */
Jani Nikula48af6062016-05-26 14:56:05 +03003097 } elsif (/$doc_inline_end/) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003098 if (($contents ne "") && ($contents ne "\n")) {
3099 dump_section($file, $section, xml_escape($contents));
3100 $section = $section_default;
3101 $contents = "";
3102 }
Jani Nikula48af6062016-05-26 14:56:05 +03003103 $state = STATE_PROTO;
3104 $inline_doc_state = STATE_INLINE_NA;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003105 # Regular text
3106 } elsif (/$doc_content/) {
Jani Nikula48af6062016-05-26 14:56:05 +03003107 if ($inline_doc_state == STATE_INLINE_TEXT) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003108 $contents .= $1 . "\n";
Jani Nikula6450c892016-05-26 22:04:42 +03003109 # nuke leading blank lines
3110 if ($contents =~ /^\s*$/) {
3111 $contents = "";
3112 }
Jani Nikula48af6062016-05-26 14:56:05 +03003113 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
3114 $inline_doc_state = STATE_INLINE_ERROR;
Daniel Vettere7ca3112016-07-15 10:19:30 +02003115 print STDERR "${file}:$.: warning: ";
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003116 print STDERR "Incorrect use of kernel-doc format: $_";
3117 ++$warnings;
3118 }
3119 }
Jani Nikula48af6062016-05-26 14:56:05 +03003120 } elsif ($state == STATE_PROTO) { # scanning for function '{' (end of prototype)
Jani Nikula0c9aa202016-11-16 17:26:16 +02003121 if (/$doc_inline_oneline/) {
3122 $section = $1;
3123 $contents = $2;
3124 if ($contents ne "") {
3125 $contents .= "\n";
3126 dump_section($file, $section, xml_escape($contents));
3127 $section = $section_default;
3128 $contents = "";
3129 }
3130 } elsif (/$doc_inline_start/) {
Jani Nikula48af6062016-05-26 14:56:05 +03003131 $state = STATE_INLINE;
3132 $inline_doc_state = STATE_INLINE_NAME;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03003133 } elsif ($decl_type eq 'function') {
Daniel Vetterb7afa922016-06-01 23:46:24 +02003134 process_proto_function($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 } else {
Daniel Vetterb7afa922016-06-01 23:46:24 +02003136 process_proto_type($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 }
Jani Nikula48af6062016-05-26 14:56:05 +03003138 } elsif ($state == STATE_DOCBLOCK) {
Daniel Vetterebff7f92016-06-01 23:46:23 +02003139 if (/$doc_end/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07003141 dump_doc_section($file, $section, xml_escape($contents));
Jani Nikula2f4ad402016-05-30 11:21:06 +03003142 $section = $section_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 $contents = "";
3144 $function = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 %parameterdescs = ();
3146 %parametertypes = ();
3147 @parameterlist = ();
3148 %sections = ();
3149 @sectionlist = ();
3150 $prototype = "";
Jani Nikula48af6062016-05-26 14:56:05 +03003151 $state = STATE_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 }
3153 elsif (/$doc_content/)
3154 {
3155 if ( $1 eq "" )
3156 {
3157 $contents .= $blankline;
3158 }
3159 else
3160 {
3161 $contents .= $1 . "\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08003162 }
Randy Dunlap3c308792007-05-08 00:24:39 -07003163 }
3164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 }
3166 if ($initial_section_counter == $section_counter) {
Matthew Wilcox3a025e12017-11-20 10:40:40 -08003167 if ($output_mode ne "none") {
3168 print STDERR "${file}:1: warning: no structured comments found\n";
3169 }
Jani Nikulab6c3f452016-05-29 22:19:35 +03003170 if (($output_selection == OUTPUT_INCLUDE) && ($show_not_found == 1)) {
Johannes Berge946c43a2013-11-12 15:11:12 -08003171 print STDERR " Was looking for '$_'.\n" for keys %function_table;
3172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 if ($output_mode eq "xml") {
3174 # The template wants at least one RefEntry here; make one.
3175 print "<refentry>\n";
3176 print " <refnamediv>\n";
3177 print " <refname>\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01003178 print " ${orig_file}\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 print " </refname>\n";
3180 print " <refpurpose>\n";
3181 print " Document generation inconsistency\n";
3182 print " </refpurpose>\n";
3183 print " </refnamediv>\n";
3184 print " <refsect1>\n";
3185 print " <title>\n";
3186 print " Oops\n";
3187 print " </title>\n";
3188 print " <warning>\n";
3189 print " <para>\n";
3190 print " The template for this document tried to insert\n";
3191 print " the structured comment from the file\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01003192 print " <filename>${orig_file}</filename> at this point,\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 print " but none was found.\n";
3194 print " This dummy section is inserted to allow\n";
3195 print " generation to continue.\n";
3196 print " </para>\n";
3197 print " </warning>\n";
3198 print " </refsect1>\n";
3199 print "</refentry>\n";
3200 }
3201 }
3202}
Randy Dunlap8484baa2011-01-05 16:28:43 -08003203
3204
3205$kernelversion = get_kernel_version();
3206
3207# generate a sequence of code that will splice in highlighting information
3208# using the s// operator.
Mauro Carvalho Chehab1ef06232015-11-17 13:29:49 -02003209for (my $k = 0; $k < @highlights; $k++) {
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -03003210 my $pattern = $highlights[$k][0];
3211 my $result = $highlights[$k][1];
3212# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
3213 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -08003214}
3215
3216# Read the file that maps relative names to absolute names for
3217# separate source and object directories and for shadow trees.
3218if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
3219 my ($relname, $absname);
3220 while(<SOURCE_MAP>) {
3221 chop();
3222 ($relname, $absname) = (split())[0..1];
3223 $relname =~ s:^/+::;
3224 $source_map{$relname} = $absname;
3225 }
3226 close(SOURCE_MAP);
3227}
3228
Jani Nikula88c2b572016-06-07 11:00:52 +03003229if ($output_selection == OUTPUT_EXPORTED ||
3230 $output_selection == OUTPUT_INTERNAL) {
Jani Nikulac9b2cfb2016-06-07 11:05:53 +03003231
3232 push(@export_file_list, @ARGV);
3233
Jani Nikula88c2b572016-06-07 11:00:52 +03003234 foreach (@export_file_list) {
3235 chomp;
3236 process_export_file($_);
3237 }
3238}
3239
Randy Dunlap8484baa2011-01-05 16:28:43 -08003240foreach (@ARGV) {
3241 chomp;
3242 process_file($_);
3243}
3244if ($verbose && $errors) {
3245 print STDERR "$errors errors\n";
3246}
3247if ($verbose && $warnings) {
3248 print STDERR "$warnings warnings\n";
3249}
3250
3251exit($errors);