]>
Commit | Line | Data |
---|---|---|
cb77f0d6 | 1 | #!/usr/bin/env perl |
38476378 | 2 | # SPDX-License-Identifier: GPL-2.0 |
1da177e4 | 3 | |
cb77f0d6 | 4 | use warnings; |
1da177e4 LT |
5 | use strict; |
6 | ||
7 | ## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## | |
8 | ## Copyright (C) 2000, 1 Tim Waugh <[email protected]> ## | |
9 | ## Copyright (C) 2001 Simon Huggins ## | |
70c95b00 | 10 | ## Copyright (C) 2005-2012 Randy Dunlap ## |
1b40c194 | 11 | ## Copyright (C) 2012 Dan Luedtke ## |
1da177e4 LT |
12 | ## ## |
13 | ## #define enhancements by Armin Kuster <[email protected]> ## | |
14 | ## Copyright (c) 2000 MontaVista Software, Inc. ## | |
15 | ## ## | |
16 | ## This software falls under the GNU General Public License. ## | |
17 | ## Please read the COPYING file for more information ## | |
18 | ||
1da177e4 LT |
19 | # 18/01/2001 - Cleanups |
20 | # Functions prototyped as foo(void) same as foo() | |
21 | # Stop eval'ing where we don't need to. | |
22 | # -- [email protected] | |
23 | ||
24 | # 27/06/2001 - Allowed whitespace after initial "/**" and | |
25 | # allowed comments before function declarations. | |
26 | # -- Christian Kreibich <[email protected]> | |
27 | ||
28 | # Still to do: | |
29 | # - add perldoc documentation | |
30 | # - Look more closely at some of the scarier bits :) | |
31 | ||
32 | # 26/05/2001 - Support for separate source and object trees. | |
33 | # Return error code. | |
34 | # Keith Owens <[email protected]> | |
35 | ||
36 | # 23/09/2001 - Added support for typedefs, structs, enums and unions | |
37 | # Support for Context section; can be terminated using empty line | |
38 | # Small fixes (like spaces vs. \s in regex) | |
39 | # -- Tim Jansen <[email protected]> | |
40 | ||
1b40c194 DL |
41 | # 25/07/2012 - Added support for HTML5 |
42 | # -- Dan Luedtke <[email protected]> | |
1da177e4 | 43 | |
fadc0b31 JN |
44 | sub usage { |
45 | my $message = <<"EOF"; | |
46 | Usage: $0 [OPTION ...] FILE ... | |
47 | ||
48 | Read C language source or header FILEs, extract embedded documentation comments, | |
49 | and print formatted documentation to standard output. | |
50 | ||
51 | The documentation comments are identified by "/**" opening comment mark. See | |
857af3b7 | 52 | Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax. |
fadc0b31 JN |
53 | |
54 | Output format selection (mutually exclusive): | |
fadc0b31 | 55 | -man Output troff manual page format. This is the default. |
c0d1b6ee | 56 | -rst Output reStructuredText format. |
3a025e1d | 57 | -none Do not output documentation, only warnings. |
fadc0b31 JN |
58 | |
59 | Output selection (mutually exclusive): | |
86ae2e38 JN |
60 | -export Only output documentation for symbols that have been |
61 | exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() | |
c9b2cfb3 | 62 | in any input FILE or -export-file FILE. |
86ae2e38 JN |
63 | -internal Only output documentation for symbols that have NOT been |
64 | exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() | |
c9b2cfb3 | 65 | in any input FILE or -export-file FILE. |
fadc0b31 JN |
66 | -function NAME Only output documentation for the given function(s) |
67 | or DOC: section title(s). All other functions and DOC: | |
68 | sections are ignored. May be specified multiple times. | |
69 | -nofunction NAME Do NOT output documentation for the given function(s); | |
70 | only output documentation for the other functions and | |
71 | DOC: sections. May be specified multiple times. | |
72 | ||
73 | Output selection modifiers: | |
74 | -no-doc-sections Do not output DOC: sections. | |
0b0f5f29 SV |
75 | -enable-lineno Enable output of #define LINENO lines. Only works with |
76 | reStructuredText format. | |
88c2b57d JN |
77 | -export-file FILE Specify an additional FILE in which to look for |
78 | EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with | |
79 | -export or -internal. May be specified multiple times. | |
fadc0b31 JN |
80 | |
81 | Other parameters: | |
82 | -v Verbose output, more warnings and other information. | |
83 | -h Print this help. | |
2c12c810 | 84 | -Werror Treat warnings as errors. |
fadc0b31 JN |
85 | |
86 | EOF | |
87 | print $message; | |
88 | exit 1; | |
89 | } | |
1da177e4 LT |
90 | |
91 | # | |
92 | # format of comments. | |
93 | # In the following table, (...)? signifies optional structure. | |
94 | # (...)* signifies 0 or more structure elements | |
95 | # /** | |
96 | # * function_name(:)? (- short description)? | |
97 | # (* @parameterx: (description of parameter x)?)* | |
98 | # (* a blank line)? | |
99 | # * (Description:)? (Description of function)? | |
100 | # * (section header: (section description)? )* | |
101 | # (*)?*/ | |
102 | # | |
103 | # So .. the trivial example would be: | |
104 | # | |
105 | # /** | |
106 | # * my_function | |
b9d97328 | 107 | # */ |
1da177e4 | 108 | # |
891dcd2f | 109 | # If the Description: header tag is omitted, then there must be a blank line |
1da177e4 LT |
110 | # after the last parameter specification. |
111 | # e.g. | |
112 | # /** | |
113 | # * my_function - does my stuff | |
114 | # * @my_arg: its mine damnit | |
115 | # * | |
3c3b809e | 116 | # * Does my stuff explained. |
1da177e4 LT |
117 | # */ |
118 | # | |
119 | # or, could also use: | |
120 | # /** | |
121 | # * my_function - does my stuff | |
122 | # * @my_arg: its mine damnit | |
3c3b809e | 123 | # * Description: Does my stuff explained. |
1da177e4 LT |
124 | # */ |
125 | # etc. | |
126 | # | |
b9d97328 | 127 | # Besides functions you can also write documentation for structs, unions, |
3c3b809e RD |
128 | # enums and typedefs. Instead of the function name you must write the name |
129 | # of the declaration; the struct/union/enum/typedef must always precede | |
130 | # the name. Nesting of declarations is not supported. | |
1da177e4 LT |
131 | # Use the argument mechanism to document members or constants. |
132 | # e.g. | |
133 | # /** | |
134 | # * struct my_struct - short description | |
135 | # * @a: first member | |
136 | # * @b: second member | |
3c3b809e | 137 | # * |
1da177e4 LT |
138 | # * Longer description |
139 | # */ | |
140 | # struct my_struct { | |
141 | # int a; | |
142 | # int b; | |
aeec46b9 MW |
143 | # /* private: */ |
144 | # int c; | |
1da177e4 LT |
145 | # }; |
146 | # | |
147 | # All descriptions can be multiline, except the short function description. | |
3c3b809e | 148 | # |
a4c6ebed DCLP |
149 | # For really longs structs, you can also describe arguments inside the |
150 | # body of the struct. | |
151 | # eg. | |
152 | # /** | |
153 | # * struct my_struct - short description | |
154 | # * @a: first member | |
155 | # * @b: second member | |
156 | # * | |
157 | # * Longer description | |
158 | # */ | |
159 | # struct my_struct { | |
160 | # int a; | |
161 | # int b; | |
162 | # /** | |
163 | # * @c: This is longer description of C | |
164 | # * | |
165 | # * You can use paragraphs to describe arguments | |
166 | # * using this method. | |
167 | # */ | |
168 | # int c; | |
169 | # }; | |
170 | # | |
171 | # This should be use only for struct/enum members. | |
172 | # | |
3c3b809e RD |
173 | # You can also add additional sections. When documenting kernel functions you |
174 | # should document the "Context:" of the function, e.g. whether the functions | |
1da177e4 | 175 | # can be called form interrupts. Unlike other sections you can end it with an |
3c3b809e | 176 | # empty line. |
4092bac7 YB |
177 | # A non-void function should have a "Return:" section describing the return |
178 | # value(s). | |
3c3b809e | 179 | # Example-sections should contain the string EXAMPLE so that they are marked |
1da177e4 LT |
180 | # appropriately in DocBook. |
181 | # | |
182 | # Example: | |
183 | # /** | |
184 | # * user_function - function that can only be called in user context | |
185 | # * @a: some argument | |
186 | # * Context: !in_interrupt() | |
3c3b809e | 187 | # * |
1da177e4 LT |
188 | # * Some description |
189 | # * Example: | |
190 | # * user_function(22); | |
191 | # */ | |
192 | # ... | |
193 | # | |
194 | # | |
195 | # All descriptive text is further processed, scanning for the following special | |
196 | # patterns, which are highlighted appropriately. | |
197 | # | |
198 | # 'funcname()' - function | |
199 | # '$ENVVAR' - environmental variable | |
200 | # '&struct_name' - name of a structure (up to two words including 'struct') | |
5267dd35 | 201 | # '&struct_name.member' - name of a structure member |
1da177e4 LT |
202 | # '@parameter' - name of a parameter |
203 | # '%CONST' - name of a constant. | |
b97f193a | 204 | # '``LITERAL``' - literal string without any spaces on it. |
1da177e4 | 205 | |
8484baaa RD |
206 | ## init lots of data |
207 | ||
1da177e4 LT |
208 | my $errors = 0; |
209 | my $warnings = 0; | |
5f8c7c98 | 210 | my $anon_struct_union = 0; |
1da177e4 LT |
211 | |
212 | # match expressions used to find embedded type information | |
b97f193a MCC |
213 | my $type_constant = '\b``([^\`]+)``\b'; |
214 | my $type_constant2 = '\%([-_\w]+)'; | |
1da177e4 | 215 | my $type_func = '(\w+)\(\)'; |
bfd228c7 | 216 | my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; |
ee2aa759 | 217 | my $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; |
5219f18a | 218 | my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params |
346282db | 219 | my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params |
1da177e4 | 220 | my $type_env = '(\$\w+)'; |
df31175b PB |
221 | my $type_enum = '\&(enum\s*([_\w]+))'; |
222 | my $type_struct = '\&(struct\s*([_\w]+))'; | |
223 | my $type_typedef = '\&(typedef\s*([_\w]+))'; | |
224 | my $type_union = '\&(union\s*([_\w]+))'; | |
5267dd35 | 225 | my $type_member = '\&([_\w]+)(\.|->)([_\w]+)'; |
df31175b | 226 | my $type_fallback = '\&([_\w]+)'; |
f3341dcf | 227 | my $type_member_func = $type_member . '\(\)'; |
1da177e4 LT |
228 | |
229 | # Output conversion substitutions. | |
230 | # One for each output format | |
231 | ||
1da177e4 | 232 | # these are pretty rough |
4d732701 DCLP |
233 | my @highlights_man = ( |
234 | [$type_constant, "\$1"], | |
b97f193a | 235 | [$type_constant2, "\$1"], |
4d732701 | 236 | [$type_func, "\\\\fB\$1\\\\fP"], |
df31175b | 237 | [$type_enum, "\\\\fI\$1\\\\fP"], |
4d732701 | 238 | [$type_struct, "\\\\fI\$1\\\\fP"], |
df31175b PB |
239 | [$type_typedef, "\\\\fI\$1\\\\fP"], |
240 | [$type_union, "\\\\fI\$1\\\\fP"], | |
5267dd35 | 241 | [$type_param, "\\\\fI\$1\\\\fP"], |
ee2aa759 | 242 | [$type_param_ref, "\\\\fI\$1\$2\\\\fP"], |
df31175b PB |
243 | [$type_member, "\\\\fI\$1\$2\$3\\\\fP"], |
244 | [$type_fallback, "\\\\fI\$1\\\\fP"] | |
4d732701 | 245 | ); |
1da177e4 LT |
246 | my $blankline_man = ""; |
247 | ||
c0d1b6ee JC |
248 | # rst-mode |
249 | my @highlights_rst = ( | |
250 | [$type_constant, "``\$1``"], | |
b97f193a | 251 | [$type_constant2, "``\$1``"], |
f3341dcf | 252 | # Note: need to escape () to avoid func matching later |
5267dd35 PB |
253 | [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"], |
254 | [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"], | |
5219f18a | 255 | [$type_fp_param, "**\$1\\\\(\\\\)**"], |
346282db | 256 | [$type_fp_param2, "**\$1\\\\(\\\\)**"], |
344fdb28 | 257 | [$type_func, "\$1()"], |
df31175b PB |
258 | [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"], |
259 | [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"], | |
260 | [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"], | |
261 | [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"], | |
a7291e7e | 262 | # in rst this can refer to any type |
df31175b | 263 | [$type_fallback, "\\:c\\:type\\:`\$1`"], |
ee2aa759 | 264 | [$type_param_ref, "**\$1\$2**"] |
c0d1b6ee JC |
265 | ); |
266 | my $blankline_rst = "\n"; | |
267 | ||
1da177e4 | 268 | # read arguments |
b9d97328 | 269 | if ($#ARGV == -1) { |
1da177e4 LT |
270 | usage(); |
271 | } | |
272 | ||
8484baaa | 273 | my $kernelversion; |
efa44475 MCC |
274 | my $sphinx_major; |
275 | ||
8484baaa RD |
276 | my $dohighlight = ""; |
277 | ||
1da177e4 | 278 | my $verbose = 0; |
2c12c810 | 279 | my $Werror = 0; |
bdfe2be3 | 280 | my $output_mode = "rst"; |
e314ba31 | 281 | my $output_preformatted = 0; |
4b44595a | 282 | my $no_doc_sections = 0; |
0b0f5f29 | 283 | my $enable_lineno = 0; |
bdfe2be3 MCC |
284 | my @highlights = @highlights_rst; |
285 | my $blankline = $blankline_rst; | |
1da177e4 | 286 | my $modulename = "Kernel API"; |
b6c3f456 JN |
287 | |
288 | use constant { | |
289 | OUTPUT_ALL => 0, # output all symbols and doc sections | |
290 | OUTPUT_INCLUDE => 1, # output only specified symbols | |
291 | OUTPUT_EXCLUDE => 2, # output everything except specified symbols | |
292 | OUTPUT_EXPORTED => 3, # output exported symbols | |
293 | OUTPUT_INTERNAL => 4, # output non-exported symbols | |
294 | }; | |
295 | my $output_selection = OUTPUT_ALL; | |
b0d60bfb | 296 | my $show_not_found = 0; # No longer used |
b2c4105b | 297 | |
88c2b57d JN |
298 | my @export_file_list; |
299 | ||
b2c4105b BH |
300 | my @build_time; |
301 | if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) && | |
302 | (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') { | |
303 | @build_time = gmtime($seconds); | |
304 | } else { | |
305 | @build_time = localtime; | |
306 | } | |
307 | ||
3c3b809e RD |
308 | my $man_date = ('January', 'February', 'March', 'April', 'May', 'June', |
309 | 'July', 'August', 'September', 'October', | |
b2c4105b BH |
310 | 'November', 'December')[$build_time[4]] . |
311 | " " . ($build_time[5]+1900); | |
1da177e4 | 312 | |
8484baaa | 313 | # Essentially these are globals. |
b9d97328 RD |
314 | # They probably want to be tidied up, made more localised or something. |
315 | # CAVEAT EMPTOR! Some of the others I localised may not want to be, which | |
1da177e4 | 316 | # could cause "use of undefined value" or other bugs. |
b9d97328 | 317 | my ($function, %function_table, %parametertypes, $declaration_purpose); |
0b0f5f29 | 318 | my $declaration_start_line; |
b9d97328 | 319 | my ($type, $declaration_name, $return_type); |
1c32fd0c | 320 | my ($newsection, $newcontents, $prototype, $brcount, %source_map); |
1da177e4 | 321 | |
bd0e88e5 RD |
322 | if (defined($ENV{'KBUILD_VERBOSE'})) { |
323 | $verbose = "$ENV{'KBUILD_VERBOSE'}"; | |
324 | } | |
325 | ||
2c12c810 PLB |
326 | if (defined($ENV{'KDOC_WERROR'})) { |
327 | $Werror = "$ENV{'KDOC_WERROR'}"; | |
328 | } | |
329 | ||
330 | if (defined($ENV{'KCFLAGS'})) { | |
331 | my $kcflags = "$ENV{'KCFLAGS'}"; | |
332 | ||
333 | if ($kcflags =~ /Werror/) { | |
334 | $Werror = 1; | |
335 | } | |
336 | } | |
337 | ||
3c3b809e | 338 | # Generated docbook code is inserted in a template at a point where |
1da177e4 | 339 | # docbook v3.1 requires a non-zero sequence of RefEntry's; see: |
93431e06 | 340 | # https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html |
1da177e4 LT |
341 | # We keep track of number of generated entries and generate a dummy |
342 | # if needs be to ensure the expanded template can be postprocessed | |
343 | # into html. | |
344 | my $section_counter = 0; | |
345 | ||
346 | my $lineprefix=""; | |
347 | ||
48af606a JN |
348 | # Parser states |
349 | use constant { | |
0d55d48b MCC |
350 | STATE_NORMAL => 0, # normal code |
351 | STATE_NAME => 1, # looking for function name | |
352 | STATE_BODY_MAYBE => 2, # body - or maybe more description | |
353 | STATE_BODY => 3, # the body of the comment | |
354 | STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line | |
355 | STATE_PROTO => 5, # scanning prototype | |
356 | STATE_DOCBLOCK => 6, # documentation block | |
357 | STATE_INLINE => 7, # gathering doc outside main block | |
48af606a | 358 | }; |
1da177e4 | 359 | my $state; |
850622df | 360 | my $in_doc_sect; |
d742f24d | 361 | my $leading_space; |
1da177e4 | 362 | |
48af606a JN |
363 | # Inline documentation state |
364 | use constant { | |
365 | STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE) | |
366 | STATE_INLINE_NAME => 1, # looking for member name (@foo:) | |
367 | STATE_INLINE_TEXT => 2, # looking for member documentation | |
368 | STATE_INLINE_END => 3, # done | |
369 | STATE_INLINE_ERROR => 4, # error - Comment without header was found. | |
370 | # Spit a warning as it's not | |
371 | # proper kernel-doc and ignore the rest. | |
372 | }; | |
373 | my $inline_doc_state; | |
a4c6ebed | 374 | |
1da177e4 LT |
375 | #declaration types: can be |
376 | # 'function', 'struct', 'union', 'enum', 'typedef' | |
377 | my $decl_type; | |
378 | ||
1da177e4 LT |
379 | my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start. |
380 | my $doc_end = '\*/'; | |
381 | my $doc_com = '\s*\*\s*'; | |
12ae6779 | 382 | my $doc_com_body = '\s*\* ?'; |
b9d97328 | 383 | my $doc_decl = $doc_com . '(\w+)'; |
f624adef | 384 | # @params and a strictly limited set of supported section names |
76dd3e7b | 385 | my $doc_sect = $doc_com . |
ef00028b | 386 | '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)'; |
12ae6779 | 387 | my $doc_content = $doc_com_body . '(.*)'; |
b9d97328 | 388 | my $doc_block = $doc_com . 'DOC:\s*(.*)?'; |
48af606a | 389 | my $doc_inline_start = '^\s*/\*\*\s*$'; |
fe7bc493 | 390 | my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)'; |
48af606a | 391 | my $doc_inline_end = '^\s*\*/\s*$'; |
0c9aa209 | 392 | my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$'; |
86ae2e38 | 393 | my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;'; |
1da177e4 | 394 | |
1da177e4 | 395 | my %parameterdescs; |
0b0f5f29 | 396 | my %parameterdesc_start_lines; |
1da177e4 LT |
397 | my @parameterlist; |
398 | my %sections; | |
399 | my @sectionlist; | |
0b0f5f29 | 400 | my %section_start_lines; |
a1d94aa5 RD |
401 | my $sectcheck; |
402 | my $struct_actual; | |
1da177e4 LT |
403 | |
404 | my $contents = ""; | |
0b0f5f29 | 405 | my $new_start_line = 0; |
f624adef JN |
406 | |
407 | # the canonical section names. see also $doc_sect above. | |
1da177e4 LT |
408 | my $section_default = "Description"; # default section |
409 | my $section_intro = "Introduction"; | |
410 | my $section = $section_default; | |
411 | my $section_context = "Context"; | |
4092bac7 | 412 | my $section_return = "Return"; |
1da177e4 LT |
413 | |
414 | my $undescribed = "-- undescribed --"; | |
415 | ||
416 | reset_state(); | |
417 | ||
b031ac4e MCC |
418 | while ($ARGV[0] =~ m/^--?(.*)/) { |
419 | my $cmd = $1; | |
420 | shift @ARGV; | |
421 | if ($cmd eq "man") { | |
1da177e4 | 422 | $output_mode = "man"; |
4d732701 | 423 | @highlights = @highlights_man; |
1da177e4 | 424 | $blankline = $blankline_man; |
b031ac4e | 425 | } elsif ($cmd eq "rst") { |
c0d1b6ee JC |
426 | $output_mode = "rst"; |
427 | @highlights = @highlights_rst; | |
428 | $blankline = $blankline_rst; | |
b031ac4e | 429 | } elsif ($cmd eq "none") { |
3a025e1d | 430 | $output_mode = "none"; |
b031ac4e | 431 | } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document |
1da177e4 | 432 | $modulename = shift @ARGV; |
b031ac4e | 433 | } elsif ($cmd eq "function") { # to only output specific functions |
b6c3f456 | 434 | $output_selection = OUTPUT_INCLUDE; |
1da177e4 LT |
435 | $function = shift @ARGV; |
436 | $function_table{$function} = 1; | |
b031ac4e | 437 | } elsif ($cmd eq "nofunction") { # output all except specific functions |
b6c3f456 | 438 | $output_selection = OUTPUT_EXCLUDE; |
1da177e4 LT |
439 | $function = shift @ARGV; |
440 | $function_table{$function} = 1; | |
b031ac4e | 441 | } elsif ($cmd eq "export") { # only exported symbols |
b6c3f456 | 442 | $output_selection = OUTPUT_EXPORTED; |
da9726ec | 443 | %function_table = (); |
b031ac4e | 444 | } elsif ($cmd eq "internal") { # only non-exported symbols |
b6c3f456 | 445 | $output_selection = OUTPUT_INTERNAL; |
da9726ec | 446 | %function_table = (); |
b031ac4e | 447 | } elsif ($cmd eq "export-file") { |
88c2b57d JN |
448 | my $file = shift @ARGV; |
449 | push(@export_file_list, $file); | |
b031ac4e | 450 | } elsif ($cmd eq "v") { |
1da177e4 | 451 | $verbose = 1; |
2c12c810 PLB |
452 | } elsif ($cmd eq "Werror") { |
453 | $Werror = 1; | |
b031ac4e | 454 | } elsif (($cmd eq "h") || ($cmd eq "help")) { |
1da177e4 | 455 | usage(); |
b031ac4e | 456 | } elsif ($cmd eq 'no-doc-sections') { |
4b44595a | 457 | $no_doc_sections = 1; |
b031ac4e | 458 | } elsif ($cmd eq 'enable-lineno') { |
0b0f5f29 | 459 | $enable_lineno = 1; |
b031ac4e | 460 | } elsif ($cmd eq 'show-not-found') { |
b0d60bfb | 461 | $show_not_found = 1; # A no-op but don't fail |
b031ac4e MCC |
462 | } else { |
463 | # Unknown argument | |
464 | usage(); | |
1da177e4 LT |
465 | } |
466 | } | |
467 | ||
8484baaa RD |
468 | # continue execution near EOF; |
469 | ||
efa44475 MCC |
470 | # The C domain dialect changed on Sphinx 3. So, we need to check the |
471 | # version in order to produce the right tags. | |
472 | sub findprog($) | |
473 | { | |
474 | foreach(split(/:/, $ENV{PATH})) { | |
475 | return "$_/$_[0]" if(-x "$_/$_[0]"); | |
476 | } | |
477 | } | |
478 | ||
479 | sub get_sphinx_version() | |
480 | { | |
481 | my $ver; | |
482 | my $major = 1; | |
483 | ||
484 | my $cmd = "sphinx-build"; | |
485 | if (!findprog($cmd)) { | |
486 | my $cmd = "sphinx-build3"; | |
487 | return $major if (!findprog($cmd)); | |
488 | } | |
489 | ||
490 | open IN, "$cmd --version 2>&1 |"; | |
491 | while (<IN>) { | |
492 | if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) { | |
493 | $major=$1; | |
494 | last; | |
495 | } | |
496 | # Sphinx 1.2.x uses a different format | |
497 | if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) { | |
498 | $major=$1; | |
499 | last; | |
500 | } | |
501 | } | |
502 | close IN; | |
503 | ||
504 | return $major; | |
505 | } | |
506 | ||
53f049fa BP |
507 | # get kernel version from env |
508 | sub get_kernel_version() { | |
1b9bc22d | 509 | my $version = 'unknown kernel version'; |
53f049fa BP |
510 | |
511 | if (defined($ENV{'KERNELVERSION'})) { | |
512 | $version = $ENV{'KERNELVERSION'}; | |
513 | } | |
514 | return $version; | |
515 | } | |
1da177e4 | 516 | |
0b0f5f29 SV |
517 | # |
518 | sub print_lineno { | |
519 | my $lineno = shift; | |
520 | if ($enable_lineno && defined($lineno)) { | |
521 | print "#define LINENO " . $lineno . "\n"; | |
522 | } | |
523 | } | |
1da177e4 LT |
524 | ## |
525 | # dumps section contents to arrays/hashes intended for that purpose. | |
526 | # | |
527 | sub dump_section { | |
94dc7ad5 | 528 | my $file = shift; |
1da177e4 LT |
529 | my $name = shift; |
530 | my $contents = join "\n", @_; | |
531 | ||
13901ef2 | 532 | if ($name =~ m/$type_param/) { |
1da177e4 LT |
533 | $name = $1; |
534 | $parameterdescs{$name} = $contents; | |
a1d94aa5 | 535 | $sectcheck = $sectcheck . $name . " "; |
0b0f5f29 SV |
536 | $parameterdesc_start_lines{$name} = $new_start_line; |
537 | $new_start_line = 0; | |
ced69090 | 538 | } elsif ($name eq "@\.\.\.") { |
ced69090 RD |
539 | $name = "..."; |
540 | $parameterdescs{$name} = $contents; | |
a1d94aa5 | 541 | $sectcheck = $sectcheck . $name . " "; |
0b0f5f29 SV |
542 | $parameterdesc_start_lines{$name} = $new_start_line; |
543 | $new_start_line = 0; | |
1da177e4 | 544 | } else { |
94dc7ad5 | 545 | if (defined($sections{$name}) && ($sections{$name} ne "")) { |
95b6be9d JN |
546 | # Only warn on user specified duplicate section names. |
547 | if ($name ne $section_default) { | |
548 | print STDERR "${file}:$.: warning: duplicate section name '$name'\n"; | |
549 | ++$warnings; | |
550 | } | |
32217761 JN |
551 | $sections{$name} .= $contents; |
552 | } else { | |
553 | $sections{$name} = $contents; | |
554 | push @sectionlist, $name; | |
0b0f5f29 SV |
555 | $section_start_lines{$name} = $new_start_line; |
556 | $new_start_line = 0; | |
94dc7ad5 | 557 | } |
1da177e4 LT |
558 | } |
559 | } | |
560 | ||
b112e0f7 JB |
561 | ## |
562 | # dump DOC: section after checking that it should go out | |
563 | # | |
564 | sub dump_doc_section { | |
94dc7ad5 | 565 | my $file = shift; |
b112e0f7 JB |
566 | my $name = shift; |
567 | my $contents = join "\n", @_; | |
568 | ||
4b44595a JB |
569 | if ($no_doc_sections) { |
570 | return; | |
571 | } | |
572 | ||
b6c3f456 JN |
573 | if (($output_selection == OUTPUT_ALL) || |
574 | ($output_selection == OUTPUT_INCLUDE && | |
575 | defined($function_table{$name})) || | |
576 | ($output_selection == OUTPUT_EXCLUDE && | |
577 | !defined($function_table{$name}))) | |
b112e0f7 | 578 | { |
94dc7ad5 | 579 | dump_section($file, $name, $contents); |
b112e0f7 JB |
580 | output_blockhead({'sectionlist' => \@sectionlist, |
581 | 'sections' => \%sections, | |
582 | 'module' => $modulename, | |
b6c3f456 | 583 | 'content-only' => ($output_selection != OUTPUT_ALL), }); |
b112e0f7 JB |
584 | } |
585 | } | |
586 | ||
1da177e4 LT |
587 | ## |
588 | # output function | |
589 | # | |
590 | # parameterdescs, a hash. | |
591 | # function => "function name" | |
592 | # parameterlist => @list of parameters | |
593 | # parameterdescs => %parameter descriptions | |
594 | # sectionlist => @list of sections | |
a21217da | 595 | # sections => %section descriptions |
3c3b809e | 596 | # |
1da177e4 LT |
597 | |
598 | sub output_highlight { | |
599 | my $contents = join "\n",@_; | |
600 | my $line; | |
601 | ||
602 | # DEBUG | |
603 | # if (!defined $contents) { | |
604 | # use Carp; | |
605 | # confess "output_highlight got called with no args?\n"; | |
606 | # } | |
607 | ||
3eb014a1 | 608 | # print STDERR "contents b4:$contents\n"; |
1da177e4 LT |
609 | eval $dohighlight; |
610 | die $@ if $@; | |
3eb014a1 RD |
611 | # print STDERR "contents af:$contents\n"; |
612 | ||
1da177e4 | 613 | foreach $line (split "\n", $contents) { |
12ae6779 DS |
614 | if (! $output_preformatted) { |
615 | $line =~ s/^\s*//; | |
616 | } | |
3c308798 | 617 | if ($line eq ""){ |
e314ba31 | 618 | if (! $output_preformatted) { |
0bba924c | 619 | print $lineprefix, $blankline; |
e314ba31 | 620 | } |
1da177e4 | 621 | } else { |
cdccb316 RD |
622 | if ($output_mode eq "man" && substr($line, 0, 1) eq ".") { |
623 | print "\\&$line"; | |
624 | } else { | |
625 | print $lineprefix, $line; | |
626 | } | |
1da177e4 LT |
627 | } |
628 | print "\n"; | |
629 | } | |
630 | } | |
631 | ||
1da177e4 LT |
632 | ## |
633 | # output function in man | |
634 | sub output_function_man(%) { | |
635 | my %args = %{$_[0]}; | |
636 | my ($parameter, $section); | |
637 | my $count; | |
638 | ||
639 | print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n"; | |
640 | ||
641 | print ".SH NAME\n"; | |
b9d97328 | 642 | print $args{'function'} . " \\- " . $args{'purpose'} . "\n"; |
1da177e4 LT |
643 | |
644 | print ".SH SYNOPSIS\n"; | |
a21217da | 645 | if ($args{'functiontype'} ne "") { |
b9d97328 | 646 | print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n"; |
a21217da | 647 | } else { |
b9d97328 | 648 | print ".B \"" . $args{'function'} . "\n"; |
a21217da | 649 | } |
1da177e4 LT |
650 | $count = 0; |
651 | my $parenth = "("; | |
652 | my $post = ","; | |
653 | foreach my $parameter (@{$args{'parameterlist'}}) { | |
654 | if ($count == $#{$args{'parameterlist'}}) { | |
655 | $post = ");"; | |
656 | } | |
657 | $type = $args{'parametertypes'}{$parameter}; | |
658 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { | |
659 | # pointer-to-function | |
b9d97328 | 660 | print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n"; |
1da177e4 LT |
661 | } else { |
662 | $type =~ s/([^\*])$/$1 /; | |
b9d97328 | 663 | print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n"; |
1da177e4 LT |
664 | } |
665 | $count++; | |
666 | $parenth = ""; | |
667 | } | |
668 | ||
669 | print ".SH ARGUMENTS\n"; | |
670 | foreach $parameter (@{$args{'parameterlist'}}) { | |
671 | my $parameter_name = $parameter; | |
672 | $parameter_name =~ s/\[.*//; | |
673 | ||
b9d97328 | 674 | print ".IP \"" . $parameter . "\" 12\n"; |
1da177e4 LT |
675 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
676 | } | |
677 | foreach $section (@{$args{'sectionlist'}}) { | |
678 | print ".SH \"", uc $section, "\"\n"; | |
679 | output_highlight($args{'sections'}{$section}); | |
680 | } | |
681 | } | |
682 | ||
683 | ## | |
684 | # output enum in man | |
685 | sub output_enum_man(%) { | |
686 | my %args = %{$_[0]}; | |
687 | my ($parameter, $section); | |
688 | my $count; | |
689 | ||
690 | print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n"; | |
691 | ||
692 | print ".SH NAME\n"; | |
b9d97328 | 693 | print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n"; |
1da177e4 LT |
694 | |
695 | print ".SH SYNOPSIS\n"; | |
b9d97328 | 696 | print "enum " . $args{'enum'} . " {\n"; |
1da177e4 LT |
697 | $count = 0; |
698 | foreach my $parameter (@{$args{'parameterlist'}}) { | |
3c308798 | 699 | print ".br\n.BI \" $parameter\"\n"; |
1da177e4 LT |
700 | if ($count == $#{$args{'parameterlist'}}) { |
701 | print "\n};\n"; | |
702 | last; | |
703 | } | |
704 | else { | |
705 | print ", \n.br\n"; | |
706 | } | |
707 | $count++; | |
708 | } | |
709 | ||
710 | print ".SH Constants\n"; | |
711 | foreach $parameter (@{$args{'parameterlist'}}) { | |
712 | my $parameter_name = $parameter; | |
713 | $parameter_name =~ s/\[.*//; | |
714 | ||
b9d97328 | 715 | print ".IP \"" . $parameter . "\" 12\n"; |
1da177e4 LT |
716 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
717 | } | |
718 | foreach $section (@{$args{'sectionlist'}}) { | |
719 | print ".SH \"$section\"\n"; | |
720 | output_highlight($args{'sections'}{$section}); | |
721 | } | |
722 | } | |
723 | ||
724 | ## | |
725 | # output struct in man | |
726 | sub output_struct_man(%) { | |
727 | my %args = %{$_[0]}; | |
728 | my ($parameter, $section); | |
729 | ||
b9d97328 | 730 | print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n"; |
1da177e4 LT |
731 | |
732 | print ".SH NAME\n"; | |
b9d97328 | 733 | print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n"; |
1da177e4 | 734 | |
8ad72163 MCC |
735 | my $declaration = $args{'definition'}; |
736 | $declaration =~ s/\t/ /g; | |
737 | $declaration =~ s/\n/"\n.br\n.BI \"/g; | |
1da177e4 | 738 | print ".SH SYNOPSIS\n"; |
b9d97328 | 739 | print $args{'type'} . " " . $args{'struct'} . " {\n.br\n"; |
8ad72163 | 740 | print ".BI \"$declaration\n};\n.br\n\n"; |
1da177e4 | 741 | |
c51d3dac | 742 | print ".SH Members\n"; |
1da177e4 LT |
743 | foreach $parameter (@{$args{'parameterlist'}}) { |
744 | ($parameter =~ /^#/) && next; | |
745 | ||
746 | my $parameter_name = $parameter; | |
747 | $parameter_name =~ s/\[.*//; | |
748 | ||
3c308798 | 749 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
b9d97328 | 750 | print ".IP \"" . $parameter . "\" 12\n"; |
1da177e4 LT |
751 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
752 | } | |
753 | foreach $section (@{$args{'sectionlist'}}) { | |
754 | print ".SH \"$section\"\n"; | |
755 | output_highlight($args{'sections'}{$section}); | |
756 | } | |
757 | } | |
758 | ||
759 | ## | |
760 | # output typedef in man | |
761 | sub output_typedef_man(%) { | |
762 | my %args = %{$_[0]}; | |
763 | my ($parameter, $section); | |
764 | ||
765 | print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n"; | |
766 | ||
767 | print ".SH NAME\n"; | |
b9d97328 | 768 | print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n"; |
1da177e4 LT |
769 | |
770 | foreach $section (@{$args{'sectionlist'}}) { | |
771 | print ".SH \"$section\"\n"; | |
772 | output_highlight($args{'sections'}{$section}); | |
773 | } | |
774 | } | |
775 | ||
b112e0f7 | 776 | sub output_blockhead_man(%) { |
1da177e4 LT |
777 | my %args = %{$_[0]}; |
778 | my ($parameter, $section); | |
779 | my $count; | |
780 | ||
781 | print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n"; | |
782 | ||
783 | foreach $section (@{$args{'sectionlist'}}) { | |
784 | print ".SH \"$section\"\n"; | |
785 | output_highlight($args{'sections'}{$section}); | |
786 | } | |
787 | } | |
788 | ||
c0d1b6ee JC |
789 | ## |
790 | # output in restructured text | |
791 | # | |
792 | ||
793 | # | |
794 | # This could use some work; it's used to output the DOC: sections, and | |
795 | # starts by putting out the name of the doc section itself, but that tends | |
796 | # to duplicate a header already in the template file. | |
797 | # | |
798 | sub output_blockhead_rst(%) { | |
799 | my %args = %{$_[0]}; | |
800 | my ($parameter, $section); | |
801 | ||
802 | foreach $section (@{$args{'sectionlist'}}) { | |
9e72184b JN |
803 | if ($output_selection != OUTPUT_INCLUDE) { |
804 | print "**$section**\n\n"; | |
805 | } | |
0b0f5f29 | 806 | print_lineno($section_start_lines{$section}); |
c0d1b6ee JC |
807 | output_highlight_rst($args{'sections'}{$section}); |
808 | print "\n"; | |
809 | } | |
810 | } | |
811 | ||
af250290 JC |
812 | # |
813 | # Apply the RST highlights to a sub-block of text. | |
76dd3e7b | 814 | # |
af250290 JC |
815 | sub highlight_block($) { |
816 | # The dohighlight kludge requires the text be called $contents | |
817 | my $contents = shift; | |
c0d1b6ee JC |
818 | eval $dohighlight; |
819 | die $@ if $@; | |
af250290 JC |
820 | return $contents; |
821 | } | |
c0d1b6ee | 822 | |
af250290 JC |
823 | # |
824 | # Regexes used only here. | |
825 | # | |
826 | my $sphinx_literal = '^[^.].*::$'; | |
827 | my $sphinx_cblock = '^\.\.\ +code-block::'; | |
828 | ||
829 | sub output_highlight_rst { | |
830 | my $input = join "\n",@_; | |
831 | my $output = ""; | |
832 | my $line; | |
833 | my $in_literal = 0; | |
834 | my $litprefix; | |
835 | my $block = ""; | |
836 | ||
837 | foreach $line (split "\n",$input) { | |
838 | # | |
839 | # If we're in a literal block, see if we should drop out | |
840 | # of it. Otherwise pass the line straight through unmunged. | |
841 | # | |
842 | if ($in_literal) { | |
843 | if (! ($line =~ /^\s*$/)) { | |
844 | # | |
845 | # If this is the first non-blank line in a literal | |
846 | # block we need to figure out what the proper indent is. | |
847 | # | |
848 | if ($litprefix eq "") { | |
849 | $line =~ /^(\s*)/; | |
850 | $litprefix = '^' . $1; | |
851 | $output .= $line . "\n"; | |
852 | } elsif (! ($line =~ /$litprefix/)) { | |
853 | $in_literal = 0; | |
854 | } else { | |
855 | $output .= $line . "\n"; | |
856 | } | |
857 | } else { | |
858 | $output .= $line . "\n"; | |
859 | } | |
860 | } | |
861 | # | |
862 | # Not in a literal block (or just dropped out) | |
863 | # | |
864 | if (! $in_literal) { | |
865 | $block .= $line . "\n"; | |
866 | if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) { | |
867 | $in_literal = 1; | |
868 | $litprefix = ""; | |
869 | $output .= highlight_block($block); | |
870 | $block = "" | |
871 | } | |
872 | } | |
873 | } | |
874 | ||
875 | if ($block) { | |
876 | $output .= highlight_block($block); | |
877 | } | |
878 | foreach $line (split "\n", $output) { | |
830066a7 | 879 | print $lineprefix . $line . "\n"; |
c0d1b6ee JC |
880 | } |
881 | } | |
882 | ||
883 | sub output_function_rst(%) { | |
884 | my %args = %{$_[0]}; | |
885 | my ($parameter, $section); | |
c099ff69 | 886 | my $oldprefix = $lineprefix; |
82801d06 MCC |
887 | my $start = ""; |
888 | ||
e3ad05fe MCC |
889 | if ($sphinx_major < 3) { |
890 | if ($args{'typedef'}) { | |
efa44475 | 891 | print ".. c:type:: ". $args{'function'} . "\n\n"; |
e3ad05fe MCC |
892 | print_lineno($declaration_start_line); |
893 | print " **Typedef**: "; | |
894 | $lineprefix = ""; | |
895 | output_highlight_rst($args{'purpose'}); | |
896 | $start = "\n\n**Syntax**\n\n ``"; | |
efa44475 | 897 | } else { |
e3ad05fe | 898 | print ".. c:function:: "; |
efa44475 | 899 | } |
82801d06 | 900 | } else { |
e3ad05fe MCC |
901 | print ".. c:macro:: ". $args{'function'} . "\n\n"; |
902 | ||
903 | if ($args{'typedef'}) { | |
904 | print_lineno($declaration_start_line); | |
905 | print " **Typedef**: "; | |
906 | $lineprefix = ""; | |
907 | output_highlight_rst($args{'purpose'}); | |
908 | $start = "\n\n**Syntax**\n\n ``"; | |
909 | } else { | |
910 | print "``"; | |
911 | } | |
82801d06 | 912 | } |
c0d1b6ee | 913 | if ($args{'functiontype'} ne "") { |
82801d06 | 914 | $start .= $args{'functiontype'} . " " . $args{'function'} . " ("; |
c0d1b6ee | 915 | } else { |
82801d06 | 916 | $start .= $args{'function'} . " ("; |
c0d1b6ee JC |
917 | } |
918 | print $start; | |
919 | ||
920 | my $count = 0; | |
921 | foreach my $parameter (@{$args{'parameterlist'}}) { | |
922 | if ($count ne 0) { | |
923 | print ", "; | |
924 | } | |
925 | $count++; | |
926 | $type = $args{'parametertypes'}{$parameter}; | |
a88b1672 | 927 | |
c0d1b6ee JC |
928 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
929 | # pointer-to-function | |
e8f4ba83 | 930 | print $1 . $parameter . ") (" . $2 . ")"; |
c0d1b6ee JC |
931 | } else { |
932 | print $type . " " . $parameter; | |
933 | } | |
934 | } | |
82801d06 MCC |
935 | if ($args{'typedef'}) { |
936 | print ");``\n\n"; | |
937 | } else { | |
e3ad05fe MCC |
938 | if ($sphinx_major < 3) { |
939 | print ")\n\n"; | |
940 | } else { | |
941 | print ")``\n"; | |
942 | } | |
82801d06 MCC |
943 | print_lineno($declaration_start_line); |
944 | $lineprefix = " "; | |
945 | output_highlight_rst($args{'purpose'}); | |
946 | print "\n"; | |
947 | } | |
c0d1b6ee | 948 | |
ecbcfba1 JN |
949 | print "**Parameters**\n\n"; |
950 | $lineprefix = " "; | |
c0d1b6ee JC |
951 | foreach $parameter (@{$args{'parameterlist'}}) { |
952 | my $parameter_name = $parameter; | |
ada5f446 | 953 | $parameter_name =~ s/\[.*//; |
c0d1b6ee JC |
954 | $type = $args{'parametertypes'}{$parameter}; |
955 | ||
956 | if ($type ne "") { | |
ecbcfba1 | 957 | print "``$type $parameter``\n"; |
c0d1b6ee | 958 | } else { |
ecbcfba1 | 959 | print "``$parameter``\n"; |
c0d1b6ee | 960 | } |
0b0f5f29 SV |
961 | |
962 | print_lineno($parameterdesc_start_lines{$parameter_name}); | |
963 | ||
5e64fa9c JN |
964 | if (defined($args{'parameterdescs'}{$parameter_name}) && |
965 | $args{'parameterdescs'}{$parameter_name} ne $undescribed) { | |
c0d1b6ee | 966 | output_highlight_rst($args{'parameterdescs'}{$parameter_name}); |
c0d1b6ee | 967 | } else { |
d4b08e0c | 968 | print " *undescribed*\n"; |
c0d1b6ee JC |
969 | } |
970 | print "\n"; | |
971 | } | |
c099ff69 JN |
972 | |
973 | $lineprefix = $oldprefix; | |
c0d1b6ee JC |
974 | output_section_rst(@_); |
975 | } | |
976 | ||
977 | sub output_section_rst(%) { | |
978 | my %args = %{$_[0]}; | |
979 | my $section; | |
980 | my $oldprefix = $lineprefix; | |
ecbcfba1 | 981 | $lineprefix = ""; |
c0d1b6ee JC |
982 | |
983 | foreach $section (@{$args{'sectionlist'}}) { | |
ecbcfba1 | 984 | print "**$section**\n\n"; |
0b0f5f29 | 985 | print_lineno($section_start_lines{$section}); |
c0d1b6ee JC |
986 | output_highlight_rst($args{'sections'}{$section}); |
987 | print "\n"; | |
988 | } | |
989 | print "\n"; | |
990 | $lineprefix = $oldprefix; | |
991 | } | |
992 | ||
993 | sub output_enum_rst(%) { | |
994 | my %args = %{$_[0]}; | |
995 | my ($parameter); | |
c099ff69 | 996 | my $oldprefix = $lineprefix; |
c0d1b6ee | 997 | my $count; |
62850976 | 998 | |
efa44475 MCC |
999 | if ($sphinx_major < 3) { |
1000 | my $name = "enum " . $args{'enum'}; | |
1001 | print "\n\n.. c:type:: " . $name . "\n\n"; | |
1002 | } else { | |
1003 | my $name = $args{'enum'}; | |
1004 | print "\n\n.. c:enum:: " . $name . "\n\n"; | |
1005 | } | |
0b0f5f29 | 1006 | print_lineno($declaration_start_line); |
c099ff69 JN |
1007 | $lineprefix = " "; |
1008 | output_highlight_rst($args{'purpose'}); | |
1009 | print "\n"; | |
c0d1b6ee | 1010 | |
ecbcfba1 JN |
1011 | print "**Constants**\n\n"; |
1012 | $lineprefix = " "; | |
c0d1b6ee | 1013 | foreach $parameter (@{$args{'parameterlist'}}) { |
ecbcfba1 | 1014 | print "``$parameter``\n"; |
c0d1b6ee JC |
1015 | if ($args{'parameterdescs'}{$parameter} ne $undescribed) { |
1016 | output_highlight_rst($args{'parameterdescs'}{$parameter}); | |
1017 | } else { | |
d4b08e0c | 1018 | print " *undescribed*\n"; |
c0d1b6ee JC |
1019 | } |
1020 | print "\n"; | |
1021 | } | |
c099ff69 | 1022 | |
c0d1b6ee JC |
1023 | $lineprefix = $oldprefix; |
1024 | output_section_rst(@_); | |
1025 | } | |
1026 | ||
1027 | sub output_typedef_rst(%) { | |
1028 | my %args = %{$_[0]}; | |
1029 | my ($parameter); | |
c099ff69 | 1030 | my $oldprefix = $lineprefix; |
efa44475 | 1031 | my $name; |
c0d1b6ee | 1032 | |
efa44475 MCC |
1033 | if ($sphinx_major < 3) { |
1034 | $name = "typedef " . $args{'typedef'}; | |
1035 | } else { | |
1036 | $name = $args{'typedef'}; | |
1037 | } | |
62850976 | 1038 | print "\n\n.. c:type:: " . $name . "\n\n"; |
0b0f5f29 | 1039 | print_lineno($declaration_start_line); |
c099ff69 JN |
1040 | $lineprefix = " "; |
1041 | output_highlight_rst($args{'purpose'}); | |
1042 | print "\n"; | |
c0d1b6ee | 1043 | |
c099ff69 | 1044 | $lineprefix = $oldprefix; |
c0d1b6ee JC |
1045 | output_section_rst(@_); |
1046 | } | |
1047 | ||
1048 | sub output_struct_rst(%) { | |
1049 | my %args = %{$_[0]}; | |
1050 | my ($parameter); | |
c099ff69 | 1051 | my $oldprefix = $lineprefix; |
c0d1b6ee | 1052 | |
efa44475 MCC |
1053 | if ($sphinx_major < 3) { |
1054 | my $name = $args{'type'} . " " . $args{'struct'}; | |
1055 | print "\n\n.. c:type:: " . $name . "\n\n"; | |
1056 | } else { | |
1057 | my $name = $args{'struct'}; | |
1058 | print "\n\n.. c:struct:: " . $name . "\n\n"; | |
1059 | } | |
0b0f5f29 | 1060 | print_lineno($declaration_start_line); |
c099ff69 JN |
1061 | $lineprefix = " "; |
1062 | output_highlight_rst($args{'purpose'}); | |
1063 | print "\n"; | |
c0d1b6ee | 1064 | |
ecbcfba1 JN |
1065 | print "**Definition**\n\n"; |
1066 | print "::\n\n"; | |
8ad72163 MCC |
1067 | my $declaration = $args{'definition'}; |
1068 | $declaration =~ s/\t/ /g; | |
1069 | print " " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration };\n\n"; | |
c0d1b6ee | 1070 | |
ecbcfba1 JN |
1071 | print "**Members**\n\n"; |
1072 | $lineprefix = " "; | |
c0d1b6ee JC |
1073 | foreach $parameter (@{$args{'parameterlist'}}) { |
1074 | ($parameter =~ /^#/) && next; | |
1075 | ||
1076 | my $parameter_name = $parameter; | |
1077 | $parameter_name =~ s/\[.*//; | |
1078 | ||
1079 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; | |
1080 | $type = $args{'parametertypes'}{$parameter}; | |
0b0f5f29 | 1081 | print_lineno($parameterdesc_start_lines{$parameter_name}); |
6d232c80 | 1082 | print "``" . $parameter . "``\n"; |
c0d1b6ee | 1083 | output_highlight_rst($args{'parameterdescs'}{$parameter_name}); |
c0d1b6ee JC |
1084 | print "\n"; |
1085 | } | |
1086 | print "\n"; | |
c099ff69 JN |
1087 | |
1088 | $lineprefix = $oldprefix; | |
c0d1b6ee JC |
1089 | output_section_rst(@_); |
1090 | } | |
1091 | ||
3a025e1d MW |
1092 | ## none mode output functions |
1093 | ||
1094 | sub output_function_none(%) { | |
1095 | } | |
1096 | ||
1097 | sub output_enum_none(%) { | |
1098 | } | |
1099 | ||
1100 | sub output_typedef_none(%) { | |
1101 | } | |
1102 | ||
1103 | sub output_struct_none(%) { | |
1104 | } | |
1105 | ||
1106 | sub output_blockhead_none(%) { | |
1107 | } | |
1108 | ||
1da177e4 | 1109 | ## |
27205744 RD |
1110 | # generic output function for all types (function, struct/union, typedef, enum); |
1111 | # calls the generated, variable output_ function name based on | |
1112 | # functype and output_mode | |
1da177e4 LT |
1113 | sub output_declaration { |
1114 | no strict 'refs'; | |
1115 | my $name = shift; | |
1116 | my $functype = shift; | |
1117 | my $func = "output_${functype}_$output_mode"; | |
b6c3f456 JN |
1118 | if (($output_selection == OUTPUT_ALL) || |
1119 | (($output_selection == OUTPUT_INCLUDE || | |
1120 | $output_selection == OUTPUT_EXPORTED) && | |
1121 | defined($function_table{$name})) || | |
1122 | (($output_selection == OUTPUT_EXCLUDE || | |
1123 | $output_selection == OUTPUT_INTERNAL) && | |
1124 | !($functype eq "function" && defined($function_table{$name})))) | |
1da177e4 | 1125 | { |
3c308798 | 1126 | &$func(@_); |
1da177e4 LT |
1127 | $section_counter++; |
1128 | } | |
1129 | } | |
1130 | ||
1131 | ## | |
27205744 | 1132 | # generic output function - calls the right one based on current output mode. |
b112e0f7 | 1133 | sub output_blockhead { |
1da177e4 | 1134 | no strict 'refs'; |
b9d97328 | 1135 | my $func = "output_blockhead_" . $output_mode; |
1da177e4 LT |
1136 | &$func(@_); |
1137 | $section_counter++; | |
1138 | } | |
1139 | ||
1140 | ## | |
3c3b809e | 1141 | # takes a declaration (struct, union, enum, typedef) and |
1da177e4 LT |
1142 | # invokes the right handler. NOT called for functions. |
1143 | sub dump_declaration($$) { | |
1144 | no strict 'refs'; | |
1145 | my ($prototype, $file) = @_; | |
b9d97328 | 1146 | my $func = "dump_" . $decl_type; |
1da177e4 LT |
1147 | &$func(@_); |
1148 | } | |
1149 | ||
1150 | sub dump_union($$) { | |
1151 | dump_struct(@_); | |
1152 | } | |
1153 | ||
1154 | sub dump_struct($$) { | |
1155 | my $x = shift; | |
1156 | my $file = shift; | |
1157 | ||
a070991f | 1158 | if ($x =~ /(struct|union)\s+(\w+)\s*\{(.*)\}(\s*(__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned|__attribute__\s*\(\([a-z0-9,_\s\(\)]*\)\)))*/) { |
5cb5c31c | 1159 | my $decl_type = $1; |
3c308798 RD |
1160 | $declaration_name = $2; |
1161 | my $members = $3; | |
1da177e4 | 1162 | |
aeec46b9 | 1163 | # ignore members marked private: |
0d8c39e6 MCC |
1164 | $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi; |
1165 | $members =~ s/\/\*\s*private:.*//gosi; | |
aeec46b9 MW |
1166 | # strip comments: |
1167 | $members =~ s/\/\*.*?\*\///gos; | |
ef5da59f | 1168 | # strip attributes |
2b5f78e5 AA |
1169 | $members =~ s/\s*__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)/ /gi; |
1170 | $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos; | |
1171 | $members =~ s/\s*__packed\s*/ /gos; | |
1172 | $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos; | |
f861537d | 1173 | $members =~ s/\s*____cacheline_aligned_in_smp/ /gos; |
a070991f | 1174 | $members =~ s/\s*____cacheline_aligned/ /gos; |
3556108e | 1175 | |
b22b5a9e | 1176 | # replace DECLARE_BITMAP |
3556108e | 1177 | $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos; |
45005b27 | 1178 | $members =~ s/DECLARE_BITMAP\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos; |
1cb566ba | 1179 | # replace DECLARE_HASHTABLE |
45005b27 MCC |
1180 | $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos; |
1181 | # replace DECLARE_KFIFO | |
1182 | $members =~ s/DECLARE_KFIFO\s*\(([^,)]+),\s*([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos; | |
1183 | # replace DECLARE_KFIFO_PTR | |
1184 | $members =~ s/DECLARE_KFIFO_PTR\s*\(([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos; | |
aeec46b9 | 1185 | |
8ad72163 MCC |
1186 | my $declaration = $members; |
1187 | ||
1188 | # Split nested struct/union elements as newer ones | |
84ce5b98 MCC |
1189 | while ($members =~ m/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/) { |
1190 | my $newmember; | |
1191 | my $maintype = $1; | |
1192 | my $ids = $4; | |
1193 | my $content = $3; | |
1194 | foreach my $id(split /,/, $ids) { | |
1195 | $newmember .= "$maintype $id; "; | |
1196 | ||
8ad72163 | 1197 | $id =~ s/[:\[].*//; |
84ce5b98 | 1198 | $id =~ s/^\s*\**(\S+)\s*/$1/; |
8ad72163 MCC |
1199 | foreach my $arg (split /;/, $content) { |
1200 | next if ($arg =~ m/^\s*$/); | |
7c0d7e87 MCC |
1201 | if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) { |
1202 | # pointer-to-function | |
1203 | my $type = $1; | |
1204 | my $name = $2; | |
1205 | my $extra = $3; | |
1206 | next if (!$name); | |
1207 | if ($id =~ m/^\s*$/) { | |
1208 | # anonymous struct/union | |
84ce5b98 | 1209 | $newmember .= "$type$name$extra; "; |
7c0d7e87 | 1210 | } else { |
84ce5b98 | 1211 | $newmember .= "$type$id.$name$extra; "; |
7c0d7e87 | 1212 | } |
8ad72163 | 1213 | } else { |
84ce5b98 MCC |
1214 | my $type; |
1215 | my $names; | |
1216 | $arg =~ s/^\s+//; | |
1217 | $arg =~ s/\s+$//; | |
1218 | # Handle bitmaps | |
1219 | $arg =~ s/:\s*\d+\s*//g; | |
1220 | # Handle arrays | |
d404d579 | 1221 | $arg =~ s/\[.*\]//g; |
84ce5b98 MCC |
1222 | # The type may have multiple words, |
1223 | # and multiple IDs can be defined, like: | |
1224 | # const struct foo, *bar, foobar | |
1225 | # So, we remove spaces when parsing the | |
1226 | # names, in order to match just names | |
1227 | # and commas for the names | |
1228 | $arg =~ s/\s*,\s*/,/g; | |
1229 | if ($arg =~ m/(.*)\s+([\S+,]+)/) { | |
1230 | $type = $1; | |
1231 | $names = $2; | |
7c0d7e87 | 1232 | } else { |
84ce5b98 MCC |
1233 | $newmember .= "$arg; "; |
1234 | next; | |
1235 | } | |
1236 | foreach my $name (split /,/, $names) { | |
1237 | $name =~ s/^\s*\**(\S+)\s*/$1/; | |
1238 | next if (($name =~ m/^\s*$/)); | |
1239 | if ($id =~ m/^\s*$/) { | |
1240 | # anonymous struct/union | |
1241 | $newmember .= "$type $name; "; | |
1242 | } else { | |
1243 | $newmember .= "$type $id.$name; "; | |
1244 | } | |
7c0d7e87 | 1245 | } |
8ad72163 MCC |
1246 | } |
1247 | } | |
84ce5b98 | 1248 | } |
673bb2df | 1249 | $members =~ s/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/$newmember/; |
84ce5b98 | 1250 | } |
8ad72163 MCC |
1251 | |
1252 | # Ignore other nested elements, like enums | |
673bb2df | 1253 | $members =~ s/(\{[^\{\}]*\})//g; |
8ad72163 | 1254 | |
151c468b | 1255 | create_parameterlist($members, ';', $file, $declaration_name); |
1081de2d | 1256 | check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual); |
1da177e4 | 1257 | |
8ad72163 | 1258 | # Adjust declaration for better display |
673bb2df BH |
1259 | $declaration =~ s/([\{;])/$1\n/g; |
1260 | $declaration =~ s/\}\s+;/};/g; | |
8ad72163 | 1261 | # Better handle inlined enums |
673bb2df | 1262 | do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/); |
8ad72163 MCC |
1263 | |
1264 | my @def_args = split /\n/, $declaration; | |
1265 | my $level = 1; | |
1266 | $declaration = ""; | |
1267 | foreach my $clause (@def_args) { | |
1268 | $clause =~ s/^\s+//; | |
1269 | $clause =~ s/\s+$//; | |
1270 | $clause =~ s/\s+/ /; | |
1271 | next if (!$clause); | |
673bb2df | 1272 | $level-- if ($clause =~ m/(\})/ && $level > 1); |
8ad72163 MCC |
1273 | if (!($clause =~ m/^\s*#/)) { |
1274 | $declaration .= "\t" x $level; | |
1275 | } | |
1276 | $declaration .= "\t" . $clause . "\n"; | |
673bb2df | 1277 | $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/)); |
8ad72163 | 1278 | } |
1da177e4 LT |
1279 | output_declaration($declaration_name, |
1280 | 'struct', | |
1281 | {'struct' => $declaration_name, | |
1282 | 'module' => $modulename, | |
8ad72163 | 1283 | 'definition' => $declaration, |
1da177e4 LT |
1284 | 'parameterlist' => \@parameterlist, |
1285 | 'parameterdescs' => \%parameterdescs, | |
1286 | 'parametertypes' => \%parametertypes, | |
1287 | 'sectionlist' => \@sectionlist, | |
1288 | 'sections' => \%sections, | |
1289 | 'purpose' => $declaration_purpose, | |
1290 | 'type' => $decl_type | |
1291 | }); | |
1292 | } | |
1293 | else { | |
d40e1e65 | 1294 | print STDERR "${file}:$.: error: Cannot parse struct or union!\n"; |
1da177e4 LT |
1295 | ++$errors; |
1296 | } | |
1297 | } | |
1298 | ||
85afe608 MCC |
1299 | |
1300 | sub show_warnings($$) { | |
1301 | my $functype = shift; | |
1302 | my $name = shift; | |
1303 | ||
1304 | return 1 if ($output_selection == OUTPUT_ALL); | |
1305 | ||
1306 | if ($output_selection == OUTPUT_EXPORTED) { | |
1307 | if (defined($function_table{$name})) { | |
1308 | return 1; | |
1309 | } else { | |
1310 | return 0; | |
1311 | } | |
1312 | } | |
1313 | if ($output_selection == OUTPUT_INTERNAL) { | |
1314 | if (!($functype eq "function" && defined($function_table{$name}))) { | |
1315 | return 1; | |
1316 | } else { | |
1317 | return 0; | |
1318 | } | |
1319 | } | |
1320 | if ($output_selection == OUTPUT_INCLUDE) { | |
1321 | if (defined($function_table{$name})) { | |
1322 | return 1; | |
1323 | } else { | |
1324 | return 0; | |
1325 | } | |
1326 | } | |
1327 | if ($output_selection == OUTPUT_EXCLUDE) { | |
1328 | if (!defined($function_table{$name})) { | |
1329 | return 1; | |
1330 | } else { | |
1331 | return 0; | |
1332 | } | |
1333 | } | |
1334 | die("Please add the new output type at show_warnings()"); | |
1335 | } | |
1336 | ||
1da177e4 LT |
1337 | sub dump_enum($$) { |
1338 | my $x = shift; | |
1339 | my $file = shift; | |
d38c8cfb MCC |
1340 | my $members; |
1341 | ||
1da177e4 | 1342 | |
aeec46b9 | 1343 | $x =~ s@/\*.*?\*/@@gos; # strip comments. |
4468e21e CN |
1344 | # strip #define macros inside enums |
1345 | $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos; | |
b6d676db | 1346 | |
d38c8cfb MCC |
1347 | if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) { |
1348 | $declaration_name = $2; | |
1349 | $members = $1; | |
1350 | } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) { | |
3c308798 | 1351 | $declaration_name = $1; |
d38c8cfb MCC |
1352 | $members = $2; |
1353 | } | |
1354 | ||
1355 | if ($declaration_name) { | |
5cb5c31c JB |
1356 | my %_members; |
1357 | ||
463a0fdc | 1358 | $members =~ s/\s+$//; |
1da177e4 LT |
1359 | |
1360 | foreach my $arg (split ',', $members) { | |
1361 | $arg =~ s/^\s*(\w+).*/$1/; | |
1362 | push @parameterlist, $arg; | |
1363 | if (!$parameterdescs{$arg}) { | |
3c308798 | 1364 | $parameterdescs{$arg} = $undescribed; |
85afe608 | 1365 | if (show_warnings("enum", $declaration_name)) { |
2defb272 MCC |
1366 | print STDERR "${file}:$.: warning: Enum value '$arg' not described in enum '$declaration_name'\n"; |
1367 | } | |
1da177e4 | 1368 | } |
5cb5c31c | 1369 | $_members{$arg} = 1; |
1da177e4 | 1370 | } |
3c3b809e | 1371 | |
5cb5c31c JB |
1372 | while (my ($k, $v) = each %parameterdescs) { |
1373 | if (!exists($_members{$k})) { | |
85afe608 | 1374 | if (show_warnings("enum", $declaration_name)) { |
2defb272 MCC |
1375 | print STDERR "${file}:$.: warning: Excess enum value '$k' description in '$declaration_name'\n"; |
1376 | } | |
5cb5c31c JB |
1377 | } |
1378 | } | |
1379 | ||
1da177e4 LT |
1380 | output_declaration($declaration_name, |
1381 | 'enum', | |
1382 | {'enum' => $declaration_name, | |
1383 | 'module' => $modulename, | |
1384 | 'parameterlist' => \@parameterlist, | |
1385 | 'parameterdescs' => \%parameterdescs, | |
1386 | 'sectionlist' => \@sectionlist, | |
1387 | 'sections' => \%sections, | |
1388 | 'purpose' => $declaration_purpose | |
1389 | }); | |
d38c8cfb | 1390 | } else { |
d40e1e65 | 1391 | print STDERR "${file}:$.: error: Cannot parse enum!\n"; |
1da177e4 LT |
1392 | ++$errors; |
1393 | } | |
1394 | } | |
1395 | ||
1396 | sub dump_typedef($$) { | |
1397 | my $x = shift; | |
1398 | my $file = shift; | |
1399 | ||
aeec46b9 | 1400 | $x =~ s@/\*.*?\*/@@gos; # strip comments. |
1da177e4 | 1401 | |
83766452 | 1402 | # Parse function prototypes |
d37c43ce MCC |
1403 | if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ || |
1404 | $x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) { | |
1405 | ||
83766452 MCC |
1406 | # Function typedefs |
1407 | $return_type = $1; | |
1408 | $declaration_name = $2; | |
1409 | my $args = $3; | |
1410 | ||
151c468b | 1411 | create_parameterlist($args, ',', $file, $declaration_name); |
1da177e4 LT |
1412 | |
1413 | output_declaration($declaration_name, | |
83766452 MCC |
1414 | 'function', |
1415 | {'function' => $declaration_name, | |
82801d06 | 1416 | 'typedef' => 1, |
1da177e4 | 1417 | 'module' => $modulename, |
83766452 MCC |
1418 | 'functiontype' => $return_type, |
1419 | 'parameterlist' => \@parameterlist, | |
1420 | 'parameterdescs' => \%parameterdescs, | |
1421 | 'parametertypes' => \%parametertypes, | |
1da177e4 LT |
1422 | 'sectionlist' => \@sectionlist, |
1423 | 'sections' => \%sections, | |
1424 | 'purpose' => $declaration_purpose | |
1425 | }); | |
83766452 MCC |
1426 | return; |
1427 | } | |
1428 | ||
1429 | while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) { | |
1430 | $x =~ s/\(*.\)\s*;$/;/; | |
1431 | $x =~ s/\[*.\]\s*;$/;/; | |
1da177e4 | 1432 | } |
83766452 MCC |
1433 | |
1434 | if ($x =~ /typedef.*\s+(\w+)\s*;/) { | |
3a80a766 MCC |
1435 | $declaration_name = $1; |
1436 | ||
1437 | output_declaration($declaration_name, | |
1438 | 'typedef', | |
1439 | {'typedef' => $declaration_name, | |
1440 | 'module' => $modulename, | |
1441 | 'sectionlist' => \@sectionlist, | |
1442 | 'sections' => \%sections, | |
1443 | 'purpose' => $declaration_purpose | |
1444 | }); | |
1445 | } | |
1da177e4 | 1446 | else { |
d40e1e65 | 1447 | print STDERR "${file}:$.: error: Cannot parse typedef!\n"; |
1da177e4 LT |
1448 | ++$errors; |
1449 | } | |
1450 | } | |
1451 | ||
a1d94aa5 RD |
1452 | sub save_struct_actual($) { |
1453 | my $actual = shift; | |
1454 | ||
1455 | # strip all spaces from the actual param so that it looks like one string item | |
1456 | $actual =~ s/\s*//g; | |
1457 | $struct_actual = $struct_actual . $actual . " "; | |
1458 | } | |
1459 | ||
151c468b | 1460 | sub create_parameterlist($$$$) { |
1da177e4 LT |
1461 | my $args = shift; |
1462 | my $splitter = shift; | |
1463 | my $file = shift; | |
151c468b | 1464 | my $declaration_name = shift; |
1da177e4 LT |
1465 | my $type; |
1466 | my $param; | |
1467 | ||
a6d3fe77 | 1468 | # temporarily replace commas inside function pointer definition |
1da177e4 | 1469 | while ($args =~ /(\([^\),]+),/) { |
3c308798 | 1470 | $args =~ s/(\([^\),]+),/$1#/g; |
1da177e4 | 1471 | } |
3c3b809e | 1472 | |
1da177e4 LT |
1473 | foreach my $arg (split($splitter, $args)) { |
1474 | # strip comments | |
1475 | $arg =~ s/\/\*.*\*\///; | |
3c308798 RD |
1476 | # strip leading/trailing spaces |
1477 | $arg =~ s/^\s*//; | |
1da177e4 LT |
1478 | $arg =~ s/\s*$//; |
1479 | $arg =~ s/\s+/ /; | |
1480 | ||
1481 | if ($arg =~ /^#/) { | |
1482 | # Treat preprocessor directive as a typeless variable just to fill | |
1483 | # corresponding data structures "correctly". Catch it later in | |
1484 | # output_* subs. | |
1485 | push_parameter($arg, "", $file); | |
00d62961 | 1486 | } elsif ($arg =~ m/\(.+\)\s*\(/) { |
1da177e4 LT |
1487 | # pointer-to-function |
1488 | $arg =~ tr/#/,/; | |
7c0d7e87 | 1489 | $arg =~ m/[^\(]+\(\*?\s*([\w\.]*)\s*\)/; |
1da177e4 LT |
1490 | $param = $1; |
1491 | $type = $arg; | |
00d62961 | 1492 | $type =~ s/([^\(]+\(\*?)\s*$param/$1/; |
a1d94aa5 | 1493 | save_struct_actual($param); |
151c468b | 1494 | push_parameter($param, $type, $file, $declaration_name); |
aeec46b9 | 1495 | } elsif ($arg) { |
1da177e4 LT |
1496 | $arg =~ s/\s*:\s*/:/g; |
1497 | $arg =~ s/\s*\[/\[/g; | |
1498 | ||
1499 | my @args = split('\s*,\s*', $arg); | |
1500 | if ($args[0] =~ m/\*/) { | |
1501 | $args[0] =~ s/(\*+)\s*/ $1/; | |
1502 | } | |
884f2810 BP |
1503 | |
1504 | my @first_arg; | |
1505 | if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) { | |
1506 | shift @args; | |
1507 | push(@first_arg, split('\s+', $1)); | |
1508 | push(@first_arg, $2); | |
1509 | } else { | |
1510 | @first_arg = split('\s+', shift @args); | |
1511 | } | |
1512 | ||
1da177e4 LT |
1513 | unshift(@args, pop @first_arg); |
1514 | $type = join " ", @first_arg; | |
1515 | ||
1516 | foreach $param (@args) { | |
1517 | if ($param =~ m/^(\*+)\s*(.*)/) { | |
a1d94aa5 | 1518 | save_struct_actual($2); |
151c468b | 1519 | push_parameter($2, "$type $1", $file, $declaration_name); |
1da177e4 LT |
1520 | } |
1521 | elsif ($param =~ m/(.*?):(\d+)/) { | |
7b97887e | 1522 | if ($type ne "") { # skip unnamed bit-fields |
a1d94aa5 | 1523 | save_struct_actual($1); |
151c468b | 1524 | push_parameter($1, "$type:$2", $file, $declaration_name) |
7b97887e | 1525 | } |
1da177e4 LT |
1526 | } |
1527 | else { | |
a1d94aa5 | 1528 | save_struct_actual($param); |
151c468b | 1529 | push_parameter($param, $type, $file, $declaration_name); |
1da177e4 LT |
1530 | } |
1531 | } | |
1532 | } | |
1533 | } | |
1534 | } | |
1535 | ||
151c468b | 1536 | sub push_parameter($$$$) { |
1da177e4 LT |
1537 | my $param = shift; |
1538 | my $type = shift; | |
1539 | my $file = shift; | |
151c468b | 1540 | my $declaration_name = shift; |
1da177e4 | 1541 | |
5f8c7c98 RD |
1542 | if (($anon_struct_union == 1) && ($type eq "") && |
1543 | ($param eq "}")) { | |
1544 | return; # ignore the ending }; from anon. struct/union | |
1545 | } | |
1546 | ||
1547 | $anon_struct_union = 0; | |
f9b5c530 | 1548 | $param =~ s/[\[\)].*//; |
1da177e4 | 1549 | |
a6d3fe77 | 1550 | if ($type eq "" && $param =~ /\.\.\.$/) |
1da177e4 | 1551 | { |
c950a173 SF |
1552 | if (!$param =~ /\w\.\.\.$/) { |
1553 | # handles unnamed variable parameters | |
1554 | $param = "..."; | |
1555 | } | |
43756e34 JN |
1556 | elsif ($param =~ /\w\.\.\.$/) { |
1557 | # for named variable parameters of the form `x...`, remove the dots | |
1558 | $param =~ s/\.\.\.$//; | |
1559 | } | |
ced69090 RD |
1560 | if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") { |
1561 | $parameterdescs{$param} = "variable arguments"; | |
1562 | } | |
1da177e4 LT |
1563 | } |
1564 | elsif ($type eq "" && ($param eq "" or $param eq "void")) | |
1565 | { | |
1da177e4 LT |
1566 | $param="void"; |
1567 | $parameterdescs{void} = "no arguments"; | |
1568 | } | |
134fe01b RD |
1569 | elsif ($type eq "" && ($param eq "struct" or $param eq "union")) |
1570 | # handle unnamed (anonymous) union or struct: | |
1571 | { | |
1572 | $type = $param; | |
5f8c7c98 | 1573 | $param = "{unnamed_" . $param . "}"; |
134fe01b | 1574 | $parameterdescs{$param} = "anonymous\n"; |
5f8c7c98 | 1575 | $anon_struct_union = 1; |
134fe01b RD |
1576 | } |
1577 | ||
a6d3fe77 | 1578 | # warn if parameter has no description |
134fe01b RD |
1579 | # (but ignore ones starting with # as these are not parameters |
1580 | # but inline preprocessor statements); | |
151c468b | 1581 | # Note: It will also ignore void params and unnamed structs/unions |
f9b5c530 | 1582 | if (!defined $parameterdescs{$param} && $param !~ /^#/) { |
151c468b | 1583 | $parameterdescs{$param} = $undescribed; |
a6d3fe77 | 1584 | |
be5cd20c | 1585 | if (show_warnings($type, $declaration_name) && $param !~ /\./) { |
2defb272 MCC |
1586 | print STDERR |
1587 | "${file}:$.: warning: Function parameter or member '$param' not described in '$declaration_name'\n"; | |
1588 | ++$warnings; | |
1589 | } | |
3c308798 | 1590 | } |
1da177e4 | 1591 | |
25985edc | 1592 | # strip spaces from $param so that it is one continuous string |
e34e7dbb RD |
1593 | # on @parameterlist; |
1594 | # this fixes a problem where check_sections() cannot find | |
1595 | # a parameter like "addr[6 + 2]" because it actually appears | |
1596 | # as "addr[6", "+", "2]" on the parameter list; | |
1597 | # but it's better to maintain the param string unchanged for output, | |
1598 | # so just weaken the string compare in check_sections() to ignore | |
1599 | # "[blah" in a parameter string; | |
1600 | ###$param =~ s/\s*//g; | |
1da177e4 | 1601 | push @parameterlist, $param; |
02a4f4fe | 1602 | $type =~ s/\s\s+/ /g; |
1da177e4 LT |
1603 | $parametertypes{$param} = $type; |
1604 | } | |
1605 | ||
1081de2d MCC |
1606 | sub check_sections($$$$$) { |
1607 | my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_; | |
a1d94aa5 RD |
1608 | my @sects = split ' ', $sectcheck; |
1609 | my @prms = split ' ', $prmscheck; | |
1610 | my $err; | |
1611 | my ($px, $sx); | |
1612 | my $prm_clean; # strip trailing "[array size]" and/or beginning "*" | |
1613 | ||
1614 | foreach $sx (0 .. $#sects) { | |
1615 | $err = 1; | |
1616 | foreach $px (0 .. $#prms) { | |
1617 | $prm_clean = $prms[$px]; | |
1618 | $prm_clean =~ s/\[.*\]//; | |
1f3a6688 | 1619 | $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i; |
e34e7dbb RD |
1620 | # ignore array size in a parameter string; |
1621 | # however, the original param string may contain | |
1622 | # spaces, e.g.: addr[6 + 2] | |
1623 | # and this appears in @prms as "addr[6" since the | |
1624 | # parameter list is split at spaces; | |
1625 | # hence just ignore "[..." for the sections check; | |
1626 | $prm_clean =~ s/\[.*//; | |
1627 | ||
a1d94aa5 RD |
1628 | ##$prm_clean =~ s/^\**//; |
1629 | if ($prm_clean eq $sects[$sx]) { | |
1630 | $err = 0; | |
1631 | last; | |
1632 | } | |
1633 | } | |
1634 | if ($err) { | |
1635 | if ($decl_type eq "function") { | |
d40e1e65 | 1636 | print STDERR "${file}:$.: warning: " . |
a1d94aa5 RD |
1637 | "Excess function parameter " . |
1638 | "'$sects[$sx]' " . | |
1639 | "description in '$decl_name'\n"; | |
1640 | ++$warnings; | |
a1d94aa5 RD |
1641 | } |
1642 | } | |
1643 | } | |
1644 | } | |
1645 | ||
4092bac7 YB |
1646 | ## |
1647 | # Checks the section describing the return value of a function. | |
1648 | sub check_return_section { | |
1649 | my $file = shift; | |
1650 | my $declaration_name = shift; | |
1651 | my $return_type = shift; | |
1652 | ||
1653 | # Ignore an empty return type (It's a macro) | |
1654 | # Ignore functions with a "void" return type. (But don't ignore "void *") | |
1655 | if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) { | |
1656 | return; | |
1657 | } | |
1658 | ||
1659 | if (!defined($sections{$section_return}) || | |
1660 | $sections{$section_return} eq "") { | |
d40e1e65 | 1661 | print STDERR "${file}:$.: warning: " . |
4092bac7 YB |
1662 | "No description found for return value of " . |
1663 | "'$declaration_name'\n"; | |
1664 | ++$warnings; | |
1665 | } | |
1666 | } | |
1667 | ||
1da177e4 LT |
1668 | ## |
1669 | # takes a function prototype and the name of the current file being | |
1670 | # processed and spits out all the details stored in the global | |
1671 | # arrays/hashes. | |
1672 | sub dump_function($$) { | |
1673 | my $prototype = shift; | |
1674 | my $file = shift; | |
cbb4d3e6 | 1675 | my $noret = 0; |
1da177e4 | 1676 | |
5eb6b4b3 MCC |
1677 | print_lineno($.); |
1678 | ||
1da177e4 LT |
1679 | $prototype =~ s/^static +//; |
1680 | $prototype =~ s/^extern +//; | |
4dc3b16b | 1681 | $prototype =~ s/^asmlinkage +//; |
1da177e4 LT |
1682 | $prototype =~ s/^inline +//; |
1683 | $prototype =~ s/^__inline__ +//; | |
32e79401 RD |
1684 | $prototype =~ s/^__inline +//; |
1685 | $prototype =~ s/^__always_inline +//; | |
1686 | $prototype =~ s/^noinline +//; | |
74fc5c65 | 1687 | $prototype =~ s/__init +//; |
20072205 | 1688 | $prototype =~ s/__init_or_module +//; |
270a0096 | 1689 | $prototype =~ s/__meminit +//; |
70c95b00 | 1690 | $prototype =~ s/__must_check +//; |
0df7c0e3 | 1691 | $prototype =~ s/__weak +//; |
0891f959 | 1692 | $prototype =~ s/__sched +//; |
95e760cb | 1693 | $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//; |
cbb4d3e6 | 1694 | my $define = $prototype =~ s/^#\s*define\s+//; #ak added |
b1aaa546 PB |
1695 | $prototype =~ s/__attribute__\s*\(\( |
1696 | (?: | |
1697 | [\w\s]++ # attribute name | |
1698 | (?:\([^)]*+\))? # attribute arguments | |
1699 | \s*+,? # optional comma at the end | |
1700 | )+ | |
1701 | \)\)\s+//x; | |
1da177e4 LT |
1702 | |
1703 | # Yes, this truly is vile. We are looking for: | |
1704 | # 1. Return type (may be nothing if we're looking at a macro) | |
1705 | # 2. Function name | |
1706 | # 3. Function parameters. | |
1707 | # | |
1708 | # All the while we have to watch out for function pointer parameters | |
1709 | # (which IIRC is what the two sections are for), C types (these | |
1710 | # regexps don't even start to express all the possibilities), and | |
1711 | # so on. | |
1712 | # | |
1713 | # If you mess with these regexps, it's a good idea to check that | |
1714 | # the following functions' documentation still comes out right: | |
1715 | # - parport_register_device (function pointer parameters) | |
1716 | # - atomic_set (macro) | |
9598f91f | 1717 | # - pci_match_device, __copy_to_user (long return type) |
1da177e4 | 1718 | |
cbb4d3e6 HG |
1719 | if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) { |
1720 | # This is an object-like macro, it has no return type and no parameter | |
1721 | # list. | |
1722 | # Function-like macros are not allowed to have spaces between | |
1723 | # declaration_name and opening parenthesis (notice the \s+). | |
1724 | $return_type = $1; | |
1725 | $declaration_name = $2; | |
1726 | $noret = 1; | |
1727 | } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || | |
1da177e4 | 1728 | $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
5a0bc578 | 1729 | $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
1da177e4 | 1730 | $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
94b3e03c | 1731 | $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
1da177e4 | 1732 | $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
5a0bc578 | 1733 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
1da177e4 LT |
1734 | $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
1735 | $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || | |
5a0bc578 | 1736 | $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
1da177e4 | 1737 | $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
5a0bc578 | 1738 | $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
1da177e4 | 1739 | $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
5a0bc578 | 1740 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
9598f91f | 1741 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
5a0bc578 MW |
1742 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
1743 | $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) { | |
1da177e4 LT |
1744 | $return_type = $1; |
1745 | $declaration_name = $2; | |
1746 | my $args = $3; | |
1747 | ||
151c468b | 1748 | create_parameterlist($args, ',', $file, $declaration_name); |
1da177e4 | 1749 | } else { |
d40e1e65 | 1750 | print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n"; |
1da177e4 LT |
1751 | return; |
1752 | } | |
1753 | ||
a1d94aa5 | 1754 | my $prms = join " ", @parameterlist; |
1081de2d | 1755 | check_sections($file, $declaration_name, "function", $sectcheck, $prms); |
a1d94aa5 | 1756 | |
4092bac7 YB |
1757 | # This check emits a lot of warnings at the moment, because many |
1758 | # functions don't have a 'Return' doc section. So until the number | |
1759 | # of warnings goes sufficiently down, the check is only performed in | |
1760 | # verbose mode. | |
1761 | # TODO: always perform the check. | |
cbb4d3e6 | 1762 | if ($verbose && !$noret) { |
4092bac7 YB |
1763 | check_return_section($file, $declaration_name, $return_type); |
1764 | } | |
1765 | ||
3c3b809e | 1766 | output_declaration($declaration_name, |
1da177e4 LT |
1767 | 'function', |
1768 | {'function' => $declaration_name, | |
1769 | 'module' => $modulename, | |
1770 | 'functiontype' => $return_type, | |
1771 | 'parameterlist' => \@parameterlist, | |
1772 | 'parameterdescs' => \%parameterdescs, | |
1773 | 'parametertypes' => \%parametertypes, | |
1774 | 'sectionlist' => \@sectionlist, | |
1775 | 'sections' => \%sections, | |
1776 | 'purpose' => $declaration_purpose | |
1777 | }); | |
1778 | } | |
1779 | ||
1da177e4 LT |
1780 | sub reset_state { |
1781 | $function = ""; | |
1da177e4 LT |
1782 | %parameterdescs = (); |
1783 | %parametertypes = (); | |
1784 | @parameterlist = (); | |
1785 | %sections = (); | |
1786 | @sectionlist = (); | |
a1d94aa5 RD |
1787 | $sectcheck = ""; |
1788 | $struct_actual = ""; | |
1da177e4 | 1789 | $prototype = ""; |
3c3b809e | 1790 | |
48af606a JN |
1791 | $state = STATE_NORMAL; |
1792 | $inline_doc_state = STATE_INLINE_NA; | |
1da177e4 LT |
1793 | } |
1794 | ||
56afb0f8 JB |
1795 | sub tracepoint_munge($) { |
1796 | my $file = shift; | |
1797 | my $tracepointname = 0; | |
1798 | my $tracepointargs = 0; | |
1799 | ||
3a9089fd | 1800 | if ($prototype =~ m/TRACE_EVENT\((.*?),/) { |
56afb0f8 JB |
1801 | $tracepointname = $1; |
1802 | } | |
3a9089fd JB |
1803 | if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) { |
1804 | $tracepointname = $1; | |
1805 | } | |
1806 | if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) { | |
1807 | $tracepointname = $2; | |
1808 | } | |
1809 | $tracepointname =~ s/^\s+//; #strip leading whitespace | |
1810 | if ($prototype =~ m/TP_PROTO\((.*?)\)/) { | |
56afb0f8 JB |
1811 | $tracepointargs = $1; |
1812 | } | |
1813 | if (($tracepointname eq 0) || ($tracepointargs eq 0)) { | |
d40e1e65 | 1814 | print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n". |
56afb0f8 JB |
1815 | "$prototype\n"; |
1816 | } else { | |
1817 | $prototype = "static inline void trace_$tracepointname($tracepointargs)"; | |
1818 | } | |
1819 | } | |
1820 | ||
b4870bc5 RD |
1821 | sub syscall_munge() { |
1822 | my $void = 0; | |
1823 | ||
7c9aa015 | 1824 | $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's |
b4870bc5 RD |
1825 | ## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) { |
1826 | if ($prototype =~ m/SYSCALL_DEFINE0/) { | |
1827 | $void = 1; | |
1828 | ## $prototype = "long sys_$1(void)"; | |
1829 | } | |
1830 | ||
1831 | $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name | |
1832 | if ($prototype =~ m/long (sys_.*?),/) { | |
1833 | $prototype =~ s/,/\(/; | |
1834 | } elsif ($void) { | |
1835 | $prototype =~ s/\)/\(void\)/; | |
1836 | } | |
1837 | ||
1838 | # now delete all of the odd-number commas in $prototype | |
1839 | # so that arg types & arg names don't have a comma between them | |
1840 | my $count = 0; | |
1841 | my $len = length($prototype); | |
1842 | if ($void) { | |
1843 | $len = 0; # skip the for-loop | |
1844 | } | |
1845 | for (my $ix = 0; $ix < $len; $ix++) { | |
1846 | if (substr($prototype, $ix, 1) eq ',') { | |
1847 | $count++; | |
1848 | if ($count % 2 == 1) { | |
1849 | substr($prototype, $ix, 1) = ' '; | |
1850 | } | |
1851 | } | |
1852 | } | |
1853 | } | |
1854 | ||
b7afa92b | 1855 | sub process_proto_function($$) { |
1da177e4 LT |
1856 | my $x = shift; |
1857 | my $file = shift; | |
1858 | ||
51f5a0c8 RD |
1859 | $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line |
1860 | ||
890c78c2 | 1861 | if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) { |
1da177e4 LT |
1862 | # do nothing |
1863 | } | |
1864 | elsif ($x =~ /([^\{]*)/) { | |
3c308798 | 1865 | $prototype .= $1; |
1da177e4 | 1866 | } |
b4870bc5 | 1867 | |
890c78c2 | 1868 | if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) { |
3c308798 | 1869 | $prototype =~ s@/\*.*?\*/@@gos; # strip comments. |
1da177e4 LT |
1870 | $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's. |
1871 | $prototype =~ s@^\s+@@gos; # strip leading spaces | |
7ae281b0 MCC |
1872 | |
1873 | # Handle prototypes for function pointers like: | |
1874 | # int (*pcs_config)(struct foo) | |
1875 | $prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos; | |
1876 | ||
b4870bc5 RD |
1877 | if ($prototype =~ /SYSCALL_DEFINE/) { |
1878 | syscall_munge(); | |
1879 | } | |
3a9089fd JB |
1880 | if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ || |
1881 | $prototype =~ /DEFINE_SINGLE_EVENT/) | |
1882 | { | |
56afb0f8 JB |
1883 | tracepoint_munge($file); |
1884 | } | |
b4870bc5 | 1885 | dump_function($prototype, $file); |
1da177e4 LT |
1886 | reset_state(); |
1887 | } | |
1888 | } | |
1889 | ||
b7afa92b | 1890 | sub process_proto_type($$) { |
1da177e4 LT |
1891 | my $x = shift; |
1892 | my $file = shift; | |
1893 | ||
1da177e4 LT |
1894 | $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's. |
1895 | $x =~ s@^\s+@@gos; # strip leading spaces | |
1896 | $x =~ s@\s+$@@gos; # strip trailing spaces | |
51f5a0c8 RD |
1897 | $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line |
1898 | ||
1da177e4 LT |
1899 | if ($x =~ /^#/) { |
1900 | # To distinguish preprocessor directive from regular declaration later. | |
1901 | $x .= ";"; | |
1902 | } | |
1903 | ||
1904 | while (1) { | |
673bb2df | 1905 | if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) { |
463a0fdc MH |
1906 | if( length $prototype ) { |
1907 | $prototype .= " " | |
1908 | } | |
1da177e4 LT |
1909 | $prototype .= $1 . $2; |
1910 | ($2 eq '{') && $brcount++; | |
1911 | ($2 eq '}') && $brcount--; | |
1912 | if (($2 eq ';') && ($brcount == 0)) { | |
b9d97328 | 1913 | dump_declaration($prototype, $file); |
1da177e4 | 1914 | reset_state(); |
3c308798 | 1915 | last; |
1da177e4 LT |
1916 | } |
1917 | $x = $3; | |
3c308798 | 1918 | } else { |
1da177e4 LT |
1919 | $prototype .= $x; |
1920 | last; | |
1921 | } | |
1922 | } | |
1923 | } | |
1924 | ||
6b5b55f6 | 1925 | |
1ad560e4 | 1926 | sub map_filename($) { |
2283a117 | 1927 | my $file; |
68f86662 | 1928 | my ($orig_file) = @_; |
1da177e4 | 1929 | |
2283a117 | 1930 | if (defined($ENV{'SRCTREE'})) { |
68f86662 | 1931 | $file = "$ENV{'SRCTREE'}" . "/" . $orig_file; |
1ad560e4 | 1932 | } else { |
68f86662 | 1933 | $file = $orig_file; |
2283a117 | 1934 | } |
1ad560e4 | 1935 | |
1da177e4 LT |
1936 | if (defined($source_map{$file})) { |
1937 | $file = $source_map{$file}; | |
1938 | } | |
1939 | ||
1ad560e4 JN |
1940 | return $file; |
1941 | } | |
1942 | ||
88c2b57d JN |
1943 | sub process_export_file($) { |
1944 | my ($orig_file) = @_; | |
1945 | my $file = map_filename($orig_file); | |
1946 | ||
1947 | if (!open(IN,"<$file")) { | |
1948 | print STDERR "Error: Cannot open file $file\n"; | |
1949 | ++$errors; | |
1950 | return; | |
1951 | } | |
1952 | ||
1953 | while (<IN>) { | |
1954 | if (/$export_symbol/) { | |
1955 | $function_table{$2} = 1; | |
1956 | } | |
1957 | } | |
1958 | ||
1959 | close(IN); | |
1960 | } | |
1961 | ||
07048d13 JC |
1962 | # |
1963 | # Parsers for the various processing states. | |
1964 | # | |
1965 | # STATE_NORMAL: looking for the /** to begin everything. | |
1966 | # | |
1967 | sub process_normal() { | |
1968 | if (/$doc_start/o) { | |
1969 | $state = STATE_NAME; # next line is always the function name | |
1970 | $in_doc_sect = 0; | |
1971 | $declaration_start_line = $. + 1; | |
1972 | } | |
1973 | } | |
1974 | ||
3cac2bc4 JC |
1975 | # |
1976 | # STATE_NAME: Looking for the "name - description" line | |
1977 | # | |
1978 | sub process_name($$) { | |
1979 | my $file = shift; | |
1ad560e4 | 1980 | my $identifier; |
1ad560e4 | 1981 | my $descr; |
3cac2bc4 JC |
1982 | |
1983 | if (/$doc_block/o) { | |
1984 | $state = STATE_DOCBLOCK; | |
1985 | $contents = ""; | |
1986 | $new_start_line = $. + 1; | |
1987 | ||
1988 | if ( $1 eq "" ) { | |
1989 | $section = $section_intro; | |
1990 | } else { | |
1991 | $section = $1; | |
1992 | } | |
1993 | } | |
1994 | elsif (/$doc_decl/o) { | |
1995 | $identifier = $1; | |
fcdf1df2 | 1996 | if (/\s*([\w\s]+?)(\(\))?\s*-/) { |
3cac2bc4 JC |
1997 | $identifier = $1; |
1998 | } | |
07048d13 | 1999 | |
3cac2bc4 JC |
2000 | $state = STATE_BODY; |
2001 | # if there's no @param blocks need to set up default section | |
2002 | # here | |
2003 | $contents = ""; | |
2004 | $section = $section_default; | |
2005 | $new_start_line = $. + 1; | |
2006 | if (/-(.*)/) { | |
2007 | # strip leading/trailing/multiple spaces | |
2008 | $descr= $1; | |
2009 | $descr =~ s/^\s*//; | |
2010 | $descr =~ s/\s*$//; | |
2011 | $descr =~ s/\s+/ /g; | |
2012 | $declaration_purpose = $descr; | |
2013 | $state = STATE_BODY_MAYBE; | |
2014 | } else { | |
2015 | $declaration_purpose = ""; | |
2016 | } | |
2017 | ||
2018 | if (($declaration_purpose eq "") && $verbose) { | |
2019 | print STDERR "${file}:$.: warning: missing initial short description on line:\n"; | |
2020 | print STDERR $_; | |
2021 | ++$warnings; | |
2022 | } | |
2023 | ||
cf419d54 | 2024 | if ($identifier =~ m/^struct\b/) { |
3cac2bc4 | 2025 | $decl_type = 'struct'; |
cf419d54 | 2026 | } elsif ($identifier =~ m/^union\b/) { |
3cac2bc4 | 2027 | $decl_type = 'union'; |
cf419d54 | 2028 | } elsif ($identifier =~ m/^enum\b/) { |
3cac2bc4 | 2029 | $decl_type = 'enum'; |
cf419d54 | 2030 | } elsif ($identifier =~ m/^typedef\b/) { |
3cac2bc4 JC |
2031 | $decl_type = 'typedef'; |
2032 | } else { | |
2033 | $decl_type = 'function'; | |
2034 | } | |
2035 | ||
2036 | if ($verbose) { | |
2037 | print STDERR "${file}:$.: info: Scanning doc for $identifier\n"; | |
2038 | } | |
2039 | } else { | |
2040 | print STDERR "${file}:$.: warning: Cannot understand $_ on line $.", | |
2041 | " - I thought it was a doc line\n"; | |
2042 | ++$warnings; | |
2043 | $state = STATE_NORMAL; | |
2044 | } | |
2045 | } | |
07048d13 | 2046 | |
d742f24d JC |
2047 | |
2048 | # | |
2049 | # STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment. | |
2050 | # | |
2051 | sub process_body($$) { | |
2052 | my $file = shift; | |
2053 | ||
43756e34 JN |
2054 | # Until all named variable macro parameters are |
2055 | # documented using the bare name (`x`) rather than with | |
2056 | # dots (`x...`), strip the dots: | |
2057 | if ($section =~ /\w\.\.\.$/) { | |
2058 | $section =~ s/\.\.\.$//; | |
2059 | ||
2060 | if ($verbose) { | |
2061 | print STDERR "${file}:$.: warning: Variable macro arguments should be documented without dots\n"; | |
2062 | ++$warnings; | |
2063 | } | |
2064 | } | |
2065 | ||
0d55d48b MCC |
2066 | if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) { |
2067 | dump_section($file, $section, $contents); | |
2068 | $section = $section_default; | |
2069 | $contents = ""; | |
2070 | } | |
2071 | ||
d742f24d JC |
2072 | if (/$doc_sect/i) { # case insensitive for supported section names |
2073 | $newsection = $1; | |
2074 | $newcontents = $2; | |
2075 | ||
2076 | # map the supported section names to the canonical names | |
2077 | if ($newsection =~ m/^description$/i) { | |
2078 | $newsection = $section_default; | |
2079 | } elsif ($newsection =~ m/^context$/i) { | |
2080 | $newsection = $section_context; | |
2081 | } elsif ($newsection =~ m/^returns?$/i) { | |
2082 | $newsection = $section_return; | |
2083 | } elsif ($newsection =~ m/^\@return$/) { | |
2084 | # special: @return is a section, not a param description | |
2085 | $newsection = $section_return; | |
2086 | } | |
2087 | ||
2088 | if (($contents ne "") && ($contents ne "\n")) { | |
2089 | if (!$in_doc_sect && $verbose) { | |
2090 | print STDERR "${file}:$.: warning: contents before sections\n"; | |
2091 | ++$warnings; | |
2092 | } | |
2093 | dump_section($file, $section, $contents); | |
2094 | $section = $section_default; | |
2095 | } | |
2096 | ||
2097 | $in_doc_sect = 1; | |
2098 | $state = STATE_BODY; | |
2099 | $contents = $newcontents; | |
2100 | $new_start_line = $.; | |
2101 | while (substr($contents, 0, 1) eq " ") { | |
2102 | $contents = substr($contents, 1); | |
2103 | } | |
2104 | if ($contents ne "") { | |
2105 | $contents .= "\n"; | |
2106 | } | |
2107 | $section = $newsection; | |
2108 | $leading_space = undef; | |
2109 | } elsif (/$doc_end/) { | |
2110 | if (($contents ne "") && ($contents ne "\n")) { | |
2111 | dump_section($file, $section, $contents); | |
2112 | $section = $section_default; | |
2113 | $contents = ""; | |
2114 | } | |
2115 | # look for doc_com + <text> + doc_end: | |
2116 | if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') { | |
2117 | print STDERR "${file}:$.: warning: suspicious ending line: $_"; | |
2118 | ++$warnings; | |
2119 | } | |
2120 | ||
2121 | $prototype = ""; | |
2122 | $state = STATE_PROTO; | |
2123 | $brcount = 0; | |
2124 | } elsif (/$doc_content/) { | |
d742f24d | 2125 | if ($1 eq "") { |
0d55d48b | 2126 | if ($section eq $section_context) { |
d742f24d JC |
2127 | dump_section($file, $section, $contents); |
2128 | $section = $section_default; | |
2129 | $contents = ""; | |
2130 | $new_start_line = $.; | |
0d55d48b | 2131 | $state = STATE_BODY; |
d742f24d | 2132 | } else { |
0d55d48b MCC |
2133 | if ($section ne $section_default) { |
2134 | $state = STATE_BODY_WITH_BLANK_LINE; | |
2135 | } else { | |
2136 | $state = STATE_BODY; | |
2137 | } | |
d742f24d JC |
2138 | $contents .= "\n"; |
2139 | } | |
d742f24d JC |
2140 | } elsif ($state == STATE_BODY_MAYBE) { |
2141 | # Continued declaration purpose | |
2142 | chomp($declaration_purpose); | |
2143 | $declaration_purpose .= " " . $1; | |
2144 | $declaration_purpose =~ s/\s+/ /g; | |
2145 | } else { | |
2146 | my $cont = $1; | |
2147 | if ($section =~ m/^@/ || $section eq $section_context) { | |
2148 | if (!defined $leading_space) { | |
2149 | if ($cont =~ m/^(\s+)/) { | |
2150 | $leading_space = $1; | |
2151 | } else { | |
2152 | $leading_space = ""; | |
2153 | } | |
2154 | } | |
2155 | $cont =~ s/^$leading_space//; | |
2156 | } | |
2157 | $contents .= $cont . "\n"; | |
2158 | } | |
2159 | } else { | |
2160 | # i dont know - bad line? ignore. | |
2161 | print STDERR "${file}:$.: warning: bad line: $_"; | |
2162 | ++$warnings; | |
2163 | } | |
2164 | } | |
2165 | ||
2166 | ||
cc794812 JC |
2167 | # |
2168 | # STATE_PROTO: reading a function/whatever prototype. | |
2169 | # | |
2170 | sub process_proto($$) { | |
2171 | my $file = shift; | |
2172 | ||
2173 | if (/$doc_inline_oneline/) { | |
2174 | $section = $1; | |
2175 | $contents = $2; | |
2176 | if ($contents ne "") { | |
2177 | $contents .= "\n"; | |
2178 | dump_section($file, $section, $contents); | |
2179 | $section = $section_default; | |
2180 | $contents = ""; | |
2181 | } | |
2182 | } elsif (/$doc_inline_start/) { | |
2183 | $state = STATE_INLINE; | |
2184 | $inline_doc_state = STATE_INLINE_NAME; | |
2185 | } elsif ($decl_type eq 'function') { | |
2186 | process_proto_function($_, $file); | |
2187 | } else { | |
2188 | process_proto_type($_, $file); | |
2189 | } | |
2190 | } | |
2191 | ||
c17add56 JC |
2192 | # |
2193 | # STATE_DOCBLOCK: within a DOC: block. | |
2194 | # | |
2195 | sub process_docblock($$) { | |
2196 | my $file = shift; | |
2197 | ||
2198 | if (/$doc_end/) { | |
2199 | dump_doc_section($file, $section, $contents); | |
2200 | $section = $section_default; | |
2201 | $contents = ""; | |
2202 | $function = ""; | |
2203 | %parameterdescs = (); | |
2204 | %parametertypes = (); | |
2205 | @parameterlist = (); | |
2206 | %sections = (); | |
2207 | @sectionlist = (); | |
2208 | $prototype = ""; | |
2209 | $state = STATE_NORMAL; | |
2210 | } elsif (/$doc_content/) { | |
2211 | if ( $1 eq "" ) { | |
2212 | $contents .= $blankline; | |
2213 | } else { | |
2214 | $contents .= $1 . "\n"; | |
2215 | } | |
2216 | } | |
2217 | } | |
2218 | ||
2219 | # | |
2220 | # STATE_INLINE: docbook comments within a prototype. | |
2221 | # | |
2222 | sub process_inline($$) { | |
2223 | my $file = shift; | |
2224 | ||
2225 | # First line (state 1) needs to be a @parameter | |
2226 | if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) { | |
2227 | $section = $1; | |
2228 | $contents = $2; | |
2229 | $new_start_line = $.; | |
2230 | if ($contents ne "") { | |
2231 | while (substr($contents, 0, 1) eq " ") { | |
2232 | $contents = substr($contents, 1); | |
2233 | } | |
2234 | $contents .= "\n"; | |
2235 | } | |
2236 | $inline_doc_state = STATE_INLINE_TEXT; | |
2237 | # Documentation block end */ | |
2238 | } elsif (/$doc_inline_end/) { | |
2239 | if (($contents ne "") && ($contents ne "\n")) { | |
2240 | dump_section($file, $section, $contents); | |
2241 | $section = $section_default; | |
2242 | $contents = ""; | |
2243 | } | |
2244 | $state = STATE_PROTO; | |
2245 | $inline_doc_state = STATE_INLINE_NA; | |
2246 | # Regular text | |
2247 | } elsif (/$doc_content/) { | |
2248 | if ($inline_doc_state == STATE_INLINE_TEXT) { | |
2249 | $contents .= $1 . "\n"; | |
2250 | # nuke leading blank lines | |
2251 | if ($contents =~ /^\s*$/) { | |
2252 | $contents = ""; | |
2253 | } | |
2254 | } elsif ($inline_doc_state == STATE_INLINE_NAME) { | |
2255 | $inline_doc_state = STATE_INLINE_ERROR; | |
2256 | print STDERR "${file}:$.: warning: "; | |
2257 | print STDERR "Incorrect use of kernel-doc format: $_"; | |
2258 | ++$warnings; | |
2259 | } | |
2260 | } | |
2261 | } | |
2262 | ||
cc794812 | 2263 | |
1ad560e4 JN |
2264 | sub process_file($) { |
2265 | my $file; | |
1ad560e4 JN |
2266 | my $initial_section_counter = $section_counter; |
2267 | my ($orig_file) = @_; | |
1ad560e4 JN |
2268 | |
2269 | $file = map_filename($orig_file); | |
2270 | ||
1da177e4 LT |
2271 | if (!open(IN,"<$file")) { |
2272 | print STDERR "Error: Cannot open file $file\n"; | |
2273 | ++$errors; | |
2274 | return; | |
2275 | } | |
2276 | ||
a9e7314b ID |
2277 | $. = 1; |
2278 | ||
1da177e4 LT |
2279 | $section_counter = 0; |
2280 | while (<IN>) { | |
65478428 DS |
2281 | while (s/\\\s*$//) { |
2282 | $_ .= <IN>; | |
2283 | } | |
7c9aa015 MCC |
2284 | # Replace tabs by spaces |
2285 | while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}; | |
c17add56 | 2286 | # Hand this line to the appropriate state handler |
48af606a | 2287 | if ($state == STATE_NORMAL) { |
07048d13 | 2288 | process_normal(); |
3cac2bc4 JC |
2289 | } elsif ($state == STATE_NAME) { |
2290 | process_name($file, $_); | |
0d55d48b MCC |
2291 | } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE || |
2292 | $state == STATE_BODY_WITH_BLANK_LINE) { | |
d742f24d | 2293 | process_body($file, $_); |
48af606a | 2294 | } elsif ($state == STATE_INLINE) { # scanning for inline parameters |
c17add56 | 2295 | process_inline($file, $_); |
cc794812 JC |
2296 | } elsif ($state == STATE_PROTO) { |
2297 | process_proto($file, $_); | |
48af606a | 2298 | } elsif ($state == STATE_DOCBLOCK) { |
c17add56 | 2299 | process_docblock($file, $_); |
3c308798 | 2300 | } |
1da177e4 | 2301 | } |
c17add56 JC |
2302 | |
2303 | # Make sure we got something interesting. | |
b0d60bfb JC |
2304 | if ($initial_section_counter == $section_counter && $ |
2305 | output_mode ne "none") { | |
2306 | if ($output_selection == OUTPUT_INCLUDE) { | |
2307 | print STDERR "${file}:1: warning: '$_' not found\n" | |
2308 | for keys %function_table; | |
3a025e1d | 2309 | } |
b0d60bfb JC |
2310 | else { |
2311 | print STDERR "${file}:1: warning: no structured comments found\n"; | |
e946c43a | 2312 | } |
1da177e4 LT |
2313 | } |
2314 | } | |
8484baaa RD |
2315 | |
2316 | ||
efa44475 | 2317 | $sphinx_major = get_sphinx_version(); |
8484baaa RD |
2318 | $kernelversion = get_kernel_version(); |
2319 | ||
2320 | # generate a sequence of code that will splice in highlighting information | |
2321 | # using the s// operator. | |
1ef06233 | 2322 | for (my $k = 0; $k < @highlights; $k++) { |
4d732701 DCLP |
2323 | my $pattern = $highlights[$k][0]; |
2324 | my $result = $highlights[$k][1]; | |
2325 | # print STDERR "scanning pattern:$pattern, highlight:($result)\n"; | |
2326 | $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n"; | |
8484baaa RD |
2327 | } |
2328 | ||
2329 | # Read the file that maps relative names to absolute names for | |
2330 | # separate source and object directories and for shadow trees. | |
2331 | if (open(SOURCE_MAP, "<.tmp_filelist.txt")) { | |
2332 | my ($relname, $absname); | |
2333 | while(<SOURCE_MAP>) { | |
2334 | chop(); | |
2335 | ($relname, $absname) = (split())[0..1]; | |
2336 | $relname =~ s:^/+::; | |
2337 | $source_map{$relname} = $absname; | |
2338 | } | |
2339 | close(SOURCE_MAP); | |
2340 | } | |
2341 | ||
88c2b57d JN |
2342 | if ($output_selection == OUTPUT_EXPORTED || |
2343 | $output_selection == OUTPUT_INTERNAL) { | |
c9b2cfb3 JN |
2344 | |
2345 | push(@export_file_list, @ARGV); | |
2346 | ||
88c2b57d JN |
2347 | foreach (@export_file_list) { |
2348 | chomp; | |
2349 | process_export_file($_); | |
2350 | } | |
2351 | } | |
2352 | ||
8484baaa RD |
2353 | foreach (@ARGV) { |
2354 | chomp; | |
2355 | process_file($_); | |
2356 | } | |
2357 | if ($verbose && $errors) { | |
2358 | print STDERR "$errors errors\n"; | |
2359 | } | |
2360 | if ($verbose && $warnings) { | |
2361 | print STDERR "$warnings warnings\n"; | |
2362 | } | |
2363 | ||
2c12c810 PLB |
2364 | if ($Werror && $warnings) { |
2365 | print STDERR "$warnings warnings as Errors\n"; | |
2366 | exit($warnings); | |
2367 | } else { | |
2368 | exit($output_mode eq "none" ? 0 : $errors) | |
2369 | } |