2 # SPDX-License-Identifier: GPL-2.0
7 ## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
8 ## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
9 ## Copyright (C) 2001 Simon Huggins ##
10 ## Copyright (C) 2005-2012 Randy Dunlap ##
11 ## Copyright (C) 2012 Dan Luedtke ##
13 ## #define enhancements by Armin Kuster <akuster@mvista.com> ##
14 ## Copyright (c) 2000 MontaVista Software, Inc. ##
16 # Copyright (C) 2022 Tomasz Warniełło (POD)
18 use Pod::Usage qw/pod2usage/;
22 kernel-doc - Print formatted kernel documentation to stdout
26 kernel-doc [-h] [-v] [-Werror] [-Wall] [-Wreturn] [-Wshort-description] [-Wcontents-before-sections]
28 -rst [-sphinx-version VERSION] [-enable-lineno] |
34 [-function NAME] ... |
38 [-export-file FILE] ...
41 Run `kernel-doc -h` for details.
45 Read C language source or header FILEs, extract embedded documentation comments,
46 and print formatted documentation to standard output.
48 The documentation comments are identified by the "/**" opening comment mark.
50 See Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
54 # more perldoc at the end of the file
60 my $anon_struct_union = 0;
62 # match expressions used to find embedded type information
63 my $type_constant = '\b``([^\`]+)``\b';
64 my $type_constant2 = '\%([-_\w]+)';
65 my $type_func = '(\w+)\(\)';
66 my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
67 my $type_param_ref = '([\!~]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
68 my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
69 my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params
70 my $type_env = '(\$\w+)';
71 my $type_enum = '\&(enum\s*([_\w]+))';
72 my $type_struct = '\&(struct\s*([_\w]+))';
73 my $type_typedef = '\&(typedef\s*([_\w]+))';
74 my $type_union = '\&(union\s*([_\w]+))';
75 my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
76 my $type_fallback = '\&([_\w]+)';
77 my $type_member_func = $type_member . '\(\)';
79 # Output conversion substitutions.
80 # One for each output format
82 # these are pretty rough
83 my @highlights_man = (
84 [$type_constant, "\$1"],
85 [$type_constant2, "\$1"],
86 [$type_func, "\\\\fB\$1\\\\fP"],
87 [$type_enum, "\\\\fI\$1\\\\fP"],
88 [$type_struct, "\\\\fI\$1\\\\fP"],
89 [$type_typedef, "\\\\fI\$1\\\\fP"],
90 [$type_union, "\\\\fI\$1\\\\fP"],
91 [$type_param, "\\\\fI\$1\\\\fP"],
92 [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
93 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
94 [$type_fallback, "\\\\fI\$1\\\\fP"]
96 my $blankline_man = "";
99 my @highlights_rst = (
100 [$type_constant, "``\$1``"],
101 [$type_constant2, "``\$1``"],
102 # Note: need to escape () to avoid func matching later
103 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
104 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
105 [$type_fp_param, "**\$1\\\\(\\\\)**"],
106 [$type_fp_param2, "**\$1\\\\(\\\\)**"],
107 [$type_func, "\$1()"],
108 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
109 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
110 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
111 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
112 # in rst this can refer to any type
113 [$type_fallback, "\\:c\\:type\\:`\$1`"],
114 [$type_param_ref, "**\$1\$2**"]
116 my $blankline_rst = "\n";
121 -message => "No arguments!\n",
124 -sections => 'SYNOPSIS',
130 my ($sphinx_major, $sphinx_minor, $sphinx_patch);
132 my $dohighlight = "";
138 my $Wcontents_before_sections = 0;
139 my $output_mode = "rst";
140 my $output_preformatted = 0;
141 my $no_doc_sections = 0;
142 my $enable_lineno = 0;
143 my @highlights = @highlights_rst;
144 my $blankline = $blankline_rst;
145 my $modulename = "Kernel API";
148 OUTPUT_ALL => 0, # output all symbols and doc sections
149 OUTPUT_INCLUDE => 1, # output only specified symbols
150 OUTPUT_EXPORTED => 2, # output exported symbols
151 OUTPUT_INTERNAL => 3, # output non-exported symbols
153 my $output_selection = OUTPUT_ALL;
154 my $show_not_found = 0; # No longer used
156 my @export_file_list;
159 if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
160 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
161 @build_time = gmtime($seconds);
163 @build_time = localtime;
166 my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
167 'July', 'August', 'September', 'October',
168 'November', 'December')[$build_time[4]] .
169 " " . ($build_time[5]+1900);
171 # Essentially these are globals.
172 # They probably want to be tidied up, made more localised or something.
173 # CAVEAT EMPTOR! Some of the others I localised may not want to be, which
174 # could cause "use of undefined value" or other bugs.
175 my ($function, %function_table, %parametertypes, $declaration_purpose);
176 my %nosymbol_table = ();
177 my $declaration_start_line;
178 my ($type, $declaration_name, $return_type);
179 my ($newsection, $newcontents, $prototype, $brcount, %source_map);
181 if (defined($ENV{'KBUILD_VERBOSE'}) && $ENV{'KBUILD_VERBOSE'} =~ '1') {
185 if (defined($ENV{'KCFLAGS'})) {
186 my $kcflags = "$ENV{'KCFLAGS'}";
188 if ($kcflags =~ /Werror/) {
193 # reading this variable is for backwards compat just in case
194 # someone was calling it with the variable from outside the
195 # kernel's build system
196 if (defined($ENV{'KDOC_WERROR'})) {
197 $Werror = "$ENV{'KDOC_WERROR'}";
199 # other environment variables are converted to command-line
200 # arguments in cmd_checkdoc in the build system
202 # Generated docbook code is inserted in a template at a point where
203 # docbook v3.1 requires a non-zero sequence of RefEntry's; see:
204 # https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
205 # We keep track of number of generated entries and generate a dummy
206 # if needs be to ensure the expanded template can be postprocessed
208 my $section_counter = 0;
214 STATE_NORMAL => 0, # normal code
215 STATE_NAME => 1, # looking for function name
216 STATE_BODY_MAYBE => 2, # body - or maybe more description
217 STATE_BODY => 3, # the body of the comment
218 STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
219 STATE_PROTO => 5, # scanning prototype
220 STATE_DOCBLOCK => 6, # documentation block
221 STATE_INLINE => 7, # gathering doc outside main block
227 # Inline documentation state
229 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
230 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
231 STATE_INLINE_TEXT => 2, # looking for member documentation
232 STATE_INLINE_END => 3, # done
233 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
234 # Spit a warning as it's not
235 # proper kernel-doc and ignore the rest.
237 my $inline_doc_state;
239 #declaration types: can be
240 # 'function', 'struct', 'union', 'enum', 'typedef'
243 # Name of the kernel-doc identifier for non-DOC markups
246 my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
248 my $doc_com = '\s*\*\s*';
249 my $doc_com_body = '\s*\* ?';
250 my $doc_decl = $doc_com . '(\w+)';
251 # @params and a strictly limited set of supported section names
256 # while trying to not match literal block starts like "example::"
258 my $doc_sect = $doc_com .
259 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:([^:].*)?$';
260 my $doc_content = $doc_com_body . '(.*)';
261 my $doc_block = $doc_com . 'DOC:\s*(.*)?';
262 my $doc_inline_start = '^\s*/\*\*\s*$';
263 my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
264 my $doc_inline_end = '^\s*\*/\s*$';
265 my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
266 my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
267 my $export_symbol_ns = '^\s*EXPORT_SYMBOL_NS(_GPL)?\s*\(\s*(\w+)\s*,\s*\w+\)\s*;';
268 my $function_pointer = qr{([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)};
269 my $attribute = qr{__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)}i;
272 my %parameterdesc_start_lines;
276 my %section_start_lines;
281 my $new_start_line = 0;
283 # the canonical section names. see also $doc_sect above.
284 my $section_default = "Description"; # default section
285 my $section_intro = "Introduction";
286 my $section = $section_default;
287 my $section_context = "Context";
288 my $section_return = "Return";
290 my $undescribed = "-- undescribed --";
294 while ($ARGV[0] =~ m/^--?(.*)/) {
298 $output_mode = "man";
299 @highlights = @highlights_man;
300 $blankline = $blankline_man;
301 } elsif ($cmd eq "rst") {
302 $output_mode = "rst";
303 @highlights = @highlights_rst;
304 $blankline = $blankline_rst;
305 } elsif ($cmd eq "none") {
306 $output_mode = "none";
307 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
308 $modulename = shift @ARGV;
309 } elsif ($cmd eq "function") { # to only output specific functions
310 $output_selection = OUTPUT_INCLUDE;
311 $function = shift @ARGV;
312 $function_table{$function} = 1;
313 } elsif ($cmd eq "nosymbol") { # Exclude specific symbols
314 my $symbol = shift @ARGV;
315 $nosymbol_table{$symbol} = 1;
316 } elsif ($cmd eq "export") { # only exported symbols
317 $output_selection = OUTPUT_EXPORTED;
318 %function_table = ();
319 } elsif ($cmd eq "internal") { # only non-exported symbols
320 $output_selection = OUTPUT_INTERNAL;
321 %function_table = ();
322 } elsif ($cmd eq "export-file") {
323 my $file = shift @ARGV;
324 push(@export_file_list, $file);
325 } elsif ($cmd eq "v") {
327 } elsif ($cmd eq "Werror") {
329 } elsif ($cmd eq "Wreturn") {
331 } elsif ($cmd eq "Wshort-desc") {
333 } elsif ($cmd eq "Wcontents-before-sections") {
334 $Wcontents_before_sections = 1;
335 } elsif ($cmd eq "Wall") {
338 $Wcontents_before_sections = 1;
339 } elsif (($cmd eq "h") || ($cmd eq "help")) {
340 pod2usage(-exitval => 0, -verbose => 2);
341 } elsif ($cmd eq 'no-doc-sections') {
342 $no_doc_sections = 1;
343 } elsif ($cmd eq 'enable-lineno') {
345 } elsif ($cmd eq 'show-not-found') {
346 $show_not_found = 1; # A no-op but don't fail
347 } elsif ($cmd eq "sphinx-version") {
348 my $ver_string = shift @ARGV;
349 if ($ver_string =~ m/^(\d+)(\.\d+)?(\.\d+)?/) {
352 $sphinx_minor = substr($2,1);
357 $sphinx_patch = substr($3,1)
362 die "Sphinx version should either major.minor or major.minor.patch format\n";
367 -message => "Argument unknown!\n",
370 -sections => 'SYNOPSIS',
376 -message => "FILE argument missing\n",
379 -sections => 'SYNOPSIS',
385 # continue execution near EOF;
387 # The C domain dialect changed on Sphinx 3. So, we need to check the
388 # version in order to produce the right tags.
391 foreach(split(/:/, $ENV{PATH})) {
392 return "$_/$_[0]" if(-x "$_/$_[0]");
396 sub get_sphinx_version()
400 my $cmd = "sphinx-build";
401 if (!findprog($cmd)) {
402 my $cmd = "sphinx-build3";
403 if (!findprog($cmd)) {
407 printf STDERR "Warning: Sphinx version not found. Using default (Sphinx version %d.%d.%d)\n",
408 $sphinx_major, $sphinx_minor, $sphinx_patch;
413 open IN, "$cmd --version 2>&1 |";
415 if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) {
421 # Sphinx 1.2.x uses a different format
422 if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) {
432 # get kernel version from env
433 sub get_kernel_version() {
434 my $version = 'unknown kernel version';
436 if (defined($ENV{'KERNELVERSION'})) {
437 $version = $ENV{'KERNELVERSION'};
445 if ($enable_lineno && defined($lineno)) {
446 print ".. LINENO " . $lineno . "\n";
451 my $location = shift;
453 print STDERR "$location: warning: $msg";
457 # dumps section contents to arrays/hashes intended for that purpose.
462 my $contents = join "\n", @_;
464 if ($name =~ m/$type_param/) {
466 $parameterdescs{$name} = $contents;
467 $sectcheck = $sectcheck . $name . " ";
468 $parameterdesc_start_lines{$name} = $new_start_line;
470 } elsif ($name eq "@\.\.\.") {
472 $parameterdescs{$name} = $contents;
473 $sectcheck = $sectcheck . $name . " ";
474 $parameterdesc_start_lines{$name} = $new_start_line;
477 if (defined($sections{$name}) && ($sections{$name} ne "")) {
478 # Only warn on user specified duplicate section names.
479 if ($name ne $section_default) {
480 emit_warning("${file}:$.", "duplicate section name '$name'\n");
482 $sections{$name} .= $contents;
484 $sections{$name} = $contents;
485 push @sectionlist, $name;
486 $section_start_lines{$name} = $new_start_line;
493 # dump DOC: section after checking that it should go out
495 sub dump_doc_section {
498 my $contents = join "\n", @_;
500 if ($no_doc_sections) {
504 return if (defined($nosymbol_table{$name}));
506 if (($output_selection == OUTPUT_ALL) ||
507 (($output_selection == OUTPUT_INCLUDE) &&
508 defined($function_table{$name})))
510 dump_section($file, $name, $contents);
511 output_blockhead({'sectionlist' => \@sectionlist,
512 'sections' => \%sections,
513 'module' => $modulename,
514 'content-only' => ($output_selection != OUTPUT_ALL), });
521 # parameterdescs, a hash.
522 # function => "function name"
523 # parameterlist => @list of parameters
524 # parameterdescs => %parameter descriptions
525 # sectionlist => @list of sections
526 # sections => %section descriptions
529 sub output_highlight {
530 my $contents = join "\n",@_;
534 # if (!defined $contents) {
536 # confess "output_highlight got called with no args?\n";
539 # print STDERR "contents b4:$contents\n";
542 # print STDERR "contents af:$contents\n";
544 foreach $line (split "\n", $contents) {
545 if (! $output_preformatted) {
549 if (! $output_preformatted) {
550 print $lineprefix, $blankline;
553 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
556 print $lineprefix, $line;
564 # output function in man
565 sub output_function_man(%) {
567 my ($parameter, $section);
570 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
573 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
575 print ".SH SYNOPSIS\n";
576 if ($args{'functiontype'} ne "") {
577 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
579 print ".B \"" . $args{'function'} . "\n";
584 foreach my $parameter (@{$args{'parameterlist'}}) {
585 if ($count == $#{$args{'parameterlist'}}) {
588 $type = $args{'parametertypes'}{$parameter};
589 if ($type =~ m/$function_pointer/) {
590 # pointer-to-function
591 print ".BI \"" . $parenth . $1 . "\" " . " \") (" . $2 . ")" . $post . "\"\n";
593 $type =~ s/([^\*])$/$1 /;
594 print ".BI \"" . $parenth . $type . "\" " . " \"" . $post . "\"\n";
600 print ".SH ARGUMENTS\n";
601 foreach $parameter (@{$args{'parameterlist'}}) {
602 my $parameter_name = $parameter;
603 $parameter_name =~ s/\[.*//;
605 print ".IP \"" . $parameter . "\" 12\n";
606 output_highlight($args{'parameterdescs'}{$parameter_name});
608 foreach $section (@{$args{'sectionlist'}}) {
609 print ".SH \"", uc $section, "\"\n";
610 output_highlight($args{'sections'}{$section});
616 sub output_enum_man(%) {
618 my ($parameter, $section);
621 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
624 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
626 print ".SH SYNOPSIS\n";
627 print "enum " . $args{'enum'} . " {\n";
629 foreach my $parameter (@{$args{'parameterlist'}}) {
630 print ".br\n.BI \" $parameter\"\n";
631 if ($count == $#{$args{'parameterlist'}}) {
641 print ".SH Constants\n";
642 foreach $parameter (@{$args{'parameterlist'}}) {
643 my $parameter_name = $parameter;
644 $parameter_name =~ s/\[.*//;
646 print ".IP \"" . $parameter . "\" 12\n";
647 output_highlight($args{'parameterdescs'}{$parameter_name});
649 foreach $section (@{$args{'sectionlist'}}) {
650 print ".SH \"$section\"\n";
651 output_highlight($args{'sections'}{$section});
656 # output struct in man
657 sub output_struct_man(%) {
659 my ($parameter, $section);
661 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
664 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
666 my $declaration = $args{'definition'};
667 $declaration =~ s/\t/ /g;
668 $declaration =~ s/\n/"\n.br\n.BI \"/g;
669 print ".SH SYNOPSIS\n";
670 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
671 print ".BI \"$declaration\n};\n.br\n\n";
673 print ".SH Members\n";
674 foreach $parameter (@{$args{'parameterlist'}}) {
675 ($parameter =~ /^#/) && next;
677 my $parameter_name = $parameter;
678 $parameter_name =~ s/\[.*//;
680 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
681 print ".IP \"" . $parameter . "\" 12\n";
682 output_highlight($args{'parameterdescs'}{$parameter_name});
684 foreach $section (@{$args{'sectionlist'}}) {
685 print ".SH \"$section\"\n";
686 output_highlight($args{'sections'}{$section});
691 # output typedef in man
692 sub output_typedef_man(%) {
694 my ($parameter, $section);
696 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
699 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
701 foreach $section (@{$args{'sectionlist'}}) {
702 print ".SH \"$section\"\n";
703 output_highlight($args{'sections'}{$section});
707 sub output_blockhead_man(%) {
709 my ($parameter, $section);
712 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
714 foreach $section (@{$args{'sectionlist'}}) {
715 print ".SH \"$section\"\n";
716 output_highlight($args{'sections'}{$section});
721 # output in restructured text
725 # This could use some work; it's used to output the DOC: sections, and
726 # starts by putting out the name of the doc section itself, but that tends
727 # to duplicate a header already in the template file.
729 sub output_blockhead_rst(%) {
731 my ($parameter, $section);
733 foreach $section (@{$args{'sectionlist'}}) {
734 next if (defined($nosymbol_table{$section}));
736 if ($output_selection != OUTPUT_INCLUDE) {
737 print ".. _$section:\n\n";
738 print "**$section**\n\n";
740 print_lineno($section_start_lines{$section});
741 output_highlight_rst($args{'sections'}{$section});
747 # Apply the RST highlights to a sub-block of text.
749 sub highlight_block($) {
750 # The dohighlight kludge requires the text be called $contents
751 my $contents = shift;
758 # Regexes used only here.
760 my $sphinx_literal = '^[^.].*::$';
761 my $sphinx_cblock = '^\.\.\ +code-block::';
763 sub output_highlight_rst {
764 my $input = join "\n",@_;
771 foreach $line (split "\n",$input) {
773 # If we're in a literal block, see if we should drop out
774 # of it. Otherwise pass the line straight through unmunged.
777 if (! ($line =~ /^\s*$/)) {
779 # If this is the first non-blank line in a literal
780 # block we need to figure out what the proper indent is.
782 if ($litprefix eq "") {
784 $litprefix = '^' . $1;
785 $output .= $line . "\n";
786 } elsif (! ($line =~ /$litprefix/)) {
789 $output .= $line . "\n";
792 $output .= $line . "\n";
796 # Not in a literal block (or just dropped out)
799 $block .= $line . "\n";
800 if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
803 $output .= highlight_block($block);
810 $output .= highlight_block($block);
812 foreach $line (split "\n", $output) {
813 print $lineprefix . $line . "\n";
817 sub output_function_rst(%) {
819 my ($parameter, $section);
820 my $oldprefix = $lineprefix;
824 if ($sphinx_major < 3) {
825 if ($args{'typedef'}) {
826 print ".. c:type:: ". $args{'function'} . "\n\n";
827 print_lineno($declaration_start_line);
828 print " **Typedef**: ";
830 output_highlight_rst($args{'purpose'});
831 $start = "\n\n**Syntax**\n\n ``";
834 print ".. c:function:: ";
837 if ($args{'typedef'} || $args{'functiontype'} eq "") {
839 print ".. c:macro:: ". $args{'function'} . "\n\n";
841 print ".. c:function:: ";
844 if ($args{'typedef'}) {
845 print_lineno($declaration_start_line);
846 print " **Typedef**: ";
848 output_highlight_rst($args{'purpose'});
849 $start = "\n\n**Syntax**\n\n ``";
851 print "``" if ($is_macro);
854 if ($args{'functiontype'} ne "") {
855 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
857 $start .= $args{'function'} . " (";
862 foreach my $parameter (@{$args{'parameterlist'}}) {
867 $type = $args{'parametertypes'}{$parameter};
869 if ($type =~ m/$function_pointer/) {
870 # pointer-to-function
871 print $1 . $parameter . ") (" . $2 . ")";
881 if (!$args{'typedef'}) {
882 print_lineno($declaration_start_line);
884 output_highlight_rst($args{'purpose'});
889 # Put our descriptive text into a container (thus an HTML <div>) to help
890 # set the function prototypes apart.
892 print ".. container:: kernelindent\n\n";
894 print $lineprefix . "**Parameters**\n\n";
895 foreach $parameter (@{$args{'parameterlist'}}) {
896 my $parameter_name = $parameter;
897 $parameter_name =~ s/\[.*//;
898 $type = $args{'parametertypes'}{$parameter};
901 print $lineprefix . "``$type``\n";
903 print $lineprefix . "``$parameter``\n";
906 print_lineno($parameterdesc_start_lines{$parameter_name});
909 if (defined($args{'parameterdescs'}{$parameter_name}) &&
910 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
911 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
913 print $lineprefix . "*undescribed*\n";
919 output_section_rst(@_);
920 $lineprefix = $oldprefix;
923 sub output_section_rst(%) {
926 my $oldprefix = $lineprefix;
928 foreach $section (@{$args{'sectionlist'}}) {
929 print $lineprefix . "**$section**\n\n";
930 print_lineno($section_start_lines{$section});
931 output_highlight_rst($args{'sections'}{$section});
937 sub output_enum_rst(%) {
940 my $oldprefix = $lineprefix;
944 if ($sphinx_major < 3) {
945 my $name = "enum " . $args{'enum'};
946 print "\n\n.. c:type:: " . $name . "\n\n";
948 my $name = $args{'enum'};
949 print "\n\n.. c:enum:: " . $name . "\n\n";
951 print_lineno($declaration_start_line);
953 output_highlight_rst($args{'purpose'});
956 print ".. container:: kernelindent\n\n";
957 $outer = $lineprefix . " ";
958 $lineprefix = $outer . " ";
959 print $outer . "**Constants**\n\n";
960 foreach $parameter (@{$args{'parameterlist'}}) {
961 print $outer . "``$parameter``\n";
963 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
964 output_highlight_rst($args{'parameterdescs'}{$parameter});
966 print $lineprefix . "*undescribed*\n";
971 $lineprefix = $oldprefix;
972 output_section_rst(@_);
975 sub output_typedef_rst(%) {
978 my $oldprefix = $lineprefix;
981 if ($sphinx_major < 3) {
982 $name = "typedef " . $args{'typedef'};
984 $name = $args{'typedef'};
986 print "\n\n.. c:type:: " . $name . "\n\n";
987 print_lineno($declaration_start_line);
989 output_highlight_rst($args{'purpose'});
992 $lineprefix = $oldprefix;
993 output_section_rst(@_);
996 sub output_struct_rst(%) {
999 my $oldprefix = $lineprefix;
1001 if ($sphinx_major < 3) {
1002 my $name = $args{'type'} . " " . $args{'struct'};
1003 print "\n\n.. c:type:: " . $name . "\n\n";
1005 my $name = $args{'struct'};
1006 if ($args{'type'} eq 'union') {
1007 print "\n\n.. c:union:: " . $name . "\n\n";
1009 print "\n\n.. c:struct:: " . $name . "\n\n";
1012 print_lineno($declaration_start_line);
1014 output_highlight_rst($args{'purpose'});
1017 print ".. container:: kernelindent\n\n";
1018 print $lineprefix . "**Definition**::\n\n";
1019 my $declaration = $args{'definition'};
1020 $lineprefix = $lineprefix . " ";
1021 $declaration =~ s/\t/$lineprefix/g;
1022 print $lineprefix . $args{'type'} . " " . $args{'struct'} . " {\n$declaration" . $lineprefix . "};\n\n";
1025 print $lineprefix . "**Members**\n\n";
1026 foreach $parameter (@{$args{'parameterlist'}}) {
1027 ($parameter =~ /^#/) && next;
1029 my $parameter_name = $parameter;
1030 $parameter_name =~ s/\[.*//;
1032 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1033 $type = $args{'parametertypes'}{$parameter};
1034 print_lineno($parameterdesc_start_lines{$parameter_name});
1035 print $lineprefix . "``" . $parameter . "``\n";
1037 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1043 $lineprefix = $oldprefix;
1044 output_section_rst(@_);
1047 ## none mode output functions
1049 sub output_function_none(%) {
1052 sub output_enum_none(%) {
1055 sub output_typedef_none(%) {
1058 sub output_struct_none(%) {
1061 sub output_blockhead_none(%) {
1065 # generic output function for all types (function, struct/union, typedef, enum);
1066 # calls the generated, variable output_ function name based on
1067 # functype and output_mode
1068 sub output_declaration {
1071 my $functype = shift;
1072 my $func = "output_${functype}_$output_mode";
1074 return if (defined($nosymbol_table{$name}));
1076 if (($output_selection == OUTPUT_ALL) ||
1077 (($output_selection == OUTPUT_INCLUDE ||
1078 $output_selection == OUTPUT_EXPORTED) &&
1079 defined($function_table{$name})) ||
1080 ($output_selection == OUTPUT_INTERNAL &&
1081 !($functype eq "function" && defined($function_table{$name}))))
1089 # generic output function - calls the right one based on current output mode.
1090 sub output_blockhead {
1092 my $func = "output_blockhead_" . $output_mode;
1098 # takes a declaration (struct, union, enum, typedef) and
1099 # invokes the right handler. NOT called for functions.
1100 sub dump_declaration($$) {
1102 my ($prototype, $file) = @_;
1103 my $func = "dump_" . $decl_type;
1107 sub dump_union($$) {
1111 sub dump_struct($$) {
1116 my $type = qr{struct|union};
1117 # For capturing struct/union definition body, i.e. "{members*}qualifiers*"
1118 my $qualifiers = qr{$attribute|__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned};
1119 my $definition_body = qr{\{(.*)\}\s*$qualifiers*};
1120 my $struct_members = qr{($type)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;};
1122 if ($x =~ /($type)\s+(\w+)\s*$definition_body/) {
1124 $declaration_name = $2;
1126 } elsif ($x =~ /typedef\s+($type)\s*$definition_body\s*(\w+)\s*;/) {
1128 $declaration_name = $3;
1133 if ($identifier ne $declaration_name) {
1134 emit_warning("${file}:$.", "expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n");
1138 # ignore members marked private:
1139 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1140 $members =~ s/\/\*\s*private:.*//gosi;
1142 $members =~ s/\/\*.*?\*\///gos;
1144 $members =~ s/\s*$attribute/ /gi;
1145 $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
1146 $members =~ s/\s*__packed\s*/ /gos;
1147 $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
1148 $members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
1149 $members =~ s/\s*____cacheline_aligned/ /gos;
1150 # unwrap struct_group():
1151 # - first eat non-declaration parameters and rewrite for final match
1152 # - then remove macro, outer parens, and trailing semicolon
1153 $members =~ s/\bstruct_group\s*\(([^,]*,)/STRUCT_GROUP(/gos;
1154 $members =~ s/\bstruct_group_(attr|tagged)\s*\(([^,]*,){2}/STRUCT_GROUP(/gos;
1155 $members =~ s/\b__struct_group\s*\(([^,]*,){3}/STRUCT_GROUP(/gos;
1156 $members =~ s/\bSTRUCT_GROUP(\(((?:(?>[^)(]+)|(?1))*)\))[^;]*;/$2/gos;
1158 my $args = qr{([^,)]+)};
1159 # replace DECLARE_BITMAP
1160 $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos;
1161 $members =~ s/DECLARE_PHY_INTERFACE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, PHY_INTERFACE_MODE_MAX)/gos;
1162 $members =~ s/DECLARE_BITMAP\s*\($args,\s*$args\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
1163 # replace DECLARE_HASHTABLE
1164 $members =~ s/DECLARE_HASHTABLE\s*\($args,\s*$args\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
1165 # replace DECLARE_KFIFO
1166 $members =~ s/DECLARE_KFIFO\s*\($args,\s*$args,\s*$args\)/$2 \*$1/gos;
1167 # replace DECLARE_KFIFO_PTR
1168 $members =~ s/DECLARE_KFIFO_PTR\s*\($args,\s*$args\)/$2 \*$1/gos;
1169 # replace DECLARE_FLEX_ARRAY
1170 $members =~ s/(?:__)?DECLARE_FLEX_ARRAY\s*\($args,\s*$args\)/$1 $2\[\]/gos;
1171 my $declaration = $members;
1173 # Split nested struct/union elements as newer ones
1174 while ($members =~ m/$struct_members/) {
1179 foreach my $id(split /,/, $ids) {
1180 $newmember .= "$maintype $id; ";
1183 $id =~ s/^\s*\**(\S+)\s*/$1/;
1184 foreach my $arg (split /;/, $content) {
1185 next if ($arg =~ m/^\s*$/);
1186 if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) {
1187 # pointer-to-function
1192 if ($id =~ m/^\s*$/) {
1193 # anonymous struct/union
1194 $newmember .= "$type$name$extra; ";
1196 $newmember .= "$type$id.$name$extra; ";
1204 $arg =~ s/:\s*\d+\s*//g;
1206 $arg =~ s/\[.*\]//g;
1207 # The type may have multiple words,
1208 # and multiple IDs can be defined, like:
1209 # const struct foo, *bar, foobar
1210 # So, we remove spaces when parsing the
1211 # names, in order to match just names
1212 # and commas for the names
1213 $arg =~ s/\s*,\s*/,/g;
1214 if ($arg =~ m/(.*)\s+([\S+,]+)/) {
1218 $newmember .= "$arg; ";
1221 foreach my $name (split /,/, $names) {
1222 $name =~ s/^\s*\**(\S+)\s*/$1/;
1223 next if (($name =~ m/^\s*$/));
1224 if ($id =~ m/^\s*$/) {
1225 # anonymous struct/union
1226 $newmember .= "$type $name; ";
1228 $newmember .= "$type $id.$name; ";
1234 $members =~ s/$struct_members/$newmember/;
1237 # Ignore other nested elements, like enums
1238 $members =~ s/(\{[^\{\}]*\})//g;
1240 create_parameterlist($members, ';', $file, $declaration_name);
1241 check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
1243 # Adjust declaration for better display
1244 $declaration =~ s/([\{;])/$1\n/g;
1245 $declaration =~ s/\}\s+;/};/g;
1246 # Better handle inlined enums
1247 do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
1249 my @def_args = split /\n/, $declaration;
1252 foreach my $clause (@def_args) {
1253 $clause =~ s/^\s+//;
1254 $clause =~ s/\s+$//;
1255 $clause =~ s/\s+/ /;
1257 $level-- if ($clause =~ m/(\})/ && $level > 1);
1258 if (!($clause =~ m/^\s*#/)) {
1259 $declaration .= "\t" x $level;
1261 $declaration .= "\t" . $clause . "\n";
1262 $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
1264 output_declaration($declaration_name,
1266 {'struct' => $declaration_name,
1267 'module' => $modulename,
1268 'definition' => $declaration,
1269 'parameterlist' => \@parameterlist,
1270 'parameterdescs' => \%parameterdescs,
1271 'parametertypes' => \%parametertypes,
1272 'sectionlist' => \@sectionlist,
1273 'sections' => \%sections,
1274 'purpose' => $declaration_purpose,
1275 'type' => $decl_type
1279 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1285 sub show_warnings($$) {
1286 my $functype = shift;
1289 return 0 if (defined($nosymbol_table{$name}));
1291 return 1 if ($output_selection == OUTPUT_ALL);
1293 if ($output_selection == OUTPUT_EXPORTED) {
1294 if (defined($function_table{$name})) {
1300 if ($output_selection == OUTPUT_INTERNAL) {
1301 if (!($functype eq "function" && defined($function_table{$name}))) {
1307 if ($output_selection == OUTPUT_INCLUDE) {
1308 if (defined($function_table{$name})) {
1314 die("Please add the new output type at show_warnings()");
1322 # ignore members marked private:
1323 $x =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1324 $x =~ s/\/\*\s*private:.*}/}/gosi;
1326 $x =~ s@/\*.*?\*/@@gos; # strip comments.
1327 # strip #define macros inside enums
1328 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
1330 if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) {
1331 $declaration_name = $2;
1333 } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
1334 $declaration_name = $1;
1339 if ($identifier ne $declaration_name) {
1340 if ($identifier eq "") {
1341 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n");
1343 emit_warning("${file}:$.", "expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n");
1347 $declaration_name = "(anonymous)" if ($declaration_name eq "");
1351 $members =~ s/\s+$//;
1353 foreach my $arg (split ',', $members) {
1354 $arg =~ s/^\s*(\w+).*/$1/;
1355 push @parameterlist, $arg;
1356 if (!$parameterdescs{$arg}) {
1357 $parameterdescs{$arg} = $undescribed;
1358 if (show_warnings("enum", $declaration_name)) {
1359 emit_warning("${file}:$.", "Enum value '$arg' not described in enum '$declaration_name'\n");
1362 $_members{$arg} = 1;
1365 while (my ($k, $v) = each %parameterdescs) {
1366 if (!exists($_members{$k})) {
1367 if (show_warnings("enum", $declaration_name)) {
1368 emit_warning("${file}:$.", "Excess enum value '$k' description in '$declaration_name'\n");
1373 output_declaration($declaration_name,
1375 {'enum' => $declaration_name,
1376 'module' => $modulename,
1377 'parameterlist' => \@parameterlist,
1378 'parameterdescs' => \%parameterdescs,
1379 'sectionlist' => \@sectionlist,
1380 'sections' => \%sections,
1381 'purpose' => $declaration_purpose
1384 print STDERR "${file}:$.: error: Cannot parse enum!\n";
1389 my $typedef_type = qr { ((?:\s+[\w\*]+\b){1,8})\s* }x;
1390 my $typedef_ident = qr { \*?\s*(\w\S+)\s* }x;
1391 my $typedef_args = qr { \s*\((.*)\); }x;
1393 my $typedef1 = qr { typedef$typedef_type\($typedef_ident\)$typedef_args }x;
1394 my $typedef2 = qr { typedef$typedef_type$typedef_ident$typedef_args }x;
1396 sub dump_typedef($$) {
1400 $x =~ s@/\*.*?\*/@@gos; # strip comments.
1402 # Parse function typedef prototypes
1403 if ($x =~ $typedef1 || $x =~ $typedef2) {
1405 $declaration_name = $2;
1407 $return_type =~ s/^\s+//;
1409 if ($identifier ne $declaration_name) {
1410 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1414 create_parameterlist($args, ',', $file, $declaration_name);
1416 output_declaration($declaration_name,
1418 {'function' => $declaration_name,
1420 'module' => $modulename,
1421 'functiontype' => $return_type,
1422 'parameterlist' => \@parameterlist,
1423 'parameterdescs' => \%parameterdescs,
1424 'parametertypes' => \%parametertypes,
1425 'sectionlist' => \@sectionlist,
1426 'sections' => \%sections,
1427 'purpose' => $declaration_purpose
1432 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1433 $x =~ s/\(*.\)\s*;$/;/;
1434 $x =~ s/\[*.\]\s*;$/;/;
1437 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
1438 $declaration_name = $1;
1440 if ($identifier ne $declaration_name) {
1441 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1445 output_declaration($declaration_name,
1447 {'typedef' => $declaration_name,
1448 'module' => $modulename,
1449 'sectionlist' => \@sectionlist,
1450 'sections' => \%sections,
1451 'purpose' => $declaration_purpose
1455 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1460 sub save_struct_actual($) {
1463 # strip all spaces from the actual param so that it looks like one string item
1464 $actual =~ s/\s*//g;
1465 $struct_actual = $struct_actual . $actual . " ";
1468 sub create_parameterlist($$$$) {
1470 my $splitter = shift;
1472 my $declaration_name = shift;
1476 # temporarily replace commas inside function pointer definition
1477 my $arg_expr = qr{\([^\),]+};
1478 while ($args =~ /$arg_expr,/) {
1479 $args =~ s/($arg_expr),/$1#/g;
1482 foreach my $arg (split($splitter, $args)) {
1484 $arg =~ s/\/\*.*\*\///;
1485 # ignore argument attributes
1486 $arg =~ s/\sPOS0?\s/ /;
1487 # strip leading/trailing spaces
1493 # Treat preprocessor directive as a typeless variable just to fill
1494 # corresponding data structures "correctly". Catch it later in
1496 push_parameter($arg, "", "", $file);
1497 } elsif ($arg =~ m/\(.+\)\s*\(/) {
1498 # pointer-to-function
1500 $arg =~ m/[^\(]+\(\*?\s*([\w\[\]\.]*)\s*\)/;
1503 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
1504 save_struct_actual($param);
1505 push_parameter($param, $type, $arg, $file, $declaration_name);
1507 $arg =~ s/\s*:\s*/:/g;
1508 $arg =~ s/\s*\[/\[/g;
1510 my @args = split('\s*,\s*', $arg);
1511 if ($args[0] =~ m/\*/) {
1512 $args[0] =~ s/(\*+)\s*/ $1/;
1516 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1518 push(@first_arg, split('\s+', $1));
1519 push(@first_arg, $2);
1521 @first_arg = split('\s+', shift @args);
1524 unshift(@args, pop @first_arg);
1525 $type = join " ", @first_arg;
1527 foreach $param (@args) {
1528 if ($param =~ m/^(\*+)\s*(.*)/) {
1529 save_struct_actual($2);
1531 push_parameter($2, "$type $1", $arg, $file, $declaration_name);
1533 elsif ($param =~ m/(.*?):(\d+)/) {
1534 if ($type ne "") { # skip unnamed bit-fields
1535 save_struct_actual($1);
1536 push_parameter($1, "$type:$2", $arg, $file, $declaration_name)
1540 save_struct_actual($param);
1541 push_parameter($param, $type, $arg, $file, $declaration_name);
1548 sub push_parameter($$$$$) {
1551 my $org_arg = shift;
1553 my $declaration_name = shift;
1555 if (($anon_struct_union == 1) && ($type eq "") &&
1557 return; # ignore the ending }; from anon. struct/union
1560 $anon_struct_union = 0;
1561 $param =~ s/[\[\)].*//;
1563 if ($type eq "" && $param =~ /\.\.\.$/)
1565 if (!$param =~ /\w\.\.\.$/) {
1566 # handles unnamed variable parameters
1569 elsif ($param =~ /\w\.\.\.$/) {
1570 # for named variable parameters of the form `x...`, remove the dots
1571 $param =~ s/\.\.\.$//;
1573 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1574 $parameterdescs{$param} = "variable arguments";
1577 elsif ($type eq "" && ($param eq "" or $param eq "void"))
1580 $parameterdescs{void} = "no arguments";
1582 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1583 # handle unnamed (anonymous) union or struct:
1586 $param = "{unnamed_" . $param . "}";
1587 $parameterdescs{$param} = "anonymous\n";
1588 $anon_struct_union = 1;
1591 # warn if parameter has no description
1592 # (but ignore ones starting with # as these are not parameters
1593 # but inline preprocessor statements);
1594 # Note: It will also ignore void params and unnamed structs/unions
1595 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
1596 $parameterdescs{$param} = $undescribed;
1598 if (show_warnings($type, $declaration_name) && $param !~ /\./) {
1599 emit_warning("${file}:$.", "Function parameter or member '$param' not described in '$declaration_name'\n");
1603 # strip spaces from $param so that it is one continuous string
1604 # on @parameterlist;
1605 # this fixes a problem where check_sections() cannot find
1606 # a parameter like "addr[6 + 2]" because it actually appears
1607 # as "addr[6", "+", "2]" on the parameter list;
1608 # but it's better to maintain the param string unchanged for output,
1609 # so just weaken the string compare in check_sections() to ignore
1610 # "[blah" in a parameter string;
1611 ###$param =~ s/\s*//g;
1612 push @parameterlist, $param;
1613 $org_arg =~ s/\s\s+/ /g;
1614 $parametertypes{$param} = $org_arg;
1617 sub check_sections($$$$$) {
1618 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
1619 my @sects = split ' ', $sectcheck;
1620 my @prms = split ' ', $prmscheck;
1623 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
1625 foreach $sx (0 .. $#sects) {
1627 foreach $px (0 .. $#prms) {
1628 $prm_clean = $prms[$px];
1629 $prm_clean =~ s/\[.*\]//;
1630 $prm_clean =~ s/$attribute//i;
1631 # ignore array size in a parameter string;
1632 # however, the original param string may contain
1633 # spaces, e.g.: addr[6 + 2]
1634 # and this appears in @prms as "addr[6" since the
1635 # parameter list is split at spaces;
1636 # hence just ignore "[..." for the sections check;
1637 $prm_clean =~ s/\[.*//;
1639 ##$prm_clean =~ s/^\**//;
1640 if ($prm_clean eq $sects[$sx]) {
1646 if ($decl_type eq "function") {
1647 emit_warning("${file}:$.",
1648 "Excess function parameter " .
1650 "description in '$decl_name'\n");
1657 # Checks the section describing the return value of a function.
1658 sub check_return_section {
1660 my $declaration_name = shift;
1661 my $return_type = shift;
1663 # Ignore an empty return type (It's a macro)
1664 # Ignore functions with a "void" return type. (But don't ignore "void *")
1665 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
1669 if (!defined($sections{$section_return}) ||
1670 $sections{$section_return} eq "") {
1671 emit_warning("${file}:$.",
1672 "No description found for return value of " .
1673 "'$declaration_name'\n");
1678 # takes a function prototype and the name of the current file being
1679 # processed and spits out all the details stored in the global
1681 sub dump_function($$) {
1682 my $prototype = shift;
1686 print_lineno($new_start_line);
1688 $prototype =~ s/^static +//;
1689 $prototype =~ s/^extern +//;
1690 $prototype =~ s/^asmlinkage +//;
1691 $prototype =~ s/^inline +//;
1692 $prototype =~ s/^__inline__ +//;
1693 $prototype =~ s/^__inline +//;
1694 $prototype =~ s/^__always_inline +//;
1695 $prototype =~ s/^noinline +//;
1696 $prototype =~ s/^__FORTIFY_INLINE +//;
1697 $prototype =~ s/__init +//;
1698 $prototype =~ s/__init_or_module +//;
1699 $prototype =~ s/__deprecated +//;
1700 $prototype =~ s/__flatten +//;
1701 $prototype =~ s/__meminit +//;
1702 $prototype =~ s/__must_check +//;
1703 $prototype =~ s/__weak +//;
1704 $prototype =~ s/__sched +//;
1705 $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
1706 $prototype =~ s/__(?:re)?alloc_size\s*\(\s*\d+\s*(?:,\s*\d+\s*)?\) +//;
1707 $prototype =~ s/__diagnose_as\s*\(\s*\S+\s*(?:,\s*\d+\s*)*\) +//;
1708 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
1709 $prototype =~ s/__attribute_const__ +//;
1710 $prototype =~ s/__attribute__\s*\(\(
1712 [\w\s]++ # attribute name
1713 (?:\([^)]*+\))? # attribute arguments
1714 \s*+,? # optional comma at the end
1718 # Yes, this truly is vile. We are looking for:
1719 # 1. Return type (may be nothing if we're looking at a macro)
1721 # 3. Function parameters.
1723 # All the while we have to watch out for function pointer parameters
1724 # (which IIRC is what the two sections are for), C types (these
1725 # regexps don't even start to express all the possibilities), and
1728 # If you mess with these regexps, it's a good idea to check that
1729 # the following functions' documentation still comes out right:
1730 # - parport_register_device (function pointer parameters)
1731 # - atomic_set (macro)
1732 # - pci_match_device, __copy_to_user (long return type)
1733 my $name = qr{[a-zA-Z0-9_~:]+};
1734 my $prototype_end1 = qr{[^\(]*};
1735 my $prototype_end2 = qr{[^\{]*};
1736 my $prototype_end = qr{\(($prototype_end1|$prototype_end2)\)};
1737 my $type1 = qr{[\w\s]+};
1738 my $type2 = qr{$type1\*+};
1740 if ($define && $prototype =~ m/^()($name)\s+/) {
1741 # This is an object-like macro, it has no return type and no parameter
1743 # Function-like macros are not allowed to have spaces between
1744 # declaration_name and opening parenthesis (notice the \s+).
1746 $declaration_name = $2;
1748 } elsif ($prototype =~ m/^()($name)\s*$prototype_end/ ||
1749 $prototype =~ m/^($type1)\s+($name)\s*$prototype_end/ ||
1750 $prototype =~ m/^($type2+)\s*($name)\s*$prototype_end/) {
1752 $declaration_name = $2;
1755 create_parameterlist($args, ',', $file, $declaration_name);
1757 emit_warning("${file}:$.", "cannot understand function prototype: '$prototype'\n");
1761 if ($identifier ne $declaration_name) {
1762 emit_warning("${file}:$.", "expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n");
1766 my $prms = join " ", @parameterlist;
1767 check_sections($file, $declaration_name, "function", $sectcheck, $prms);
1769 # This check emits a lot of warnings at the moment, because many
1770 # functions don't have a 'Return' doc section. So until the number
1771 # of warnings goes sufficiently down, the check is only performed in
1773 # TODO: always perform the check.
1774 if ($Wreturn && !$noret) {
1775 check_return_section($file, $declaration_name, $return_type);
1778 # The function parser can be called with a typedef parameter.
1780 if ($return_type =~ /typedef/) {
1781 output_declaration($declaration_name,
1783 {'function' => $declaration_name,
1785 'module' => $modulename,
1786 'functiontype' => $return_type,
1787 'parameterlist' => \@parameterlist,
1788 'parameterdescs' => \%parameterdescs,
1789 'parametertypes' => \%parametertypes,
1790 'sectionlist' => \@sectionlist,
1791 'sections' => \%sections,
1792 'purpose' => $declaration_purpose
1795 output_declaration($declaration_name,
1797 {'function' => $declaration_name,
1798 'module' => $modulename,
1799 'functiontype' => $return_type,
1800 'parameterlist' => \@parameterlist,
1801 'parameterdescs' => \%parameterdescs,
1802 'parametertypes' => \%parametertypes,
1803 'sectionlist' => \@sectionlist,
1804 'sections' => \%sections,
1805 'purpose' => $declaration_purpose
1812 %parameterdescs = ();
1813 %parametertypes = ();
1814 @parameterlist = ();
1818 $struct_actual = "";
1821 $state = STATE_NORMAL;
1822 $inline_doc_state = STATE_INLINE_NA;
1825 sub tracepoint_munge($) {
1827 my $tracepointname = 0;
1828 my $tracepointargs = 0;
1830 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
1831 $tracepointname = $1;
1833 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1834 $tracepointname = $1;
1836 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1837 $tracepointname = $2;
1839 $tracepointname =~ s/^\s+//; #strip leading whitespace
1840 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
1841 $tracepointargs = $1;
1843 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
1844 emit_warning("${file}:$.", "Unrecognized tracepoint format: \n".
1847 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
1848 $identifier = "trace_$identifier";
1852 sub syscall_munge() {
1855 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
1856 ## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1857 if ($prototype =~ m/SYSCALL_DEFINE0/) {
1859 ## $prototype = "long sys_$1(void)";
1862 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1863 if ($prototype =~ m/long (sys_.*?),/) {
1864 $prototype =~ s/,/\(/;
1866 $prototype =~ s/\)/\(void\)/;
1869 # now delete all of the odd-number commas in $prototype
1870 # so that arg types & arg names don't have a comma between them
1872 my $len = length($prototype);
1874 $len = 0; # skip the for-loop
1876 for (my $ix = 0; $ix < $len; $ix++) {
1877 if (substr($prototype, $ix, 1) eq ',') {
1879 if ($count % 2 == 1) {
1880 substr($prototype, $ix, 1) = ' ';
1886 sub process_proto_function($$) {
1890 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1892 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1895 elsif ($x =~ /([^\{]*)/) {
1899 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
1900 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1901 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1902 $prototype =~ s@^\s+@@gos; # strip leading spaces
1904 # Handle prototypes for function pointers like:
1905 # int (*pcs_config)(struct foo)
1906 $prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos;
1908 if ($prototype =~ /SYSCALL_DEFINE/) {
1911 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1912 $prototype =~ /DEFINE_SINGLE_EVENT/)
1914 tracepoint_munge($file);
1916 dump_function($prototype, $file);
1921 sub process_proto_type($$) {
1925 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1926 $x =~ s@^\s+@@gos; # strip leading spaces
1927 $x =~ s@\s+$@@gos; # strip trailing spaces
1928 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1931 # To distinguish preprocessor directive from regular declaration later.
1936 if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
1937 if( length $prototype ) {
1940 $prototype .= $1 . $2;
1941 ($2 eq '{') && $brcount++;
1942 ($2 eq '}') && $brcount--;
1943 if (($2 eq ';') && ($brcount == 0)) {
1944 dump_declaration($prototype, $file);
1957 sub map_filename($) {
1959 my ($orig_file) = @_;
1961 if (defined($ENV{'SRCTREE'})) {
1962 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1967 if (defined($source_map{$file})) {
1968 $file = $source_map{$file};
1974 sub process_export_file($) {
1975 my ($orig_file) = @_;
1976 my $file = map_filename($orig_file);
1978 if (!open(IN,"<$file")) {
1979 print STDERR "Error: Cannot open file $file\n";
1985 if (/$export_symbol/) {
1986 next if (defined($nosymbol_table{$2}));
1987 $function_table{$2} = 1;
1989 if (/$export_symbol_ns/) {
1990 next if (defined($nosymbol_table{$2}));
1991 $function_table{$2} = 1;
1999 # Parsers for the various processing states.
2001 # STATE_NORMAL: looking for the /** to begin everything.
2003 sub process_normal() {
2004 if (/$doc_start/o) {
2005 $state = STATE_NAME; # next line is always the function name
2007 $declaration_start_line = $. + 1;
2012 # STATE_NAME: Looking for the "name - description" line
2014 sub process_name($$) {
2018 if (/$doc_block/o) {
2019 $state = STATE_DOCBLOCK;
2021 $new_start_line = $.;
2024 $section = $section_intro;
2028 } elsif (/$doc_decl/o) {
2030 my $is_kernel_comment = 0;
2031 my $decl_start = qr{$doc_com};
2032 # test for pointer declaration type, foo * bar() - desc
2033 my $fn_type = qr{\w+\s*\*\s*};
2034 my $parenthesis = qr{\(\w*\)};
2035 my $decl_end = qr{[-:].*};
2036 if (/^$decl_start([\w\s]+?)$parenthesis?\s*$decl_end?$/) {
2039 if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) {
2042 $is_kernel_comment = 1;
2044 # Look for foo() or static void foo() - description; or misspelt
2046 elsif (/^$decl_start$fn_type?(\w+)\s*$parenthesis?\s*$decl_end?$/ ||
2047 /^$decl_start$fn_type?(\w+.*)$parenthesis?\s*$decl_end$/) {
2049 $decl_type = 'function';
2050 $identifier =~ s/^define\s+//;
2051 $is_kernel_comment = 1;
2053 $identifier =~ s/\s+$//;
2055 $state = STATE_BODY;
2056 # if there's no @param blocks need to set up default section
2059 $section = $section_default;
2060 $new_start_line = $. + 1;
2062 # strip leading/trailing/multiple spaces
2066 $descr =~ s/\s+/ /g;
2067 $declaration_purpose = $descr;
2068 $state = STATE_BODY_MAYBE;
2070 $declaration_purpose = "";
2073 if (!$is_kernel_comment) {
2074 emit_warning("${file}:$.", "This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst\n$_");
2075 $state = STATE_NORMAL;
2078 if (($declaration_purpose eq "") && $Wshort_desc) {
2079 emit_warning("${file}:$.", "missing initial short description on line:\n$_");
2082 if ($identifier eq "" && $decl_type ne "enum") {
2083 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n$_");
2084 $state = STATE_NORMAL;
2088 print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n";
2091 emit_warning("${file}:$.", "Cannot understand $_ on line $. - I thought it was a doc line\n");
2092 $state = STATE_NORMAL;
2098 # STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
2100 sub process_body($$) {
2103 if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
2104 dump_section($file, $section, $contents);
2105 $section = $section_default;
2106 $new_start_line = $.;
2110 if (/$doc_sect/i) { # case insensitive for supported section names
2114 # map the supported section names to the canonical names
2115 if ($newsection =~ m/^description$/i) {
2116 $newsection = $section_default;
2117 } elsif ($newsection =~ m/^context$/i) {
2118 $newsection = $section_context;
2119 } elsif ($newsection =~ m/^returns?$/i) {
2120 $newsection = $section_return;
2121 } elsif ($newsection =~ m/^\@return$/) {
2122 # special: @return is a section, not a param description
2123 $newsection = $section_return;
2126 if (($contents ne "") && ($contents ne "\n")) {
2127 if (!$in_doc_sect && $Wcontents_before_sections) {
2128 emit_warning("${file}:$.", "contents before sections\n");
2130 dump_section($file, $section, $contents);
2131 $section = $section_default;
2135 $state = STATE_BODY;
2136 $contents = $newcontents;
2137 $new_start_line = $.;
2138 while (substr($contents, 0, 1) eq " ") {
2139 $contents = substr($contents, 1);
2141 if ($contents ne "") {
2144 $section = $newsection;
2145 $leading_space = undef;
2146 } elsif (/$doc_end/) {
2147 if (($contents ne "") && ($contents ne "\n")) {
2148 dump_section($file, $section, $contents);
2149 $section = $section_default;
2152 # look for doc_com + <text> + doc_end:
2153 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2154 emit_warning("${file}:$.", "suspicious ending line: $_");
2158 $state = STATE_PROTO;
2160 $new_start_line = $. + 1;
2161 } elsif (/$doc_content/) {
2163 if ($section eq $section_context) {
2164 dump_section($file, $section, $contents);
2165 $section = $section_default;
2167 $new_start_line = $.;
2168 $state = STATE_BODY;
2170 if ($section ne $section_default) {
2171 $state = STATE_BODY_WITH_BLANK_LINE;
2173 $state = STATE_BODY;
2177 } elsif ($state == STATE_BODY_MAYBE) {
2178 # Continued declaration purpose
2179 chomp($declaration_purpose);
2180 $declaration_purpose .= " " . $1;
2181 $declaration_purpose =~ s/\s+/ /g;
2184 if ($section =~ m/^@/ || $section eq $section_context) {
2185 if (!defined $leading_space) {
2186 if ($cont =~ m/^(\s+)/) {
2187 $leading_space = $1;
2189 $leading_space = "";
2192 $cont =~ s/^$leading_space//;
2194 $contents .= $cont . "\n";
2197 # i dont know - bad line? ignore.
2198 emit_warning("${file}:$.", "bad line: $_");
2204 # STATE_PROTO: reading a function/whatever prototype.
2206 sub process_proto($$) {
2209 if (/$doc_inline_oneline/) {
2212 if ($contents ne "") {
2214 dump_section($file, $section, $contents);
2215 $section = $section_default;
2218 } elsif (/$doc_inline_start/) {
2219 $state = STATE_INLINE;
2220 $inline_doc_state = STATE_INLINE_NAME;
2221 } elsif ($decl_type eq 'function') {
2222 process_proto_function($_, $file);
2224 process_proto_type($_, $file);
2229 # STATE_DOCBLOCK: within a DOC: block.
2231 sub process_docblock($$) {
2235 dump_doc_section($file, $section, $contents);
2236 $section = $section_default;
2239 %parameterdescs = ();
2240 %parametertypes = ();
2241 @parameterlist = ();
2245 $state = STATE_NORMAL;
2246 } elsif (/$doc_content/) {
2248 $contents .= $blankline;
2250 $contents .= $1 . "\n";
2256 # STATE_INLINE: docbook comments within a prototype.
2258 sub process_inline($$) {
2261 # First line (state 1) needs to be a @parameter
2262 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
2265 $new_start_line = $.;
2266 if ($contents ne "") {
2267 while (substr($contents, 0, 1) eq " ") {
2268 $contents = substr($contents, 1);
2272 $inline_doc_state = STATE_INLINE_TEXT;
2273 # Documentation block end */
2274 } elsif (/$doc_inline_end/) {
2275 if (($contents ne "") && ($contents ne "\n")) {
2276 dump_section($file, $section, $contents);
2277 $section = $section_default;
2280 $state = STATE_PROTO;
2281 $inline_doc_state = STATE_INLINE_NA;
2283 } elsif (/$doc_content/) {
2284 if ($inline_doc_state == STATE_INLINE_TEXT) {
2285 $contents .= $1 . "\n";
2286 # nuke leading blank lines
2287 if ($contents =~ /^\s*$/) {
2290 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2291 $inline_doc_state = STATE_INLINE_ERROR;
2292 emit_warning("${file}:$.", "Incorrect use of kernel-doc format: $_");
2298 sub process_file($) {
2300 my $initial_section_counter = $section_counter;
2301 my ($orig_file) = @_;
2303 $file = map_filename($orig_file);
2305 if (!open(IN_FILE,"<$file")) {
2306 print STDERR "Error: Cannot open file $file\n";
2313 $section_counter = 0;
2315 while (s/\\\s*$//) {
2318 # Replace tabs by spaces
2319 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
2320 # Hand this line to the appropriate state handler
2321 if ($state == STATE_NORMAL) {
2323 } elsif ($state == STATE_NAME) {
2324 process_name($file, $_);
2325 } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
2326 $state == STATE_BODY_WITH_BLANK_LINE) {
2327 process_body($file, $_);
2328 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
2329 process_inline($file, $_);
2330 } elsif ($state == STATE_PROTO) {
2331 process_proto($file, $_);
2332 } elsif ($state == STATE_DOCBLOCK) {
2333 process_docblock($file, $_);
2337 # Make sure we got something interesting.
2338 if ($initial_section_counter == $section_counter && $
2339 output_mode ne "none") {
2340 if ($output_selection == OUTPUT_INCLUDE) {
2341 emit_warning("${file}:1", "'$_' not found\n")
2342 for keys %function_table;
2345 emit_warning("${file}:1", "no structured comments found\n");
2352 if ($output_mode eq "rst") {
2353 get_sphinx_version() if (!$sphinx_major);
2356 $kernelversion = get_kernel_version();
2358 # generate a sequence of code that will splice in highlighting information
2359 # using the s// operator.
2360 for (my $k = 0; $k < @highlights; $k++) {
2361 my $pattern = $highlights[$k][0];
2362 my $result = $highlights[$k][1];
2363 # print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2364 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
2367 # Read the file that maps relative names to absolute names for
2368 # separate source and object directories and for shadow trees.
2369 if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2370 my ($relname, $absname);
2371 while(<SOURCE_MAP>) {
2373 ($relname, $absname) = (split())[0..1];
2374 $relname =~ s:^/+::;
2375 $source_map{$relname} = $absname;
2380 if ($output_selection == OUTPUT_EXPORTED ||
2381 $output_selection == OUTPUT_INTERNAL) {
2383 push(@export_file_list, @ARGV);
2385 foreach (@export_file_list) {
2387 process_export_file($_);
2395 if ($verbose && $errors) {
2396 print STDERR "$errors errors\n";
2398 if ($verbose && $warnings) {
2399 print STDERR "$warnings warnings\n";
2402 if ($Werror && $warnings) {
2403 print STDERR "$warnings warnings as Errors\n";
2406 exit($output_mode eq "none" ? 0 : $errors)
2413 =head2 Output format selection (mutually exclusive):
2419 Output troff manual page format.
2423 Output reStructuredText format. This is the default.
2427 Do not output documentation, only warnings.
2431 =head2 Output format modifiers
2433 =head3 reStructuredText only
2437 =item -sphinx-version VERSION
2439 Use the ReST C domain dialect compatible with a specific Sphinx Version.
2441 If not specified, kernel-doc will auto-detect using the sphinx-build version
2446 =head2 Output selection (mutually exclusive):
2452 Only output documentation for the symbols that have been exported using
2453 EXPORT_SYMBOL() and related macros in any input FILE or -export-file FILE.
2457 Only output documentation for the symbols that have NOT been exported using
2458 EXPORT_SYMBOL() and related macros in any input FILE or -export-file FILE.
2460 =item -function NAME
2462 Only output documentation for the given function or DOC: section title.
2463 All other functions and DOC: sections are ignored.
2465 May be specified multiple times.
2467 =item -nosymbol NAME
2469 Exclude the specified symbol from the output documentation.
2471 May be specified multiple times.
2475 =head2 Output selection modifiers:
2479 =item -no-doc-sections
2481 Do not output DOC: sections.
2483 =item -export-file FILE
2485 Specify an additional FILE in which to look for EXPORT_SYMBOL information.
2487 To be used with -export or -internal.
2489 May be specified multiple times.
2493 =head3 reStructuredText only
2497 =item -enable-lineno
2499 Enable output of .. LINENO lines.
2503 =head2 Other parameters:
2513 Verbose output, more warnings and other information.
2517 Treat warnings as errors.