blob: 659d529b99d8570a98384731d381e1dd447ed6bc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/usr/bin/perl -w
2
3use strict;
4
5## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
6## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
7## Copyright (C) 2001 Simon Huggins ##
Randy Dunlap70c95b02012-01-21 10:31:54 -08008## Copyright (C) 2005-2012 Randy Dunlap ##
Dan Luedtke1b40c192012-08-12 10:46:15 +02009## Copyright (C) 2012 Dan Luedtke ##
Linus Torvalds1da177e2005-04-16 15:20:36 -070010## ##
11## #define enhancements by Armin Kuster <akuster@mvista.com> ##
12## Copyright (c) 2000 MontaVista Software, Inc. ##
13## ##
14## This software falls under the GNU General Public License. ##
15## Please read the COPYING file for more information ##
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017# 18/01/2001 - Cleanups
18# Functions prototyped as foo(void) same as foo()
19# Stop eval'ing where we don't need to.
20# -- huggie@earth.li
21
22# 27/06/2001 - Allowed whitespace after initial "/**" and
23# allowed comments before function declarations.
24# -- Christian Kreibich <ck@whoop.org>
25
26# Still to do:
27# - add perldoc documentation
28# - Look more closely at some of the scarier bits :)
29
30# 26/05/2001 - Support for separate source and object trees.
31# Return error code.
32# Keith Owens <kaos@ocs.com.au>
33
34# 23/09/2001 - Added support for typedefs, structs, enums and unions
35# Support for Context section; can be terminated using empty line
36# Small fixes (like spaces vs. \s in regex)
37# -- Tim Jansen <tim@tjansen.de>
38
Dan Luedtke1b40c192012-08-12 10:46:15 +020039# 25/07/2012 - Added support for HTML5
40# -- Dan Luedtke <mail@danrl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jani Nikulafadc0b32016-05-12 16:15:36 +030042sub usage {
43 my $message = <<"EOF";
44Usage: $0 [OPTION ...] FILE ...
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Jani Nikulafadc0b32016-05-12 16:15:36 +030046Read C language source or header FILEs, extract embedded documentation comments,
47and print formatted documentation to standard output.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jani Nikulafadc0b32016-05-12 16:15:36 +030049The documentation comments are identified by "/**" opening comment mark. See
50Documentation/kernel-doc-nano-HOWTO.txt for the documentation comment syntax.
51
52Output format selection (mutually exclusive):
53 -docbook Output DocBook format.
54 -html Output HTML format.
55 -html5 Output HTML5 format.
56 -list Output symbol list format. This is for use by docproc.
57 -man Output troff manual page format. This is the default.
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +030058 -rst Output reStructuredText format.
Jani Nikulafadc0b32016-05-12 16:15:36 +030059 -text Output plain text format.
60
61Output selection (mutually exclusive):
Jani Nikula86ae2e32016-01-21 13:05:22 +020062 -export Only output documentation for symbols that have been
63 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
64 in the same FILE.
65 -internal Only output documentation for symbols that have NOT been
66 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
67 in the same FILE.
Jani Nikulafadc0b32016-05-12 16:15:36 +030068 -function NAME Only output documentation for the given function(s)
69 or DOC: section title(s). All other functions and DOC:
70 sections are ignored. May be specified multiple times.
71 -nofunction NAME Do NOT output documentation for the given function(s);
72 only output documentation for the other functions and
73 DOC: sections. May be specified multiple times.
74
75Output selection modifiers:
76 -no-doc-sections Do not output DOC: sections.
77
78Other parameters:
79 -v Verbose output, more warnings and other information.
80 -h Print this help.
81
82EOF
83 print $message;
84 exit 1;
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#
88# format of comments.
89# In the following table, (...)? signifies optional structure.
90# (...)* signifies 0 or more structure elements
91# /**
92# * function_name(:)? (- short description)?
93# (* @parameterx: (description of parameter x)?)*
94# (* a blank line)?
95# * (Description:)? (Description of function)?
96# * (section header: (section description)? )*
97# (*)?*/
98#
99# So .. the trivial example would be:
100#
101# /**
102# * my_function
Randy Dunlapb9d973282009-06-09 08:50:38 -0700103# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#
Randy Dunlap891dcd22007-02-10 01:45:53 -0800105# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106# after the last parameter specification.
107# e.g.
108# /**
109# * my_function - does my stuff
110# * @my_arg: its mine damnit
111# *
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800112# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113# */
114#
115# or, could also use:
116# /**
117# * my_function - does my stuff
118# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800119# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120# */
121# etc.
122#
Randy Dunlapb9d973282009-06-09 08:50:38 -0700123# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800124# enums and typedefs. Instead of the function name you must write the name
125# of the declaration; the struct/union/enum/typedef must always precede
126# the name. Nesting of declarations is not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127# Use the argument mechanism to document members or constants.
128# e.g.
129# /**
130# * struct my_struct - short description
131# * @a: first member
132# * @b: second member
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800133# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134# * Longer description
135# */
136# struct my_struct {
137# int a;
138# int b;
Martin Waitzaeec46b2005-11-13 16:08:13 -0800139# /* private: */
140# int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141# };
142#
143# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800144#
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300145# For really longs structs, you can also describe arguments inside the
146# body of the struct.
147# eg.
148# /**
149# * struct my_struct - short description
150# * @a: first member
151# * @b: second member
152# *
153# * Longer description
154# */
155# struct my_struct {
156# int a;
157# int b;
158# /**
159# * @c: This is longer description of C
160# *
161# * You can use paragraphs to describe arguments
162# * using this method.
163# */
164# int c;
165# };
166#
167# This should be use only for struct/enum members.
168#
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800169# You can also add additional sections. When documenting kernel functions you
170# should document the "Context:" of the function, e.g. whether the functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800172# empty line.
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100173# A non-void function should have a "Return:" section describing the return
174# value(s).
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800175# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176# appropriately in DocBook.
177#
178# Example:
179# /**
180# * user_function - function that can only be called in user context
181# * @a: some argument
182# * Context: !in_interrupt()
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800183# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184# * Some description
185# * Example:
186# * user_function(22);
187# */
188# ...
189#
190#
191# All descriptive text is further processed, scanning for the following special
192# patterns, which are highlighted appropriately.
193#
194# 'funcname()' - function
195# '$ENVVAR' - environmental variable
196# '&struct_name' - name of a structure (up to two words including 'struct')
197# '@parameter' - name of a parameter
198# '%CONST' - name of a constant.
199
Randy Dunlap8484baa2011-01-05 16:28:43 -0800200## init lots of data
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202my $errors = 0;
203my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -0700204my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206# match expressions used to find embedded type information
207my $type_constant = '\%([-_\w]+)';
208my $type_func = '(\w+)\(\)';
209my $type_param = '\@(\w+)';
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700210my $type_struct = '\&((struct\s*)*[_\w]+)';
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700211my $type_struct_xml = '\\&amp;((struct\s*)*[_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212my $type_env = '(\$\w+)';
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300213my $type_enum_full = '\&(enum)\s*([_\w]+)';
214my $type_struct_full = '\&(struct)\s*([_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216# Output conversion substitutions.
217# One for each output format
218
219# these work fairly well
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300220my @highlights_html = (
221 [$type_constant, "<i>\$1</i>"],
222 [$type_func, "<b>\$1</b>"],
223 [$type_struct_xml, "<i>\$1</i>"],
224 [$type_env, "<b><i>\$1</i></b>"],
225 [$type_param, "<tt><b>\$1</b></tt>"]
226 );
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700227my $local_lt = "\\\\\\\\lt:";
228my $local_gt = "\\\\\\\\gt:";
229my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Dan Luedtke1b40c192012-08-12 10:46:15 +0200231# html version 5
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300232my @highlights_html5 = (
233 [$type_constant, "<span class=\"const\">\$1</span>"],
234 [$type_func, "<span class=\"func\">\$1</span>"],
235 [$type_struct_xml, "<span class=\"struct\">\$1</span>"],
236 [$type_env, "<span class=\"env\">\$1</span>"],
237 [$type_param, "<span class=\"param\">\$1</span>]"]
238 );
Dan Luedtke1b40c192012-08-12 10:46:15 +0200239my $blankline_html5 = $local_lt . "br /" . $local_gt;
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241# XML, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300242my @highlights_xml = (
243 ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"],
244 [$type_constant, "<constant>\$1</constant>"],
245 [$type_struct_xml, "<structname>\$1</structname>"],
246 [$type_param, "<parameter>\$1</parameter>"],
247 [$type_func, "<function>\$1</function>"],
248 [$type_env, "<envar>\$1</envar>"]
249 );
Johannes Berg5c98fc02007-10-24 15:08:48 -0700250my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252# gnome, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300253my @highlights_gnome = (
254 [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"],
255 [$type_func, "<function>\$1</function>"],
256 [$type_struct, "<structname>\$1</structname>"],
257 [$type_env, "<envar>\$1</envar>"],
258 [$type_param, "<parameter>\$1</parameter>" ]
259 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260my $blankline_gnome = "</para><para>\n";
261
262# these are pretty rough
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300263my @highlights_man = (
264 [$type_constant, "\$1"],
265 [$type_func, "\\\\fB\$1\\\\fP"],
266 [$type_struct, "\\\\fI\$1\\\\fP"],
267 [$type_param, "\\\\fI\$1\\\\fP"]
268 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269my $blankline_man = "";
270
271# text-mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300272my @highlights_text = (
273 [$type_constant, "\$1"],
274 [$type_func, "\$1"],
275 [$type_struct, "\$1"],
276 [$type_param, "\$1"]
277 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278my $blankline_text = "";
279
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300280# rst-mode
281my @highlights_rst = (
282 [$type_constant, "``\$1``"],
283 [$type_func, "\\:c\\:func\\:`\$1`"],
Jani Nikula62850972016-05-12 16:15:38 +0300284 [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
285 [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
286 [$type_struct, "\\:c\\:type\\:`struct \$1 <\$1>`"],
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300287 [$type_param, "**\$1**"]
288 );
289my $blankline_rst = "\n";
290
Johannes Bergeda603f2010-09-11 15:55:22 -0700291# list mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300292my @highlights_list = (
293 [$type_constant, "\$1"],
294 [$type_func, "\$1"],
295 [$type_struct, "\$1"],
296 [$type_param, "\$1"]
297 );
Johannes Bergeda603f2010-09-11 15:55:22 -0700298my $blankline_list = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300# read arguments
Randy Dunlapb9d973282009-06-09 08:50:38 -0700301if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 usage();
303}
304
Randy Dunlap8484baa2011-01-05 16:28:43 -0800305my $kernelversion;
306my $dohighlight = "";
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308my $verbose = 0;
309my $output_mode = "man";
Daniel Santose314ba32012-10-04 17:15:08 -0700310my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 15:08:48 -0700311my $no_doc_sections = 0;
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300312my @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313my $blankline = $blankline_man;
314my $modulename = "Kernel API";
Jani Nikulab6c3f452016-05-29 22:19:35 +0300315
316use constant {
317 OUTPUT_ALL => 0, # output all symbols and doc sections
318 OUTPUT_INCLUDE => 1, # output only specified symbols
319 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
320 OUTPUT_EXPORTED => 3, # output exported symbols
321 OUTPUT_INTERNAL => 4, # output non-exported symbols
322};
323my $output_selection = OUTPUT_ALL;
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100324my $show_not_found = 0;
325
326my @build_time;
327if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
328 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
329 @build_time = gmtime($seconds);
330} else {
331 @build_time = localtime;
332}
333
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800334my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
335 'July', 'August', 'September', 'October',
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100336 'November', 'December')[$build_time[4]] .
337 " " . ($build_time[5]+1900);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Randy Dunlap8484baa2011-01-05 16:28:43 -0800339# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700340# They probably want to be tidied up, made more localised or something.
341# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700343my ($function, %function_table, %parametertypes, $declaration_purpose);
344my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 13:06:03 -0800345my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Randy Dunlapbd0e88e2008-03-13 12:32:43 -0700347if (defined($ENV{'KBUILD_VERBOSE'})) {
348 $verbose = "$ENV{'KBUILD_VERBOSE'}";
349}
350
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800351# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
353# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
354# We keep track of number of generated entries and generate a dummy
355# if needs be to ensure the expanded template can be postprocessed
356# into html.
357my $section_counter = 0;
358
359my $lineprefix="";
360
Jani Nikula48af6062016-05-26 14:56:05 +0300361# Parser states
362use constant {
363 STATE_NORMAL => 0, # normal code
364 STATE_NAME => 1, # looking for function name
365 STATE_FIELD => 2, # scanning field start
366 STATE_PROTO => 3, # scanning prototype
367 STATE_DOCBLOCK => 4, # documentation block
368 STATE_INLINE => 5, # gathering documentation outside main block
369};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370my $state;
Randy Dunlap850622d2006-06-25 05:48:55 -0700371my $in_doc_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Jani Nikula48af6062016-05-26 14:56:05 +0300373# Inline documentation state
374use constant {
375 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
376 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
377 STATE_INLINE_TEXT => 2, # looking for member documentation
378 STATE_INLINE_END => 3, # done
379 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
380 # Spit a warning as it's not
381 # proper kernel-doc and ignore the rest.
382};
383my $inline_doc_state;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#declaration types: can be
386# 'function', 'struct', 'union', 'enum', 'typedef'
387my $decl_type;
388
389my $doc_special = "\@\%\$\&";
390
391my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
392my $doc_end = '\*/';
393my $doc_com = '\s*\*\s*';
Daniel Santos12ae6772012-10-04 17:15:10 -0700394my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700395my $doc_decl = $doc_com . '(\w+)';
396my $doc_sect = $doc_com . '([' . $doc_special . ']?[\w\s]+):(.*)';
Daniel Santos12ae6772012-10-04 17:15:10 -0700397my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700398my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Jani Nikula48af6062016-05-26 14:56:05 +0300399my $doc_inline_start = '^\s*/\*\*\s*$';
400my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)';
401my $doc_inline_end = '^\s*\*/\s*$';
Jani Nikula86ae2e32016-01-21 13:05:22 +0200402my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404my %constants;
405my %parameterdescs;
406my @parameterlist;
407my %sections;
408my @sectionlist;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800409my $sectcheck;
410my $struct_actual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412my $contents = "";
413my $section_default = "Description"; # default section
414my $section_intro = "Introduction";
415my $section = $section_default;
416my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100417my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419my $undescribed = "-- undescribed --";
420
421reset_state();
422
423while ($ARGV[0] =~ m/^-(.*)/) {
424 my $cmd = shift @ARGV;
425 if ($cmd eq "-html") {
426 $output_mode = "html";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300427 @highlights = @highlights_html;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 $blankline = $blankline_html;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200429 } elsif ($cmd eq "-html5") {
430 $output_mode = "html5";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300431 @highlights = @highlights_html5;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200432 $blankline = $blankline_html5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 } elsif ($cmd eq "-man") {
434 $output_mode = "man";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300435 @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 $blankline = $blankline_man;
437 } elsif ($cmd eq "-text") {
438 $output_mode = "text";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300439 @highlights = @highlights_text;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 $blankline = $blankline_text;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300441 } elsif ($cmd eq "-rst") {
442 $output_mode = "rst";
443 @highlights = @highlights_rst;
444 $blankline = $blankline_rst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } elsif ($cmd eq "-docbook") {
446 $output_mode = "xml";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300447 @highlights = @highlights_xml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 $blankline = $blankline_xml;
Johannes Bergeda603f2010-09-11 15:55:22 -0700449 } elsif ($cmd eq "-list") {
450 $output_mode = "list";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300451 @highlights = @highlights_list;
Johannes Bergeda603f2010-09-11 15:55:22 -0700452 $blankline = $blankline_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 } elsif ($cmd eq "-gnome") {
454 $output_mode = "gnome";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300455 @highlights = @highlights_gnome;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 $blankline = $blankline_gnome;
457 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
458 $modulename = shift @ARGV;
459 } elsif ($cmd eq "-function") { # to only output specific functions
Jani Nikulab6c3f452016-05-29 22:19:35 +0300460 $output_selection = OUTPUT_INCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 $function = shift @ARGV;
462 $function_table{$function} = 1;
Jani Nikulab6c3f452016-05-29 22:19:35 +0300463 } elsif ($cmd eq "-nofunction") { # output all except specific functions
464 $output_selection = OUTPUT_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 $function = shift @ARGV;
466 $function_table{$function} = 1;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200467 } elsif ($cmd eq "-export") { # only exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300468 $output_selection = OUTPUT_EXPORTED;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200469 %function_table = ()
470 } elsif ($cmd eq "-internal") { # only non-exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300471 $output_selection = OUTPUT_INTERNAL;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200472 %function_table = ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 } elsif ($cmd eq "-v") {
474 $verbose = 1;
475 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
476 usage();
Johannes Berg4b445952007-10-24 15:08:48 -0700477 } elsif ($cmd eq '-no-doc-sections') {
478 $no_doc_sections = 1;
Johannes Berge946c43a2013-11-12 15:11:12 -0800479 } elsif ($cmd eq '-show-not-found') {
480 $show_not_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482}
483
Randy Dunlap8484baa2011-01-05 16:28:43 -0800484# continue execution near EOF;
485
Borislav Petkov53f049f2007-05-08 00:30:54 -0700486# get kernel version from env
487sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 15:08:48 -0700488 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 00:30:54 -0700489
490 if (defined($ENV{'KERNELVERSION'})) {
491 $version = $ENV{'KERNELVERSION'};
492 }
493 return $version;
494}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496##
497# dumps section contents to arrays/hashes intended for that purpose.
498#
499sub dump_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700500 my $file = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 my $name = shift;
502 my $contents = join "\n", @_;
503
504 if ($name =~ m/$type_constant/) {
505 $name = $1;
506# print STDERR "constant section '$1' = '$contents'\n";
507 $constants{$name} = $contents;
508 } elsif ($name =~ m/$type_param/) {
509# print STDERR "parameter def '$1' = '$contents'\n";
510 $name = $1;
511 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800512 $sectcheck = $sectcheck . $name . " ";
Randy Dunlapced69092008-12-01 13:14:03 -0800513 } elsif ($name eq "@\.\.\.") {
514# print STDERR "parameter def '...' = '$contents'\n";
515 $name = "...";
516 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800517 $sectcheck = $sectcheck . $name . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 } else {
519# print STDERR "other section '$name' = '$contents'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700520 if (defined($sections{$name}) && ($sections{$name} ne "")) {
Bart Van Assched40e1e62015-09-04 15:43:21 -0700521 print STDERR "${file}:$.: error: duplicate section name '$name'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700522 ++$errors;
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 $sections{$name} = $contents;
525 push @sectionlist, $name;
526 }
527}
528
529##
Johannes Bergb112e0f2007-10-24 15:08:48 -0700530# dump DOC: section after checking that it should go out
531#
532sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700533 my $file = shift;
Johannes Bergb112e0f2007-10-24 15:08:48 -0700534 my $name = shift;
535 my $contents = join "\n", @_;
536
Johannes Berg4b445952007-10-24 15:08:48 -0700537 if ($no_doc_sections) {
538 return;
539 }
540
Jani Nikulab6c3f452016-05-29 22:19:35 +0300541 if (($output_selection == OUTPUT_ALL) ||
542 ($output_selection == OUTPUT_INCLUDE &&
543 defined($function_table{$name})) ||
544 ($output_selection == OUTPUT_EXCLUDE &&
545 !defined($function_table{$name})))
Johannes Bergb112e0f2007-10-24 15:08:48 -0700546 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700547 dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 15:08:48 -0700548 output_blockhead({'sectionlist' => \@sectionlist,
549 'sections' => \%sections,
550 'module' => $modulename,
Jani Nikulab6c3f452016-05-29 22:19:35 +0300551 'content-only' => ($output_selection != OUTPUT_ALL), });
Johannes Bergb112e0f2007-10-24 15:08:48 -0700552 }
553}
554
555##
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556# output function
557#
558# parameterdescs, a hash.
559# function => "function name"
560# parameterlist => @list of parameters
561# parameterdescs => %parameter descriptions
562# sectionlist => @list of sections
Randy Dunlapa21217d2007-02-10 01:46:04 -0800563# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800564#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566sub output_highlight {
567 my $contents = join "\n",@_;
568 my $line;
569
570# DEBUG
571# if (!defined $contents) {
572# use Carp;
573# confess "output_highlight got called with no args?\n";
574# }
575
Dan Luedtke1b40c192012-08-12 10:46:15 +0200576 if ($output_mode eq "html" || $output_mode eq "html5" ||
577 $output_mode eq "xml") {
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700578 $contents = local_unescape($contents);
579 # convert data read & converted thru xml_escape() into &xyz; format:
Randy Dunlap2b35f4d2010-11-18 12:27:31 -0800580 $contents =~ s/\\\\\\/\&/g;
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700581 }
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700582# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 eval $dohighlight;
584 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700585# print STDERR "contents af:$contents\n";
586
Dan Luedtke1b40c192012-08-12 10:46:15 +0200587# strip whitespaces when generating html5
588 if ($output_mode eq "html5") {
589 $contents =~ s/^\s+//;
590 $contents =~ s/\s+$//;
591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-04 17:15:10 -0700593 if (! $output_preformatted) {
594 $line =~ s/^\s*//;
595 }
Randy Dunlap3c308792007-05-08 00:24:39 -0700596 if ($line eq ""){
Daniel Santose314ba32012-10-04 17:15:08 -0700597 if (! $output_preformatted) {
598 print $lineprefix, local_unescape($blankline);
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -0700601 $line =~ s/\\\\\\/\&/g;
Randy Dunlapcdccb312007-07-19 01:48:25 -0700602 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
603 print "\\&$line";
604 } else {
605 print $lineprefix, $line;
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 print "\n";
609 }
610}
611
Dan Luedtke1b40c192012-08-12 10:46:15 +0200612# output sections in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613sub output_section_html(%) {
614 my %args = %{$_[0]};
615 my $section;
616
617 foreach $section (@{$args{'sectionlist'}}) {
618 print "<h3>$section</h3>\n";
619 print "<blockquote>\n";
620 output_highlight($args{'sections'}{$section});
621 print "</blockquote>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625# output enum in html
626sub output_enum_html(%) {
627 my %args = %{$_[0]};
628 my ($parameter);
629 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700630 print "<h2>enum " . $args{'enum'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Randy Dunlapb9d973282009-06-09 08:50:38 -0700632 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 $count = 0;
634 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700635 print " <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if ($count != $#{$args{'parameterlist'}}) {
637 $count++;
638 print ",\n";
639 }
640 print "<br>";
641 }
642 print "};<br>\n";
643
644 print "<h3>Constants</h3>\n";
645 print "<dl>\n";
646 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700647 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 print "<dd>";
649 output_highlight($args{'parameterdescs'}{$parameter});
650 }
651 print "</dl>\n";
652 output_section_html(@_);
653 print "<hr>\n";
654}
655
Randy Dunlapd28bee02006-02-01 03:06:57 -0800656# output typedef in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657sub output_typedef_html(%) {
658 my %args = %{$_[0]};
659 my ($parameter);
660 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700661 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Randy Dunlapb9d973282009-06-09 08:50:38 -0700663 print "<b>typedef " . $args{'typedef'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 output_section_html(@_);
665 print "<hr>\n";
666}
667
668# output struct in html
669sub output_struct_html(%) {
670 my %args = %{$_[0]};
671 my ($parameter);
672
Randy Dunlapb9d973282009-06-09 08:50:38 -0700673 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
674 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 foreach $parameter (@{$args{'parameterlist'}}) {
676 if ($parameter =~ /^#/) {
677 print "$parameter<br>\n";
678 next;
679 }
680 my $parameter_name = $parameter;
681 $parameter_name =~ s/\[.*//;
682
Randy Dunlap3c308792007-05-08 00:24:39 -0700683 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 $type = $args{'parametertypes'}{$parameter};
685 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
686 # pointer-to-function
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700687 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700689 # bitfield
690 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 } else {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700692 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694 }
695 print "};<br>\n";
696
697 print "<h3>Members</h3>\n";
698 print "<dl>\n";
699 foreach $parameter (@{$args{'parameterlist'}}) {
700 ($parameter =~ /^#/) && next;
701
702 my $parameter_name = $parameter;
703 $parameter_name =~ s/\[.*//;
704
Randy Dunlap3c308792007-05-08 00:24:39 -0700705 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700706 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 print "<dd>";
708 output_highlight($args{'parameterdescs'}{$parameter_name});
709 }
710 print "</dl>\n";
711 output_section_html(@_);
712 print "<hr>\n";
713}
714
715# output function in html
716sub output_function_html(%) {
717 my %args = %{$_[0]};
718 my ($parameter, $section);
719 my $count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Randy Dunlapb9d973282009-06-09 08:50:38 -0700721 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
722 print "<i>" . $args{'functiontype'} . "</i>\n";
723 print "<b>" . $args{'function'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 print "(";
725 $count = 0;
726 foreach $parameter (@{$args{'parameterlist'}}) {
727 $type = $args{'parametertypes'}{$parameter};
728 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
729 # pointer-to-function
730 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
731 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700732 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734 if ($count != $#{$args{'parameterlist'}}) {
735 $count++;
736 print ",\n";
737 }
738 }
739 print ")\n";
740
741 print "<h3>Arguments</h3>\n";
742 print "<dl>\n";
743 foreach $parameter (@{$args{'parameterlist'}}) {
744 my $parameter_name = $parameter;
745 $parameter_name =~ s/\[.*//;
746
Randy Dunlap3c308792007-05-08 00:24:39 -0700747 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700748 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 print "<dd>";
750 output_highlight($args{'parameterdescs'}{$parameter_name});
751 }
752 print "</dl>\n";
753 output_section_html(@_);
754 print "<hr>\n";
755}
756
Johannes Bergb112e0f2007-10-24 15:08:48 -0700757# output DOC: block header in html
758sub output_blockhead_html(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 my %args = %{$_[0]};
760 my ($parameter, $section);
761 my $count;
762
763 foreach $section (@{$args{'sectionlist'}}) {
764 print "<h3>$section</h3>\n";
765 print "<ul>\n";
766 output_highlight($args{'sections'}{$section});
767 print "</ul>\n";
768 }
769 print "<hr>\n";
770}
771
Dan Luedtke1b40c192012-08-12 10:46:15 +0200772# output sections in html5
773sub output_section_html5(%) {
774 my %args = %{$_[0]};
775 my $section;
776
777 foreach $section (@{$args{'sectionlist'}}) {
778 print "<section>\n";
779 print "<h1>$section</h1>\n";
780 print "<p>\n";
781 output_highlight($args{'sections'}{$section});
782 print "</p>\n";
783 print "</section>\n";
784 }
785}
786
787# output enum in html5
788sub output_enum_html5(%) {
789 my %args = %{$_[0]};
790 my ($parameter);
791 my $count;
792 my $html5id;
793
794 $html5id = $args{'enum'};
795 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
796 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
797 print "<h1>enum " . $args{'enum'} . "</h1>\n";
798 print "<ol class=\"code\">\n";
799 print "<li>";
800 print "<span class=\"keyword\">enum</span> ";
801 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
802 print "</li>\n";
803 $count = 0;
804 foreach $parameter (@{$args{'parameterlist'}}) {
805 print "<li class=\"indent\">";
806 print "<span class=\"param\">" . $parameter . "</span>";
807 if ($count != $#{$args{'parameterlist'}}) {
808 $count++;
809 print ",";
810 }
811 print "</li>\n";
812 }
813 print "<li>};</li>\n";
814 print "</ol>\n";
815
816 print "<section>\n";
817 print "<h1>Constants</h1>\n";
818 print "<dl>\n";
819 foreach $parameter (@{$args{'parameterlist'}}) {
820 print "<dt>" . $parameter . "</dt>\n";
821 print "<dd>";
822 output_highlight($args{'parameterdescs'}{$parameter});
823 print "</dd>\n";
824 }
825 print "</dl>\n";
826 print "</section>\n";
827 output_section_html5(@_);
828 print "</article>\n";
829}
830
831# output typedef in html5
832sub output_typedef_html5(%) {
833 my %args = %{$_[0]};
834 my ($parameter);
835 my $count;
836 my $html5id;
837
838 $html5id = $args{'typedef'};
839 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
840 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
841 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
842
843 print "<ol class=\"code\">\n";
844 print "<li>";
845 print "<span class=\"keyword\">typedef</span> ";
846 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
847 print "</li>\n";
848 print "</ol>\n";
849 output_section_html5(@_);
850 print "</article>\n";
851}
852
853# output struct in html5
854sub output_struct_html5(%) {
855 my %args = %{$_[0]};
856 my ($parameter);
857 my $html5id;
858
859 $html5id = $args{'struct'};
860 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
861 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
862 print "<hgroup>\n";
863 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
864 print "<h2>". $args{'purpose'} . "</h2>\n";
865 print "</hgroup>\n";
866 print "<ol class=\"code\">\n";
867 print "<li>";
868 print "<span class=\"type\">" . $args{'type'} . "</span> ";
869 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
870 print "</li>\n";
871 foreach $parameter (@{$args{'parameterlist'}}) {
872 print "<li class=\"indent\">";
873 if ($parameter =~ /^#/) {
874 print "<span class=\"param\">" . $parameter ."</span>\n";
875 print "</li>\n";
876 next;
877 }
878 my $parameter_name = $parameter;
879 $parameter_name =~ s/\[.*//;
880
881 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
882 $type = $args{'parametertypes'}{$parameter};
883 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
884 # pointer-to-function
885 print "<span class=\"type\">$1</span> ";
886 print "<span class=\"param\">$parameter</span>";
887 print "<span class=\"type\">)</span> ";
888 print "(<span class=\"args\">$2</span>);";
889 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
890 # bitfield
891 print "<span class=\"type\">$1</span> ";
892 print "<span class=\"param\">$parameter</span>";
893 print "<span class=\"bits\">$2</span>;";
894 } else {
895 print "<span class=\"type\">$type</span> ";
896 print "<span class=\"param\">$parameter</span>;";
897 }
898 print "</li>\n";
899 }
900 print "<li>};</li>\n";
901 print "</ol>\n";
902
903 print "<section>\n";
904 print "<h1>Members</h1>\n";
905 print "<dl>\n";
906 foreach $parameter (@{$args{'parameterlist'}}) {
907 ($parameter =~ /^#/) && next;
908
909 my $parameter_name = $parameter;
910 $parameter_name =~ s/\[.*//;
911
912 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
913 print "<dt>" . $parameter . "</dt>\n";
914 print "<dd>";
915 output_highlight($args{'parameterdescs'}{$parameter_name});
916 print "</dd>\n";
917 }
918 print "</dl>\n";
919 print "</section>\n";
920 output_section_html5(@_);
921 print "</article>\n";
922}
923
924# output function in html5
925sub output_function_html5(%) {
926 my %args = %{$_[0]};
927 my ($parameter, $section);
928 my $count;
929 my $html5id;
930
931 $html5id = $args{'function'};
932 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
933 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
934 print "<hgroup>\n";
935 print "<h1>" . $args{'function'} . "</h1>";
936 print "<h2>" . $args{'purpose'} . "</h2>\n";
937 print "</hgroup>\n";
938 print "<ol class=\"code\">\n";
939 print "<li>";
940 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
941 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
942 print "</li>";
943 $count = 0;
944 foreach $parameter (@{$args{'parameterlist'}}) {
945 print "<li class=\"indent\">";
946 $type = $args{'parametertypes'}{$parameter};
947 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
948 # pointer-to-function
949 print "<span class=\"type\">$1</span> ";
950 print "<span class=\"param\">$parameter</span>";
951 print "<span class=\"type\">)</span> ";
952 print "(<span class=\"args\">$2</span>)";
953 } else {
954 print "<span class=\"type\">$type</span> ";
955 print "<span class=\"param\">$parameter</span>";
956 }
957 if ($count != $#{$args{'parameterlist'}}) {
958 $count++;
959 print ",";
960 }
961 print "</li>\n";
962 }
963 print "<li>)</li>\n";
964 print "</ol>\n";
965
966 print "<section>\n";
967 print "<h1>Arguments</h1>\n";
968 print "<p>\n";
969 print "<dl>\n";
970 foreach $parameter (@{$args{'parameterlist'}}) {
971 my $parameter_name = $parameter;
972 $parameter_name =~ s/\[.*//;
973
974 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
975 print "<dt>" . $parameter . "</dt>\n";
976 print "<dd>";
977 output_highlight($args{'parameterdescs'}{$parameter_name});
978 print "</dd>\n";
979 }
980 print "</dl>\n";
981 print "</section>\n";
982 output_section_html5(@_);
983 print "</article>\n";
984}
985
986# output DOC: block header in html5
987sub output_blockhead_html5(%) {
988 my %args = %{$_[0]};
989 my ($parameter, $section);
990 my $count;
991 my $html5id;
992
993 foreach $section (@{$args{'sectionlist'}}) {
994 $html5id = $section;
995 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
996 print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
997 print "<h1>$section</h1>\n";
998 print "<p>\n";
999 output_highlight($args{'sections'}{$section});
1000 print "</p>\n";
1001 }
1002 print "</article>\n";
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005sub output_section_xml(%) {
1006 my %args = %{$_[0]};
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001007 my $section;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 # print out each section
1009 $lineprefix=" ";
1010 foreach $section (@{$args{'sectionlist'}}) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001011 print "<refsect1>\n";
1012 print "<title>$section</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001014 print "<informalexample><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001015 $output_preformatted = 1;
Rich Walkerc73894c2005-05-01 08:59:26 -07001016 } else {
1017 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001020 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001022 print "</programlisting></informalexample>\n";
1023 } else {
1024 print "</para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
Rich Walkerc73894c2005-05-01 08:59:26 -07001026 print "</refsect1>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
1028}
1029
1030# output function in XML DocBook
1031sub output_function_xml(%) {
1032 my %args = %{$_[0]};
1033 my ($parameter, $section);
1034 my $count;
1035 my $id;
1036
Randy Dunlapb9d973282009-06-09 08:50:38 -07001037 $id = "API-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 $id =~ s/[^A-Za-z0-9]/-/g;
1039
Pavel Pisa5449bc92007-02-10 01:45:37 -08001040 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001041 print "<refentryinfo>\n";
1042 print " <title>LINUX</title>\n";
1043 print " <productname>Kernel Hackers Manual</productname>\n";
1044 print " <date>$man_date</date>\n";
1045 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001047 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001048 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001049 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 print "</refmeta>\n";
1051 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001052 print " <refname>" . $args{'function'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 print " <refpurpose>\n";
1054 print " ";
1055 output_highlight ($args{'purpose'});
1056 print " </refpurpose>\n";
1057 print "</refnamediv>\n";
1058
1059 print "<refsynopsisdiv>\n";
1060 print " <title>Synopsis</title>\n";
1061 print " <funcsynopsis><funcprototype>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001062 print " <funcdef>" . $args{'functiontype'} . " ";
1063 print "<function>" . $args{'function'} . " </function></funcdef>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 $count = 0;
1066 if ($#{$args{'parameterlist'}} >= 0) {
1067 foreach $parameter (@{$args{'parameterlist'}}) {
1068 $type = $args{'parametertypes'}{$parameter};
1069 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1070 # pointer-to-function
1071 print " <paramdef>$1<parameter>$parameter</parameter>)\n";
1072 print " <funcparams>$2</funcparams></paramdef>\n";
1073 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001074 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 print " <parameter>$parameter</parameter></paramdef>\n";
1076 }
1077 }
1078 } else {
Martin Waitz6013d542005-05-01 08:59:25 -07001079 print " <void/>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081 print " </funcprototype></funcsynopsis>\n";
1082 print "</refsynopsisdiv>\n";
1083
1084 # print parameters
1085 print "<refsect1>\n <title>Arguments</title>\n";
1086 if ($#{$args{'parameterlist'}} >= 0) {
1087 print " <variablelist>\n";
1088 foreach $parameter (@{$args{'parameterlist'}}) {
1089 my $parameter_name = $parameter;
1090 $parameter_name =~ s/\[.*//;
1091
1092 print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n";
1093 print " <listitem>\n <para>\n";
1094 $lineprefix=" ";
1095 output_highlight($args{'parameterdescs'}{$parameter_name});
1096 print " </para>\n </listitem>\n </varlistentry>\n";
1097 }
1098 print " </variablelist>\n";
1099 } else {
1100 print " <para>\n None\n </para>\n";
1101 }
1102 print "</refsect1>\n";
1103
1104 output_section_xml(@_);
1105 print "</refentry>\n\n";
1106}
1107
1108# output struct in XML DocBook
1109sub output_struct_xml(%) {
1110 my %args = %{$_[0]};
1111 my ($parameter, $section);
1112 my $id;
1113
Randy Dunlapb9d973282009-06-09 08:50:38 -07001114 $id = "API-struct-" . $args{'struct'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 $id =~ s/[^A-Za-z0-9]/-/g;
1116
Pavel Pisa5449bc92007-02-10 01:45:37 -08001117 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001118 print "<refentryinfo>\n";
1119 print " <title>LINUX</title>\n";
1120 print " <productname>Kernel Hackers Manual</productname>\n";
1121 print " <date>$man_date</date>\n";
1122 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001124 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001125 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001126 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 print "</refmeta>\n";
1128 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001129 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 print " <refpurpose>\n";
1131 print " ";
1132 output_highlight ($args{'purpose'});
1133 print " </refpurpose>\n";
1134 print "</refnamediv>\n";
1135
1136 print "<refsynopsisdiv>\n";
1137 print " <title>Synopsis</title>\n";
1138 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001139 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 foreach $parameter (@{$args{'parameterlist'}}) {
1141 if ($parameter =~ /^#/) {
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08001142 my $prm = $parameter;
1143 # convert data read & converted thru xml_escape() into &xyz; format:
1144 # This allows us to have #define macros interspersed in a struct.
1145 $prm =~ s/\\\\\\/\&/g;
1146 print "$prm\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 next;
1148 }
1149
1150 my $parameter_name = $parameter;
1151 $parameter_name =~ s/\[.*//;
1152
1153 defined($args{'parameterdescs'}{$parameter_name}) || next;
Randy Dunlap3c308792007-05-08 00:24:39 -07001154 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 $type = $args{'parametertypes'}{$parameter};
1156 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1157 # pointer-to-function
1158 print " $1 $parameter) ($2);\n";
1159 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001160 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 print " $1 $parameter$2;\n";
1162 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001163 print " " . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165 }
1166 print "};";
1167 print " </programlisting>\n";
1168 print "</refsynopsisdiv>\n";
1169
1170 print " <refsect1>\n";
1171 print " <title>Members</title>\n";
1172
Randy Dunlap39f00c02008-09-22 13:57:44 -07001173 if ($#{$args{'parameterlist'}} >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 print " <variablelist>\n";
1175 foreach $parameter (@{$args{'parameterlist'}}) {
1176 ($parameter =~ /^#/) && next;
1177
1178 my $parameter_name = $parameter;
1179 $parameter_name =~ s/\[.*//;
1180
1181 defined($args{'parameterdescs'}{$parameter_name}) || next;
1182 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1183 print " <varlistentry>";
1184 print " <term>$parameter</term>\n";
1185 print " <listitem><para>\n";
1186 output_highlight($args{'parameterdescs'}{$parameter_name});
1187 print " </para></listitem>\n";
1188 print " </varlistentry>\n";
1189 }
1190 print " </variablelist>\n";
Randy Dunlap39f00c02008-09-22 13:57:44 -07001191 } else {
1192 print " <para>\n None\n </para>\n";
1193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 print " </refsect1>\n";
1195
1196 output_section_xml(@_);
1197
1198 print "</refentry>\n\n";
1199}
1200
1201# output enum in XML DocBook
1202sub output_enum_xml(%) {
1203 my %args = %{$_[0]};
1204 my ($parameter, $section);
1205 my $count;
1206 my $id;
1207
Randy Dunlapb9d973282009-06-09 08:50:38 -07001208 $id = "API-enum-" . $args{'enum'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 $id =~ s/[^A-Za-z0-9]/-/g;
1210
Pavel Pisa5449bc92007-02-10 01:45:37 -08001211 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001212 print "<refentryinfo>\n";
1213 print " <title>LINUX</title>\n";
1214 print " <productname>Kernel Hackers Manual</productname>\n";
1215 print " <date>$man_date</date>\n";
1216 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001218 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001219 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001220 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 print "</refmeta>\n";
1222 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001223 print " <refname>enum " . $args{'enum'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 print " <refpurpose>\n";
1225 print " ";
1226 output_highlight ($args{'purpose'});
1227 print " </refpurpose>\n";
1228 print "</refnamediv>\n";
1229
1230 print "<refsynopsisdiv>\n";
1231 print " <title>Synopsis</title>\n";
1232 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001233 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 $count = 0;
1235 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001236 print " $parameter";
1237 if ($count != $#{$args{'parameterlist'}}) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 $count++;
1239 print ",";
Randy Dunlap3c308792007-05-08 00:24:39 -07001240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 print "\n";
1242 }
1243 print "};";
1244 print " </programlisting>\n";
1245 print "</refsynopsisdiv>\n";
1246
1247 print "<refsect1>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001248 print " <title>Constants</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 print " <variablelist>\n";
1250 foreach $parameter (@{$args{'parameterlist'}}) {
1251 my $parameter_name = $parameter;
1252 $parameter_name =~ s/\[.*//;
1253
1254 print " <varlistentry>";
1255 print " <term>$parameter</term>\n";
1256 print " <listitem><para>\n";
1257 output_highlight($args{'parameterdescs'}{$parameter_name});
1258 print " </para></listitem>\n";
1259 print " </varlistentry>\n";
1260 }
1261 print " </variablelist>\n";
1262 print "</refsect1>\n";
1263
1264 output_section_xml(@_);
1265
1266 print "</refentry>\n\n";
1267}
1268
1269# output typedef in XML DocBook
1270sub output_typedef_xml(%) {
1271 my %args = %{$_[0]};
1272 my ($parameter, $section);
1273 my $id;
1274
Randy Dunlapb9d973282009-06-09 08:50:38 -07001275 $id = "API-typedef-" . $args{'typedef'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 $id =~ s/[^A-Za-z0-9]/-/g;
1277
Pavel Pisa5449bc92007-02-10 01:45:37 -08001278 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001279 print "<refentryinfo>\n";
1280 print " <title>LINUX</title>\n";
1281 print " <productname>Kernel Hackers Manual</productname>\n";
1282 print " <date>$man_date</date>\n";
1283 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001285 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001286 print " <manvolnum>9</manvolnum>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 print "</refmeta>\n";
1288 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001289 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 print " <refpurpose>\n";
1291 print " ";
1292 output_highlight ($args{'purpose'});
1293 print " </refpurpose>\n";
1294 print "</refnamediv>\n";
1295
1296 print "<refsynopsisdiv>\n";
1297 print " <title>Synopsis</title>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001298 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 print "</refsynopsisdiv>\n";
1300
1301 output_section_xml(@_);
1302
1303 print "</refentry>\n\n";
1304}
1305
1306# output in XML DocBook
Johannes Bergb112e0f2007-10-24 15:08:48 -07001307sub output_blockhead_xml(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 my %args = %{$_[0]};
1309 my ($parameter, $section);
1310 my $count;
1311
1312 my $id = $args{'module'};
1313 $id =~ s/[^A-Za-z0-9]/-/g;
1314
1315 # print out each section
1316 $lineprefix=" ";
1317 foreach $section (@{$args{'sectionlist'}}) {
Johannes Bergb112e0f2007-10-24 15:08:48 -07001318 if (!$args{'content-only'}) {
1319 print "<refsect1>\n <title>$section</title>\n";
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if ($section =~ m/EXAMPLE/i) {
1322 print "<example><para>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001323 $output_preformatted = 1;
Johannes Bergb112e0f2007-10-24 15:08:48 -07001324 } else {
1325 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001328 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if ($section =~ m/EXAMPLE/i) {
1330 print "</para></example>\n";
Johannes Bergb112e0f2007-10-24 15:08:48 -07001331 } else {
1332 print "</para>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
Johannes Bergb112e0f2007-10-24 15:08:48 -07001334 if (!$args{'content-only'}) {
1335 print "\n</refsect1>\n";
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
1339 print "\n\n";
1340}
1341
1342# output in XML DocBook
1343sub output_function_gnome {
1344 my %args = %{$_[0]};
1345 my ($parameter, $section);
1346 my $count;
1347 my $id;
1348
Randy Dunlapb9d973282009-06-09 08:50:38 -07001349 $id = $args{'module'} . "-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 $id =~ s/[^A-Za-z0-9]/-/g;
1351
1352 print "<sect2>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001353 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 print " <funcsynopsis>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001356 print " <funcdef>" . $args{'functiontype'} . " ";
1357 print "<function>" . $args{'function'} . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 print "</function></funcdef>\n";
1359
1360 $count = 0;
1361 if ($#{$args{'parameterlist'}} >= 0) {
1362 foreach $parameter (@{$args{'parameterlist'}}) {
1363 $type = $args{'parametertypes'}{$parameter};
1364 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1365 # pointer-to-function
1366 print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1367 print " <funcparams>$2</funcparams></paramdef>\n";
1368 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001369 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 print " <parameter>$parameter</parameter></paramdef>\n";
1371 }
1372 }
1373 } else {
1374 print " <void>\n";
1375 }
1376 print " </funcsynopsis>\n";
1377 if ($#{$args{'parameterlist'}} >= 0) {
1378 print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1379 print "<tgroup cols=\"2\">\n";
1380 print "<colspec colwidth=\"2*\">\n";
1381 print "<colspec colwidth=\"8*\">\n";
1382 print "<tbody>\n";
1383 foreach $parameter (@{$args{'parameterlist'}}) {
1384 my $parameter_name = $parameter;
1385 $parameter_name =~ s/\[.*//;
1386
1387 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1388 print " <entry>\n";
1389 $lineprefix=" ";
1390 output_highlight($args{'parameterdescs'}{$parameter_name});
1391 print " </entry></row>\n";
1392 }
1393 print " </tbody></tgroup></informaltable>\n";
1394 } else {
1395 print " <para>\n None\n </para>\n";
1396 }
1397
1398 # print out each section
1399 $lineprefix=" ";
1400 foreach $section (@{$args{'sectionlist'}}) {
1401 print "<simplesect>\n <title>$section</title>\n";
1402 if ($section =~ m/EXAMPLE/i) {
1403 print "<example><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001404 $output_preformatted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 } else {
1406 }
1407 print "<para>\n";
1408 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001409 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 print "</para>\n";
1411 if ($section =~ m/EXAMPLE/i) {
1412 print "</programlisting></example>\n";
1413 } else {
1414 }
1415 print " </simplesect>\n";
1416 }
1417
1418 print "</sect2>\n\n";
1419}
1420
1421##
1422# output function in man
1423sub output_function_man(%) {
1424 my %args = %{$_[0]};
1425 my ($parameter, $section);
1426 my $count;
1427
1428 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1429
1430 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001431 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 print ".SH SYNOPSIS\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001434 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001435 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001436 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001437 print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 $count = 0;
1440 my $parenth = "(";
1441 my $post = ",";
1442 foreach my $parameter (@{$args{'parameterlist'}}) {
1443 if ($count == $#{$args{'parameterlist'}}) {
1444 $post = ");";
1445 }
1446 $type = $args{'parametertypes'}{$parameter};
1447 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1448 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001449 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 } else {
1451 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001452 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454 $count++;
1455 $parenth = "";
1456 }
1457
1458 print ".SH ARGUMENTS\n";
1459 foreach $parameter (@{$args{'parameterlist'}}) {
1460 my $parameter_name = $parameter;
1461 $parameter_name =~ s/\[.*//;
1462
Randy Dunlapb9d973282009-06-09 08:50:38 -07001463 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 output_highlight($args{'parameterdescs'}{$parameter_name});
1465 }
1466 foreach $section (@{$args{'sectionlist'}}) {
1467 print ".SH \"", uc $section, "\"\n";
1468 output_highlight($args{'sections'}{$section});
1469 }
1470}
1471
1472##
1473# output enum in man
1474sub output_enum_man(%) {
1475 my %args = %{$_[0]};
1476 my ($parameter, $section);
1477 my $count;
1478
1479 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1480
1481 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001482 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001485 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 $count = 0;
1487 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001488 print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if ($count == $#{$args{'parameterlist'}}) {
1490 print "\n};\n";
1491 last;
1492 }
1493 else {
1494 print ", \n.br\n";
1495 }
1496 $count++;
1497 }
1498
1499 print ".SH Constants\n";
1500 foreach $parameter (@{$args{'parameterlist'}}) {
1501 my $parameter_name = $parameter;
1502 $parameter_name =~ s/\[.*//;
1503
Randy Dunlapb9d973282009-06-09 08:50:38 -07001504 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 output_highlight($args{'parameterdescs'}{$parameter_name});
1506 }
1507 foreach $section (@{$args{'sectionlist'}}) {
1508 print ".SH \"$section\"\n";
1509 output_highlight($args{'sections'}{$section});
1510 }
1511}
1512
1513##
1514# output struct in man
1515sub output_struct_man(%) {
1516 my %args = %{$_[0]};
1517 my ($parameter, $section);
1518
Randy Dunlapb9d973282009-06-09 08:50:38 -07001519 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001522 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001525 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 foreach my $parameter (@{$args{'parameterlist'}}) {
1528 if ($parameter =~ /^#/) {
1529 print ".BI \"$parameter\"\n.br\n";
1530 next;
1531 }
1532 my $parameter_name = $parameter;
1533 $parameter_name =~ s/\[.*//;
1534
Randy Dunlap3c308792007-05-08 00:24:39 -07001535 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 $type = $args{'parametertypes'}{$parameter};
1537 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1538 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001539 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy.Dunlap1d7e1d42006-07-01 04:36:34 -07001541 # bitfield
Randy Dunlapb9d973282009-06-09 08:50:38 -07001542 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 } else {
1544 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001545 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547 print "\n.br\n";
1548 }
1549 print "};\n.br\n";
1550
Randy Dunlapc51d3da2006-06-25 05:49:14 -07001551 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 foreach $parameter (@{$args{'parameterlist'}}) {
1553 ($parameter =~ /^#/) && next;
1554
1555 my $parameter_name = $parameter;
1556 $parameter_name =~ s/\[.*//;
1557
Randy Dunlap3c308792007-05-08 00:24:39 -07001558 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001559 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 output_highlight($args{'parameterdescs'}{$parameter_name});
1561 }
1562 foreach $section (@{$args{'sectionlist'}}) {
1563 print ".SH \"$section\"\n";
1564 output_highlight($args{'sections'}{$section});
1565 }
1566}
1567
1568##
1569# output typedef in man
1570sub output_typedef_man(%) {
1571 my %args = %{$_[0]};
1572 my ($parameter, $section);
1573
1574 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1575
1576 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001577 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 foreach $section (@{$args{'sectionlist'}}) {
1580 print ".SH \"$section\"\n";
1581 output_highlight($args{'sections'}{$section});
1582 }
1583}
1584
Johannes Bergb112e0f2007-10-24 15:08:48 -07001585sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 my %args = %{$_[0]};
1587 my ($parameter, $section);
1588 my $count;
1589
1590 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1591
1592 foreach $section (@{$args{'sectionlist'}}) {
1593 print ".SH \"$section\"\n";
1594 output_highlight($args{'sections'}{$section});
1595 }
1596}
1597
1598##
1599# output in text
1600sub output_function_text(%) {
1601 my %args = %{$_[0]};
1602 my ($parameter, $section);
Randy Dunlapa21217d2007-02-10 01:46:04 -08001603 my $start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Randy Dunlapf47634b2006-07-01 04:36:36 -07001605 print "Name:\n\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001606 print $args{'function'} . " - " . $args{'purpose'} . "\n";
Randy Dunlapf47634b2006-07-01 04:36:36 -07001607
1608 print "\nSynopsis:\n\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001609 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001610 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001611 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001612 $start = $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 print $start;
Randy Dunlapa21217d2007-02-10 01:46:04 -08001615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 my $count = 0;
1617 foreach my $parameter (@{$args{'parameterlist'}}) {
1618 $type = $args{'parametertypes'}{$parameter};
1619 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1620 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001621 print $1 . $parameter . ") (" . $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001623 print $type . " " . $parameter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625 if ($count != $#{$args{'parameterlist'}}) {
1626 $count++;
1627 print ",\n";
1628 print " " x length($start);
1629 } else {
1630 print ");\n\n";
1631 }
1632 }
1633
1634 print "Arguments:\n\n";
1635 foreach $parameter (@{$args{'parameterlist'}}) {
1636 my $parameter_name = $parameter;
1637 $parameter_name =~ s/\[.*//;
1638
Randy Dunlapb9d973282009-06-09 08:50:38 -07001639 print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641 output_section_text(@_);
1642}
1643
1644#output sections in text
1645sub output_section_text(%) {
1646 my %args = %{$_[0]};
1647 my $section;
1648
1649 print "\n";
1650 foreach $section (@{$args{'sectionlist'}}) {
1651 print "$section:\n\n";
1652 output_highlight($args{'sections'}{$section});
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 print "\n\n";
1655}
1656
1657# output enum in text
1658sub output_enum_text(%) {
1659 my %args = %{$_[0]};
1660 my ($parameter);
1661 my $count;
1662 print "Enum:\n\n";
1663
Randy Dunlapb9d973282009-06-09 08:50:38 -07001664 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1665 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 $count = 0;
1667 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001668 print "\t$parameter";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if ($count != $#{$args{'parameterlist'}}) {
1670 $count++;
1671 print ",";
1672 }
1673 print "\n";
1674 }
1675 print "};\n\n";
1676
1677 print "Constants:\n\n";
1678 foreach $parameter (@{$args{'parameterlist'}}) {
1679 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001680 print $args{'parameterdescs'}{$parameter} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
1683 output_section_text(@_);
1684}
1685
1686# output typedef in text
1687sub output_typedef_text(%) {
1688 my %args = %{$_[0]};
1689 my ($parameter);
1690 my $count;
1691 print "Typedef:\n\n";
1692
Randy Dunlapb9d973282009-06-09 08:50:38 -07001693 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 output_section_text(@_);
1695}
1696
1697# output struct as text
1698sub output_struct_text(%) {
1699 my %args = %{$_[0]};
1700 my ($parameter);
1701
Randy Dunlapb9d973282009-06-09 08:50:38 -07001702 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1703 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 foreach $parameter (@{$args{'parameterlist'}}) {
1705 if ($parameter =~ /^#/) {
1706 print "$parameter\n";
1707 next;
1708 }
1709
1710 my $parameter_name = $parameter;
1711 $parameter_name =~ s/\[.*//;
1712
Randy Dunlap3c308792007-05-08 00:24:39 -07001713 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 $type = $args{'parametertypes'}{$parameter};
1715 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1716 # pointer-to-function
1717 print "\t$1 $parameter) ($2);\n";
1718 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001719 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 print "\t$1 $parameter$2;\n";
1721 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001722 print "\t" . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
1724 }
1725 print "};\n\n";
1726
1727 print "Members:\n\n";
1728 foreach $parameter (@{$args{'parameterlist'}}) {
1729 ($parameter =~ /^#/) && next;
1730
1731 my $parameter_name = $parameter;
1732 $parameter_name =~ s/\[.*//;
1733
Randy Dunlap3c308792007-05-08 00:24:39 -07001734 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001736 print $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
1738 print "\n";
1739 output_section_text(@_);
1740}
1741
Johannes Bergb112e0f2007-10-24 15:08:48 -07001742sub output_blockhead_text(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 my %args = %{$_[0]};
1744 my ($parameter, $section);
1745
1746 foreach $section (@{$args{'sectionlist'}}) {
1747 print " $section:\n";
1748 print " -> ";
1749 output_highlight($args{'sections'}{$section});
1750 }
1751}
1752
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001753##
1754# output in restructured text
1755#
1756
1757#
1758# This could use some work; it's used to output the DOC: sections, and
1759# starts by putting out the name of the doc section itself, but that tends
1760# to duplicate a header already in the template file.
1761#
1762sub output_blockhead_rst(%) {
1763 my %args = %{$_[0]};
1764 my ($parameter, $section);
1765
1766 foreach $section (@{$args{'sectionlist'}}) {
Jani Nikula9e721842016-05-29 22:27:35 +03001767 if ($output_selection != OUTPUT_INCLUDE) {
1768 print "**$section**\n\n";
1769 }
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001770 output_highlight_rst($args{'sections'}{$section});
1771 print "\n";
1772 }
1773}
1774
1775sub output_highlight_rst {
1776 my $contents = join "\n",@_;
1777 my $line;
1778
1779 # undo the evil effects of xml_escape() earlier
1780 $contents = xml_unescape($contents);
1781
1782 eval $dohighlight;
1783 die $@ if $@;
1784
1785 foreach $line (split "\n", $contents) {
1786 if ($line eq "") {
1787 print $lineprefix, $blankline;
1788 } else {
1789 $line =~ s/\\\\\\/\&/g;
1790 print $lineprefix, $line;
1791 }
1792 print "\n";
1793 }
1794}
1795
1796sub output_function_rst(%) {
1797 my %args = %{$_[0]};
1798 my ($parameter, $section);
1799 my $start;
1800
1801 print ".. c:function:: ";
1802 if ($args{'functiontype'} ne "") {
1803 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
1804 } else {
1805 $start = $args{'function'} . " (";
1806 }
1807 print $start;
1808
1809 my $count = 0;
1810 foreach my $parameter (@{$args{'parameterlist'}}) {
1811 if ($count ne 0) {
1812 print ", ";
1813 }
1814 $count++;
1815 $type = $args{'parametertypes'}{$parameter};
1816 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1817 # pointer-to-function
1818 print $1 . $parameter . ") (" . $2;
1819 } else {
1820 print $type . " " . $parameter;
1821 }
1822 }
1823 print ")\n\n " . $args{'purpose'} . "\n\n";
1824
1825 print ":Parameters:\n\n";
1826 foreach $parameter (@{$args{'parameterlist'}}) {
1827 my $parameter_name = $parameter;
1828 #$parameter_name =~ s/\[.*//;
1829 $type = $args{'parametertypes'}{$parameter};
1830
1831 if ($type ne "") {
1832 print " ``$type $parameter``\n";
1833 } else {
1834 print " ``$parameter``\n";
1835 }
Jani Nikula5e64fa92016-05-19 20:32:48 +03001836 if (defined($args{'parameterdescs'}{$parameter_name}) &&
1837 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001838 my $oldprefix = $lineprefix;
1839 $lineprefix = " ";
1840 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1841 $lineprefix = $oldprefix;
1842 } else {
1843 print "\n _undescribed_\n";
1844 }
1845 print "\n";
1846 }
1847 output_section_rst(@_);
1848}
1849
1850sub output_section_rst(%) {
1851 my %args = %{$_[0]};
1852 my $section;
1853 my $oldprefix = $lineprefix;
1854 $lineprefix = " ";
1855
1856 foreach $section (@{$args{'sectionlist'}}) {
1857 print ":$section:\n\n";
1858 output_highlight_rst($args{'sections'}{$section});
1859 print "\n";
1860 }
1861 print "\n";
1862 $lineprefix = $oldprefix;
1863}
1864
1865sub output_enum_rst(%) {
1866 my %args = %{$_[0]};
1867 my ($parameter);
1868 my $count;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001869 my $name = "enum " . $args{'enum'};
Jani Nikula62850972016-05-12 16:15:38 +03001870
1871 print "\n\n.. c:type:: " . $name . "\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001872 print " " . $args{'purpose'} . "\n\n";
1873
1874 print "..\n\n:Constants:\n\n";
1875 my $oldprefix = $lineprefix;
1876 $lineprefix = " ";
1877 foreach $parameter (@{$args{'parameterlist'}}) {
1878 print " `$parameter`\n";
1879 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1880 output_highlight_rst($args{'parameterdescs'}{$parameter});
1881 } else {
1882 print " undescribed\n";
1883 }
1884 print "\n";
1885 }
1886 $lineprefix = $oldprefix;
1887 output_section_rst(@_);
1888}
1889
1890sub output_typedef_rst(%) {
1891 my %args = %{$_[0]};
1892 my ($parameter);
1893 my $count;
1894 my $name = "typedef " . $args{'typedef'};
1895
Jani Nikula62850972016-05-12 16:15:38 +03001896 ### FIXME: should the name below contain "typedef" or not?
1897 print "\n\n.. c:type:: " . $name . "\n\n";
1898 print " " . $args{'purpose'} . "\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001899
1900 output_section_rst(@_);
1901}
1902
1903sub output_struct_rst(%) {
1904 my %args = %{$_[0]};
1905 my ($parameter);
1906 my $name = $args{'type'} . " " . $args{'struct'};
1907
Jani Nikula62850972016-05-12 16:15:38 +03001908 print "\n\n.. c:type:: " . $name . "\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001909 print " " . $args{'purpose'} . "\n\n";
1910
1911 print ":Definition:\n\n";
1912 print " ::\n\n";
1913 print " " . $args{'type'} . " " . $args{'struct'} . " {\n";
1914 foreach $parameter (@{$args{'parameterlist'}}) {
1915 if ($parameter =~ /^#/) {
1916 print " " . "$parameter\n";
1917 next;
1918 }
1919
1920 my $parameter_name = $parameter;
1921 $parameter_name =~ s/\[.*//;
1922
1923 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1924 $type = $args{'parametertypes'}{$parameter};
1925 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1926 # pointer-to-function
1927 print " $1 $parameter) ($2);\n";
1928 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1929 # bitfield
1930 print " $1 $parameter$2;\n";
1931 } else {
1932 print " " . $type . " " . $parameter . ";\n";
1933 }
1934 }
1935 print " };\n\n";
1936
1937 print ":Members:\n\n";
1938 foreach $parameter (@{$args{'parameterlist'}}) {
1939 ($parameter =~ /^#/) && next;
1940
1941 my $parameter_name = $parameter;
1942 $parameter_name =~ s/\[.*//;
1943
1944 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1945 $type = $args{'parametertypes'}{$parameter};
1946 print " `$type $parameter`" . "\n";
1947 my $oldprefix = $lineprefix;
1948 $lineprefix = " ";
1949 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1950 $lineprefix = $oldprefix;
1951 print "\n";
1952 }
1953 print "\n";
1954 output_section_rst(@_);
1955}
1956
1957
Johannes Bergeda603f2010-09-11 15:55:22 -07001958## list mode output functions
1959
1960sub output_function_list(%) {
1961 my %args = %{$_[0]};
1962
1963 print $args{'function'} . "\n";
1964}
1965
1966# output enum in list
1967sub output_enum_list(%) {
1968 my %args = %{$_[0]};
1969 print $args{'enum'} . "\n";
1970}
1971
1972# output typedef in list
1973sub output_typedef_list(%) {
1974 my %args = %{$_[0]};
1975 print $args{'typedef'} . "\n";
1976}
1977
1978# output struct as list
1979sub output_struct_list(%) {
1980 my %args = %{$_[0]};
1981
1982 print $args{'struct'} . "\n";
1983}
1984
1985sub output_blockhead_list(%) {
1986 my %args = %{$_[0]};
1987 my ($parameter, $section);
1988
1989 foreach $section (@{$args{'sectionlist'}}) {
1990 print "DOC: $section\n";
1991 }
1992}
1993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994##
Randy Dunlap27205742006-10-11 01:22:12 -07001995# generic output function for all types (function, struct/union, typedef, enum);
1996# calls the generated, variable output_ function name based on
1997# functype and output_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998sub output_declaration {
1999 no strict 'refs';
2000 my $name = shift;
2001 my $functype = shift;
2002 my $func = "output_${functype}_$output_mode";
Jani Nikulab6c3f452016-05-29 22:19:35 +03002003 if (($output_selection == OUTPUT_ALL) ||
2004 (($output_selection == OUTPUT_INCLUDE ||
2005 $output_selection == OUTPUT_EXPORTED) &&
2006 defined($function_table{$name})) ||
2007 (($output_selection == OUTPUT_EXCLUDE ||
2008 $output_selection == OUTPUT_INTERNAL) &&
2009 !($functype eq "function" && defined($function_table{$name}))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 {
Randy Dunlap3c308792007-05-08 00:24:39 -07002011 &$func(@_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 $section_counter++;
2013 }
2014}
2015
2016##
Randy Dunlap27205742006-10-11 01:22:12 -07002017# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 15:08:48 -07002018sub output_blockhead {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 no strict 'refs';
Randy Dunlapb9d973282009-06-09 08:50:38 -07002020 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 &$func(@_);
2022 $section_counter++;
2023}
2024
2025##
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002026# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027# invokes the right handler. NOT called for functions.
2028sub dump_declaration($$) {
2029 no strict 'refs';
2030 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 08:50:38 -07002031 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 &$func(@_);
2033}
2034
2035sub dump_union($$) {
2036 dump_struct(@_);
2037}
2038
2039sub dump_struct($$) {
2040 my $x = shift;
2041 my $file = shift;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002042 my $nested;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Randy Dunlap52dc5ae2009-04-30 15:08:53 -07002044 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
2045 #my $decl_type = $1;
Randy Dunlap3c308792007-05-08 00:24:39 -07002046 $declaration_name = $2;
2047 my $members = $3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 # ignore embedded structs or unions
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002050 $members =~ s/({.*})//g;
2051 $nested = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Martin Waitzaeec46b2005-11-13 16:08:13 -08002053 # ignore members marked private:
Mauro Carvalho Chehab0d8c39e2015-10-05 09:03:48 -03002054 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
2055 $members =~ s/\/\*\s*private:.*//gosi;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002056 # strip comments:
2057 $members =~ s/\/\*.*?\*\///gos;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002058 $nested =~ s/\/\*.*?\*\///gos;
Randy Dunlapd960eea2009-06-29 14:54:11 -07002059 # strip kmemcheck_bitfield_{begin,end}.*;
2060 $members =~ s/kmemcheck_bitfield_.*?;//gos;
Randy Dunlapef5da592010-03-23 13:35:14 -07002061 # strip attributes
Jonathan Corbetf0074922015-08-23 13:35:23 -06002062 $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Johannes Berg7b990782014-12-10 15:41:28 -08002063 $members =~ s/__aligned\s*\([^;]*\)//gos;
Jonathan Corbetf0074922015-08-23 13:35:23 -06002064 $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
Conchúr Navidb22b5a92015-11-08 10:52:00 +01002065 # replace DECLARE_BITMAP
2066 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 create_parameterlist($members, ';', $file);
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002069 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 output_declaration($declaration_name,
2072 'struct',
2073 {'struct' => $declaration_name,
2074 'module' => $modulename,
2075 'parameterlist' => \@parameterlist,
2076 'parameterdescs' => \%parameterdescs,
2077 'parametertypes' => \%parametertypes,
2078 'sectionlist' => \@sectionlist,
2079 'sections' => \%sections,
2080 'purpose' => $declaration_purpose,
2081 'type' => $decl_type
2082 });
2083 }
2084 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002085 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 ++$errors;
2087 }
2088}
2089
2090sub dump_enum($$) {
2091 my $x = shift;
2092 my $file = shift;
2093
Martin Waitzaeec46b2005-11-13 16:08:13 -08002094 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Conchúr Navid4468e212015-11-08 10:48:05 +01002095 # strip #define macros inside enums
2096 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002099 $declaration_name = $1;
2100 my $members = $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 foreach my $arg (split ',', $members) {
2103 $arg =~ s/^\s*(\w+).*/$1/;
2104 push @parameterlist, $arg;
2105 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002106 $parameterdescs{$arg} = $undescribed;
Bart Van Assched40e1e62015-09-04 15:43:21 -07002107 print STDERR "${file}:$.: warning: Enum value '$arg' ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 "not described in enum '$declaration_name'\n";
2109 }
2110
2111 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 output_declaration($declaration_name,
2114 'enum',
2115 {'enum' => $declaration_name,
2116 'module' => $modulename,
2117 'parameterlist' => \@parameterlist,
2118 'parameterdescs' => \%parameterdescs,
2119 'sectionlist' => \@sectionlist,
2120 'sections' => \%sections,
2121 'purpose' => $declaration_purpose
2122 });
2123 }
2124 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002125 print STDERR "${file}:$.: error: Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 ++$errors;
2127 }
2128}
2129
2130sub dump_typedef($$) {
2131 my $x = shift;
2132 my $file = shift;
2133
Martin Waitzaeec46b2005-11-13 16:08:13 -08002134 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03002135
2136 # Parse function prototypes
2137 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/) {
2138 # Function typedefs
2139 $return_type = $1;
2140 $declaration_name = $2;
2141 my $args = $3;
2142
2143 create_parameterlist($args, ',', $file);
2144
2145 output_declaration($declaration_name,
2146 'function',
2147 {'function' => $declaration_name,
2148 'module' => $modulename,
2149 'functiontype' => $return_type,
2150 'parameterlist' => \@parameterlist,
2151 'parameterdescs' => \%parameterdescs,
2152 'parametertypes' => \%parametertypes,
2153 'sectionlist' => \@sectionlist,
2154 'sections' => \%sections,
2155 'purpose' => $declaration_purpose
2156 });
2157 return;
2158 }
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002161 $x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 $x =~ s/\[*.\]\s*;$/;/;
2163 }
2164
2165 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002166 $declaration_name = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 output_declaration($declaration_name,
2169 'typedef',
2170 {'typedef' => $declaration_name,
2171 'module' => $modulename,
2172 'sectionlist' => \@sectionlist,
2173 'sections' => \%sections,
2174 'purpose' => $declaration_purpose
2175 });
2176 }
2177 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002178 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 ++$errors;
2180 }
2181}
2182
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002183sub save_struct_actual($) {
2184 my $actual = shift;
2185
2186 # strip all spaces from the actual param so that it looks like one string item
2187 $actual =~ s/\s*//g;
2188 $struct_actual = $struct_actual . $actual . " ";
2189}
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191sub create_parameterlist($$$) {
2192 my $args = shift;
2193 my $splitter = shift;
2194 my $file = shift;
2195 my $type;
2196 my $param;
2197
Martin Waitza6d3fe72006-01-09 20:53:55 -08002198 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002200 $args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 foreach my $arg (split($splitter, $args)) {
2204 # strip comments
2205 $arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 00:24:39 -07002206 # strip leading/trailing spaces
2207 $arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 $arg =~ s/\s*$//;
2209 $arg =~ s/\s+/ /;
2210
2211 if ($arg =~ /^#/) {
2212 # Treat preprocessor directive as a typeless variable just to fill
2213 # corresponding data structures "correctly". Catch it later in
2214 # output_* subs.
2215 push_parameter($arg, "", $file);
Richard Kennedy00d62962008-02-23 15:24:01 -08002216 } elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 # pointer-to-function
2218 $arg =~ tr/#/,/;
Richard Kennedy00d62962008-02-23 15:24:01 -08002219 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 $param = $1;
2221 $type = $arg;
Richard Kennedy00d62962008-02-23 15:24:01 -08002222 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002223 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 push_parameter($param, $type, $file);
Martin Waitzaeec46b2005-11-13 16:08:13 -08002225 } elsif ($arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 $arg =~ s/\s*:\s*/:/g;
2227 $arg =~ s/\s*\[/\[/g;
2228
2229 my @args = split('\s*,\s*', $arg);
2230 if ($args[0] =~ m/\*/) {
2231 $args[0] =~ s/(\*+)\s*/ $1/;
2232 }
Borislav Petkov884f2812007-05-08 00:29:05 -07002233
2234 my @first_arg;
2235 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
2236 shift @args;
2237 push(@first_arg, split('\s+', $1));
2238 push(@first_arg, $2);
2239 } else {
2240 @first_arg = split('\s+', shift @args);
2241 }
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 unshift(@args, pop @first_arg);
2244 $type = join " ", @first_arg;
2245
2246 foreach $param (@args) {
2247 if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002248 save_struct_actual($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 push_parameter($2, "$type $1", $file);
2250 }
2251 elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 15:45:52 -07002252 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002253 save_struct_actual($1);
Randy Dunlap7b978872008-05-16 15:45:52 -07002254 push_parameter($1, "$type:$2", $file)
2255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 }
2257 else {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002258 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 push_parameter($param, $type, $file);
2260 }
2261 }
2262 }
2263 }
2264}
2265
2266sub push_parameter($$$) {
2267 my $param = shift;
2268 my $type = shift;
2269 my $file = shift;
2270
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002271 if (($anon_struct_union == 1) && ($type eq "") &&
2272 ($param eq "}")) {
2273 return; # ignore the ending }; from anon. struct/union
2274 }
2275
2276 $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 my $param_name = $param;
2278 $param_name =~ s/\[.*//;
2279
Martin Waitza6d3fe72006-01-09 20:53:55 -08002280 if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 {
Randy Dunlapced69092008-12-01 13:14:03 -08002282 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
2283 $parameterdescs{$param} = "variable arguments";
2284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 }
2286 elsif ($type eq "" && ($param eq "" or $param eq "void"))
2287 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 $param="void";
2289 $parameterdescs{void} = "no arguments";
2290 }
Randy Dunlap134fe012006-12-22 01:10:50 -08002291 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
2292 # handle unnamed (anonymous) union or struct:
2293 {
2294 $type = $param;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002295 $param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 01:10:50 -08002296 $parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002297 $anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 01:10:50 -08002298 }
2299
Martin Waitza6d3fe72006-01-09 20:53:55 -08002300 # warn if parameter has no description
Randy Dunlap134fe012006-12-22 01:10:50 -08002301 # (but ignore ones starting with # as these are not parameters
2302 # but inline preprocessor statements);
2303 # also ignore unnamed structs/unions;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002304 if (!$anon_struct_union) {
Martin Waitza6d3fe72006-01-09 20:53:55 -08002305 if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 $parameterdescs{$param_name} = $undescribed;
2308
2309 if (($type eq 'function') || ($type eq 'enum')) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002310 print STDERR "${file}:$.: warning: Function parameter ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 "or member '$param' not " .
2312 "described in '$declaration_name'\n";
2313 }
Bart Van Assched40e1e62015-09-04 15:43:21 -07002314 print STDERR "${file}:$.: warning:" .
Randy Dunlap3c308792007-05-08 00:24:39 -07002315 " No description found for parameter '$param'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 ++$warnings;
Randy Dunlap3c308792007-05-08 00:24:39 -07002317 }
2318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08002320 $param = xml_escape($param);
2321
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002322 # strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-17 17:37:47 -07002323 # on @parameterlist;
2324 # this fixes a problem where check_sections() cannot find
2325 # a parameter like "addr[6 + 2]" because it actually appears
2326 # as "addr[6", "+", "2]" on the parameter list;
2327 # but it's better to maintain the param string unchanged for output,
2328 # so just weaken the string compare in check_sections() to ignore
2329 # "[blah" in a parameter string;
2330 ###$param =~ s/\s*//g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 push @parameterlist, $param;
2332 $parametertypes{$param} = $type;
2333}
2334
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002335sub check_sections($$$$$$) {
2336 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2337 my @sects = split ' ', $sectcheck;
2338 my @prms = split ' ', $prmscheck;
2339 my $err;
2340 my ($px, $sx);
2341 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
2342
2343 foreach $sx (0 .. $#sects) {
2344 $err = 1;
2345 foreach $px (0 .. $#prms) {
2346 $prm_clean = $prms[$px];
2347 $prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 15:55:12 -07002348 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-17 17:37:47 -07002349 # ignore array size in a parameter string;
2350 # however, the original param string may contain
2351 # spaces, e.g.: addr[6 + 2]
2352 # and this appears in @prms as "addr[6" since the
2353 # parameter list is split at spaces;
2354 # hence just ignore "[..." for the sections check;
2355 $prm_clean =~ s/\[.*//;
2356
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002357 ##$prm_clean =~ s/^\**//;
2358 if ($prm_clean eq $sects[$sx]) {
2359 $err = 0;
2360 last;
2361 }
2362 }
2363 if ($err) {
2364 if ($decl_type eq "function") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002365 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002366 "Excess function parameter " .
2367 "'$sects[$sx]' " .
2368 "description in '$decl_name'\n";
2369 ++$warnings;
2370 } else {
2371 if ($nested !~ m/\Q$sects[$sx]\E/) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002372 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002373 "Excess struct/union/enum/typedef member " .
2374 "'$sects[$sx]' " .
2375 "description in '$decl_name'\n";
2376 ++$warnings;
2377 }
2378 }
2379 }
2380 }
2381}
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383##
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002384# Checks the section describing the return value of a function.
2385sub check_return_section {
2386 my $file = shift;
2387 my $declaration_name = shift;
2388 my $return_type = shift;
2389
2390 # Ignore an empty return type (It's a macro)
2391 # Ignore functions with a "void" return type. (But don't ignore "void *")
2392 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2393 return;
2394 }
2395
2396 if (!defined($sections{$section_return}) ||
2397 $sections{$section_return} eq "") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002398 print STDERR "${file}:$.: warning: " .
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002399 "No description found for return value of " .
2400 "'$declaration_name'\n";
2401 ++$warnings;
2402 }
2403}
2404
2405##
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406# takes a function prototype and the name of the current file being
2407# processed and spits out all the details stored in the global
2408# arrays/hashes.
2409sub dump_function($$) {
2410 my $prototype = shift;
2411 my $file = shift;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002412 my $noret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 $prototype =~ s/^static +//;
2415 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 08:59:25 -07002416 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 $prototype =~ s/^inline +//;
2418 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 01:22:10 -07002419 $prototype =~ s/^__inline +//;
2420 $prototype =~ s/^__always_inline +//;
2421 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 16:03:29 -07002422 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 13:35:24 -07002423 $prototype =~ s/__init_or_module +//;
Randy Dunlap270a0092014-08-24 18:17:17 -07002424 $prototype =~ s/__meminit +//;
Randy Dunlap70c95b02012-01-21 10:31:54 -08002425 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 16:23:20 -07002426 $prototype =~ s/__weak +//;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002427 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
Randy Dunlap328d2442007-02-28 20:12:10 -08002428 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 # Yes, this truly is vile. We are looking for:
2431 # 1. Return type (may be nothing if we're looking at a macro)
2432 # 2. Function name
2433 # 3. Function parameters.
2434 #
2435 # All the while we have to watch out for function pointer parameters
2436 # (which IIRC is what the two sections are for), C types (these
2437 # regexps don't even start to express all the possibilities), and
2438 # so on.
2439 #
2440 # If you mess with these regexps, it's a good idea to check that
2441 # the following functions' documentation still comes out right:
2442 # - parport_register_device (function pointer parameters)
2443 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 03:06:55 -08002444 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002446 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2447 # This is an object-like macro, it has no return type and no parameter
2448 # list.
2449 # Function-like macros are not allowed to have spaces between
2450 # declaration_name and opening parenthesis (notice the \s+).
2451 $return_type = $1;
2452 $declaration_name = $2;
2453 $noret = 1;
2454 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2456 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2457 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 00:13:26 -08002458 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2460 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2461 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2462 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2463 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2464 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2465 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2466 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 03:06:55 -08002467 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2468 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Randy Dunlap412ecd772007-02-10 22:47:33 -08002469 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2470 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 $return_type = $1;
2472 $declaration_name = $2;
2473 my $args = $3;
2474
2475 create_parameterlist($args, ',', $file);
2476 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002477 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 return;
2479 }
2480
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002481 my $prms = join " ", @parameterlist;
2482 check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2483
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002484 # This check emits a lot of warnings at the moment, because many
2485 # functions don't have a 'Return' doc section. So until the number
2486 # of warnings goes sufficiently down, the check is only performed in
2487 # verbose mode.
2488 # TODO: always perform the check.
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002489 if ($verbose && !$noret) {
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002490 check_return_section($file, $declaration_name, $return_type);
2491 }
2492
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002493 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 'function',
2495 {'function' => $declaration_name,
2496 'module' => $modulename,
2497 'functiontype' => $return_type,
2498 'parameterlist' => \@parameterlist,
2499 'parameterdescs' => \%parameterdescs,
2500 'parametertypes' => \%parametertypes,
2501 'sectionlist' => \@sectionlist,
2502 'sections' => \%sections,
2503 'purpose' => $declaration_purpose
2504 });
2505}
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507sub reset_state {
2508 $function = "";
2509 %constants = ();
2510 %parameterdescs = ();
2511 %parametertypes = ();
2512 @parameterlist = ();
2513 %sections = ();
2514 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002515 $sectcheck = "";
2516 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 $prototype = "";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002518
Jani Nikula48af6062016-05-26 14:56:05 +03002519 $state = STATE_NORMAL;
2520 $inline_doc_state = STATE_INLINE_NA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
Jason Baron56afb0f2009-04-30 13:29:36 -04002523sub tracepoint_munge($) {
2524 my $file = shift;
2525 my $tracepointname = 0;
2526 my $tracepointargs = 0;
2527
Jason Baron3a9089f2009-12-01 12:18:49 -05002528 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002529 $tracepointname = $1;
2530 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002531 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2532 $tracepointname = $1;
2533 }
2534 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2535 $tracepointname = $2;
2536 }
2537 $tracepointname =~ s/^\s+//; #strip leading whitespace
2538 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002539 $tracepointargs = $1;
2540 }
2541 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002542 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
Jason Baron56afb0f2009-04-30 13:29:36 -04002543 "$prototype\n";
2544 } else {
2545 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2546 }
2547}
2548
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002549sub syscall_munge() {
2550 my $void = 0;
2551
2552 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2553## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2554 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2555 $void = 1;
2556## $prototype = "long sys_$1(void)";
2557 }
2558
2559 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2560 if ($prototype =~ m/long (sys_.*?),/) {
2561 $prototype =~ s/,/\(/;
2562 } elsif ($void) {
2563 $prototype =~ s/\)/\(void\)/;
2564 }
2565
2566 # now delete all of the odd-number commas in $prototype
2567 # so that arg types & arg names don't have a comma between them
2568 my $count = 0;
2569 my $len = length($prototype);
2570 if ($void) {
2571 $len = 0; # skip the for-loop
2572 }
2573 for (my $ix = 0; $ix < $len; $ix++) {
2574 if (substr($prototype, $ix, 1) eq ',') {
2575 $count++;
2576 if ($count % 2 == 1) {
2577 substr($prototype, $ix, 1) = ' ';
2578 }
2579 }
2580 }
2581}
2582
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002583sub process_state3_function($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 my $x = shift;
2585 my $file = shift;
2586
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002587 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2588
Randy Dunlap890c78c2008-10-25 17:06:43 -07002589 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 # do nothing
2591 }
2592 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002593 $prototype .= $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002595
Randy Dunlap890c78c2008-10-25 17:06:43 -07002596 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002597 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2599 $prototype =~ s@^\s+@@gos; # strip leading spaces
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002600 if ($prototype =~ /SYSCALL_DEFINE/) {
2601 syscall_munge();
2602 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002603 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2604 $prototype =~ /DEFINE_SINGLE_EVENT/)
2605 {
Jason Baron56afb0f2009-04-30 13:29:36 -04002606 tracepoint_munge($file);
2607 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002608 dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 reset_state();
2610 }
2611}
2612
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002613sub process_state3_type($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 my $x = shift;
2615 my $file = shift;
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2618 $x =~ s@^\s+@@gos; # strip leading spaces
2619 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002620 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if ($x =~ /^#/) {
2623 # To distinguish preprocessor directive from regular declaration later.
2624 $x .= ";";
2625 }
2626
2627 while (1) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002628 if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 $prototype .= $1 . $2;
2630 ($2 eq '{') && $brcount++;
2631 ($2 eq '}') && $brcount--;
2632 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002633 dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 reset_state();
Randy Dunlap3c308792007-05-08 00:24:39 -07002635 last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
2637 $x = $3;
Randy Dunlap3c308792007-05-08 00:24:39 -07002638 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 $prototype .= $x;
2640 last;
2641 }
2642 }
2643}
2644
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002645# xml_escape: replace <, >, and & in the text stream;
2646#
2647# however, formatting controls that are generated internally/locally in the
2648# kernel-doc script are not escaped here; instead, they begin life like
2649# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2650# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2651# just before actual output; (this is done by local_unescape())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652sub xml_escape($) {
2653 my $text = shift;
Randy Dunlapecfb2512006-06-25 05:49:13 -07002654 if (($output_mode eq "text") || ($output_mode eq "man")) {
2655 return $text;
2656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 $text =~ s/\&/\\\\\\amp;/g;
2658 $text =~ s/\</\\\\\\lt;/g;
2659 $text =~ s/\>/\\\\\\gt;/g;
2660 return $text;
2661}
2662
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002663# xml_unescape: reverse the effects of xml_escape
2664sub xml_unescape($) {
2665 my $text = shift;
2666 if (($output_mode eq "text") || ($output_mode eq "man")) {
2667 return $text;
2668 }
2669 $text =~ s/\\\\\\amp;/\&/g;
2670 $text =~ s/\\\\\\lt;/</g;
2671 $text =~ s/\\\\\\gt;/>/g;
2672 return $text;
2673}
2674
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002675# convert local escape strings to html
2676# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2677sub local_unescape($) {
2678 my $text = shift;
2679 if (($output_mode eq "text") || ($output_mode eq "man")) {
2680 return $text;
2681 }
2682 $text =~ s/\\\\\\\\lt:/</g;
2683 $text =~ s/\\\\\\\\gt:/>/g;
2684 return $text;
2685}
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687sub process_file($) {
Randy Dunlap2283a112005-07-07 15:39:26 -07002688 my $file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 my $identifier;
2690 my $func;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002691 my $descr;
Johannes Weiner64231332009-09-17 19:26:53 -07002692 my $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 my $initial_section_counter = $section_counter;
Ben Hutchings68f86662015-09-01 23:48:49 +01002694 my ($orig_file) = @_;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Randy Dunlap2283a112005-07-07 15:39:26 -07002696 if (defined($ENV{'SRCTREE'})) {
Ben Hutchings68f86662015-09-01 23:48:49 +01002697 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
Randy Dunlap2283a112005-07-07 15:39:26 -07002698 }
2699 else {
Ben Hutchings68f86662015-09-01 23:48:49 +01002700 $file = $orig_file;
Randy Dunlap2283a112005-07-07 15:39:26 -07002701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (defined($source_map{$file})) {
2703 $file = $source_map{$file};
2704 }
2705
2706 if (!open(IN,"<$file")) {
2707 print STDERR "Error: Cannot open file $file\n";
2708 ++$errors;
2709 return;
2710 }
2711
Jani Nikula86ae2e32016-01-21 13:05:22 +02002712 # two passes for -export and -internal
Jani Nikulab6c3f452016-05-29 22:19:35 +03002713 if ($output_selection == OUTPUT_EXPORTED ||
2714 $output_selection == OUTPUT_INTERNAL) {
Jani Nikula86ae2e32016-01-21 13:05:22 +02002715 while (<IN>) {
2716 if (/$export_symbol/o) {
2717 $function_table{$2} = 1;
2718 }
2719 }
2720 seek(IN, 0, 0);
2721 }
2722
Ilya Dryomova9e73142010-02-26 13:05:47 -08002723 $. = 1;
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 $section_counter = 0;
2726 while (<IN>) {
Daniel Santos65478422012-10-04 17:15:05 -07002727 while (s/\\\s*$//) {
2728 $_ .= <IN>;
2729 }
Jani Nikula48af6062016-05-26 14:56:05 +03002730 if ($state == STATE_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (/$doc_start/o) {
Jani Nikula48af6062016-05-26 14:56:05 +03002732 $state = STATE_NAME; # next line is always the function name
Randy Dunlap850622d2006-06-25 05:48:55 -07002733 $in_doc_sect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 }
Jani Nikula48af6062016-05-26 14:56:05 +03002735 } elsif ($state == STATE_NAME) {# this line is the function name (always)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 if (/$doc_block/o) {
Jani Nikula48af6062016-05-26 14:56:05 +03002737 $state = STATE_DOCBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 $contents = "";
2739 if ( $1 eq "" ) {
2740 $section = $section_intro;
2741 } else {
2742 $section = $1;
2743 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 elsif (/$doc_decl/o) {
2746 $identifier = $1;
2747 if (/\s*([\w\s]+?)\s*-/) {
2748 $identifier = $1;
2749 }
2750
Jani Nikula48af6062016-05-26 14:56:05 +03002751 $state = STATE_FIELD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 if (/-(.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002753 # strip leading/trailing/multiple spaces
Randy Dunlapa21217d2007-02-10 01:46:04 -08002754 $descr= $1;
2755 $descr =~ s/^\s*//;
2756 $descr =~ s/\s*$//;
Daniel Santos12ae6772012-10-04 17:15:10 -07002757 $descr =~ s/\s+/ /g;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002758 $declaration_purpose = xml_escape($descr);
Johannes Weiner64231332009-09-17 19:26:53 -07002759 $in_purpose = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 } else {
2761 $declaration_purpose = "";
2762 }
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002763
2764 if (($declaration_purpose eq "") && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002765 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002766 print STDERR $_;
2767 ++$warnings;
2768 }
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if ($identifier =~ m/^struct/) {
2771 $decl_type = 'struct';
2772 } elsif ($identifier =~ m/^union/) {
2773 $decl_type = 'union';
2774 } elsif ($identifier =~ m/^enum/) {
2775 $decl_type = 'enum';
2776 } elsif ($identifier =~ m/^typedef/) {
2777 $decl_type = 'typedef';
2778 } else {
2779 $decl_type = 'function';
2780 }
2781
2782 if ($verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002783 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
2785 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002786 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 " - I thought it was a doc line\n";
2788 ++$warnings;
Jani Nikula48af6062016-05-26 14:56:05 +03002789 $state = STATE_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
Jani Nikula48af6062016-05-26 14:56:05 +03002791 } elsif ($state == STATE_FIELD) { # look for head: lines, and include content
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 if (/$doc_sect/o) {
2793 $newsection = $1;
2794 $newcontents = $2;
2795
Randy Dunlap792aa2f2008-02-07 00:13:41 -08002796 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap850622d2006-06-25 05:48:55 -07002797 if (!$in_doc_sect && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002798 print STDERR "${file}:$.: warning: contents before sections\n";
Randy Dunlap850622d2006-06-25 05:48:55 -07002799 ++$warnings;
2800 }
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002801 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 $section = $section_default;
2803 }
2804
Randy Dunlap850622d2006-06-25 05:48:55 -07002805 $in_doc_sect = 1;
Johannes Weiner64231332009-09-17 19:26:53 -07002806 $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 $contents = $newcontents;
2808 if ($contents ne "") {
Randy Dunlap27205742006-10-11 01:22:12 -07002809 while ((substr($contents, 0, 1) eq " ") ||
2810 substr($contents, 0, 1) eq "\t") {
2811 $contents = substr($contents, 1);
Randy Dunlap05189492006-06-25 05:47:47 -07002812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 $contents .= "\n";
2814 }
2815 $section = $newsection;
2816 } elsif (/$doc_end/) {
Randy Dunlap4c98eca2010-03-10 15:22:02 -08002817 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002818 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 $section = $section_default;
2820 $contents = "";
2821 }
Randy Dunlap46b958e2008-04-28 02:16:35 -07002822 # look for doc_com + <text> + doc_end:
2823 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002824 print STDERR "${file}:$.: warning: suspicious ending line: $_";
Randy Dunlap46b958e2008-04-28 02:16:35 -07002825 ++$warnings;
2826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 $prototype = "";
Jani Nikula48af6062016-05-26 14:56:05 +03002829 $state = STATE_PROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 $brcount = 0;
Randy Dunlap232acbc2006-06-25 05:47:48 -07002831# print STDERR "end of doc comment, looking for prototype\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 } elsif (/$doc_content/) {
2833 # miguel-style comment kludge, look for blank lines after
2834 # @parameter line to signify start of description
Johannes Weiner64231332009-09-17 19:26:53 -07002835 if ($1 eq "") {
2836 if ($section =~ m/^@/ || $section eq $section_context) {
2837 dump_section($file, $section, xml_escape($contents));
2838 $section = $section_default;
2839 $contents = "";
2840 } else {
2841 $contents .= "\n";
2842 }
2843 $in_purpose = 0;
2844 } elsif ($in_purpose == 1) {
2845 # Continued declaration purpose
2846 chomp($declaration_purpose);
2847 $declaration_purpose .= " " . xml_escape($1);
Daniel Santos12ae6772012-10-04 17:15:10 -07002848 $declaration_purpose =~ s/\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002850 $contents .= $1 . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852 } else {
2853 # i dont know - bad line? ignore.
Bart Van Assched40e1e62015-09-04 15:43:21 -07002854 print STDERR "${file}:$.: warning: bad line: $_";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 ++$warnings;
2856 }
Jani Nikula48af6062016-05-26 14:56:05 +03002857 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002858 # First line (state 1) needs to be a @parameter
Jani Nikula48af6062016-05-26 14:56:05 +03002859 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002860 $section = $1;
2861 $contents = $2;
2862 if ($contents ne "") {
2863 while ((substr($contents, 0, 1) eq " ") ||
2864 substr($contents, 0, 1) eq "\t") {
2865 $contents = substr($contents, 1);
2866 }
2867 $contents .= "\n";
2868 }
Jani Nikula48af6062016-05-26 14:56:05 +03002869 $inline_doc_state = STATE_INLINE_TEXT;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002870 # Documentation block end */
Jani Nikula48af6062016-05-26 14:56:05 +03002871 } elsif (/$doc_inline_end/) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002872 if (($contents ne "") && ($contents ne "\n")) {
2873 dump_section($file, $section, xml_escape($contents));
2874 $section = $section_default;
2875 $contents = "";
2876 }
Jani Nikula48af6062016-05-26 14:56:05 +03002877 $state = STATE_PROTO;
2878 $inline_doc_state = STATE_INLINE_NA;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002879 # Regular text
2880 } elsif (/$doc_content/) {
Jani Nikula48af6062016-05-26 14:56:05 +03002881 if ($inline_doc_state == STATE_INLINE_TEXT) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002882 $contents .= $1 . "\n";
Jani Nikula48af6062016-05-26 14:56:05 +03002883 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2884 $inline_doc_state = STATE_INLINE_ERROR;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002885 print STDERR "Warning(${file}:$.): ";
2886 print STDERR "Incorrect use of kernel-doc format: $_";
2887 ++$warnings;
2888 }
2889 }
Jani Nikula48af6062016-05-26 14:56:05 +03002890 } elsif ($state == STATE_PROTO) { # scanning for function '{' (end of prototype)
2891 if (/$doc_inline_start/) {
2892 $state = STATE_INLINE;
2893 $inline_doc_state = STATE_INLINE_NAME;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002894 } elsif ($decl_type eq 'function') {
Randy Dunlap3c308792007-05-08 00:24:39 -07002895 process_state3_function($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -07002897 process_state3_type($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
Jani Nikula48af6062016-05-26 14:56:05 +03002899 } elsif ($state == STATE_DOCBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 # Documentation block
Randy Dunlap3c308792007-05-08 00:24:39 -07002901 if (/$doc_block/) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002902 dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 $contents = "";
2904 $function = "";
2905 %constants = ();
2906 %parameterdescs = ();
2907 %parametertypes = ();
2908 @parameterlist = ();
2909 %sections = ();
2910 @sectionlist = ();
2911 $prototype = "";
2912 if ( $1 eq "" ) {
2913 $section = $section_intro;
2914 } else {
2915 $section = $1;
2916 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 elsif (/$doc_end/)
2919 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002920 dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 $contents = "";
2922 $function = "";
2923 %constants = ();
2924 %parameterdescs = ();
2925 %parametertypes = ();
2926 @parameterlist = ();
2927 %sections = ();
2928 @sectionlist = ();
2929 $prototype = "";
Jani Nikula48af6062016-05-26 14:56:05 +03002930 $state = STATE_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 }
2932 elsif (/$doc_content/)
2933 {
2934 if ( $1 eq "" )
2935 {
2936 $contents .= $blankline;
2937 }
2938 else
2939 {
2940 $contents .= $1 . "\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002941 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002942 }
2943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 }
2945 if ($initial_section_counter == $section_counter) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002946 print STDERR "${file}:1: warning: no structured comments found\n";
Jani Nikulab6c3f452016-05-29 22:19:35 +03002947 if (($output_selection == OUTPUT_INCLUDE) && ($show_not_found == 1)) {
Johannes Berge946c43a2013-11-12 15:11:12 -08002948 print STDERR " Was looking for '$_'.\n" for keys %function_table;
2949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if ($output_mode eq "xml") {
2951 # The template wants at least one RefEntry here; make one.
2952 print "<refentry>\n";
2953 print " <refnamediv>\n";
2954 print " <refname>\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01002955 print " ${orig_file}\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 print " </refname>\n";
2957 print " <refpurpose>\n";
2958 print " Document generation inconsistency\n";
2959 print " </refpurpose>\n";
2960 print " </refnamediv>\n";
2961 print " <refsect1>\n";
2962 print " <title>\n";
2963 print " Oops\n";
2964 print " </title>\n";
2965 print " <warning>\n";
2966 print " <para>\n";
2967 print " The template for this document tried to insert\n";
2968 print " the structured comment from the file\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01002969 print " <filename>${orig_file}</filename> at this point,\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 print " but none was found.\n";
2971 print " This dummy section is inserted to allow\n";
2972 print " generation to continue.\n";
2973 print " </para>\n";
2974 print " </warning>\n";
2975 print " </refsect1>\n";
2976 print "</refentry>\n";
2977 }
2978 }
2979}
Randy Dunlap8484baa2011-01-05 16:28:43 -08002980
2981
2982$kernelversion = get_kernel_version();
2983
2984# generate a sequence of code that will splice in highlighting information
2985# using the s// operator.
Mauro Carvalho Chehab1ef06232015-11-17 13:29:49 -02002986for (my $k = 0; $k < @highlights; $k++) {
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -03002987 my $pattern = $highlights[$k][0];
2988 my $result = $highlights[$k][1];
2989# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2990 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -08002991}
2992
2993# Read the file that maps relative names to absolute names for
2994# separate source and object directories and for shadow trees.
2995if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2996 my ($relname, $absname);
2997 while(<SOURCE_MAP>) {
2998 chop();
2999 ($relname, $absname) = (split())[0..1];
3000 $relname =~ s:^/+::;
3001 $source_map{$relname} = $absname;
3002 }
3003 close(SOURCE_MAP);
3004}
3005
3006foreach (@ARGV) {
3007 chomp;
3008 process_file($_);
3009}
3010if ($verbose && $errors) {
3011 print STDERR "$errors errors\n";
3012}
3013if ($verbose && $warnings) {
3014 print STDERR "$warnings warnings\n";
3015}
3016
3017exit($errors);