1cb77f0d6SKamil Rytarowski#!/usr/bin/env perl 238476378SJonathan Corbet# SPDX-License-Identifier: GPL-2.0 31da177e4SLinus Torvalds 4cb77f0d6SKamil Rytarowskiuse warnings; 51da177e4SLinus Torvaldsuse strict; 61da177e4SLinus Torvalds 71da177e4SLinus Torvalds## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 81da177e4SLinus Torvalds## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## 91da177e4SLinus Torvalds## Copyright (C) 2001 Simon Huggins ## 1070c95b00SRandy Dunlap## Copyright (C) 2005-2012 Randy Dunlap ## 111b40c194SDan Luedtke## Copyright (C) 2012 Dan Luedtke ## 121da177e4SLinus Torvalds## ## 131da177e4SLinus Torvalds## #define enhancements by Armin Kuster <akuster@mvista.com> ## 141da177e4SLinus Torvalds## Copyright (c) 2000 MontaVista Software, Inc. ## 151da177e4SLinus Torvalds## ## 161da177e4SLinus Torvalds## This software falls under the GNU General Public License. ## 171da177e4SLinus Torvalds## Please read the COPYING file for more information ## 181da177e4SLinus Torvalds 191da177e4SLinus Torvalds# 18/01/2001 - Cleanups 201da177e4SLinus Torvalds# Functions prototyped as foo(void) same as foo() 211da177e4SLinus Torvalds# Stop eval'ing where we don't need to. 221da177e4SLinus Torvalds# -- huggie@earth.li 231da177e4SLinus Torvalds 241da177e4SLinus Torvalds# 27/06/2001 - Allowed whitespace after initial "/**" and 251da177e4SLinus Torvalds# allowed comments before function declarations. 261da177e4SLinus Torvalds# -- Christian Kreibich <ck@whoop.org> 271da177e4SLinus Torvalds 281da177e4SLinus Torvalds# Still to do: 291da177e4SLinus Torvalds# - add perldoc documentation 301da177e4SLinus Torvalds# - Look more closely at some of the scarier bits :) 311da177e4SLinus Torvalds 321da177e4SLinus Torvalds# 26/05/2001 - Support for separate source and object trees. 331da177e4SLinus Torvalds# Return error code. 341da177e4SLinus Torvalds# Keith Owens <kaos@ocs.com.au> 351da177e4SLinus Torvalds 361da177e4SLinus Torvalds# 23/09/2001 - Added support for typedefs, structs, enums and unions 371da177e4SLinus Torvalds# Support for Context section; can be terminated using empty line 381da177e4SLinus Torvalds# Small fixes (like spaces vs. \s in regex) 391da177e4SLinus Torvalds# -- Tim Jansen <tim@tjansen.de> 401da177e4SLinus Torvalds 411b40c194SDan Luedtke# 25/07/2012 - Added support for HTML5 421b40c194SDan Luedtke# -- Dan Luedtke <mail@danrl.de> 431da177e4SLinus Torvalds 44fadc0b31SJani Nikulasub usage { 45fadc0b31SJani Nikula my $message = <<"EOF"; 46fadc0b31SJani NikulaUsage: $0 [OPTION ...] FILE ... 471da177e4SLinus Torvalds 48fadc0b31SJani NikulaRead C language source or header FILEs, extract embedded documentation comments, 49fadc0b31SJani Nikulaand print formatted documentation to standard output. 501da177e4SLinus Torvalds 51fadc0b31SJani NikulaThe documentation comments are identified by "/**" opening comment mark. See 52857af3b7SMauro Carvalho ChehabDocumentation/doc-guide/kernel-doc.rst for the documentation comment syntax. 53fadc0b31SJani Nikula 54fadc0b31SJani NikulaOutput format selection (mutually exclusive): 55fadc0b31SJani Nikula -man Output troff manual page format. This is the default. 56c0d1b6eeSJonathan Corbet -rst Output reStructuredText format. 573a025e1dSMatthew Wilcox -none Do not output documentation, only warnings. 58fadc0b31SJani Nikula 5993351d41SMauro Carvalho ChehabOutput format selection modifier (affects only ReST output): 6093351d41SMauro Carvalho Chehab 6193351d41SMauro Carvalho Chehab -sphinx-version Use the ReST C domain dialect compatible with an 6293351d41SMauro Carvalho Chehab specific Sphinx Version. 6393351d41SMauro Carvalho Chehab If not specified, kernel-doc will auto-detect using 6493351d41SMauro Carvalho Chehab the sphinx-build version found on PATH. 6593351d41SMauro Carvalho Chehab 66fadc0b31SJani NikulaOutput selection (mutually exclusive): 6786ae2e38SJani Nikula -export Only output documentation for symbols that have been 6886ae2e38SJani Nikula exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() 69c9b2cfb3SJani Nikula in any input FILE or -export-file FILE. 7086ae2e38SJani Nikula -internal Only output documentation for symbols that have NOT been 7186ae2e38SJani Nikula exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() 72c9b2cfb3SJani Nikula in any input FILE or -export-file FILE. 73fadc0b31SJani Nikula -function NAME Only output documentation for the given function(s) 74fadc0b31SJani Nikula or DOC: section title(s). All other functions and DOC: 75fadc0b31SJani Nikula sections are ignored. May be specified multiple times. 76eab795ddSMauro Carvalho Chehab -nosymbol NAME Exclude the specified symbols from the output 77eab795ddSMauro Carvalho Chehab documentation. May be specified multiple times. 78fadc0b31SJani Nikula 79fadc0b31SJani NikulaOutput selection modifiers: 80fadc0b31SJani Nikula -no-doc-sections Do not output DOC: sections. 810b0f5f29SDaniel Vetter -enable-lineno Enable output of #define LINENO lines. Only works with 820b0f5f29SDaniel Vetter reStructuredText format. 8388c2b57dSJani Nikula -export-file FILE Specify an additional FILE in which to look for 8488c2b57dSJani Nikula EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with 8588c2b57dSJani Nikula -export or -internal. May be specified multiple times. 86fadc0b31SJani Nikula 87fadc0b31SJani NikulaOther parameters: 88fadc0b31SJani Nikula -v Verbose output, more warnings and other information. 89fadc0b31SJani Nikula -h Print this help. 902c12c810SPierre-Louis Bossart -Werror Treat warnings as errors. 91fadc0b31SJani Nikula 92fadc0b31SJani NikulaEOF 93fadc0b31SJani Nikula print $message; 94fadc0b31SJani Nikula exit 1; 95fadc0b31SJani Nikula} 961da177e4SLinus Torvalds 971da177e4SLinus Torvalds# 981da177e4SLinus Torvalds# format of comments. 991da177e4SLinus Torvalds# In the following table, (...)? signifies optional structure. 1001da177e4SLinus Torvalds# (...)* signifies 0 or more structure elements 1011da177e4SLinus Torvalds# /** 1021da177e4SLinus Torvalds# * function_name(:)? (- short description)? 1031da177e4SLinus Torvalds# (* @parameterx: (description of parameter x)?)* 1041da177e4SLinus Torvalds# (* a blank line)? 1051da177e4SLinus Torvalds# * (Description:)? (Description of function)? 1061da177e4SLinus Torvalds# * (section header: (section description)? )* 1071da177e4SLinus Torvalds# (*)?*/ 1081da177e4SLinus Torvalds# 1091da177e4SLinus Torvalds# So .. the trivial example would be: 1101da177e4SLinus Torvalds# 1111da177e4SLinus Torvalds# /** 1121da177e4SLinus Torvalds# * my_function 113b9d97328SRandy Dunlap# */ 1141da177e4SLinus Torvalds# 115891dcd2fSRandy Dunlap# If the Description: header tag is omitted, then there must be a blank line 1161da177e4SLinus Torvalds# after the last parameter specification. 1171da177e4SLinus Torvalds# e.g. 1181da177e4SLinus Torvalds# /** 1191da177e4SLinus Torvalds# * my_function - does my stuff 1201da177e4SLinus Torvalds# * @my_arg: its mine damnit 1211da177e4SLinus Torvalds# * 1221da177e4SLinus Torvalds# * Does my stuff explained. 1231da177e4SLinus Torvalds# */ 1241da177e4SLinus Torvalds# 1251da177e4SLinus Torvalds# or, could also use: 1261da177e4SLinus Torvalds# /** 1271da177e4SLinus Torvalds# * my_function - does my stuff 1281da177e4SLinus Torvalds# * @my_arg: its mine damnit 1291da177e4SLinus Torvalds# * Description: Does my stuff explained. 1301da177e4SLinus Torvalds# */ 1311da177e4SLinus Torvalds# etc. 1321da177e4SLinus Torvalds# 133b9d97328SRandy Dunlap# Besides functions you can also write documentation for structs, unions, 1341da177e4SLinus Torvalds# enums and typedefs. Instead of the function name you must write the name 1351da177e4SLinus Torvalds# of the declaration; the struct/union/enum/typedef must always precede 1361da177e4SLinus Torvalds# the name. Nesting of declarations is not supported. 1371da177e4SLinus Torvalds# Use the argument mechanism to document members or constants. 1381da177e4SLinus Torvalds# e.g. 1391da177e4SLinus Torvalds# /** 1401da177e4SLinus Torvalds# * struct my_struct - short description 1411da177e4SLinus Torvalds# * @a: first member 1421da177e4SLinus Torvalds# * @b: second member 1431da177e4SLinus Torvalds# * 1441da177e4SLinus Torvalds# * Longer description 1451da177e4SLinus Torvalds# */ 1461da177e4SLinus Torvalds# struct my_struct { 1471da177e4SLinus Torvalds# int a; 1481da177e4SLinus Torvalds# int b; 149aeec46b9SMartin Waitz# /* private: */ 150aeec46b9SMartin Waitz# int c; 1511da177e4SLinus Torvalds# }; 1521da177e4SLinus Torvalds# 1531da177e4SLinus Torvalds# All descriptions can be multiline, except the short function description. 1541da177e4SLinus Torvalds# 155a4c6ebedSDanilo Cesar Lemes de Paula# For really longs structs, you can also describe arguments inside the 156a4c6ebedSDanilo Cesar Lemes de Paula# body of the struct. 157a4c6ebedSDanilo Cesar Lemes de Paula# eg. 158a4c6ebedSDanilo Cesar Lemes de Paula# /** 159a4c6ebedSDanilo Cesar Lemes de Paula# * struct my_struct - short description 160a4c6ebedSDanilo Cesar Lemes de Paula# * @a: first member 161a4c6ebedSDanilo Cesar Lemes de Paula# * @b: second member 162a4c6ebedSDanilo Cesar Lemes de Paula# * 163a4c6ebedSDanilo Cesar Lemes de Paula# * Longer description 164a4c6ebedSDanilo Cesar Lemes de Paula# */ 165a4c6ebedSDanilo Cesar Lemes de Paula# struct my_struct { 166a4c6ebedSDanilo Cesar Lemes de Paula# int a; 167a4c6ebedSDanilo Cesar Lemes de Paula# int b; 168a4c6ebedSDanilo Cesar Lemes de Paula# /** 169a4c6ebedSDanilo Cesar Lemes de Paula# * @c: This is longer description of C 170a4c6ebedSDanilo Cesar Lemes de Paula# * 171a4c6ebedSDanilo Cesar Lemes de Paula# * You can use paragraphs to describe arguments 172a4c6ebedSDanilo Cesar Lemes de Paula# * using this method. 173a4c6ebedSDanilo Cesar Lemes de Paula# */ 174a4c6ebedSDanilo Cesar Lemes de Paula# int c; 175a4c6ebedSDanilo Cesar Lemes de Paula# }; 176a4c6ebedSDanilo Cesar Lemes de Paula# 177a4c6ebedSDanilo Cesar Lemes de Paula# This should be use only for struct/enum members. 178a4c6ebedSDanilo Cesar Lemes de Paula# 1791da177e4SLinus Torvalds# You can also add additional sections. When documenting kernel functions you 1801da177e4SLinus Torvalds# should document the "Context:" of the function, e.g. whether the functions 1811da177e4SLinus Torvalds# can be called form interrupts. Unlike other sections you can end it with an 1821da177e4SLinus Torvalds# empty line. 1834092bac7SYacine Belkadi# A non-void function should have a "Return:" section describing the return 1844092bac7SYacine Belkadi# value(s). 1851da177e4SLinus Torvalds# Example-sections should contain the string EXAMPLE so that they are marked 1861da177e4SLinus Torvalds# appropriately in DocBook. 1871da177e4SLinus Torvalds# 1881da177e4SLinus Torvalds# Example: 1891da177e4SLinus Torvalds# /** 1901da177e4SLinus Torvalds# * user_function - function that can only be called in user context 1911da177e4SLinus Torvalds# * @a: some argument 1921da177e4SLinus Torvalds# * Context: !in_interrupt() 1931da177e4SLinus Torvalds# * 1941da177e4SLinus Torvalds# * Some description 1951da177e4SLinus Torvalds# * Example: 1961da177e4SLinus Torvalds# * user_function(22); 1971da177e4SLinus Torvalds# */ 1981da177e4SLinus Torvalds# ... 1991da177e4SLinus Torvalds# 2001da177e4SLinus Torvalds# 2011da177e4SLinus Torvalds# All descriptive text is further processed, scanning for the following special 2021da177e4SLinus Torvalds# patterns, which are highlighted appropriately. 2031da177e4SLinus Torvalds# 2041da177e4SLinus Torvalds# 'funcname()' - function 2051da177e4SLinus Torvalds# '$ENVVAR' - environmental variable 2061da177e4SLinus Torvalds# '&struct_name' - name of a structure (up to two words including 'struct') 2075267dd35SPaolo Bonzini# '&struct_name.member' - name of a structure member 2081da177e4SLinus Torvalds# '@parameter' - name of a parameter 2091da177e4SLinus Torvalds# '%CONST' - name of a constant. 210b97f193aSMauro Carvalho Chehab# '``LITERAL``' - literal string without any spaces on it. 2111da177e4SLinus Torvalds 2128484baaaSRandy Dunlap## init lots of data 2138484baaaSRandy Dunlap 2141da177e4SLinus Torvaldsmy $errors = 0; 2151da177e4SLinus Torvaldsmy $warnings = 0; 2165f8c7c98SRandy Dunlapmy $anon_struct_union = 0; 2171da177e4SLinus Torvalds 2181da177e4SLinus Torvalds# match expressions used to find embedded type information 219b97f193aSMauro Carvalho Chehabmy $type_constant = '\b``([^\`]+)``\b'; 220b97f193aSMauro Carvalho Chehabmy $type_constant2 = '\%([-_\w]+)'; 2211da177e4SLinus Torvaldsmy $type_func = '(\w+)\(\)'; 222bfd228c7SMike Rapoportmy $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; 223ee2aa759SMauro Carvalho Chehabmy $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; 2245219f18aSJonathan Corbetmy $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params 225346282dbSMauro Carvalho Chehabmy $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params 2261da177e4SLinus Torvaldsmy $type_env = '(\$\w+)'; 227df31175bSPaolo Bonzinimy $type_enum = '\&(enum\s*([_\w]+))'; 228df31175bSPaolo Bonzinimy $type_struct = '\&(struct\s*([_\w]+))'; 229df31175bSPaolo Bonzinimy $type_typedef = '\&(typedef\s*([_\w]+))'; 230df31175bSPaolo Bonzinimy $type_union = '\&(union\s*([_\w]+))'; 2315267dd35SPaolo Bonzinimy $type_member = '\&([_\w]+)(\.|->)([_\w]+)'; 232df31175bSPaolo Bonzinimy $type_fallback = '\&([_\w]+)'; 233f3341dcfSJani Nikulamy $type_member_func = $type_member . '\(\)'; 2341da177e4SLinus Torvalds 2351da177e4SLinus Torvalds# Output conversion substitutions. 2361da177e4SLinus Torvalds# One for each output format 2371da177e4SLinus Torvalds 2381da177e4SLinus Torvalds# these are pretty rough 2394d732701SDanilo Cesar Lemes de Paulamy @highlights_man = ( 2404d732701SDanilo Cesar Lemes de Paula [$type_constant, "\$1"], 241b97f193aSMauro Carvalho Chehab [$type_constant2, "\$1"], 2424d732701SDanilo Cesar Lemes de Paula [$type_func, "\\\\fB\$1\\\\fP"], 243df31175bSPaolo Bonzini [$type_enum, "\\\\fI\$1\\\\fP"], 2444d732701SDanilo Cesar Lemes de Paula [$type_struct, "\\\\fI\$1\\\\fP"], 245df31175bSPaolo Bonzini [$type_typedef, "\\\\fI\$1\\\\fP"], 246df31175bSPaolo Bonzini [$type_union, "\\\\fI\$1\\\\fP"], 2475267dd35SPaolo Bonzini [$type_param, "\\\\fI\$1\\\\fP"], 248ee2aa759SMauro Carvalho Chehab [$type_param_ref, "\\\\fI\$1\$2\\\\fP"], 249df31175bSPaolo Bonzini [$type_member, "\\\\fI\$1\$2\$3\\\\fP"], 250df31175bSPaolo Bonzini [$type_fallback, "\\\\fI\$1\\\\fP"] 2514d732701SDanilo Cesar Lemes de Paula ); 2521da177e4SLinus Torvaldsmy $blankline_man = ""; 2531da177e4SLinus Torvalds 254c0d1b6eeSJonathan Corbet# rst-mode 255c0d1b6eeSJonathan Corbetmy @highlights_rst = ( 256c0d1b6eeSJonathan Corbet [$type_constant, "``\$1``"], 257b97f193aSMauro Carvalho Chehab [$type_constant2, "``\$1``"], 258f3341dcfSJani Nikula # Note: need to escape () to avoid func matching later 2595267dd35SPaolo Bonzini [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"], 2605267dd35SPaolo Bonzini [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"], 2615219f18aSJonathan Corbet [$type_fp_param, "**\$1\\\\(\\\\)**"], 262346282dbSMauro Carvalho Chehab [$type_fp_param2, "**\$1\\\\(\\\\)**"], 263344fdb28SJonathan Corbet [$type_func, "\$1()"], 264df31175bSPaolo Bonzini [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"], 265df31175bSPaolo Bonzini [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"], 266df31175bSPaolo Bonzini [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"], 267df31175bSPaolo Bonzini [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"], 268a7291e7eSJani Nikula # in rst this can refer to any type 269df31175bSPaolo Bonzini [$type_fallback, "\\:c\\:type\\:`\$1`"], 270ee2aa759SMauro Carvalho Chehab [$type_param_ref, "**\$1\$2**"] 271c0d1b6eeSJonathan Corbet ); 272c0d1b6eeSJonathan Corbetmy $blankline_rst = "\n"; 273c0d1b6eeSJonathan Corbet 2741da177e4SLinus Torvalds# read arguments 2751da177e4SLinus Torvaldsif ($#ARGV == -1) { 2761da177e4SLinus Torvalds usage(); 2771da177e4SLinus Torvalds} 2781da177e4SLinus Torvalds 2798484baaaSRandy Dunlapmy $kernelversion; 28093351d41SMauro Carvalho Chehabmy ($sphinx_major, $sphinx_minor, $sphinx_patch); 281efa44475SMauro Carvalho Chehab 2828484baaaSRandy Dunlapmy $dohighlight = ""; 2838484baaaSRandy Dunlap 2841da177e4SLinus Torvaldsmy $verbose = 0; 2852c12c810SPierre-Louis Bossartmy $Werror = 0; 286bdfe2be3SMauro Carvalho Chehabmy $output_mode = "rst"; 287e314ba31SDaniel Santosmy $output_preformatted = 0; 2884b44595aSJohannes Bergmy $no_doc_sections = 0; 2890b0f5f29SDaniel Vettermy $enable_lineno = 0; 290bdfe2be3SMauro Carvalho Chehabmy @highlights = @highlights_rst; 291bdfe2be3SMauro Carvalho Chehabmy $blankline = $blankline_rst; 2921da177e4SLinus Torvaldsmy $modulename = "Kernel API"; 293b6c3f456SJani Nikula 294b6c3f456SJani Nikulause constant { 295b6c3f456SJani Nikula OUTPUT_ALL => 0, # output all symbols and doc sections 296b6c3f456SJani Nikula OUTPUT_INCLUDE => 1, # output only specified symbols 297eab795ddSMauro Carvalho Chehab OUTPUT_EXPORTED => 2, # output exported symbols 298eab795ddSMauro Carvalho Chehab OUTPUT_INTERNAL => 3, # output non-exported symbols 299b6c3f456SJani Nikula}; 300b6c3f456SJani Nikulamy $output_selection = OUTPUT_ALL; 301b0d60bfbSJonathan Corbetmy $show_not_found = 0; # No longer used 302b2c4105bSBen Hutchings 30388c2b57dSJani Nikulamy @export_file_list; 30488c2b57dSJani Nikula 305b2c4105bSBen Hutchingsmy @build_time; 306b2c4105bSBen Hutchingsif (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) && 307b2c4105bSBen Hutchings (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') { 308b2c4105bSBen Hutchings @build_time = gmtime($seconds); 309b2c4105bSBen Hutchings} else { 310b2c4105bSBen Hutchings @build_time = localtime; 311b2c4105bSBen Hutchings} 312b2c4105bSBen Hutchings 3131da177e4SLinus Torvaldsmy $man_date = ('January', 'February', 'March', 'April', 'May', 'June', 3141da177e4SLinus Torvalds 'July', 'August', 'September', 'October', 315b2c4105bSBen Hutchings 'November', 'December')[$build_time[4]] . 316b2c4105bSBen Hutchings " " . ($build_time[5]+1900); 3171da177e4SLinus Torvalds 3188484baaaSRandy Dunlap# Essentially these are globals. 319b9d97328SRandy Dunlap# They probably want to be tidied up, made more localised or something. 320b9d97328SRandy Dunlap# CAVEAT EMPTOR! Some of the others I localised may not want to be, which 3211da177e4SLinus Torvalds# could cause "use of undefined value" or other bugs. 3221da177e4SLinus Torvaldsmy ($function, %function_table, %parametertypes, $declaration_purpose); 323eab795ddSMauro Carvalho Chehabmy %nosymbol_table = (); 3240b0f5f29SDaniel Vettermy $declaration_start_line; 3251da177e4SLinus Torvaldsmy ($type, $declaration_name, $return_type); 3261c32fd0cSIlya Dryomovmy ($newsection, $newcontents, $prototype, $brcount, %source_map); 3271da177e4SLinus Torvalds 328bd0e88e5SRandy Dunlapif (defined($ENV{'KBUILD_VERBOSE'})) { 329bd0e88e5SRandy Dunlap $verbose = "$ENV{'KBUILD_VERBOSE'}"; 330bd0e88e5SRandy Dunlap} 331bd0e88e5SRandy Dunlap 3322c12c810SPierre-Louis Bossartif (defined($ENV{'KDOC_WERROR'})) { 3332c12c810SPierre-Louis Bossart $Werror = "$ENV{'KDOC_WERROR'}"; 3342c12c810SPierre-Louis Bossart} 3352c12c810SPierre-Louis Bossart 3362c12c810SPierre-Louis Bossartif (defined($ENV{'KCFLAGS'})) { 3372c12c810SPierre-Louis Bossart my $kcflags = "$ENV{'KCFLAGS'}"; 3382c12c810SPierre-Louis Bossart 3392c12c810SPierre-Louis Bossart if ($kcflags =~ /Werror/) { 3402c12c810SPierre-Louis Bossart $Werror = 1; 3412c12c810SPierre-Louis Bossart } 3422c12c810SPierre-Louis Bossart} 3432c12c810SPierre-Louis Bossart 3441da177e4SLinus Torvalds# Generated docbook code is inserted in a template at a point where 3451da177e4SLinus Torvalds# docbook v3.1 requires a non-zero sequence of RefEntry's; see: 34693431e06SAlexander A. Klimov# https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html 3471da177e4SLinus Torvalds# We keep track of number of generated entries and generate a dummy 3481da177e4SLinus Torvalds# if needs be to ensure the expanded template can be postprocessed 3491da177e4SLinus Torvalds# into html. 3501da177e4SLinus Torvaldsmy $section_counter = 0; 3511da177e4SLinus Torvalds 3521da177e4SLinus Torvaldsmy $lineprefix=""; 3531da177e4SLinus Torvalds 35448af606aSJani Nikula# Parser states 35548af606aSJani Nikulause constant { 35648af606aSJani Nikula STATE_NORMAL => 0, # normal code 35748af606aSJani Nikula STATE_NAME => 1, # looking for function name 35817b78717SJonathan Corbet STATE_BODY_MAYBE => 2, # body - or maybe more description 35917b78717SJonathan Corbet STATE_BODY => 3, # the body of the comment 3600d55d48bSMauro Carvalho Chehab STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line 3610d55d48bSMauro Carvalho Chehab STATE_PROTO => 5, # scanning prototype 3620d55d48bSMauro Carvalho Chehab STATE_DOCBLOCK => 6, # documentation block 3630d55d48bSMauro Carvalho Chehab STATE_INLINE => 7, # gathering doc outside main block 36448af606aSJani Nikula}; 3651da177e4SLinus Torvaldsmy $state; 366850622dfSRandy Dunlapmy $in_doc_sect; 367d742f24dSJonathan Corbetmy $leading_space; 3681da177e4SLinus Torvalds 36948af606aSJani Nikula# Inline documentation state 37048af606aSJani Nikulause constant { 37148af606aSJani Nikula STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE) 37248af606aSJani Nikula STATE_INLINE_NAME => 1, # looking for member name (@foo:) 37348af606aSJani Nikula STATE_INLINE_TEXT => 2, # looking for member documentation 37448af606aSJani Nikula STATE_INLINE_END => 3, # done 37548af606aSJani Nikula STATE_INLINE_ERROR => 4, # error - Comment without header was found. 37648af606aSJani Nikula # Spit a warning as it's not 377a4c6ebedSDanilo Cesar Lemes de Paula # proper kernel-doc and ignore the rest. 37848af606aSJani Nikula}; 37948af606aSJani Nikulamy $inline_doc_state; 380a4c6ebedSDanilo Cesar Lemes de Paula 3811da177e4SLinus Torvalds#declaration types: can be 3821da177e4SLinus Torvalds# 'function', 'struct', 'union', 'enum', 'typedef' 3831da177e4SLinus Torvaldsmy $decl_type; 3841da177e4SLinus Torvalds 38552042e2dSMauro Carvalho Chehab# Name of the kernel-doc identifier for non-DOC markups 38652042e2dSMauro Carvalho Chehabmy $identifier; 38752042e2dSMauro Carvalho Chehab 3881da177e4SLinus Torvaldsmy $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start. 3891da177e4SLinus Torvaldsmy $doc_end = '\*/'; 3901da177e4SLinus Torvaldsmy $doc_com = '\s*\*\s*'; 39112ae6779SDaniel Santosmy $doc_com_body = '\s*\* ?'; 3921da177e4SLinus Torvaldsmy $doc_decl = $doc_com . '(\w+)'; 393f624adefSJani Nikula# @params and a strictly limited set of supported section names 394212209cfSJonathan Corbet# Specifically: 395212209cfSJonathan Corbet# Match @word: 396212209cfSJonathan Corbet# @...: 397212209cfSJonathan Corbet# @{section-name}: 398212209cfSJonathan Corbet# while trying to not match literal block starts like "example::" 399212209cfSJonathan Corbet# 4008569de68SJonathan Corbetmy $doc_sect = $doc_com . 401212209cfSJonathan Corbet '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:([^:].*)?$'; 40212ae6779SDaniel Santosmy $doc_content = $doc_com_body . '(.*)'; 4031da177e4SLinus Torvaldsmy $doc_block = $doc_com . 'DOC:\s*(.*)?'; 40448af606aSJani Nikulamy $doc_inline_start = '^\s*/\*\*\s*$'; 405fe7bc493SMauro Carvalho Chehabmy $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)'; 40648af606aSJani Nikulamy $doc_inline_end = '^\s*\*/\s*$'; 4070c9aa209SJani Nikulamy $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$'; 40886ae2e38SJani Nikulamy $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;'; 4091da177e4SLinus Torvalds 4101da177e4SLinus Torvaldsmy %parameterdescs; 4110b0f5f29SDaniel Vettermy %parameterdesc_start_lines; 4121da177e4SLinus Torvaldsmy @parameterlist; 4131da177e4SLinus Torvaldsmy %sections; 4141da177e4SLinus Torvaldsmy @sectionlist; 4150b0f5f29SDaniel Vettermy %section_start_lines; 416a1d94aa5SRandy Dunlapmy $sectcheck; 417a1d94aa5SRandy Dunlapmy $struct_actual; 4181da177e4SLinus Torvalds 4191da177e4SLinus Torvaldsmy $contents = ""; 4200b0f5f29SDaniel Vettermy $new_start_line = 0; 421f624adefSJani Nikula 422f624adefSJani Nikula# the canonical section names. see also $doc_sect above. 4231da177e4SLinus Torvaldsmy $section_default = "Description"; # default section 4241da177e4SLinus Torvaldsmy $section_intro = "Introduction"; 4251da177e4SLinus Torvaldsmy $section = $section_default; 4261da177e4SLinus Torvaldsmy $section_context = "Context"; 4274092bac7SYacine Belkadimy $section_return = "Return"; 4281da177e4SLinus Torvalds 4291da177e4SLinus Torvaldsmy $undescribed = "-- undescribed --"; 4301da177e4SLinus Torvalds 4311da177e4SLinus Torvaldsreset_state(); 4321da177e4SLinus Torvalds 433b031ac4eSMauro Carvalho Chehabwhile ($ARGV[0] =~ m/^--?(.*)/) { 434b031ac4eSMauro Carvalho Chehab my $cmd = $1; 435b031ac4eSMauro Carvalho Chehab shift @ARGV; 436b031ac4eSMauro Carvalho Chehab if ($cmd eq "man") { 4371da177e4SLinus Torvalds $output_mode = "man"; 4384d732701SDanilo Cesar Lemes de Paula @highlights = @highlights_man; 4391da177e4SLinus Torvalds $blankline = $blankline_man; 440b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "rst") { 441c0d1b6eeSJonathan Corbet $output_mode = "rst"; 442c0d1b6eeSJonathan Corbet @highlights = @highlights_rst; 443c0d1b6eeSJonathan Corbet $blankline = $blankline_rst; 444b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "none") { 4453a025e1dSMatthew Wilcox $output_mode = "none"; 446b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document 4471da177e4SLinus Torvalds $modulename = shift @ARGV; 448b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "function") { # to only output specific functions 449b6c3f456SJani Nikula $output_selection = OUTPUT_INCLUDE; 4501da177e4SLinus Torvalds $function = shift @ARGV; 4511da177e4SLinus Torvalds $function_table{$function} = 1; 452eab795ddSMauro Carvalho Chehab } elsif ($cmd eq "nosymbol") { # Exclude specific symbols 453eab795ddSMauro Carvalho Chehab my $symbol = shift @ARGV; 454eab795ddSMauro Carvalho Chehab $nosymbol_table{$symbol} = 1; 455b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "export") { # only exported symbols 456b6c3f456SJani Nikula $output_selection = OUTPUT_EXPORTED; 457da9726ecSJani Nikula %function_table = (); 458b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "internal") { # only non-exported symbols 459b6c3f456SJani Nikula $output_selection = OUTPUT_INTERNAL; 460da9726ecSJani Nikula %function_table = (); 461b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "export-file") { 46288c2b57dSJani Nikula my $file = shift @ARGV; 46388c2b57dSJani Nikula push(@export_file_list, $file); 464b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq "v") { 4651da177e4SLinus Torvalds $verbose = 1; 4662c12c810SPierre-Louis Bossart } elsif ($cmd eq "Werror") { 4672c12c810SPierre-Louis Bossart $Werror = 1; 468b031ac4eSMauro Carvalho Chehab } elsif (($cmd eq "h") || ($cmd eq "help")) { 4691da177e4SLinus Torvalds usage(); 470b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq 'no-doc-sections') { 4714b44595aSJohannes Berg $no_doc_sections = 1; 472b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq 'enable-lineno') { 4730b0f5f29SDaniel Vetter $enable_lineno = 1; 474b031ac4eSMauro Carvalho Chehab } elsif ($cmd eq 'show-not-found') { 475b0d60bfbSJonathan Corbet $show_not_found = 1; # A no-op but don't fail 47693351d41SMauro Carvalho Chehab } elsif ($cmd eq "sphinx-version") { 47793351d41SMauro Carvalho Chehab my $ver_string = shift @ARGV; 47893351d41SMauro Carvalho Chehab if ($ver_string =~ m/^(\d+)(\.\d+)?(\.\d+)?/) { 47993351d41SMauro Carvalho Chehab $sphinx_major = $1; 48093351d41SMauro Carvalho Chehab if (defined($2)) { 48193351d41SMauro Carvalho Chehab $sphinx_minor = substr($2,1); 48293351d41SMauro Carvalho Chehab } else { 48393351d41SMauro Carvalho Chehab $sphinx_minor = 0; 48493351d41SMauro Carvalho Chehab } 48593351d41SMauro Carvalho Chehab if (defined($3)) { 48693351d41SMauro Carvalho Chehab $sphinx_patch = substr($3,1) 48793351d41SMauro Carvalho Chehab } else { 48893351d41SMauro Carvalho Chehab $sphinx_patch = 0; 48993351d41SMauro Carvalho Chehab } 49093351d41SMauro Carvalho Chehab } else { 49193351d41SMauro Carvalho Chehab die "Sphinx version should either major.minor or major.minor.patch format\n"; 49293351d41SMauro Carvalho Chehab } 493b031ac4eSMauro Carvalho Chehab } else { 494b031ac4eSMauro Carvalho Chehab # Unknown argument 495b031ac4eSMauro Carvalho Chehab usage(); 4961da177e4SLinus Torvalds } 4971da177e4SLinus Torvalds} 4981da177e4SLinus Torvalds 4998484baaaSRandy Dunlap# continue execution near EOF; 5008484baaaSRandy Dunlap 501efa44475SMauro Carvalho Chehab# The C domain dialect changed on Sphinx 3. So, we need to check the 502efa44475SMauro Carvalho Chehab# version in order to produce the right tags. 503efa44475SMauro Carvalho Chehabsub findprog($) 504efa44475SMauro Carvalho Chehab{ 505efa44475SMauro Carvalho Chehab foreach(split(/:/, $ENV{PATH})) { 506efa44475SMauro Carvalho Chehab return "$_/$_[0]" if(-x "$_/$_[0]"); 507efa44475SMauro Carvalho Chehab } 508efa44475SMauro Carvalho Chehab} 509efa44475SMauro Carvalho Chehab 510efa44475SMauro Carvalho Chehabsub get_sphinx_version() 511efa44475SMauro Carvalho Chehab{ 512efa44475SMauro Carvalho Chehab my $ver; 513efa44475SMauro Carvalho Chehab 514efa44475SMauro Carvalho Chehab my $cmd = "sphinx-build"; 515efa44475SMauro Carvalho Chehab if (!findprog($cmd)) { 516efa44475SMauro Carvalho Chehab my $cmd = "sphinx-build3"; 51793351d41SMauro Carvalho Chehab if (!findprog($cmd)) { 51893351d41SMauro Carvalho Chehab $sphinx_major = 1; 51993351d41SMauro Carvalho Chehab $sphinx_minor = 2; 52093351d41SMauro Carvalho Chehab $sphinx_patch = 0; 52193351d41SMauro Carvalho Chehab printf STDERR "Warning: Sphinx version not found. Using default (Sphinx version %d.%d.%d)\n", 52293351d41SMauro Carvalho Chehab $sphinx_major, $sphinx_minor, $sphinx_patch; 52393351d41SMauro Carvalho Chehab return; 52493351d41SMauro Carvalho Chehab } 525efa44475SMauro Carvalho Chehab } 526efa44475SMauro Carvalho Chehab 527efa44475SMauro Carvalho Chehab open IN, "$cmd --version 2>&1 |"; 528efa44475SMauro Carvalho Chehab while (<IN>) { 529efa44475SMauro Carvalho Chehab if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) { 53093351d41SMauro Carvalho Chehab $sphinx_major = $1; 53193351d41SMauro Carvalho Chehab $sphinx_minor = $2; 53293351d41SMauro Carvalho Chehab $sphinx_patch = $3; 533efa44475SMauro Carvalho Chehab last; 534efa44475SMauro Carvalho Chehab } 535efa44475SMauro Carvalho Chehab # Sphinx 1.2.x uses a different format 536efa44475SMauro Carvalho Chehab if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) { 53793351d41SMauro Carvalho Chehab $sphinx_major = $1; 53893351d41SMauro Carvalho Chehab $sphinx_minor = $2; 53993351d41SMauro Carvalho Chehab $sphinx_patch = $3; 540efa44475SMauro Carvalho Chehab last; 541efa44475SMauro Carvalho Chehab } 542efa44475SMauro Carvalho Chehab } 543efa44475SMauro Carvalho Chehab close IN; 544efa44475SMauro Carvalho Chehab} 545efa44475SMauro Carvalho Chehab 54653f049faSBorislav Petkov# get kernel version from env 54753f049faSBorislav Petkovsub get_kernel_version() { 5481b9bc22dSJohannes Berg my $version = 'unknown kernel version'; 54953f049faSBorislav Petkov 55053f049faSBorislav Petkov if (defined($ENV{'KERNELVERSION'})) { 55153f049faSBorislav Petkov $version = $ENV{'KERNELVERSION'}; 55253f049faSBorislav Petkov } 55353f049faSBorislav Petkov return $version; 55453f049faSBorislav Petkov} 5551da177e4SLinus Torvalds 5560b0f5f29SDaniel Vetter# 5570b0f5f29SDaniel Vettersub print_lineno { 5580b0f5f29SDaniel Vetter my $lineno = shift; 5590b0f5f29SDaniel Vetter if ($enable_lineno && defined($lineno)) { 5600b0f5f29SDaniel Vetter print "#define LINENO " . $lineno . "\n"; 5610b0f5f29SDaniel Vetter } 5620b0f5f29SDaniel Vetter} 5631da177e4SLinus Torvalds## 5641da177e4SLinus Torvalds# dumps section contents to arrays/hashes intended for that purpose. 5651da177e4SLinus Torvalds# 5661da177e4SLinus Torvaldssub dump_section { 56794dc7ad5SRandy Dunlap my $file = shift; 5681da177e4SLinus Torvalds my $name = shift; 5691da177e4SLinus Torvalds my $contents = join "\n", @_; 5701da177e4SLinus Torvalds 57113901ef2SJani Nikula if ($name =~ m/$type_param/) { 5721da177e4SLinus Torvalds $name = $1; 5731da177e4SLinus Torvalds $parameterdescs{$name} = $contents; 574a1d94aa5SRandy Dunlap $sectcheck = $sectcheck . $name . " "; 5750b0f5f29SDaniel Vetter $parameterdesc_start_lines{$name} = $new_start_line; 5760b0f5f29SDaniel Vetter $new_start_line = 0; 577ced69090SRandy Dunlap } elsif ($name eq "@\.\.\.") { 578ced69090SRandy Dunlap $name = "..."; 579ced69090SRandy Dunlap $parameterdescs{$name} = $contents; 580a1d94aa5SRandy Dunlap $sectcheck = $sectcheck . $name . " "; 5810b0f5f29SDaniel Vetter $parameterdesc_start_lines{$name} = $new_start_line; 5820b0f5f29SDaniel Vetter $new_start_line = 0; 5831da177e4SLinus Torvalds } else { 58494dc7ad5SRandy Dunlap if (defined($sections{$name}) && ($sections{$name} ne "")) { 58595b6be9dSJani Nikula # Only warn on user specified duplicate section names. 58695b6be9dSJani Nikula if ($name ne $section_default) { 58732217761SJani Nikula print STDERR "${file}:$.: warning: duplicate section name '$name'\n"; 58832217761SJani Nikula ++$warnings; 58995b6be9dSJani Nikula } 59032217761SJani Nikula $sections{$name} .= $contents; 59132217761SJani Nikula } else { 5921da177e4SLinus Torvalds $sections{$name} = $contents; 5931da177e4SLinus Torvalds push @sectionlist, $name; 5940b0f5f29SDaniel Vetter $section_start_lines{$name} = $new_start_line; 5950b0f5f29SDaniel Vetter $new_start_line = 0; 5961da177e4SLinus Torvalds } 5971da177e4SLinus Torvalds } 59832217761SJani Nikula} 5991da177e4SLinus Torvalds 6001da177e4SLinus Torvalds## 601b112e0f7SJohannes Berg# dump DOC: section after checking that it should go out 602b112e0f7SJohannes Berg# 603b112e0f7SJohannes Bergsub dump_doc_section { 60494dc7ad5SRandy Dunlap my $file = shift; 605b112e0f7SJohannes Berg my $name = shift; 606b112e0f7SJohannes Berg my $contents = join "\n", @_; 607b112e0f7SJohannes Berg 6084b44595aSJohannes Berg if ($no_doc_sections) { 6094b44595aSJohannes Berg return; 6104b44595aSJohannes Berg } 6114b44595aSJohannes Berg 612eab795ddSMauro Carvalho Chehab return if (defined($nosymbol_table{$name})); 613eab795ddSMauro Carvalho Chehab 614b6c3f456SJani Nikula if (($output_selection == OUTPUT_ALL) || 615eab795ddSMauro Carvalho Chehab (($output_selection == OUTPUT_INCLUDE) && 616eab795ddSMauro Carvalho Chehab defined($function_table{$name}))) 617b112e0f7SJohannes Berg { 61894dc7ad5SRandy Dunlap dump_section($file, $name, $contents); 619b112e0f7SJohannes Berg output_blockhead({'sectionlist' => \@sectionlist, 620b112e0f7SJohannes Berg 'sections' => \%sections, 621b112e0f7SJohannes Berg 'module' => $modulename, 622b6c3f456SJani Nikula 'content-only' => ($output_selection != OUTPUT_ALL), }); 623b112e0f7SJohannes Berg } 624b112e0f7SJohannes Berg} 625b112e0f7SJohannes Berg 626b112e0f7SJohannes Berg## 6271da177e4SLinus Torvalds# output function 6281da177e4SLinus Torvalds# 6291da177e4SLinus Torvalds# parameterdescs, a hash. 6301da177e4SLinus Torvalds# function => "function name" 6311da177e4SLinus Torvalds# parameterlist => @list of parameters 6321da177e4SLinus Torvalds# parameterdescs => %parameter descriptions 6331da177e4SLinus Torvalds# sectionlist => @list of sections 634a21217daSRandy Dunlap# sections => %section descriptions 6351da177e4SLinus Torvalds# 6361da177e4SLinus Torvalds 6371da177e4SLinus Torvaldssub output_highlight { 6381da177e4SLinus Torvalds my $contents = join "\n",@_; 6391da177e4SLinus Torvalds my $line; 6401da177e4SLinus Torvalds 6411da177e4SLinus Torvalds# DEBUG 6421da177e4SLinus Torvalds# if (!defined $contents) { 6431da177e4SLinus Torvalds# use Carp; 6441da177e4SLinus Torvalds# confess "output_highlight got called with no args?\n"; 6451da177e4SLinus Torvalds# } 6461da177e4SLinus Torvalds 6473eb014a1SRandy Dunlap# print STDERR "contents b4:$contents\n"; 6481da177e4SLinus Torvalds eval $dohighlight; 6491da177e4SLinus Torvalds die $@ if $@; 6503eb014a1SRandy Dunlap# print STDERR "contents af:$contents\n"; 6513eb014a1SRandy Dunlap 6521da177e4SLinus Torvalds foreach $line (split "\n", $contents) { 65312ae6779SDaniel Santos if (! $output_preformatted) { 65412ae6779SDaniel Santos $line =~ s/^\s*//; 65512ae6779SDaniel Santos } 6561da177e4SLinus Torvalds if ($line eq ""){ 657e314ba31SDaniel Santos if (! $output_preformatted) { 6580bba924cSJonathan Corbet print $lineprefix, $blankline; 659e314ba31SDaniel Santos } 6601da177e4SLinus Torvalds } else { 661cdccb316SRandy Dunlap if ($output_mode eq "man" && substr($line, 0, 1) eq ".") { 662cdccb316SRandy Dunlap print "\\&$line"; 663cdccb316SRandy Dunlap } else { 6641da177e4SLinus Torvalds print $lineprefix, $line; 6651da177e4SLinus Torvalds } 666cdccb316SRandy Dunlap } 6671da177e4SLinus Torvalds print "\n"; 6681da177e4SLinus Torvalds } 6691da177e4SLinus Torvalds} 6701da177e4SLinus Torvalds 6711da177e4SLinus Torvalds## 6721da177e4SLinus Torvalds# output function in man 6731da177e4SLinus Torvaldssub output_function_man(%) { 6741da177e4SLinus Torvalds my %args = %{$_[0]}; 6751da177e4SLinus Torvalds my ($parameter, $section); 6761da177e4SLinus Torvalds my $count; 6771da177e4SLinus Torvalds 6781da177e4SLinus Torvalds print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n"; 6791da177e4SLinus Torvalds 6801da177e4SLinus Torvalds print ".SH NAME\n"; 6811da177e4SLinus Torvalds print $args{'function'} . " \\- " . $args{'purpose'} . "\n"; 6821da177e4SLinus Torvalds 6831da177e4SLinus Torvalds print ".SH SYNOPSIS\n"; 684a21217daSRandy Dunlap if ($args{'functiontype'} ne "") { 6851da177e4SLinus Torvalds print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n"; 686a21217daSRandy Dunlap } else { 687a21217daSRandy Dunlap print ".B \"" . $args{'function'} . "\n"; 688a21217daSRandy Dunlap } 6891da177e4SLinus Torvalds $count = 0; 6901da177e4SLinus Torvalds my $parenth = "("; 6911da177e4SLinus Torvalds my $post = ","; 6921da177e4SLinus Torvalds foreach my $parameter (@{$args{'parameterlist'}}) { 6931da177e4SLinus Torvalds if ($count == $#{$args{'parameterlist'}}) { 6941da177e4SLinus Torvalds $post = ");"; 6951da177e4SLinus Torvalds } 6961da177e4SLinus Torvalds $type = $args{'parametertypes'}{$parameter}; 6971da177e4SLinus Torvalds if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { 6981da177e4SLinus Torvalds # pointer-to-function 699ed8348e2SMauro Carvalho Chehab print ".BI \"" . $parenth . $1 . "\" " . " \") (" . $2 . ")" . $post . "\"\n"; 7001da177e4SLinus Torvalds } else { 7011da177e4SLinus Torvalds $type =~ s/([^\*])$/$1 /; 702ed8348e2SMauro Carvalho Chehab print ".BI \"" . $parenth . $type . "\" " . " \"" . $post . "\"\n"; 7031da177e4SLinus Torvalds } 7041da177e4SLinus Torvalds $count++; 7051da177e4SLinus Torvalds $parenth = ""; 7061da177e4SLinus Torvalds } 7071da177e4SLinus Torvalds 7081da177e4SLinus Torvalds print ".SH ARGUMENTS\n"; 7091da177e4SLinus Torvalds foreach $parameter (@{$args{'parameterlist'}}) { 7101da177e4SLinus Torvalds my $parameter_name = $parameter; 7111da177e4SLinus Torvalds $parameter_name =~ s/\[.*//; 7121da177e4SLinus Torvalds 7131da177e4SLinus Torvalds print ".IP \"" . $parameter . "\" 12\n"; 7141da177e4SLinus Torvalds output_highlight($args{'parameterdescs'}{$parameter_name}); 7151da177e4SLinus Torvalds } 7161da177e4SLinus Torvalds foreach $section (@{$args{'sectionlist'}}) { 7171da177e4SLinus Torvalds print ".SH \"", uc $section, "\"\n"; 7181da177e4SLinus Torvalds output_highlight($args{'sections'}{$section}); 7191da177e4SLinus Torvalds } 7201da177e4SLinus Torvalds} 7211da177e4SLinus Torvalds 7221da177e4SLinus Torvalds## 7231da177e4SLinus Torvalds# output enum in man 7241da177e4SLinus Torvaldssub output_enum_man(%) { 7251da177e4SLinus Torvalds my %args = %{$_[0]}; 7261da177e4SLinus Torvalds my ($parameter, $section); 7271da177e4SLinus Torvalds my $count; 7281da177e4SLinus Torvalds 7291da177e4SLinus Torvalds print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n"; 7301da177e4SLinus Torvalds 7311da177e4SLinus Torvalds print ".SH NAME\n"; 7321da177e4SLinus Torvalds print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n"; 7331da177e4SLinus Torvalds 7341da177e4SLinus Torvalds print ".SH SYNOPSIS\n"; 7351da177e4SLinus Torvalds print "enum " . $args{'enum'} . " {\n"; 7361da177e4SLinus Torvalds $count = 0; 7371da177e4SLinus Torvalds foreach my $parameter (@{$args{'parameterlist'}}) { 7381da177e4SLinus Torvalds print ".br\n.BI \" $parameter\"\n"; 7391da177e4SLinus Torvalds if ($count == $#{$args{'parameterlist'}}) { 7401da177e4SLinus Torvalds print "\n};\n"; 7411da177e4SLinus Torvalds last; 7421da177e4SLinus Torvalds } 7431da177e4SLinus Torvalds else { 7441da177e4SLinus Torvalds print ", \n.br\n"; 7451da177e4SLinus Torvalds } 7461da177e4SLinus Torvalds $count++; 7471da177e4SLinus Torvalds } 7481da177e4SLinus Torvalds 7491da177e4SLinus Torvalds print ".SH Constants\n"; 7501da177e4SLinus Torvalds foreach $parameter (@{$args{'parameterlist'}}) { 7511da177e4SLinus Torvalds my $parameter_name = $parameter; 7521da177e4SLinus Torvalds $parameter_name =~ s/\[.*//; 7531da177e4SLinus Torvalds 7541da177e4SLinus Torvalds print ".IP \"" . $parameter . "\" 12\n"; 7551da177e4SLinus Torvalds output_highlight($args{'parameterdescs'}{$parameter_name}); 7561da177e4SLinus Torvalds } 7571da177e4SLinus Torvalds foreach $section (@{$args{'sectionlist'}}) { 7581da177e4SLinus Torvalds print ".SH \"$section\"\n"; 7591da177e4SLinus Torvalds output_highlight($args{'sections'}{$section}); 7601da177e4SLinus Torvalds } 7611da177e4SLinus Torvalds} 7621da177e4SLinus Torvalds 7631da177e4SLinus Torvalds## 7641da177e4SLinus Torvalds# output struct in man 7651da177e4SLinus Torvaldssub output_struct_man(%) { 7661da177e4SLinus Torvalds my %args = %{$_[0]}; 7671da177e4SLinus Torvalds my ($parameter, $section); 7681da177e4SLinus Torvalds 7691da177e4SLinus Torvalds print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n"; 7701da177e4SLinus Torvalds 7711da177e4SLinus Torvalds print ".SH NAME\n"; 7721da177e4SLinus Torvalds print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n"; 7731da177e4SLinus Torvalds 7748ad72163SMauro Carvalho Chehab my $declaration = $args{'definition'}; 7758ad72163SMauro Carvalho Chehab $declaration =~ s/\t/ /g; 7768ad72163SMauro Carvalho Chehab $declaration =~ s/\n/"\n.br\n.BI \"/g; 7771da177e4SLinus Torvalds print ".SH SYNOPSIS\n"; 7781da177e4SLinus Torvalds print $args{'type'} . " " . $args{'struct'} . " {\n.br\n"; 7798ad72163SMauro Carvalho Chehab print ".BI \"$declaration\n};\n.br\n\n"; 7801da177e4SLinus Torvalds 781c51d3dacSRandy Dunlap print ".SH Members\n"; 7821da177e4SLinus Torvalds foreach $parameter (@{$args{'parameterlist'}}) { 7831da177e4SLinus Torvalds ($parameter =~ /^#/) && next; 7841da177e4SLinus Torvalds 7851da177e4SLinus Torvalds my $parameter_name = $parameter; 7861da177e4SLinus Torvalds $parameter_name =~ s/\[.*//; 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvalds ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; 7891da177e4SLinus Torvalds print ".IP \"" . $parameter . "\" 12\n"; 7901da177e4SLinus Torvalds output_highlight($args{'parameterdescs'}{$parameter_name}); 7911da177e4SLinus Torvalds } 7921da177e4SLinus Torvalds foreach $section (@{$args{'sectionlist'}}) { 7931da177e4SLinus Torvalds print ".SH \"$section\"\n"; 7941da177e4SLinus Torvalds output_highlight($args{'sections'}{$section}); 7951da177e4SLinus Torvalds } 7961da177e4SLinus Torvalds} 7971da177e4SLinus Torvalds 7981da177e4SLinus Torvalds## 7991da177e4SLinus Torvalds# output typedef in man 8001da177e4SLinus Torvaldssub output_typedef_man(%) { 8011da177e4SLinus Torvalds my %args = %{$_[0]}; 8021da177e4SLinus Torvalds my ($parameter, $section); 8031da177e4SLinus Torvalds 8041da177e4SLinus Torvalds print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n"; 8051da177e4SLinus Torvalds 8061da177e4SLinus Torvalds print ".SH NAME\n"; 8071da177e4SLinus Torvalds print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n"; 8081da177e4SLinus Torvalds 8091da177e4SLinus Torvalds foreach $section (@{$args{'sectionlist'}}) { 8101da177e4SLinus Torvalds print ".SH \"$section\"\n"; 8111da177e4SLinus Torvalds output_highlight($args{'sections'}{$section}); 8121da177e4SLinus Torvalds } 8131da177e4SLinus Torvalds} 8141da177e4SLinus Torvalds 815b112e0f7SJohannes Bergsub output_blockhead_man(%) { 8161da177e4SLinus Torvalds my %args = %{$_[0]}; 8171da177e4SLinus Torvalds my ($parameter, $section); 8181da177e4SLinus Torvalds my $count; 8191da177e4SLinus Torvalds 8201da177e4SLinus Torvalds print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n"; 8211da177e4SLinus Torvalds 8221da177e4SLinus Torvalds foreach $section (@{$args{'sectionlist'}}) { 8231da177e4SLinus Torvalds print ".SH \"$section\"\n"; 8241da177e4SLinus Torvalds output_highlight($args{'sections'}{$section}); 8251da177e4SLinus Torvalds } 8261da177e4SLinus Torvalds} 8271da177e4SLinus Torvalds 8281da177e4SLinus Torvalds## 829c0d1b6eeSJonathan Corbet# output in restructured text 830c0d1b6eeSJonathan Corbet# 831c0d1b6eeSJonathan Corbet 832c0d1b6eeSJonathan Corbet# 833c0d1b6eeSJonathan Corbet# This could use some work; it's used to output the DOC: sections, and 834c0d1b6eeSJonathan Corbet# starts by putting out the name of the doc section itself, but that tends 835c0d1b6eeSJonathan Corbet# to duplicate a header already in the template file. 836c0d1b6eeSJonathan Corbet# 837c0d1b6eeSJonathan Corbetsub output_blockhead_rst(%) { 838c0d1b6eeSJonathan Corbet my %args = %{$_[0]}; 839c0d1b6eeSJonathan Corbet my ($parameter, $section); 840c0d1b6eeSJonathan Corbet 841c0d1b6eeSJonathan Corbet foreach $section (@{$args{'sectionlist'}}) { 842eab795ddSMauro Carvalho Chehab next if (defined($nosymbol_table{$section})); 843eab795ddSMauro Carvalho Chehab 8449e72184bSJani Nikula if ($output_selection != OUTPUT_INCLUDE) { 84506a755d6SMichal Wajdeczko print ".. _$section:\n\n"; 846c0d1b6eeSJonathan Corbet print "**$section**\n\n"; 8479e72184bSJani Nikula } 8480b0f5f29SDaniel Vetter print_lineno($section_start_lines{$section}); 849c0d1b6eeSJonathan Corbet output_highlight_rst($args{'sections'}{$section}); 850c0d1b6eeSJonathan Corbet print "\n"; 851c0d1b6eeSJonathan Corbet } 852c0d1b6eeSJonathan Corbet} 853c0d1b6eeSJonathan Corbet 854af250290SJonathan Corbet# 855af250290SJonathan Corbet# Apply the RST highlights to a sub-block of text. 856af250290SJonathan Corbet# 857af250290SJonathan Corbetsub highlight_block($) { 858af250290SJonathan Corbet # The dohighlight kludge requires the text be called $contents 859af250290SJonathan Corbet my $contents = shift; 860c0d1b6eeSJonathan Corbet eval $dohighlight; 861c0d1b6eeSJonathan Corbet die $@ if $@; 862af250290SJonathan Corbet return $contents; 863af250290SJonathan Corbet} 864c0d1b6eeSJonathan Corbet 865af250290SJonathan Corbet# 866af250290SJonathan Corbet# Regexes used only here. 867af250290SJonathan Corbet# 868af250290SJonathan Corbetmy $sphinx_literal = '^[^.].*::$'; 869af250290SJonathan Corbetmy $sphinx_cblock = '^\.\.\ +code-block::'; 870af250290SJonathan Corbet 871af250290SJonathan Corbetsub output_highlight_rst { 872af250290SJonathan Corbet my $input = join "\n",@_; 873af250290SJonathan Corbet my $output = ""; 874af250290SJonathan Corbet my $line; 875af250290SJonathan Corbet my $in_literal = 0; 876af250290SJonathan Corbet my $litprefix; 877af250290SJonathan Corbet my $block = ""; 878af250290SJonathan Corbet 879af250290SJonathan Corbet foreach $line (split "\n",$input) { 880af250290SJonathan Corbet # 881af250290SJonathan Corbet # If we're in a literal block, see if we should drop out 882af250290SJonathan Corbet # of it. Otherwise pass the line straight through unmunged. 883af250290SJonathan Corbet # 884af250290SJonathan Corbet if ($in_literal) { 885af250290SJonathan Corbet if (! ($line =~ /^\s*$/)) { 886af250290SJonathan Corbet # 887af250290SJonathan Corbet # If this is the first non-blank line in a literal 888af250290SJonathan Corbet # block we need to figure out what the proper indent is. 889af250290SJonathan Corbet # 890af250290SJonathan Corbet if ($litprefix eq "") { 891af250290SJonathan Corbet $line =~ /^(\s*)/; 892af250290SJonathan Corbet $litprefix = '^' . $1; 893af250290SJonathan Corbet $output .= $line . "\n"; 894af250290SJonathan Corbet } elsif (! ($line =~ /$litprefix/)) { 895af250290SJonathan Corbet $in_literal = 0; 896af250290SJonathan Corbet } else { 897af250290SJonathan Corbet $output .= $line . "\n"; 898af250290SJonathan Corbet } 899af250290SJonathan Corbet } else { 900af250290SJonathan Corbet $output .= $line . "\n"; 901af250290SJonathan Corbet } 902af250290SJonathan Corbet } 903af250290SJonathan Corbet # 904af250290SJonathan Corbet # Not in a literal block (or just dropped out) 905af250290SJonathan Corbet # 906af250290SJonathan Corbet if (! $in_literal) { 907af250290SJonathan Corbet $block .= $line . "\n"; 908af250290SJonathan Corbet if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) { 909af250290SJonathan Corbet $in_literal = 1; 910af250290SJonathan Corbet $litprefix = ""; 911af250290SJonathan Corbet $output .= highlight_block($block); 912af250290SJonathan Corbet $block = "" 913af250290SJonathan Corbet } 914af250290SJonathan Corbet } 915af250290SJonathan Corbet } 916af250290SJonathan Corbet 917af250290SJonathan Corbet if ($block) { 918af250290SJonathan Corbet $output .= highlight_block($block); 919af250290SJonathan Corbet } 920af250290SJonathan Corbet foreach $line (split "\n", $output) { 921830066a7SJani Nikula print $lineprefix . $line . "\n"; 922c0d1b6eeSJonathan Corbet } 923c0d1b6eeSJonathan Corbet} 924c0d1b6eeSJonathan Corbet 925c0d1b6eeSJonathan Corbetsub output_function_rst(%) { 926c0d1b6eeSJonathan Corbet my %args = %{$_[0]}; 927c0d1b6eeSJonathan Corbet my ($parameter, $section); 928c099ff69SJani Nikula my $oldprefix = $lineprefix; 92982801d06SMauro Carvalho Chehab my $start = ""; 9306e9e4158SMauro Carvalho Chehab my $is_macro = 0; 931c0d1b6eeSJonathan Corbet 932efa44475SMauro Carvalho Chehab if ($sphinx_major < 3) { 933e3ad05feSMauro Carvalho Chehab if ($args{'typedef'}) { 93482801d06SMauro Carvalho Chehab print ".. c:type:: ". $args{'function'} . "\n\n"; 93582801d06SMauro Carvalho Chehab print_lineno($declaration_start_line); 93682801d06SMauro Carvalho Chehab print " **Typedef**: "; 93782801d06SMauro Carvalho Chehab $lineprefix = ""; 93882801d06SMauro Carvalho Chehab output_highlight_rst($args{'purpose'}); 93982801d06SMauro Carvalho Chehab $start = "\n\n**Syntax**\n\n ``"; 9406e9e4158SMauro Carvalho Chehab $is_macro = 1; 941c0d1b6eeSJonathan Corbet } else { 94282801d06SMauro Carvalho Chehab print ".. c:function:: "; 94382801d06SMauro Carvalho Chehab } 944e3ad05feSMauro Carvalho Chehab } else { 9456e9e4158SMauro Carvalho Chehab if ($args{'typedef'} || $args{'functiontype'} eq "") { 9466e9e4158SMauro Carvalho Chehab $is_macro = 1; 947e3ad05feSMauro Carvalho Chehab print ".. c:macro:: ". $args{'function'} . "\n\n"; 9486e9e4158SMauro Carvalho Chehab } else { 9496e9e4158SMauro Carvalho Chehab print ".. c:function:: "; 9506e9e4158SMauro Carvalho Chehab } 951e3ad05feSMauro Carvalho Chehab 952e3ad05feSMauro Carvalho Chehab if ($args{'typedef'}) { 953e3ad05feSMauro Carvalho Chehab print_lineno($declaration_start_line); 954e3ad05feSMauro Carvalho Chehab print " **Typedef**: "; 955e3ad05feSMauro Carvalho Chehab $lineprefix = ""; 956e3ad05feSMauro Carvalho Chehab output_highlight_rst($args{'purpose'}); 957e3ad05feSMauro Carvalho Chehab $start = "\n\n**Syntax**\n\n ``"; 958e3ad05feSMauro Carvalho Chehab } else { 9596e9e4158SMauro Carvalho Chehab print "``" if ($is_macro); 960e3ad05feSMauro Carvalho Chehab } 961e3ad05feSMauro Carvalho Chehab } 96282801d06SMauro Carvalho Chehab if ($args{'functiontype'} ne "") { 96382801d06SMauro Carvalho Chehab $start .= $args{'functiontype'} . " " . $args{'function'} . " ("; 96482801d06SMauro Carvalho Chehab } else { 96582801d06SMauro Carvalho Chehab $start .= $args{'function'} . " ("; 966c0d1b6eeSJonathan Corbet } 967c0d1b6eeSJonathan Corbet print $start; 968c0d1b6eeSJonathan Corbet 969c0d1b6eeSJonathan Corbet my $count = 0; 970c0d1b6eeSJonathan Corbet foreach my $parameter (@{$args{'parameterlist'}}) { 971c0d1b6eeSJonathan Corbet if ($count ne 0) { 972c0d1b6eeSJonathan Corbet print ", "; 973c0d1b6eeSJonathan Corbet } 974c0d1b6eeSJonathan Corbet $count++; 975c0d1b6eeSJonathan Corbet $type = $args{'parametertypes'}{$parameter}; 976a88b1672SMauro Carvalho Chehab 977c0d1b6eeSJonathan Corbet if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { 978c0d1b6eeSJonathan Corbet # pointer-to-function 979e8f4ba83SPeter Maydell print $1 . $parameter . ") (" . $2 . ")"; 980c0d1b6eeSJonathan Corbet } else { 981ed8348e2SMauro Carvalho Chehab print $type; 982c0d1b6eeSJonathan Corbet } 983c0d1b6eeSJonathan Corbet } 9846e9e4158SMauro Carvalho Chehab if ($is_macro) { 9856e9e4158SMauro Carvalho Chehab print ")``\n\n"; 98682801d06SMauro Carvalho Chehab } else { 987c099ff69SJani Nikula print ")\n\n"; 988e3ad05feSMauro Carvalho Chehab } 9896e9e4158SMauro Carvalho Chehab if (!$args{'typedef'}) { 9900b0f5f29SDaniel Vetter print_lineno($declaration_start_line); 991c099ff69SJani Nikula $lineprefix = " "; 992c099ff69SJani Nikula output_highlight_rst($args{'purpose'}); 993c099ff69SJani Nikula print "\n"; 99482801d06SMauro Carvalho Chehab } 995c0d1b6eeSJonathan Corbet 996ecbcfba1SJani Nikula print "**Parameters**\n\n"; 997c099ff69SJani Nikula $lineprefix = " "; 998c0d1b6eeSJonathan Corbet foreach $parameter (@{$args{'parameterlist'}}) { 999c0d1b6eeSJonathan Corbet my $parameter_name = $parameter; 1000ada5f446SGabriel Krisman Bertazi $parameter_name =~ s/\[.*//; 1001c0d1b6eeSJonathan Corbet $type = $args{'parametertypes'}{$parameter}; 1002c0d1b6eeSJonathan Corbet 1003c0d1b6eeSJonathan Corbet if ($type ne "") { 1004ed8348e2SMauro Carvalho Chehab print "``$type``\n"; 1005c0d1b6eeSJonathan Corbet } else { 1006c0d1b6eeSJonathan Corbet print "``$parameter``\n"; 1007c0d1b6eeSJonathan Corbet } 10080b0f5f29SDaniel Vetter 10090b0f5f29SDaniel Vetter print_lineno($parameterdesc_start_lines{$parameter_name}); 10100b0f5f29SDaniel Vetter 10115e64fa9cSJani Nikula if (defined($args{'parameterdescs'}{$parameter_name}) && 10125e64fa9cSJani Nikula $args{'parameterdescs'}{$parameter_name} ne $undescribed) { 1013c0d1b6eeSJonathan Corbet output_highlight_rst($args{'parameterdescs'}{$parameter_name}); 1014c0d1b6eeSJonathan Corbet } else { 1015d4b08e0cSJani Nikula print " *undescribed*\n"; 1016c0d1b6eeSJonathan Corbet } 1017c0d1b6eeSJonathan Corbet print "\n"; 1018c0d1b6eeSJonathan Corbet } 1019c099ff69SJani Nikula 1020c099ff69SJani Nikula $lineprefix = $oldprefix; 1021c0d1b6eeSJonathan Corbet output_section_rst(@_); 1022c0d1b6eeSJonathan Corbet} 1023c0d1b6eeSJonathan Corbet 1024c0d1b6eeSJonathan Corbetsub output_section_rst(%) { 1025c0d1b6eeSJonathan Corbet my %args = %{$_[0]}; 1026c0d1b6eeSJonathan Corbet my $section; 1027c0d1b6eeSJonathan Corbet my $oldprefix = $lineprefix; 1028c0d1b6eeSJonathan Corbet $lineprefix = ""; 1029c0d1b6eeSJonathan Corbet 1030c0d1b6eeSJonathan Corbet foreach $section (@{$args{'sectionlist'}}) { 1031ecbcfba1SJani Nikula print "**$section**\n\n"; 10320b0f5f29SDaniel Vetter print_lineno($section_start_lines{$section}); 1033c0d1b6eeSJonathan Corbet output_highlight_rst($args{'sections'}{$section}); 1034c0d1b6eeSJonathan Corbet print "\n"; 1035c0d1b6eeSJonathan Corbet } 1036c0d1b6eeSJonathan Corbet print "\n"; 1037c0d1b6eeSJonathan Corbet $lineprefix = $oldprefix; 1038c0d1b6eeSJonathan Corbet} 1039c0d1b6eeSJonathan Corbet 1040c0d1b6eeSJonathan Corbetsub output_enum_rst(%) { 1041c0d1b6eeSJonathan Corbet my %args = %{$_[0]}; 1042c0d1b6eeSJonathan Corbet my ($parameter); 1043c099ff69SJani Nikula my $oldprefix = $lineprefix; 1044c0d1b6eeSJonathan Corbet my $count; 104562850976SJani Nikula 1046efa44475SMauro Carvalho Chehab if ($sphinx_major < 3) { 1047efa44475SMauro Carvalho Chehab my $name = "enum " . $args{'enum'}; 104862850976SJani Nikula print "\n\n.. c:type:: " . $name . "\n\n"; 1049efa44475SMauro Carvalho Chehab } else { 1050efa44475SMauro Carvalho Chehab my $name = $args{'enum'}; 1051efa44475SMauro Carvalho Chehab print "\n\n.. c:enum:: " . $name . "\n\n"; 1052efa44475SMauro Carvalho Chehab } 10530b0f5f29SDaniel Vetter print_lineno($declaration_start_line); 1054c099ff69SJani Nikula $lineprefix = " "; 1055c099ff69SJani Nikula output_highlight_rst($args{'purpose'}); 1056c099ff69SJani Nikula print "\n"; 1057c0d1b6eeSJonathan Corbet 1058ecbcfba1SJani Nikula print "**Constants**\n\n"; 1059c0d1b6eeSJonathan Corbet $lineprefix = " "; 1060c0d1b6eeSJonathan Corbet foreach $parameter (@{$args{'parameterlist'}}) { 1061ecbcfba1SJani Nikula print "``$parameter``\n"; 1062c0d1b6eeSJonathan Corbet if ($args{'parameterdescs'}{$parameter} ne $undescribed) { 1063c0d1b6eeSJonathan Corbet output_highlight_rst($args{'parameterdescs'}{$parameter}); 1064c0d1b6eeSJonathan Corbet } else { 1065d4b08e0cSJani Nikula print " *undescribed*\n"; 1066c0d1b6eeSJonathan Corbet } 1067c0d1b6eeSJonathan Corbet print "\n"; 1068c0d1b6eeSJonathan Corbet } 1069c099ff69SJani Nikula 1070c0d1b6eeSJonathan Corbet $lineprefix = $oldprefix; 1071c0d1b6eeSJonathan Corbet output_section_rst(@_); 1072c0d1b6eeSJonathan Corbet} 1073c0d1b6eeSJonathan Corbet 1074c0d1b6eeSJonathan Corbetsub output_typedef_rst(%) { 1075c0d1b6eeSJonathan Corbet my %args = %{$_[0]}; 1076c0d1b6eeSJonathan Corbet my ($parameter); 1077c099ff69SJani Nikula my $oldprefix = $lineprefix; 1078efa44475SMauro Carvalho Chehab my $name; 1079c0d1b6eeSJonathan Corbet 1080efa44475SMauro Carvalho Chehab if ($sphinx_major < 3) { 1081efa44475SMauro Carvalho Chehab $name = "typedef " . $args{'typedef'}; 1082efa44475SMauro Carvalho Chehab } else { 1083efa44475SMauro Carvalho Chehab $name = $args{'typedef'}; 1084efa44475SMauro Carvalho Chehab } 108562850976SJani Nikula print "\n\n.. c:type:: " . $name . "\n\n"; 10860b0f5f29SDaniel Vetter print_lineno($declaration_start_line); 1087c099ff69SJani Nikula $lineprefix = " "; 1088c099ff69SJani Nikula output_highlight_rst($args{'purpose'}); 1089c099ff69SJani Nikula print "\n"; 1090c0d1b6eeSJonathan Corbet 1091c099ff69SJani Nikula $lineprefix = $oldprefix; 1092c0d1b6eeSJonathan Corbet output_section_rst(@_); 1093c0d1b6eeSJonathan Corbet} 1094c0d1b6eeSJonathan Corbet 1095c0d1b6eeSJonathan Corbetsub output_struct_rst(%) { 1096c0d1b6eeSJonathan Corbet my %args = %{$_[0]}; 1097c0d1b6eeSJonathan Corbet my ($parameter); 1098c099ff69SJani Nikula my $oldprefix = $lineprefix; 1099c0d1b6eeSJonathan Corbet 1100efa44475SMauro Carvalho Chehab if ($sphinx_major < 3) { 1101efa44475SMauro Carvalho Chehab my $name = $args{'type'} . " " . $args{'struct'}; 110262850976SJani Nikula print "\n\n.. c:type:: " . $name . "\n\n"; 1103efa44475SMauro Carvalho Chehab } else { 1104efa44475SMauro Carvalho Chehab my $name = $args{'struct'}; 110572b97d0bSMauro Carvalho Chehab if ($args{'type'} eq 'union') { 110672b97d0bSMauro Carvalho Chehab print "\n\n.. c:union:: " . $name . "\n\n"; 110772b97d0bSMauro Carvalho Chehab } else { 1108efa44475SMauro Carvalho Chehab print "\n\n.. c:struct:: " . $name . "\n\n"; 1109efa44475SMauro Carvalho Chehab } 111072b97d0bSMauro Carvalho Chehab } 11110b0f5f29SDaniel Vetter print_lineno($declaration_start_line); 1112c099ff69SJani Nikula $lineprefix = " "; 1113c099ff69SJani Nikula output_highlight_rst($args{'purpose'}); 1114c099ff69SJani Nikula print "\n"; 1115c0d1b6eeSJonathan Corbet 1116ecbcfba1SJani Nikula print "**Definition**\n\n"; 1117c0d1b6eeSJonathan Corbet print "::\n\n"; 11188ad72163SMauro Carvalho Chehab my $declaration = $args{'definition'}; 11198ad72163SMauro Carvalho Chehab $declaration =~ s/\t/ /g; 11208ad72163SMauro Carvalho Chehab print " " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration };\n\n"; 1121c0d1b6eeSJonathan Corbet 1122ecbcfba1SJani Nikula print "**Members**\n\n"; 1123c099ff69SJani Nikula $lineprefix = " "; 1124c0d1b6eeSJonathan Corbet foreach $parameter (@{$args{'parameterlist'}}) { 1125c0d1b6eeSJonathan Corbet ($parameter =~ /^#/) && next; 1126c0d1b6eeSJonathan Corbet 1127c0d1b6eeSJonathan Corbet my $parameter_name = $parameter; 1128c0d1b6eeSJonathan Corbet $parameter_name =~ s/\[.*//; 1129c0d1b6eeSJonathan Corbet 1130c0d1b6eeSJonathan Corbet ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; 1131c0d1b6eeSJonathan Corbet $type = $args{'parametertypes'}{$parameter}; 11320b0f5f29SDaniel Vetter print_lineno($parameterdesc_start_lines{$parameter_name}); 11336d232c80SMauro Carvalho Chehab print "``" . $parameter . "``\n"; 1134c0d1b6eeSJonathan Corbet output_highlight_rst($args{'parameterdescs'}{$parameter_name}); 1135c0d1b6eeSJonathan Corbet print "\n"; 1136c0d1b6eeSJonathan Corbet } 1137c0d1b6eeSJonathan Corbet print "\n"; 1138c099ff69SJani Nikula 1139c099ff69SJani Nikula $lineprefix = $oldprefix; 1140c0d1b6eeSJonathan Corbet output_section_rst(@_); 1141c0d1b6eeSJonathan Corbet} 1142c0d1b6eeSJonathan Corbet 11433a025e1dSMatthew Wilcox## none mode output functions 11443a025e1dSMatthew Wilcox 11453a025e1dSMatthew Wilcoxsub output_function_none(%) { 11463a025e1dSMatthew Wilcox} 11473a025e1dSMatthew Wilcox 11483a025e1dSMatthew Wilcoxsub output_enum_none(%) { 11493a025e1dSMatthew Wilcox} 11503a025e1dSMatthew Wilcox 11513a025e1dSMatthew Wilcoxsub output_typedef_none(%) { 11523a025e1dSMatthew Wilcox} 11533a025e1dSMatthew Wilcox 11543a025e1dSMatthew Wilcoxsub output_struct_none(%) { 11553a025e1dSMatthew Wilcox} 11563a025e1dSMatthew Wilcox 11573a025e1dSMatthew Wilcoxsub output_blockhead_none(%) { 11583a025e1dSMatthew Wilcox} 11593a025e1dSMatthew Wilcox 11601da177e4SLinus Torvalds## 116127205744SRandy Dunlap# generic output function for all types (function, struct/union, typedef, enum); 116227205744SRandy Dunlap# calls the generated, variable output_ function name based on 116327205744SRandy Dunlap# functype and output_mode 11641da177e4SLinus Torvaldssub output_declaration { 11651da177e4SLinus Torvalds no strict 'refs'; 11661da177e4SLinus Torvalds my $name = shift; 11671da177e4SLinus Torvalds my $functype = shift; 11681da177e4SLinus Torvalds my $func = "output_${functype}_$output_mode"; 1169eab795ddSMauro Carvalho Chehab 1170eab795ddSMauro Carvalho Chehab return if (defined($nosymbol_table{$name})); 1171eab795ddSMauro Carvalho Chehab 1172b6c3f456SJani Nikula if (($output_selection == OUTPUT_ALL) || 1173b6c3f456SJani Nikula (($output_selection == OUTPUT_INCLUDE || 1174b6c3f456SJani Nikula $output_selection == OUTPUT_EXPORTED) && 117586ae2e38SJani Nikula defined($function_table{$name})) || 1176eab795ddSMauro Carvalho Chehab ($output_selection == OUTPUT_INTERNAL && 117786ae2e38SJani Nikula !($functype eq "function" && defined($function_table{$name})))) 11781da177e4SLinus Torvalds { 11791da177e4SLinus Torvalds &$func(@_); 11801da177e4SLinus Torvalds $section_counter++; 11811da177e4SLinus Torvalds } 11821da177e4SLinus Torvalds} 11831da177e4SLinus Torvalds 11841da177e4SLinus Torvalds## 118527205744SRandy Dunlap# generic output function - calls the right one based on current output mode. 1186b112e0f7SJohannes Bergsub output_blockhead { 11871da177e4SLinus Torvalds no strict 'refs'; 1188b112e0f7SJohannes Berg my $func = "output_blockhead_" . $output_mode; 11891da177e4SLinus Torvalds &$func(@_); 11901da177e4SLinus Torvalds $section_counter++; 11911da177e4SLinus Torvalds} 11921da177e4SLinus Torvalds 11931da177e4SLinus Torvalds## 11941da177e4SLinus Torvalds# takes a declaration (struct, union, enum, typedef) and 11951da177e4SLinus Torvalds# invokes the right handler. NOT called for functions. 11961da177e4SLinus Torvaldssub dump_declaration($$) { 11971da177e4SLinus Torvalds no strict 'refs'; 11981da177e4SLinus Torvalds my ($prototype, $file) = @_; 11991da177e4SLinus Torvalds my $func = "dump_" . $decl_type; 12001da177e4SLinus Torvalds &$func(@_); 12011da177e4SLinus Torvalds} 12021da177e4SLinus Torvalds 12031da177e4SLinus Torvaldssub dump_union($$) { 12041da177e4SLinus Torvalds dump_struct(@_); 12051da177e4SLinus Torvalds} 12061da177e4SLinus Torvalds 12071da177e4SLinus Torvaldssub dump_struct($$) { 12081da177e4SLinus Torvalds my $x = shift; 12091da177e4SLinus Torvalds my $file = shift; 1210a746fe32SAditya Srivastava my $decl_type; 1211a746fe32SAditya Srivastava my $members; 1212a746fe32SAditya Srivastava my $type = qr{struct|union}; 1213a746fe32SAditya Srivastava # For capturing struct/union definition body, i.e. "{members*}qualifiers*" 1214a746fe32SAditya Srivastava my $definition_body = qr{\{(.*)\}(?:\s*(?:__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned|__attribute__\s*\(\([a-z0-9,_\s\(\)]*\)\)))*}; 12151da177e4SLinus Torvalds 1216a746fe32SAditya Srivastava if ($x =~ /($type)\s+(\w+)\s*$definition_body/) { 1217a746fe32SAditya Srivastava $decl_type = $1; 12181da177e4SLinus Torvalds $declaration_name = $2; 1219a746fe32SAditya Srivastava $members = $3; 1220a746fe32SAditya Srivastava } elsif ($x =~ /typedef\s+($type)\s*$definition_body\s*(\w+)\s*;/) { 1221a746fe32SAditya Srivastava $decl_type = $1; 1222a746fe32SAditya Srivastava $declaration_name = $3; 1223a746fe32SAditya Srivastava $members = $2; 1224a746fe32SAditya Srivastava } 12251da177e4SLinus Torvalds 1226a746fe32SAditya Srivastava if ($members) { 122752042e2dSMauro Carvalho Chehab if ($identifier ne $declaration_name) { 122852042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: warning: expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n"; 122952042e2dSMauro Carvalho Chehab return; 123052042e2dSMauro Carvalho Chehab } 123152042e2dSMauro Carvalho Chehab 1232aeec46b9SMartin Waitz # ignore members marked private: 12330d8c39e6SMauro Carvalho Chehab $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi; 12340d8c39e6SMauro Carvalho Chehab $members =~ s/\/\*\s*private:.*//gosi; 1235aeec46b9SMartin Waitz # strip comments: 1236aeec46b9SMartin Waitz $members =~ s/\/\*.*?\*\///gos; 1237ef5da59fSRandy Dunlap # strip attributes 12383d9bfb19SSakari Ailus $members =~ s/\s*__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)/ /gi; 12393d9bfb19SSakari Ailus $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos; 12403d9bfb19SSakari Ailus $members =~ s/\s*__packed\s*/ /gos; 1241f0074929SJonathan Corbet $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos; 1242f861537dSAndré Almeida $members =~ s/\s*____cacheline_aligned_in_smp/ /gos; 1243a070991fSJonathan Cameron $members =~ s/\s*____cacheline_aligned/ /gos; 12443556108eSMauro Carvalho Chehab 1245b22b5a9eSConchúr Navid # replace DECLARE_BITMAP 12463556108eSMauro Carvalho Chehab $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos; 124745005b27SMauro Carvalho Chehab $members =~ s/DECLARE_BITMAP\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos; 12481cb566baSJakub Kicinski # replace DECLARE_HASHTABLE 124945005b27SMauro Carvalho Chehab $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos; 125045005b27SMauro Carvalho Chehab # replace DECLARE_KFIFO 125145005b27SMauro Carvalho Chehab $members =~ s/DECLARE_KFIFO\s*\(([^,)]+),\s*([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos; 125245005b27SMauro Carvalho Chehab # replace DECLARE_KFIFO_PTR 125345005b27SMauro Carvalho Chehab $members =~ s/DECLARE_KFIFO_PTR\s*\(([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos; 1254aeec46b9SMartin Waitz 12558ad72163SMauro Carvalho Chehab my $declaration = $members; 12568ad72163SMauro Carvalho Chehab 12578ad72163SMauro Carvalho Chehab # Split nested struct/union elements as newer ones 125884ce5b98SMauro Carvalho Chehab while ($members =~ m/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/) { 125984ce5b98SMauro Carvalho Chehab my $newmember; 126084ce5b98SMauro Carvalho Chehab my $maintype = $1; 126184ce5b98SMauro Carvalho Chehab my $ids = $4; 12628ad72163SMauro Carvalho Chehab my $content = $3; 126384ce5b98SMauro Carvalho Chehab foreach my $id(split /,/, $ids) { 126484ce5b98SMauro Carvalho Chehab $newmember .= "$maintype $id; "; 126584ce5b98SMauro Carvalho Chehab 12668ad72163SMauro Carvalho Chehab $id =~ s/[:\[].*//; 126784ce5b98SMauro Carvalho Chehab $id =~ s/^\s*\**(\S+)\s*/$1/; 12688ad72163SMauro Carvalho Chehab foreach my $arg (split /;/, $content) { 12698ad72163SMauro Carvalho Chehab next if ($arg =~ m/^\s*$/); 12707c0d7e87SMauro Carvalho Chehab if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) { 12717c0d7e87SMauro Carvalho Chehab # pointer-to-function 12727c0d7e87SMauro Carvalho Chehab my $type = $1; 12737c0d7e87SMauro Carvalho Chehab my $name = $2; 12747c0d7e87SMauro Carvalho Chehab my $extra = $3; 12757c0d7e87SMauro Carvalho Chehab next if (!$name); 12767c0d7e87SMauro Carvalho Chehab if ($id =~ m/^\s*$/) { 12777c0d7e87SMauro Carvalho Chehab # anonymous struct/union 12787c0d7e87SMauro Carvalho Chehab $newmember .= "$type$name$extra; "; 12797c0d7e87SMauro Carvalho Chehab } else { 12807c0d7e87SMauro Carvalho Chehab $newmember .= "$type$id.$name$extra; "; 12817c0d7e87SMauro Carvalho Chehab } 12827c0d7e87SMauro Carvalho Chehab } else { 128384ce5b98SMauro Carvalho Chehab my $type; 128484ce5b98SMauro Carvalho Chehab my $names; 128584ce5b98SMauro Carvalho Chehab $arg =~ s/^\s+//; 128684ce5b98SMauro Carvalho Chehab $arg =~ s/\s+$//; 128784ce5b98SMauro Carvalho Chehab # Handle bitmaps 128884ce5b98SMauro Carvalho Chehab $arg =~ s/:\s*\d+\s*//g; 128984ce5b98SMauro Carvalho Chehab # Handle arrays 1290d404d579SMauro Carvalho Chehab $arg =~ s/\[.*\]//g; 129184ce5b98SMauro Carvalho Chehab # The type may have multiple words, 129284ce5b98SMauro Carvalho Chehab # and multiple IDs can be defined, like: 129384ce5b98SMauro Carvalho Chehab # const struct foo, *bar, foobar 129484ce5b98SMauro Carvalho Chehab # So, we remove spaces when parsing the 129584ce5b98SMauro Carvalho Chehab # names, in order to match just names 129684ce5b98SMauro Carvalho Chehab # and commas for the names 129784ce5b98SMauro Carvalho Chehab $arg =~ s/\s*,\s*/,/g; 129884ce5b98SMauro Carvalho Chehab if ($arg =~ m/(.*)\s+([\S+,]+)/) { 129984ce5b98SMauro Carvalho Chehab $type = $1; 130084ce5b98SMauro Carvalho Chehab $names = $2; 130184ce5b98SMauro Carvalho Chehab } else { 130284ce5b98SMauro Carvalho Chehab $newmember .= "$arg; "; 130384ce5b98SMauro Carvalho Chehab next; 130484ce5b98SMauro Carvalho Chehab } 130584ce5b98SMauro Carvalho Chehab foreach my $name (split /,/, $names) { 130684ce5b98SMauro Carvalho Chehab $name =~ s/^\s*\**(\S+)\s*/$1/; 13078ad72163SMauro Carvalho Chehab next if (($name =~ m/^\s*$/)); 13088ad72163SMauro Carvalho Chehab if ($id =~ m/^\s*$/) { 13098ad72163SMauro Carvalho Chehab # anonymous struct/union 13108ad72163SMauro Carvalho Chehab $newmember .= "$type $name; "; 13118ad72163SMauro Carvalho Chehab } else { 13128ad72163SMauro Carvalho Chehab $newmember .= "$type $id.$name; "; 13138ad72163SMauro Carvalho Chehab } 13148ad72163SMauro Carvalho Chehab } 13157c0d7e87SMauro Carvalho Chehab } 131684ce5b98SMauro Carvalho Chehab } 131784ce5b98SMauro Carvalho Chehab } 1318673bb2dfSBen Hutchings $members =~ s/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/$newmember/; 131984ce5b98SMauro Carvalho Chehab } 13208ad72163SMauro Carvalho Chehab 13218ad72163SMauro Carvalho Chehab # Ignore other nested elements, like enums 1322673bb2dfSBen Hutchings $members =~ s/(\{[^\{\}]*\})//g; 13238ad72163SMauro Carvalho Chehab 1324151c468bSMauro Carvalho Chehab create_parameterlist($members, ';', $file, $declaration_name); 13251081de2dSMauro Carvalho Chehab check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual); 13261da177e4SLinus Torvalds 13278ad72163SMauro Carvalho Chehab # Adjust declaration for better display 1328673bb2dfSBen Hutchings $declaration =~ s/([\{;])/$1\n/g; 1329673bb2dfSBen Hutchings $declaration =~ s/\}\s+;/};/g; 13308ad72163SMauro Carvalho Chehab # Better handle inlined enums 1331673bb2dfSBen Hutchings do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/); 13328ad72163SMauro Carvalho Chehab 13338ad72163SMauro Carvalho Chehab my @def_args = split /\n/, $declaration; 13348ad72163SMauro Carvalho Chehab my $level = 1; 13358ad72163SMauro Carvalho Chehab $declaration = ""; 13368ad72163SMauro Carvalho Chehab foreach my $clause (@def_args) { 13378ad72163SMauro Carvalho Chehab $clause =~ s/^\s+//; 13388ad72163SMauro Carvalho Chehab $clause =~ s/\s+$//; 13398ad72163SMauro Carvalho Chehab $clause =~ s/\s+/ /; 13408ad72163SMauro Carvalho Chehab next if (!$clause); 1341673bb2dfSBen Hutchings $level-- if ($clause =~ m/(\})/ && $level > 1); 13428ad72163SMauro Carvalho Chehab if (!($clause =~ m/^\s*#/)) { 13438ad72163SMauro Carvalho Chehab $declaration .= "\t" x $level; 13448ad72163SMauro Carvalho Chehab } 13458ad72163SMauro Carvalho Chehab $declaration .= "\t" . $clause . "\n"; 1346673bb2dfSBen Hutchings $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/)); 13478ad72163SMauro Carvalho Chehab } 13481da177e4SLinus Torvalds output_declaration($declaration_name, 13491da177e4SLinus Torvalds 'struct', 13501da177e4SLinus Torvalds {'struct' => $declaration_name, 13511da177e4SLinus Torvalds 'module' => $modulename, 13528ad72163SMauro Carvalho Chehab 'definition' => $declaration, 13531da177e4SLinus Torvalds 'parameterlist' => \@parameterlist, 13541da177e4SLinus Torvalds 'parameterdescs' => \%parameterdescs, 13551da177e4SLinus Torvalds 'parametertypes' => \%parametertypes, 13561da177e4SLinus Torvalds 'sectionlist' => \@sectionlist, 13571da177e4SLinus Torvalds 'sections' => \%sections, 13581da177e4SLinus Torvalds 'purpose' => $declaration_purpose, 13591da177e4SLinus Torvalds 'type' => $decl_type 13601da177e4SLinus Torvalds }); 13611da177e4SLinus Torvalds } 13621da177e4SLinus Torvalds else { 1363d40e1e65SBart Van Assche print STDERR "${file}:$.: error: Cannot parse struct or union!\n"; 13641da177e4SLinus Torvalds ++$errors; 13651da177e4SLinus Torvalds } 13661da177e4SLinus Torvalds} 13671da177e4SLinus Torvalds 136885afe608SMauro Carvalho Chehab 136985afe608SMauro Carvalho Chehabsub show_warnings($$) { 137085afe608SMauro Carvalho Chehab my $functype = shift; 137185afe608SMauro Carvalho Chehab my $name = shift; 137285afe608SMauro Carvalho Chehab 1373eab795ddSMauro Carvalho Chehab return 0 if (defined($nosymbol_table{$name})); 1374eab795ddSMauro Carvalho Chehab 137585afe608SMauro Carvalho Chehab return 1 if ($output_selection == OUTPUT_ALL); 137685afe608SMauro Carvalho Chehab 137785afe608SMauro Carvalho Chehab if ($output_selection == OUTPUT_EXPORTED) { 137885afe608SMauro Carvalho Chehab if (defined($function_table{$name})) { 137985afe608SMauro Carvalho Chehab return 1; 138085afe608SMauro Carvalho Chehab } else { 138185afe608SMauro Carvalho Chehab return 0; 138285afe608SMauro Carvalho Chehab } 138385afe608SMauro Carvalho Chehab } 138485afe608SMauro Carvalho Chehab if ($output_selection == OUTPUT_INTERNAL) { 138585afe608SMauro Carvalho Chehab if (!($functype eq "function" && defined($function_table{$name}))) { 138685afe608SMauro Carvalho Chehab return 1; 138785afe608SMauro Carvalho Chehab } else { 138885afe608SMauro Carvalho Chehab return 0; 138985afe608SMauro Carvalho Chehab } 139085afe608SMauro Carvalho Chehab } 139185afe608SMauro Carvalho Chehab if ($output_selection == OUTPUT_INCLUDE) { 139285afe608SMauro Carvalho Chehab if (defined($function_table{$name})) { 139385afe608SMauro Carvalho Chehab return 1; 139485afe608SMauro Carvalho Chehab } else { 139585afe608SMauro Carvalho Chehab return 0; 139685afe608SMauro Carvalho Chehab } 139785afe608SMauro Carvalho Chehab } 139885afe608SMauro Carvalho Chehab die("Please add the new output type at show_warnings()"); 139985afe608SMauro Carvalho Chehab} 140085afe608SMauro Carvalho Chehab 14011da177e4SLinus Torvaldssub dump_enum($$) { 14021da177e4SLinus Torvalds my $x = shift; 14031da177e4SLinus Torvalds my $file = shift; 1404d38c8cfbSMauro Carvalho Chehab my $members; 1405d38c8cfbSMauro Carvalho Chehab 14061da177e4SLinus Torvalds 1407aeec46b9SMartin Waitz $x =~ s@/\*.*?\*/@@gos; # strip comments. 14084468e21eSConchúr Navid # strip #define macros inside enums 14094468e21eSConchúr Navid $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos; 1410b6d676dbSRandy Dunlap 1411d38c8cfbSMauro Carvalho Chehab if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) { 1412d38c8cfbSMauro Carvalho Chehab $declaration_name = $2; 1413d38c8cfbSMauro Carvalho Chehab $members = $1; 1414d38c8cfbSMauro Carvalho Chehab } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) { 14151da177e4SLinus Torvalds $declaration_name = $1; 1416d38c8cfbSMauro Carvalho Chehab $members = $2; 1417d38c8cfbSMauro Carvalho Chehab } 1418d38c8cfbSMauro Carvalho Chehab 1419ae5b17e4SAndy Shevchenko if ($members) { 142052042e2dSMauro Carvalho Chehab if ($identifier ne $declaration_name) { 14210b54c2e3SMauro Carvalho Chehab if ($identifier eq "") { 14220b54c2e3SMauro Carvalho Chehab print STDERR "${file}:$.: warning: wrong kernel-doc identifier on line:\n"; 14230b54c2e3SMauro Carvalho Chehab } else { 142452042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: warning: expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n"; 14250b54c2e3SMauro Carvalho Chehab } 142652042e2dSMauro Carvalho Chehab return; 142752042e2dSMauro Carvalho Chehab } 14280b54c2e3SMauro Carvalho Chehab $declaration_name = "(anonymous)" if ($declaration_name eq ""); 142952042e2dSMauro Carvalho Chehab 14305cb5c31cSJohannes Berg my %_members; 14315cb5c31cSJohannes Berg 1432463a0fdcSMarkus Heiser $members =~ s/\s+$//; 14331da177e4SLinus Torvalds 14341da177e4SLinus Torvalds foreach my $arg (split ',', $members) { 14351da177e4SLinus Torvalds $arg =~ s/^\s*(\w+).*/$1/; 14361da177e4SLinus Torvalds push @parameterlist, $arg; 14371da177e4SLinus Torvalds if (!$parameterdescs{$arg}) { 14381da177e4SLinus Torvalds $parameterdescs{$arg} = $undescribed; 143985afe608SMauro Carvalho Chehab if (show_warnings("enum", $declaration_name)) { 14402defb272SMauro Carvalho Chehab print STDERR "${file}:$.: warning: Enum value '$arg' not described in enum '$declaration_name'\n"; 14412defb272SMauro Carvalho Chehab } 14421da177e4SLinus Torvalds } 14435cb5c31cSJohannes Berg $_members{$arg} = 1; 14445cb5c31cSJohannes Berg } 14451da177e4SLinus Torvalds 14465cb5c31cSJohannes Berg while (my ($k, $v) = each %parameterdescs) { 14475cb5c31cSJohannes Berg if (!exists($_members{$k})) { 144885afe608SMauro Carvalho Chehab if (show_warnings("enum", $declaration_name)) { 14492defb272SMauro Carvalho Chehab print STDERR "${file}:$.: warning: Excess enum value '$k' description in '$declaration_name'\n"; 14502defb272SMauro Carvalho Chehab } 14515cb5c31cSJohannes Berg } 14521da177e4SLinus Torvalds } 14531da177e4SLinus Torvalds 14541da177e4SLinus Torvalds output_declaration($declaration_name, 14551da177e4SLinus Torvalds 'enum', 14561da177e4SLinus Torvalds {'enum' => $declaration_name, 14571da177e4SLinus Torvalds 'module' => $modulename, 14581da177e4SLinus Torvalds 'parameterlist' => \@parameterlist, 14591da177e4SLinus Torvalds 'parameterdescs' => \%parameterdescs, 14601da177e4SLinus Torvalds 'sectionlist' => \@sectionlist, 14611da177e4SLinus Torvalds 'sections' => \%sections, 14621da177e4SLinus Torvalds 'purpose' => $declaration_purpose 14631da177e4SLinus Torvalds }); 1464d38c8cfbSMauro Carvalho Chehab } else { 1465d40e1e65SBart Van Assche print STDERR "${file}:$.: error: Cannot parse enum!\n"; 14661da177e4SLinus Torvalds ++$errors; 14671da177e4SLinus Torvalds } 14681da177e4SLinus Torvalds} 14691da177e4SLinus Torvalds 14707d2c6b1eSMauro Carvalho Chehabmy $typedef_type = qr { ((?:\s+[\w\*]+\b){1,8})\s* }x; 14717efc6c42SMauro Carvalho Chehabmy $typedef_ident = qr { \*?\s*(\w\S+)\s* }x; 14727efc6c42SMauro Carvalho Chehabmy $typedef_args = qr { \s*\((.*)\); }x; 14737efc6c42SMauro Carvalho Chehab 14747efc6c42SMauro Carvalho Chehabmy $typedef1 = qr { typedef$typedef_type\($typedef_ident\)$typedef_args }x; 14757efc6c42SMauro Carvalho Chehabmy $typedef2 = qr { typedef$typedef_type$typedef_ident$typedef_args }x; 14767efc6c42SMauro Carvalho Chehab 14771da177e4SLinus Torvaldssub dump_typedef($$) { 14781da177e4SLinus Torvalds my $x = shift; 14791da177e4SLinus Torvalds my $file = shift; 14801da177e4SLinus Torvalds 1481aeec46b9SMartin Waitz $x =~ s@/\*.*?\*/@@gos; # strip comments. 148283766452SMauro Carvalho Chehab 14837efc6c42SMauro Carvalho Chehab # Parse function typedef prototypes 14847efc6c42SMauro Carvalho Chehab if ($x =~ $typedef1 || $x =~ $typedef2) { 148583766452SMauro Carvalho Chehab $return_type = $1; 148683766452SMauro Carvalho Chehab $declaration_name = $2; 148783766452SMauro Carvalho Chehab my $args = $3; 14886b80975cSMauro Carvalho Chehab $return_type =~ s/^\s+//; 148983766452SMauro Carvalho Chehab 149052042e2dSMauro Carvalho Chehab if ($identifier ne $declaration_name) { 149152042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: warning: expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n"; 149252042e2dSMauro Carvalho Chehab return; 149352042e2dSMauro Carvalho Chehab } 149452042e2dSMauro Carvalho Chehab 1495151c468bSMauro Carvalho Chehab create_parameterlist($args, ',', $file, $declaration_name); 149683766452SMauro Carvalho Chehab 149783766452SMauro Carvalho Chehab output_declaration($declaration_name, 149883766452SMauro Carvalho Chehab 'function', 149983766452SMauro Carvalho Chehab {'function' => $declaration_name, 150082801d06SMauro Carvalho Chehab 'typedef' => 1, 150183766452SMauro Carvalho Chehab 'module' => $modulename, 150283766452SMauro Carvalho Chehab 'functiontype' => $return_type, 150383766452SMauro Carvalho Chehab 'parameterlist' => \@parameterlist, 150483766452SMauro Carvalho Chehab 'parameterdescs' => \%parameterdescs, 150583766452SMauro Carvalho Chehab 'parametertypes' => \%parametertypes, 150683766452SMauro Carvalho Chehab 'sectionlist' => \@sectionlist, 150783766452SMauro Carvalho Chehab 'sections' => \%sections, 150883766452SMauro Carvalho Chehab 'purpose' => $declaration_purpose 150983766452SMauro Carvalho Chehab }); 151083766452SMauro Carvalho Chehab return; 151183766452SMauro Carvalho Chehab } 151283766452SMauro Carvalho Chehab 15131da177e4SLinus Torvalds while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) { 15141da177e4SLinus Torvalds $x =~ s/\(*.\)\s*;$/;/; 15151da177e4SLinus Torvalds $x =~ s/\[*.\]\s*;$/;/; 15161da177e4SLinus Torvalds } 15171da177e4SLinus Torvalds 15181da177e4SLinus Torvalds if ($x =~ /typedef.*\s+(\w+)\s*;/) { 15191da177e4SLinus Torvalds $declaration_name = $1; 15201da177e4SLinus Torvalds 152152042e2dSMauro Carvalho Chehab if ($identifier ne $declaration_name) { 152252042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: warning: expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n"; 152352042e2dSMauro Carvalho Chehab return; 152452042e2dSMauro Carvalho Chehab } 152552042e2dSMauro Carvalho Chehab 15261da177e4SLinus Torvalds output_declaration($declaration_name, 15271da177e4SLinus Torvalds 'typedef', 15281da177e4SLinus Torvalds {'typedef' => $declaration_name, 15291da177e4SLinus Torvalds 'module' => $modulename, 15301da177e4SLinus Torvalds 'sectionlist' => \@sectionlist, 15311da177e4SLinus Torvalds 'sections' => \%sections, 15321da177e4SLinus Torvalds 'purpose' => $declaration_purpose 15331da177e4SLinus Torvalds }); 15341da177e4SLinus Torvalds } 15351da177e4SLinus Torvalds else { 1536d40e1e65SBart Van Assche print STDERR "${file}:$.: error: Cannot parse typedef!\n"; 15371da177e4SLinus Torvalds ++$errors; 15381da177e4SLinus Torvalds } 15391da177e4SLinus Torvalds} 15401da177e4SLinus Torvalds 1541a1d94aa5SRandy Dunlapsub save_struct_actual($) { 1542a1d94aa5SRandy Dunlap my $actual = shift; 1543a1d94aa5SRandy Dunlap 1544a1d94aa5SRandy Dunlap # strip all spaces from the actual param so that it looks like one string item 1545a1d94aa5SRandy Dunlap $actual =~ s/\s*//g; 1546a1d94aa5SRandy Dunlap $struct_actual = $struct_actual . $actual . " "; 1547a1d94aa5SRandy Dunlap} 1548a1d94aa5SRandy Dunlap 1549151c468bSMauro Carvalho Chehabsub create_parameterlist($$$$) { 15501da177e4SLinus Torvalds my $args = shift; 15511da177e4SLinus Torvalds my $splitter = shift; 15521da177e4SLinus Torvalds my $file = shift; 1553151c468bSMauro Carvalho Chehab my $declaration_name = shift; 15541da177e4SLinus Torvalds my $type; 15551da177e4SLinus Torvalds my $param; 15561da177e4SLinus Torvalds 1557a6d3fe77SMartin Waitz # temporarily replace commas inside function pointer definition 15581da177e4SLinus Torvalds while ($args =~ /(\([^\),]+),/) { 15591da177e4SLinus Torvalds $args =~ s/(\([^\),]+),/$1#/g; 15601da177e4SLinus Torvalds } 15611da177e4SLinus Torvalds 15621da177e4SLinus Torvalds foreach my $arg (split($splitter, $args)) { 15631da177e4SLinus Torvalds # strip comments 15641da177e4SLinus Torvalds $arg =~ s/\/\*.*\*\///; 15651da177e4SLinus Torvalds # strip leading/trailing spaces 15661da177e4SLinus Torvalds $arg =~ s/^\s*//; 15671da177e4SLinus Torvalds $arg =~ s/\s*$//; 15681da177e4SLinus Torvalds $arg =~ s/\s+/ /; 15691da177e4SLinus Torvalds 15701da177e4SLinus Torvalds if ($arg =~ /^#/) { 15711da177e4SLinus Torvalds # Treat preprocessor directive as a typeless variable just to fill 15721da177e4SLinus Torvalds # corresponding data structures "correctly". Catch it later in 15731da177e4SLinus Torvalds # output_* subs. 1574ed8348e2SMauro Carvalho Chehab push_parameter($arg, "", "", $file); 157500d62961SRichard Kennedy } elsif ($arg =~ m/\(.+\)\s*\(/) { 15761da177e4SLinus Torvalds # pointer-to-function 15771da177e4SLinus Torvalds $arg =~ tr/#/,/; 1578336ced2dSAditya Srivastava $arg =~ m/[^\(]+\(\*?\s*([\w\[\]\.]*)\s*\)/; 15791da177e4SLinus Torvalds $param = $1; 15801da177e4SLinus Torvalds $type = $arg; 158100d62961SRichard Kennedy $type =~ s/([^\(]+\(\*?)\s*$param/$1/; 1582a1d94aa5SRandy Dunlap save_struct_actual($param); 1583ed8348e2SMauro Carvalho Chehab push_parameter($param, $type, $arg, $file, $declaration_name); 1584aeec46b9SMartin Waitz } elsif ($arg) { 15851da177e4SLinus Torvalds $arg =~ s/\s*:\s*/:/g; 15861da177e4SLinus Torvalds $arg =~ s/\s*\[/\[/g; 15871da177e4SLinus Torvalds 15881da177e4SLinus Torvalds my @args = split('\s*,\s*', $arg); 15891da177e4SLinus Torvalds if ($args[0] =~ m/\*/) { 15901da177e4SLinus Torvalds $args[0] =~ s/(\*+)\s*/ $1/; 15911da177e4SLinus Torvalds } 1592884f2810SBorislav Petkov 1593884f2810SBorislav Petkov my @first_arg; 1594884f2810SBorislav Petkov if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) { 1595884f2810SBorislav Petkov shift @args; 1596884f2810SBorislav Petkov push(@first_arg, split('\s+', $1)); 1597884f2810SBorislav Petkov push(@first_arg, $2); 1598884f2810SBorislav Petkov } else { 1599884f2810SBorislav Petkov @first_arg = split('\s+', shift @args); 1600884f2810SBorislav Petkov } 1601884f2810SBorislav Petkov 16021da177e4SLinus Torvalds unshift(@args, pop @first_arg); 16031da177e4SLinus Torvalds $type = join " ", @first_arg; 16041da177e4SLinus Torvalds 16051da177e4SLinus Torvalds foreach $param (@args) { 16061da177e4SLinus Torvalds if ($param =~ m/^(\*+)\s*(.*)/) { 1607a1d94aa5SRandy Dunlap save_struct_actual($2); 1608ed8348e2SMauro Carvalho Chehab 1609ed8348e2SMauro Carvalho Chehab push_parameter($2, "$type $1", $arg, $file, $declaration_name); 16101da177e4SLinus Torvalds } 16111da177e4SLinus Torvalds elsif ($param =~ m/(.*?):(\d+)/) { 16127b97887eSRandy Dunlap if ($type ne "") { # skip unnamed bit-fields 1613a1d94aa5SRandy Dunlap save_struct_actual($1); 1614ed8348e2SMauro Carvalho Chehab push_parameter($1, "$type:$2", $arg, $file, $declaration_name) 16151da177e4SLinus Torvalds } 16167b97887eSRandy Dunlap } 16171da177e4SLinus Torvalds else { 1618a1d94aa5SRandy Dunlap save_struct_actual($param); 1619ed8348e2SMauro Carvalho Chehab push_parameter($param, $type, $arg, $file, $declaration_name); 16201da177e4SLinus Torvalds } 16211da177e4SLinus Torvalds } 16221da177e4SLinus Torvalds } 16231da177e4SLinus Torvalds } 16241da177e4SLinus Torvalds} 16251da177e4SLinus Torvalds 1626ed8348e2SMauro Carvalho Chehabsub push_parameter($$$$$) { 16271da177e4SLinus Torvalds my $param = shift; 16281da177e4SLinus Torvalds my $type = shift; 1629ed8348e2SMauro Carvalho Chehab my $org_arg = shift; 16301da177e4SLinus Torvalds my $file = shift; 1631151c468bSMauro Carvalho Chehab my $declaration_name = shift; 16321da177e4SLinus Torvalds 16335f8c7c98SRandy Dunlap if (($anon_struct_union == 1) && ($type eq "") && 16345f8c7c98SRandy Dunlap ($param eq "}")) { 16355f8c7c98SRandy Dunlap return; # ignore the ending }; from anon. struct/union 16365f8c7c98SRandy Dunlap } 16375f8c7c98SRandy Dunlap 16385f8c7c98SRandy Dunlap $anon_struct_union = 0; 1639f9b5c530SMauro Carvalho Chehab $param =~ s/[\[\)].*//; 16401da177e4SLinus Torvalds 1641a6d3fe77SMartin Waitz if ($type eq "" && $param =~ /\.\.\.$/) 16421da177e4SLinus Torvalds { 1643c950a173SSilvio Fricke if (!$param =~ /\w\.\.\.$/) { 1644c950a173SSilvio Fricke # handles unnamed variable parameters 1645ef00028bSJonathan Corbet $param = "..."; 1646c950a173SSilvio Fricke } 164743756e34SJonathan Neuschäfer elsif ($param =~ /\w\.\.\.$/) { 164843756e34SJonathan Neuschäfer # for named variable parameters of the form `x...`, remove the dots 164943756e34SJonathan Neuschäfer $param =~ s/\.\.\.$//; 165043756e34SJonathan Neuschäfer } 1651ced69090SRandy Dunlap if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") { 1652a6d3fe77SMartin Waitz $parameterdescs{$param} = "variable arguments"; 16531da177e4SLinus Torvalds } 1654ced69090SRandy Dunlap } 16551da177e4SLinus Torvalds elsif ($type eq "" && ($param eq "" or $param eq "void")) 16561da177e4SLinus Torvalds { 16571da177e4SLinus Torvalds $param="void"; 16581da177e4SLinus Torvalds $parameterdescs{void} = "no arguments"; 16591da177e4SLinus Torvalds } 1660134fe01bSRandy Dunlap elsif ($type eq "" && ($param eq "struct" or $param eq "union")) 1661134fe01bSRandy Dunlap # handle unnamed (anonymous) union or struct: 1662134fe01bSRandy Dunlap { 1663134fe01bSRandy Dunlap $type = $param; 1664134fe01bSRandy Dunlap $param = "{unnamed_" . $param . "}"; 1665134fe01bSRandy Dunlap $parameterdescs{$param} = "anonymous\n"; 16665f8c7c98SRandy Dunlap $anon_struct_union = 1; 1667134fe01bSRandy Dunlap } 1668134fe01bSRandy Dunlap 1669a6d3fe77SMartin Waitz # warn if parameter has no description 1670134fe01bSRandy Dunlap # (but ignore ones starting with # as these are not parameters 1671134fe01bSRandy Dunlap # but inline preprocessor statements); 1672151c468bSMauro Carvalho Chehab # Note: It will also ignore void params and unnamed structs/unions 1673f9b5c530SMauro Carvalho Chehab if (!defined $parameterdescs{$param} && $param !~ /^#/) { 1674f9b5c530SMauro Carvalho Chehab $parameterdescs{$param} = $undescribed; 16751da177e4SLinus Torvalds 1676be5cd20cSJonathan Corbet if (show_warnings($type, $declaration_name) && $param !~ /\./) { 1677151c468bSMauro Carvalho Chehab print STDERR 1678151c468bSMauro Carvalho Chehab "${file}:$.: warning: Function parameter or member '$param' not described in '$declaration_name'\n"; 16791da177e4SLinus Torvalds ++$warnings; 16801da177e4SLinus Torvalds } 16812defb272SMauro Carvalho Chehab } 16821da177e4SLinus Torvalds 168325985edcSLucas De Marchi # strip spaces from $param so that it is one continuous string 1684e34e7dbbSRandy Dunlap # on @parameterlist; 1685e34e7dbbSRandy Dunlap # this fixes a problem where check_sections() cannot find 1686e34e7dbbSRandy Dunlap # a parameter like "addr[6 + 2]" because it actually appears 1687e34e7dbbSRandy Dunlap # as "addr[6", "+", "2]" on the parameter list; 1688e34e7dbbSRandy Dunlap # but it's better to maintain the param string unchanged for output, 1689e34e7dbbSRandy Dunlap # so just weaken the string compare in check_sections() to ignore 1690e34e7dbbSRandy Dunlap # "[blah" in a parameter string; 1691e34e7dbbSRandy Dunlap ###$param =~ s/\s*//g; 16921da177e4SLinus Torvalds push @parameterlist, $param; 1693ed8348e2SMauro Carvalho Chehab $org_arg =~ s/\s\s+/ /g; 1694ed8348e2SMauro Carvalho Chehab $parametertypes{$param} = $org_arg; 16951da177e4SLinus Torvalds} 16961da177e4SLinus Torvalds 16971081de2dSMauro Carvalho Chehabsub check_sections($$$$$) { 16981081de2dSMauro Carvalho Chehab my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_; 1699a1d94aa5SRandy Dunlap my @sects = split ' ', $sectcheck; 1700a1d94aa5SRandy Dunlap my @prms = split ' ', $prmscheck; 1701a1d94aa5SRandy Dunlap my $err; 1702a1d94aa5SRandy Dunlap my ($px, $sx); 1703a1d94aa5SRandy Dunlap my $prm_clean; # strip trailing "[array size]" and/or beginning "*" 1704a1d94aa5SRandy Dunlap 1705a1d94aa5SRandy Dunlap foreach $sx (0 .. $#sects) { 1706a1d94aa5SRandy Dunlap $err = 1; 1707a1d94aa5SRandy Dunlap foreach $px (0 .. $#prms) { 1708a1d94aa5SRandy Dunlap $prm_clean = $prms[$px]; 1709a1d94aa5SRandy Dunlap $prm_clean =~ s/\[.*\]//; 17101f3a6688SJohannes Berg $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i; 1711e34e7dbbSRandy Dunlap # ignore array size in a parameter string; 1712e34e7dbbSRandy Dunlap # however, the original param string may contain 1713e34e7dbbSRandy Dunlap # spaces, e.g.: addr[6 + 2] 1714e34e7dbbSRandy Dunlap # and this appears in @prms as "addr[6" since the 1715e34e7dbbSRandy Dunlap # parameter list is split at spaces; 1716e34e7dbbSRandy Dunlap # hence just ignore "[..." for the sections check; 1717e34e7dbbSRandy Dunlap $prm_clean =~ s/\[.*//; 1718e34e7dbbSRandy Dunlap 1719a1d94aa5SRandy Dunlap ##$prm_clean =~ s/^\**//; 1720a1d94aa5SRandy Dunlap if ($prm_clean eq $sects[$sx]) { 1721a1d94aa5SRandy Dunlap $err = 0; 1722a1d94aa5SRandy Dunlap last; 1723a1d94aa5SRandy Dunlap } 1724a1d94aa5SRandy Dunlap } 1725a1d94aa5SRandy Dunlap if ($err) { 1726a1d94aa5SRandy Dunlap if ($decl_type eq "function") { 1727d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: " . 1728a1d94aa5SRandy Dunlap "Excess function parameter " . 1729a1d94aa5SRandy Dunlap "'$sects[$sx]' " . 1730a1d94aa5SRandy Dunlap "description in '$decl_name'\n"; 1731a1d94aa5SRandy Dunlap ++$warnings; 1732a1d94aa5SRandy Dunlap } 1733a1d94aa5SRandy Dunlap } 1734a1d94aa5SRandy Dunlap } 1735a1d94aa5SRandy Dunlap} 1736a1d94aa5SRandy Dunlap 17371da177e4SLinus Torvalds## 17384092bac7SYacine Belkadi# Checks the section describing the return value of a function. 17394092bac7SYacine Belkadisub check_return_section { 17404092bac7SYacine Belkadi my $file = shift; 17414092bac7SYacine Belkadi my $declaration_name = shift; 17424092bac7SYacine Belkadi my $return_type = shift; 17434092bac7SYacine Belkadi 17444092bac7SYacine Belkadi # Ignore an empty return type (It's a macro) 17454092bac7SYacine Belkadi # Ignore functions with a "void" return type. (But don't ignore "void *") 17464092bac7SYacine Belkadi if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) { 17474092bac7SYacine Belkadi return; 17484092bac7SYacine Belkadi } 17494092bac7SYacine Belkadi 17504092bac7SYacine Belkadi if (!defined($sections{$section_return}) || 17514092bac7SYacine Belkadi $sections{$section_return} eq "") { 1752d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: " . 17534092bac7SYacine Belkadi "No description found for return value of " . 17544092bac7SYacine Belkadi "'$declaration_name'\n"; 17554092bac7SYacine Belkadi ++$warnings; 17564092bac7SYacine Belkadi } 17574092bac7SYacine Belkadi} 17584092bac7SYacine Belkadi 17594092bac7SYacine Belkadi## 17601da177e4SLinus Torvalds# takes a function prototype and the name of the current file being 17611da177e4SLinus Torvalds# processed and spits out all the details stored in the global 17621da177e4SLinus Torvalds# arrays/hashes. 17631da177e4SLinus Torvaldssub dump_function($$) { 17641da177e4SLinus Torvalds my $prototype = shift; 17651da177e4SLinus Torvalds my $file = shift; 1766cbb4d3e6SHoria Geanta my $noret = 0; 17671da177e4SLinus Torvalds 17685ef09c96SMauro Carvalho Chehab print_lineno($new_start_line); 17695eb6b4b3SMauro Carvalho Chehab 17701da177e4SLinus Torvalds $prototype =~ s/^static +//; 17711da177e4SLinus Torvalds $prototype =~ s/^extern +//; 17724dc3b16bSPavel Pisa $prototype =~ s/^asmlinkage +//; 17731da177e4SLinus Torvalds $prototype =~ s/^inline +//; 17741da177e4SLinus Torvalds $prototype =~ s/^__inline__ +//; 177532e79401SRandy Dunlap $prototype =~ s/^__inline +//; 177632e79401SRandy Dunlap $prototype =~ s/^__always_inline +//; 177732e79401SRandy Dunlap $prototype =~ s/^noinline +//; 177874fc5c65SRandy Dunlap $prototype =~ s/__init +//; 177920072205SRandy Dunlap $prototype =~ s/__init_or_module +//; 1780*80342d48SMatthew Wilcox $prototype =~ s/__deprecated +//; 1781084aa001SAditya Srivastava $prototype =~ s/__flatten +//; 1782270a0096SRandy Dunlap $prototype =~ s/__meminit +//; 178370c95b00SRandy Dunlap $prototype =~ s/__must_check +//; 17840df7c0e3SRandy Dunlap $prototype =~ s/__weak +//; 17850891f959SMatthew Wilcox $prototype =~ s/__sched +//; 178695e760cbSRandy Dunlap $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//; 1787cbb4d3e6SHoria Geanta my $define = $prototype =~ s/^#\s*define\s+//; #ak added 1788084aa001SAditya Srivastava $prototype =~ s/__attribute_const__ +//; 1789b1aaa546SPaolo Bonzini $prototype =~ s/__attribute__\s*\(\( 1790b1aaa546SPaolo Bonzini (?: 1791b1aaa546SPaolo Bonzini [\w\s]++ # attribute name 1792b1aaa546SPaolo Bonzini (?:\([^)]*+\))? # attribute arguments 1793b1aaa546SPaolo Bonzini \s*+,? # optional comma at the end 1794b1aaa546SPaolo Bonzini )+ 1795b1aaa546SPaolo Bonzini \)\)\s+//x; 17961da177e4SLinus Torvalds 17971da177e4SLinus Torvalds # Yes, this truly is vile. We are looking for: 17981da177e4SLinus Torvalds # 1. Return type (may be nothing if we're looking at a macro) 17991da177e4SLinus Torvalds # 2. Function name 18001da177e4SLinus Torvalds # 3. Function parameters. 18011da177e4SLinus Torvalds # 18021da177e4SLinus Torvalds # All the while we have to watch out for function pointer parameters 18031da177e4SLinus Torvalds # (which IIRC is what the two sections are for), C types (these 18041da177e4SLinus Torvalds # regexps don't even start to express all the possibilities), and 18051da177e4SLinus Torvalds # so on. 18061da177e4SLinus Torvalds # 18071da177e4SLinus Torvalds # If you mess with these regexps, it's a good idea to check that 18081da177e4SLinus Torvalds # the following functions' documentation still comes out right: 18091da177e4SLinus Torvalds # - parport_register_device (function pointer parameters) 18101da177e4SLinus Torvalds # - atomic_set (macro) 18119598f91fSMartin Waitz # - pci_match_device, __copy_to_user (long return type) 18121da177e4SLinus Torvalds 1813cbb4d3e6SHoria Geanta if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) { 1814cbb4d3e6SHoria Geanta # This is an object-like macro, it has no return type and no parameter 1815cbb4d3e6SHoria Geanta # list. 1816cbb4d3e6SHoria Geanta # Function-like macros are not allowed to have spaces between 1817cbb4d3e6SHoria Geanta # declaration_name and opening parenthesis (notice the \s+). 1818cbb4d3e6SHoria Geanta $return_type = $1; 1819cbb4d3e6SHoria Geanta $declaration_name = $2; 1820cbb4d3e6SHoria Geanta $noret = 1; 1821cbb4d3e6SHoria Geanta } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 18221da177e4SLinus Torvalds $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 18235a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 18241da177e4SLinus Torvalds $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 182594b3e03cSRandy Dunlap $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 18261da177e4SLinus Torvalds $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 18275a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || 18281da177e4SLinus Torvalds $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18291da177e4SLinus Torvalds $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18305a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18311da177e4SLinus Torvalds $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18325a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18331da177e4SLinus Torvalds $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18345a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18359598f91fSMartin Waitz $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18365a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || 18375a0bc578SMatthew Wilcox $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) { 18381da177e4SLinus Torvalds $return_type = $1; 18391da177e4SLinus Torvalds $declaration_name = $2; 18401da177e4SLinus Torvalds my $args = $3; 18411da177e4SLinus Torvalds 1842151c468bSMauro Carvalho Chehab create_parameterlist($args, ',', $file, $declaration_name); 18431da177e4SLinus Torvalds } else { 1844d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n"; 18451da177e4SLinus Torvalds return; 18461da177e4SLinus Torvalds } 18471da177e4SLinus Torvalds 184852042e2dSMauro Carvalho Chehab if ($identifier ne $declaration_name) { 184952042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: warning: expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n"; 185052042e2dSMauro Carvalho Chehab return; 185152042e2dSMauro Carvalho Chehab } 185252042e2dSMauro Carvalho Chehab 1853a1d94aa5SRandy Dunlap my $prms = join " ", @parameterlist; 18541081de2dSMauro Carvalho Chehab check_sections($file, $declaration_name, "function", $sectcheck, $prms); 1855a1d94aa5SRandy Dunlap 18564092bac7SYacine Belkadi # This check emits a lot of warnings at the moment, because many 18574092bac7SYacine Belkadi # functions don't have a 'Return' doc section. So until the number 18584092bac7SYacine Belkadi # of warnings goes sufficiently down, the check is only performed in 18594092bac7SYacine Belkadi # verbose mode. 18604092bac7SYacine Belkadi # TODO: always perform the check. 1861cbb4d3e6SHoria Geanta if ($verbose && !$noret) { 18624092bac7SYacine Belkadi check_return_section($file, $declaration_name, $return_type); 18634092bac7SYacine Belkadi } 18644092bac7SYacine Belkadi 186547bcacfdSMauro Carvalho Chehab # The function parser can be called with a typedef parameter. 186647bcacfdSMauro Carvalho Chehab # Handle it. 186747bcacfdSMauro Carvalho Chehab if ($return_type =~ /typedef/) { 186847bcacfdSMauro Carvalho Chehab output_declaration($declaration_name, 186947bcacfdSMauro Carvalho Chehab 'function', 187047bcacfdSMauro Carvalho Chehab {'function' => $declaration_name, 187147bcacfdSMauro Carvalho Chehab 'typedef' => 1, 187247bcacfdSMauro Carvalho Chehab 'module' => $modulename, 187347bcacfdSMauro Carvalho Chehab 'functiontype' => $return_type, 187447bcacfdSMauro Carvalho Chehab 'parameterlist' => \@parameterlist, 187547bcacfdSMauro Carvalho Chehab 'parameterdescs' => \%parameterdescs, 187647bcacfdSMauro Carvalho Chehab 'parametertypes' => \%parametertypes, 187747bcacfdSMauro Carvalho Chehab 'sectionlist' => \@sectionlist, 187847bcacfdSMauro Carvalho Chehab 'sections' => \%sections, 187947bcacfdSMauro Carvalho Chehab 'purpose' => $declaration_purpose 188047bcacfdSMauro Carvalho Chehab }); 188147bcacfdSMauro Carvalho Chehab } else { 18821da177e4SLinus Torvalds output_declaration($declaration_name, 18831da177e4SLinus Torvalds 'function', 18841da177e4SLinus Torvalds {'function' => $declaration_name, 18851da177e4SLinus Torvalds 'module' => $modulename, 18861da177e4SLinus Torvalds 'functiontype' => $return_type, 18871da177e4SLinus Torvalds 'parameterlist' => \@parameterlist, 18881da177e4SLinus Torvalds 'parameterdescs' => \%parameterdescs, 18891da177e4SLinus Torvalds 'parametertypes' => \%parametertypes, 18901da177e4SLinus Torvalds 'sectionlist' => \@sectionlist, 18911da177e4SLinus Torvalds 'sections' => \%sections, 18921da177e4SLinus Torvalds 'purpose' => $declaration_purpose 18931da177e4SLinus Torvalds }); 18941da177e4SLinus Torvalds } 189547bcacfdSMauro Carvalho Chehab} 18961da177e4SLinus Torvalds 18971da177e4SLinus Torvaldssub reset_state { 18981da177e4SLinus Torvalds $function = ""; 18991da177e4SLinus Torvalds %parameterdescs = (); 19001da177e4SLinus Torvalds %parametertypes = (); 19011da177e4SLinus Torvalds @parameterlist = (); 19021da177e4SLinus Torvalds %sections = (); 19031da177e4SLinus Torvalds @sectionlist = (); 1904a1d94aa5SRandy Dunlap $sectcheck = ""; 1905a1d94aa5SRandy Dunlap $struct_actual = ""; 19061da177e4SLinus Torvalds $prototype = ""; 19071da177e4SLinus Torvalds 190848af606aSJani Nikula $state = STATE_NORMAL; 190948af606aSJani Nikula $inline_doc_state = STATE_INLINE_NA; 19101da177e4SLinus Torvalds} 19111da177e4SLinus Torvalds 191256afb0f8SJason Baronsub tracepoint_munge($) { 191356afb0f8SJason Baron my $file = shift; 191456afb0f8SJason Baron my $tracepointname = 0; 191556afb0f8SJason Baron my $tracepointargs = 0; 191656afb0f8SJason Baron 191756afb0f8SJason Baron if ($prototype =~ m/TRACE_EVENT\((.*?),/) { 191856afb0f8SJason Baron $tracepointname = $1; 191956afb0f8SJason Baron } 19203a9089fdSJason Baron if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) { 19213a9089fdSJason Baron $tracepointname = $1; 19223a9089fdSJason Baron } 19233a9089fdSJason Baron if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) { 19243a9089fdSJason Baron $tracepointname = $2; 19253a9089fdSJason Baron } 19263a9089fdSJason Baron $tracepointname =~ s/^\s+//; #strip leading whitespace 192756afb0f8SJason Baron if ($prototype =~ m/TP_PROTO\((.*?)\)/) { 192856afb0f8SJason Baron $tracepointargs = $1; 192956afb0f8SJason Baron } 193056afb0f8SJason Baron if (($tracepointname eq 0) || ($tracepointargs eq 0)) { 1931d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n". 193256afb0f8SJason Baron "$prototype\n"; 193356afb0f8SJason Baron } else { 193456afb0f8SJason Baron $prototype = "static inline void trace_$tracepointname($tracepointargs)"; 193552042e2dSMauro Carvalho Chehab $identifier = "trace_$identifier"; 193656afb0f8SJason Baron } 193756afb0f8SJason Baron} 193856afb0f8SJason Baron 1939b4870bc5SRandy Dunlapsub syscall_munge() { 1940b4870bc5SRandy Dunlap my $void = 0; 1941b4870bc5SRandy Dunlap 19427c9aa015SMauro Carvalho Chehab $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's 1943b4870bc5SRandy Dunlap## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) { 1944b4870bc5SRandy Dunlap if ($prototype =~ m/SYSCALL_DEFINE0/) { 1945b4870bc5SRandy Dunlap $void = 1; 1946b4870bc5SRandy Dunlap## $prototype = "long sys_$1(void)"; 1947b4870bc5SRandy Dunlap } 1948b4870bc5SRandy Dunlap 1949b4870bc5SRandy Dunlap $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name 1950b4870bc5SRandy Dunlap if ($prototype =~ m/long (sys_.*?),/) { 1951b4870bc5SRandy Dunlap $prototype =~ s/,/\(/; 1952b4870bc5SRandy Dunlap } elsif ($void) { 1953b4870bc5SRandy Dunlap $prototype =~ s/\)/\(void\)/; 1954b4870bc5SRandy Dunlap } 1955b4870bc5SRandy Dunlap 1956b4870bc5SRandy Dunlap # now delete all of the odd-number commas in $prototype 1957b4870bc5SRandy Dunlap # so that arg types & arg names don't have a comma between them 1958b4870bc5SRandy Dunlap my $count = 0; 1959b4870bc5SRandy Dunlap my $len = length($prototype); 1960b4870bc5SRandy Dunlap if ($void) { 1961b4870bc5SRandy Dunlap $len = 0; # skip the for-loop 1962b4870bc5SRandy Dunlap } 1963b4870bc5SRandy Dunlap for (my $ix = 0; $ix < $len; $ix++) { 1964b4870bc5SRandy Dunlap if (substr($prototype, $ix, 1) eq ',') { 1965b4870bc5SRandy Dunlap $count++; 1966b4870bc5SRandy Dunlap if ($count % 2 == 1) { 1967b4870bc5SRandy Dunlap substr($prototype, $ix, 1) = ' '; 1968b4870bc5SRandy Dunlap } 1969b4870bc5SRandy Dunlap } 1970b4870bc5SRandy Dunlap } 1971b4870bc5SRandy Dunlap} 1972b4870bc5SRandy Dunlap 1973b7afa92bSDaniel Vettersub process_proto_function($$) { 19741da177e4SLinus Torvalds my $x = shift; 19751da177e4SLinus Torvalds my $file = shift; 19761da177e4SLinus Torvalds 197751f5a0c8SRandy Dunlap $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line 197851f5a0c8SRandy Dunlap 1979890c78c2SRandy Dunlap if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) { 19801da177e4SLinus Torvalds # do nothing 19811da177e4SLinus Torvalds } 19821da177e4SLinus Torvalds elsif ($x =~ /([^\{]*)/) { 19831da177e4SLinus Torvalds $prototype .= $1; 19841da177e4SLinus Torvalds } 1985b4870bc5SRandy Dunlap 1986890c78c2SRandy Dunlap if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) { 19871da177e4SLinus Torvalds $prototype =~ s@/\*.*?\*/@@gos; # strip comments. 19881da177e4SLinus Torvalds $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's. 19891da177e4SLinus Torvalds $prototype =~ s@^\s+@@gos; # strip leading spaces 19907ae281b0SMauro Carvalho Chehab 19917ae281b0SMauro Carvalho Chehab # Handle prototypes for function pointers like: 19927ae281b0SMauro Carvalho Chehab # int (*pcs_config)(struct foo) 19937ae281b0SMauro Carvalho Chehab $prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos; 19947ae281b0SMauro Carvalho Chehab 1995b4870bc5SRandy Dunlap if ($prototype =~ /SYSCALL_DEFINE/) { 1996b4870bc5SRandy Dunlap syscall_munge(); 1997b4870bc5SRandy Dunlap } 19983a9089fdSJason Baron if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ || 19993a9089fdSJason Baron $prototype =~ /DEFINE_SINGLE_EVENT/) 20003a9089fdSJason Baron { 200156afb0f8SJason Baron tracepoint_munge($file); 200256afb0f8SJason Baron } 20031da177e4SLinus Torvalds dump_function($prototype, $file); 20041da177e4SLinus Torvalds reset_state(); 20051da177e4SLinus Torvalds } 20061da177e4SLinus Torvalds} 20071da177e4SLinus Torvalds 2008b7afa92bSDaniel Vettersub process_proto_type($$) { 20091da177e4SLinus Torvalds my $x = shift; 20101da177e4SLinus Torvalds my $file = shift; 20111da177e4SLinus Torvalds 20121da177e4SLinus Torvalds $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's. 20131da177e4SLinus Torvalds $x =~ s@^\s+@@gos; # strip leading spaces 20141da177e4SLinus Torvalds $x =~ s@\s+$@@gos; # strip trailing spaces 201551f5a0c8SRandy Dunlap $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line 201651f5a0c8SRandy Dunlap 20171da177e4SLinus Torvalds if ($x =~ /^#/) { 20181da177e4SLinus Torvalds # To distinguish preprocessor directive from regular declaration later. 20191da177e4SLinus Torvalds $x .= ";"; 20201da177e4SLinus Torvalds } 20211da177e4SLinus Torvalds 20221da177e4SLinus Torvalds while (1) { 2023673bb2dfSBen Hutchings if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) { 2024463a0fdcSMarkus Heiser if( length $prototype ) { 2025463a0fdcSMarkus Heiser $prototype .= " " 2026463a0fdcSMarkus Heiser } 20271da177e4SLinus Torvalds $prototype .= $1 . $2; 20281da177e4SLinus Torvalds ($2 eq '{') && $brcount++; 20291da177e4SLinus Torvalds ($2 eq '}') && $brcount--; 20301da177e4SLinus Torvalds if (($2 eq ';') && ($brcount == 0)) { 20311da177e4SLinus Torvalds dump_declaration($prototype, $file); 20321da177e4SLinus Torvalds reset_state(); 20331da177e4SLinus Torvalds last; 20341da177e4SLinus Torvalds } 20351da177e4SLinus Torvalds $x = $3; 20361da177e4SLinus Torvalds } else { 20371da177e4SLinus Torvalds $prototype .= $x; 20381da177e4SLinus Torvalds last; 20391da177e4SLinus Torvalds } 20401da177e4SLinus Torvalds } 20411da177e4SLinus Torvalds} 20421da177e4SLinus Torvalds 20436b5b55f6SRandy Dunlap 20441ad560e4SJani Nikulasub map_filename($) { 20451ad560e4SJani Nikula my $file; 20461ad560e4SJani Nikula my ($orig_file) = @_; 20471ad560e4SJani Nikula 20481ad560e4SJani Nikula if (defined($ENV{'SRCTREE'})) { 20491ad560e4SJani Nikula $file = "$ENV{'SRCTREE'}" . "/" . $orig_file; 20501ad560e4SJani Nikula } else { 20511ad560e4SJani Nikula $file = $orig_file; 20521ad560e4SJani Nikula } 20531ad560e4SJani Nikula 20541ad560e4SJani Nikula if (defined($source_map{$file})) { 20551ad560e4SJani Nikula $file = $source_map{$file}; 20561ad560e4SJani Nikula } 20571ad560e4SJani Nikula 20581ad560e4SJani Nikula return $file; 20591ad560e4SJani Nikula} 20601ad560e4SJani Nikula 206188c2b57dSJani Nikulasub process_export_file($) { 206288c2b57dSJani Nikula my ($orig_file) = @_; 206388c2b57dSJani Nikula my $file = map_filename($orig_file); 206488c2b57dSJani Nikula 206588c2b57dSJani Nikula if (!open(IN,"<$file")) { 206688c2b57dSJani Nikula print STDERR "Error: Cannot open file $file\n"; 206788c2b57dSJani Nikula ++$errors; 206888c2b57dSJani Nikula return; 206988c2b57dSJani Nikula } 207088c2b57dSJani Nikula 207188c2b57dSJani Nikula while (<IN>) { 207288c2b57dSJani Nikula if (/$export_symbol/) { 2073eab795ddSMauro Carvalho Chehab next if (defined($nosymbol_table{$2})); 207488c2b57dSJani Nikula $function_table{$2} = 1; 207588c2b57dSJani Nikula } 207688c2b57dSJani Nikula } 207788c2b57dSJani Nikula 207888c2b57dSJani Nikula close(IN); 207988c2b57dSJani Nikula} 208088c2b57dSJani Nikula 208107048d13SJonathan Corbet# 208207048d13SJonathan Corbet# Parsers for the various processing states. 208307048d13SJonathan Corbet# 208407048d13SJonathan Corbet# STATE_NORMAL: looking for the /** to begin everything. 208507048d13SJonathan Corbet# 208607048d13SJonathan Corbetsub process_normal() { 20871da177e4SLinus Torvalds if (/$doc_start/o) { 208848af606aSJani Nikula $state = STATE_NAME; # next line is always the function name 2089850622dfSRandy Dunlap $in_doc_sect = 0; 20900b0f5f29SDaniel Vetter $declaration_start_line = $. + 1; 20911da177e4SLinus Torvalds } 209207048d13SJonathan Corbet} 209307048d13SJonathan Corbet 20943cac2bc4SJonathan Corbet# 20953cac2bc4SJonathan Corbet# STATE_NAME: Looking for the "name - description" line 20963cac2bc4SJonathan Corbet# 20973cac2bc4SJonathan Corbetsub process_name($$) { 20983cac2bc4SJonathan Corbet my $file = shift; 20991da177e4SLinus Torvalds my $descr; 21001da177e4SLinus Torvalds 21011da177e4SLinus Torvalds if (/$doc_block/o) { 210248af606aSJani Nikula $state = STATE_DOCBLOCK; 21031da177e4SLinus Torvalds $contents = ""; 21045ef09c96SMauro Carvalho Chehab $new_start_line = $.; 21050b0f5f29SDaniel Vetter 21061da177e4SLinus Torvalds if ( $1 eq "" ) { 21071da177e4SLinus Torvalds $section = $section_intro; 21081da177e4SLinus Torvalds } else { 21091da177e4SLinus Torvalds $section = $1; 21101da177e4SLinus Torvalds } 211152042e2dSMauro Carvalho Chehab } elsif (/$doc_decl/o) { 21121da177e4SLinus Torvalds $identifier = $1; 21133e58e839SAditya Srivastava my $is_kernel_comment = 0; 2114f9bbc12cSAditya Srivastava my $decl_start = qr{\s*\*}; 2115f9bbc12cSAditya Srivastava # test for pointer declaration type, foo * bar() - desc 2116f9bbc12cSAditya Srivastava my $fn_type = qr{\w+\s*\*\s*}; 2117f9bbc12cSAditya Srivastava my $parenthesis = qr{\(\w*\)}; 2118f9bbc12cSAditya Srivastava my $decl_end = qr{[-:].*}; 2119f9bbc12cSAditya Srivastava if (/^$decl_start\s*([\w\s]+?)$parenthesis?\s*$decl_end?$/) { 21201da177e4SLinus Torvalds $identifier = $1; 21211da177e4SLinus Torvalds } 212252042e2dSMauro Carvalho Chehab if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) { 212352042e2dSMauro Carvalho Chehab $decl_type = $1; 212452042e2dSMauro Carvalho Chehab $identifier = $2; 21253e58e839SAditya Srivastava $is_kernel_comment = 1; 212652042e2dSMauro Carvalho Chehab } 2127f9bbc12cSAditya Srivastava # Look for foo() or static void foo() - description; or misspelt 2128f9bbc12cSAditya Srivastava # identifier 2129f9bbc12cSAditya Srivastava elsif (/^$decl_start\s*$fn_type?(\w+)\s*$parenthesis?\s*$decl_end?$/ || 2130f9bbc12cSAditya Srivastava /^$decl_start\s*$fn_type?(\w+.*)$parenthesis?\s*$decl_end$/) { 2131f9bbc12cSAditya Srivastava $identifier = $1; 2132f9bbc12cSAditya Srivastava $decl_type = 'function'; 2133f9bbc12cSAditya Srivastava $identifier =~ s/^define\s+//; 2134f9bbc12cSAditya Srivastava $is_kernel_comment = 1; 2135f9bbc12cSAditya Srivastava } 213652042e2dSMauro Carvalho Chehab $identifier =~ s/\s+$//; 21371da177e4SLinus Torvalds 213817b78717SJonathan Corbet $state = STATE_BODY; 21390b0f5f29SDaniel Vetter # if there's no @param blocks need to set up default section 21400b0f5f29SDaniel Vetter # here 21412f4ad40aSJani Nikula $contents = ""; 21422f4ad40aSJani Nikula $section = $section_default; 21430b0f5f29SDaniel Vetter $new_start_line = $. + 1; 214452042e2dSMauro Carvalho Chehab if (/[-:](.*)/) { 214551f5a0c8SRandy Dunlap # strip leading/trailing/multiple spaces 2146a21217daSRandy Dunlap $descr= $1; 2147a21217daSRandy Dunlap $descr =~ s/^\s*//; 2148a21217daSRandy Dunlap $descr =~ s/\s*$//; 214912ae6779SDaniel Santos $descr =~ s/\s+/ /g; 21500bba924cSJonathan Corbet $declaration_purpose = $descr; 215117b78717SJonathan Corbet $state = STATE_BODY_MAYBE; 21521da177e4SLinus Torvalds } else { 21531da177e4SLinus Torvalds $declaration_purpose = ""; 21541da177e4SLinus Torvalds } 215577cc23b8SRandy Dunlap 21563e58e839SAditya Srivastava if (!$is_kernel_comment) { 21573e58e839SAditya Srivastava print STDERR "${file}:$.: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst\n"; 21583e58e839SAditya Srivastava print STDERR $_; 21593e58e839SAditya Srivastava ++$warnings; 21603e58e839SAditya Srivastava $state = STATE_NORMAL; 21613e58e839SAditya Srivastava } 21623e58e839SAditya Srivastava 216377cc23b8SRandy Dunlap if (($declaration_purpose eq "") && $verbose) { 2164d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: missing initial short description on line:\n"; 216577cc23b8SRandy Dunlap print STDERR $_; 216677cc23b8SRandy Dunlap ++$warnings; 216777cc23b8SRandy Dunlap } 216877cc23b8SRandy Dunlap 21690b54c2e3SMauro Carvalho Chehab if ($identifier eq "" && $decl_type ne "enum") { 217052042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: warning: wrong kernel-doc identifier on line:\n"; 217152042e2dSMauro Carvalho Chehab print STDERR $_; 217252042e2dSMauro Carvalho Chehab ++$warnings; 217352042e2dSMauro Carvalho Chehab $state = STATE_NORMAL; 21741da177e4SLinus Torvalds } 21751da177e4SLinus Torvalds 21761da177e4SLinus Torvalds if ($verbose) { 217752042e2dSMauro Carvalho Chehab print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n"; 21781da177e4SLinus Torvalds } 21791da177e4SLinus Torvalds } else { 2180d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: Cannot understand $_ on line $.", 21811da177e4SLinus Torvalds " - I thought it was a doc line\n"; 21821da177e4SLinus Torvalds ++$warnings; 218348af606aSJani Nikula $state = STATE_NORMAL; 21841da177e4SLinus Torvalds } 21853cac2bc4SJonathan Corbet} 21863cac2bc4SJonathan Corbet 21873cac2bc4SJonathan Corbet 2188d742f24dSJonathan Corbet# 2189d742f24dSJonathan Corbet# STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment. 2190d742f24dSJonathan Corbet# 2191d742f24dSJonathan Corbetsub process_body($$) { 2192d742f24dSJonathan Corbet my $file = shift; 21933cac2bc4SJonathan Corbet 219443756e34SJonathan Neuschäfer # Until all named variable macro parameters are 219543756e34SJonathan Neuschäfer # documented using the bare name (`x`) rather than with 219643756e34SJonathan Neuschäfer # dots (`x...`), strip the dots: 219743756e34SJonathan Neuschäfer if ($section =~ /\w\.\.\.$/) { 219843756e34SJonathan Neuschäfer $section =~ s/\.\.\.$//; 219943756e34SJonathan Neuschäfer 220043756e34SJonathan Neuschäfer if ($verbose) { 220143756e34SJonathan Neuschäfer print STDERR "${file}:$.: warning: Variable macro arguments should be documented without dots\n"; 220243756e34SJonathan Neuschäfer ++$warnings; 220343756e34SJonathan Neuschäfer } 220443756e34SJonathan Neuschäfer } 220543756e34SJonathan Neuschäfer 22060d55d48bSMauro Carvalho Chehab if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) { 22070d55d48bSMauro Carvalho Chehab dump_section($file, $section, $contents); 22080d55d48bSMauro Carvalho Chehab $section = $section_default; 22095ef09c96SMauro Carvalho Chehab $new_start_line = $.; 22100d55d48bSMauro Carvalho Chehab $contents = ""; 22110d55d48bSMauro Carvalho Chehab } 22120d55d48bSMauro Carvalho Chehab 2213f624adefSJani Nikula if (/$doc_sect/i) { # case insensitive for supported section names 22141da177e4SLinus Torvalds $newsection = $1; 22151da177e4SLinus Torvalds $newcontents = $2; 22161da177e4SLinus Torvalds 2217f624adefSJani Nikula # map the supported section names to the canonical names 2218f624adefSJani Nikula if ($newsection =~ m/^description$/i) { 2219f624adefSJani Nikula $newsection = $section_default; 2220f624adefSJani Nikula } elsif ($newsection =~ m/^context$/i) { 2221f624adefSJani Nikula $newsection = $section_context; 2222f624adefSJani Nikula } elsif ($newsection =~ m/^returns?$/i) { 2223f624adefSJani Nikula $newsection = $section_return; 2224f624adefSJani Nikula } elsif ($newsection =~ m/^\@return$/) { 2225f624adefSJani Nikula # special: @return is a section, not a param description 2226f624adefSJani Nikula $newsection = $section_return; 2227f624adefSJani Nikula } 2228f624adefSJani Nikula 2229792aa2f2SRandy Dunlap if (($contents ne "") && ($contents ne "\n")) { 2230850622dfSRandy Dunlap if (!$in_doc_sect && $verbose) { 2231d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: contents before sections\n"; 2232850622dfSRandy Dunlap ++$warnings; 2233850622dfSRandy Dunlap } 22340bba924cSJonathan Corbet dump_section($file, $section, $contents); 22351da177e4SLinus Torvalds $section = $section_default; 22361da177e4SLinus Torvalds } 22371da177e4SLinus Torvalds 2238850622dfSRandy Dunlap $in_doc_sect = 1; 223917b78717SJonathan Corbet $state = STATE_BODY; 22401da177e4SLinus Torvalds $contents = $newcontents; 22410b0f5f29SDaniel Vetter $new_start_line = $.; 22427c9aa015SMauro Carvalho Chehab while (substr($contents, 0, 1) eq " ") { 224305189497SRandy Dunlap $contents = substr($contents, 1); 224405189497SRandy Dunlap } 22450a726301SJani Nikula if ($contents ne "") { 22461da177e4SLinus Torvalds $contents .= "\n"; 22471da177e4SLinus Torvalds } 22481da177e4SLinus Torvalds $section = $newsection; 2249b7886de4SJani Nikula $leading_space = undef; 22501da177e4SLinus Torvalds } elsif (/$doc_end/) { 22514c98ecafSRandy Dunlap if (($contents ne "") && ($contents ne "\n")) { 22520bba924cSJonathan Corbet dump_section($file, $section, $contents); 22531da177e4SLinus Torvalds $section = $section_default; 22541da177e4SLinus Torvalds $contents = ""; 22551da177e4SLinus Torvalds } 225646b958ebSRandy Dunlap # look for doc_com + <text> + doc_end: 225746b958ebSRandy Dunlap if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') { 2258d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: suspicious ending line: $_"; 225946b958ebSRandy Dunlap ++$warnings; 226046b958ebSRandy Dunlap } 22611da177e4SLinus Torvalds 22621da177e4SLinus Torvalds $prototype = ""; 226348af606aSJani Nikula $state = STATE_PROTO; 22641da177e4SLinus Torvalds $brcount = 0; 22655ef09c96SMauro Carvalho Chehab $new_start_line = $. + 1; 22661da177e4SLinus Torvalds } elsif (/$doc_content/) { 22676423133bSJohannes Weiner if ($1 eq "") { 22680d55d48bSMauro Carvalho Chehab if ($section eq $section_context) { 22690bba924cSJonathan Corbet dump_section($file, $section, $contents); 22701da177e4SLinus Torvalds $section = $section_default; 22711da177e4SLinus Torvalds $contents = ""; 22720b0f5f29SDaniel Vetter $new_start_line = $.; 22730d55d48bSMauro Carvalho Chehab $state = STATE_BODY; 22741da177e4SLinus Torvalds } else { 22750d55d48bSMauro Carvalho Chehab if ($section ne $section_default) { 22760d55d48bSMauro Carvalho Chehab $state = STATE_BODY_WITH_BLANK_LINE; 22770d55d48bSMauro Carvalho Chehab } else { 22780d55d48bSMauro Carvalho Chehab $state = STATE_BODY; 22790d55d48bSMauro Carvalho Chehab } 22806423133bSJohannes Weiner $contents .= "\n"; 22816423133bSJohannes Weiner } 228217b78717SJonathan Corbet } elsif ($state == STATE_BODY_MAYBE) { 22836423133bSJohannes Weiner # Continued declaration purpose 22846423133bSJohannes Weiner chomp($declaration_purpose); 22850bba924cSJonathan Corbet $declaration_purpose .= " " . $1; 228612ae6779SDaniel Santos $declaration_purpose =~ s/\s+/ /g; 22876423133bSJohannes Weiner } else { 2288b7886de4SJani Nikula my $cont = $1; 2289b7886de4SJani Nikula if ($section =~ m/^@/ || $section eq $section_context) { 2290b7886de4SJani Nikula if (!defined $leading_space) { 2291b7886de4SJani Nikula if ($cont =~ m/^(\s+)/) { 2292b7886de4SJani Nikula $leading_space = $1; 2293b7886de4SJani Nikula } else { 2294b7886de4SJani Nikula $leading_space = ""; 2295b7886de4SJani Nikula } 2296b7886de4SJani Nikula } 2297b7886de4SJani Nikula $cont =~ s/^$leading_space//; 2298b7886de4SJani Nikula } 2299b7886de4SJani Nikula $contents .= $cont . "\n"; 23001da177e4SLinus Torvalds } 23011da177e4SLinus Torvalds } else { 23021da177e4SLinus Torvalds # i dont know - bad line? ignore. 2303d40e1e65SBart Van Assche print STDERR "${file}:$.: warning: bad line: $_"; 23041da177e4SLinus Torvalds ++$warnings; 23051da177e4SLinus Torvalds } 2306d742f24dSJonathan Corbet} 2307d742f24dSJonathan Corbet 2308d742f24dSJonathan Corbet 2309cc794812SJonathan Corbet# 2310cc794812SJonathan Corbet# STATE_PROTO: reading a function/whatever prototype. 2311cc794812SJonathan Corbet# 2312cc794812SJonathan Corbetsub process_proto($$) { 2313cc794812SJonathan Corbet my $file = shift; 2314cc794812SJonathan Corbet 2315cc794812SJonathan Corbet if (/$doc_inline_oneline/) { 2316cc794812SJonathan Corbet $section = $1; 2317cc794812SJonathan Corbet $contents = $2; 2318cc794812SJonathan Corbet if ($contents ne "") { 2319cc794812SJonathan Corbet $contents .= "\n"; 2320cc794812SJonathan Corbet dump_section($file, $section, $contents); 2321cc794812SJonathan Corbet $section = $section_default; 2322cc794812SJonathan Corbet $contents = ""; 2323cc794812SJonathan Corbet } 2324cc794812SJonathan Corbet } elsif (/$doc_inline_start/) { 2325cc794812SJonathan Corbet $state = STATE_INLINE; 2326cc794812SJonathan Corbet $inline_doc_state = STATE_INLINE_NAME; 2327cc794812SJonathan Corbet } elsif ($decl_type eq 'function') { 2328cc794812SJonathan Corbet process_proto_function($_, $file); 2329cc794812SJonathan Corbet } else { 2330cc794812SJonathan Corbet process_proto_type($_, $file); 2331cc794812SJonathan Corbet } 2332cc794812SJonathan Corbet} 2333cc794812SJonathan Corbet 2334c17add56SJonathan Corbet# 2335c17add56SJonathan Corbet# STATE_DOCBLOCK: within a DOC: block. 2336c17add56SJonathan Corbet# 2337c17add56SJonathan Corbetsub process_docblock($$) { 2338c17add56SJonathan Corbet my $file = shift; 2339cc794812SJonathan Corbet 2340c17add56SJonathan Corbet if (/$doc_end/) { 2341c17add56SJonathan Corbet dump_doc_section($file, $section, $contents); 2342c17add56SJonathan Corbet $section = $section_default; 2343c17add56SJonathan Corbet $contents = ""; 2344c17add56SJonathan Corbet $function = ""; 2345c17add56SJonathan Corbet %parameterdescs = (); 2346c17add56SJonathan Corbet %parametertypes = (); 2347c17add56SJonathan Corbet @parameterlist = (); 2348c17add56SJonathan Corbet %sections = (); 2349c17add56SJonathan Corbet @sectionlist = (); 2350c17add56SJonathan Corbet $prototype = ""; 2351c17add56SJonathan Corbet $state = STATE_NORMAL; 2352c17add56SJonathan Corbet } elsif (/$doc_content/) { 2353c17add56SJonathan Corbet if ( $1 eq "" ) { 2354c17add56SJonathan Corbet $contents .= $blankline; 2355c17add56SJonathan Corbet } else { 2356c17add56SJonathan Corbet $contents .= $1 . "\n"; 2357c17add56SJonathan Corbet } 2358c17add56SJonathan Corbet } 2359d742f24dSJonathan Corbet} 2360d742f24dSJonathan Corbet 2361c17add56SJonathan Corbet# 2362c17add56SJonathan Corbet# STATE_INLINE: docbook comments within a prototype. 2363c17add56SJonathan Corbet# 2364c17add56SJonathan Corbetsub process_inline($$) { 2365c17add56SJonathan Corbet my $file = shift; 2366d742f24dSJonathan Corbet 2367a4c6ebedSDanilo Cesar Lemes de Paula # First line (state 1) needs to be a @parameter 236848af606aSJani Nikula if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) { 2369a4c6ebedSDanilo Cesar Lemes de Paula $section = $1; 2370a4c6ebedSDanilo Cesar Lemes de Paula $contents = $2; 23710b0f5f29SDaniel Vetter $new_start_line = $.; 2372a4c6ebedSDanilo Cesar Lemes de Paula if ($contents ne "") { 23737c9aa015SMauro Carvalho Chehab while (substr($contents, 0, 1) eq " ") { 2374a4c6ebedSDanilo Cesar Lemes de Paula $contents = substr($contents, 1); 2375a4c6ebedSDanilo Cesar Lemes de Paula } 2376a4c6ebedSDanilo Cesar Lemes de Paula $contents .= "\n"; 2377a4c6ebedSDanilo Cesar Lemes de Paula } 237848af606aSJani Nikula $inline_doc_state = STATE_INLINE_TEXT; 2379a4c6ebedSDanilo Cesar Lemes de Paula # Documentation block end */ 238048af606aSJani Nikula } elsif (/$doc_inline_end/) { 2381a4c6ebedSDanilo Cesar Lemes de Paula if (($contents ne "") && ($contents ne "\n")) { 23820bba924cSJonathan Corbet dump_section($file, $section, $contents); 2383a4c6ebedSDanilo Cesar Lemes de Paula $section = $section_default; 2384a4c6ebedSDanilo Cesar Lemes de Paula $contents = ""; 2385a4c6ebedSDanilo Cesar Lemes de Paula } 238648af606aSJani Nikula $state = STATE_PROTO; 238748af606aSJani Nikula $inline_doc_state = STATE_INLINE_NA; 2388a4c6ebedSDanilo Cesar Lemes de Paula # Regular text 2389a4c6ebedSDanilo Cesar Lemes de Paula } elsif (/$doc_content/) { 239048af606aSJani Nikula if ($inline_doc_state == STATE_INLINE_TEXT) { 2391a4c6ebedSDanilo Cesar Lemes de Paula $contents .= $1 . "\n"; 23926450c895SJani Nikula # nuke leading blank lines 23936450c895SJani Nikula if ($contents =~ /^\s*$/) { 23946450c895SJani Nikula $contents = ""; 23956450c895SJani Nikula } 239648af606aSJani Nikula } elsif ($inline_doc_state == STATE_INLINE_NAME) { 239748af606aSJani Nikula $inline_doc_state = STATE_INLINE_ERROR; 2398e7ca311eSDaniel Vetter print STDERR "${file}:$.: warning: "; 2399a4c6ebedSDanilo Cesar Lemes de Paula print STDERR "Incorrect use of kernel-doc format: $_"; 2400a4c6ebedSDanilo Cesar Lemes de Paula ++$warnings; 2401a4c6ebedSDanilo Cesar Lemes de Paula } 2402a4c6ebedSDanilo Cesar Lemes de Paula } 24030c9aa209SJani Nikula} 2404c17add56SJonathan Corbet 2405c17add56SJonathan Corbet 2406c17add56SJonathan Corbetsub process_file($) { 2407c17add56SJonathan Corbet my $file; 2408c17add56SJonathan Corbet my $initial_section_counter = $section_counter; 2409c17add56SJonathan Corbet my ($orig_file) = @_; 2410c17add56SJonathan Corbet 2411c17add56SJonathan Corbet $file = map_filename($orig_file); 2412c17add56SJonathan Corbet 2413dbe8ba00SMauro Carvalho Chehab if (!open(IN_FILE,"<$file")) { 2414c17add56SJonathan Corbet print STDERR "Error: Cannot open file $file\n"; 2415c17add56SJonathan Corbet ++$errors; 2416c17add56SJonathan Corbet return; 24171da177e4SLinus Torvalds } 2418c17add56SJonathan Corbet 2419c17add56SJonathan Corbet $. = 1; 2420c17add56SJonathan Corbet 2421c17add56SJonathan Corbet $section_counter = 0; 2422dbe8ba00SMauro Carvalho Chehab while (<IN_FILE>) { 2423c17add56SJonathan Corbet while (s/\\\s*$//) { 2424dbe8ba00SMauro Carvalho Chehab $_ .= <IN_FILE>; 2425c17add56SJonathan Corbet } 2426c17add56SJonathan Corbet # Replace tabs by spaces 2427c17add56SJonathan Corbet while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}; 2428c17add56SJonathan Corbet # Hand this line to the appropriate state handler 2429c17add56SJonathan Corbet if ($state == STATE_NORMAL) { 2430c17add56SJonathan Corbet process_normal(); 2431c17add56SJonathan Corbet } elsif ($state == STATE_NAME) { 2432c17add56SJonathan Corbet process_name($file, $_); 24330d55d48bSMauro Carvalho Chehab } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE || 24340d55d48bSMauro Carvalho Chehab $state == STATE_BODY_WITH_BLANK_LINE) { 2435c17add56SJonathan Corbet process_body($file, $_); 2436c17add56SJonathan Corbet } elsif ($state == STATE_INLINE) { # scanning for inline parameters 2437c17add56SJonathan Corbet process_inline($file, $_); 2438cc794812SJonathan Corbet } elsif ($state == STATE_PROTO) { 2439cc794812SJonathan Corbet process_proto($file, $_); 244048af606aSJani Nikula } elsif ($state == STATE_DOCBLOCK) { 2441c17add56SJonathan Corbet process_docblock($file, $_); 24421da177e4SLinus Torvalds } 24431da177e4SLinus Torvalds } 2444c17add56SJonathan Corbet 2445c17add56SJonathan Corbet # Make sure we got something interesting. 2446b0d60bfbSJonathan Corbet if ($initial_section_counter == $section_counter && $ 2447b0d60bfbSJonathan Corbet output_mode ne "none") { 2448b0d60bfbSJonathan Corbet if ($output_selection == OUTPUT_INCLUDE) { 2449b0d60bfbSJonathan Corbet print STDERR "${file}:1: warning: '$_' not found\n" 2450b0d60bfbSJonathan Corbet for keys %function_table; 24513a025e1dSMatthew Wilcox } 2452b0d60bfbSJonathan Corbet else { 2453b0d60bfbSJonathan Corbet print STDERR "${file}:1: warning: no structured comments found\n"; 2454e946c43aSJohannes Berg } 24551da177e4SLinus Torvalds } 2456dbe8ba00SMauro Carvalho Chehab close IN_FILE; 24571da177e4SLinus Torvalds} 24588484baaaSRandy Dunlap 24598484baaaSRandy Dunlap 246093351d41SMauro Carvalho Chehabif ($output_mode eq "rst") { 246193351d41SMauro Carvalho Chehab get_sphinx_version() if (!$sphinx_major); 246293351d41SMauro Carvalho Chehab} 246393351d41SMauro Carvalho Chehab 24648484baaaSRandy Dunlap$kernelversion = get_kernel_version(); 24658484baaaSRandy Dunlap 24668484baaaSRandy Dunlap# generate a sequence of code that will splice in highlighting information 24678484baaaSRandy Dunlap# using the s// operator. 24681ef06233SMauro Carvalho Chehabfor (my $k = 0; $k < @highlights; $k++) { 24694d732701SDanilo Cesar Lemes de Paula my $pattern = $highlights[$k][0]; 24704d732701SDanilo Cesar Lemes de Paula my $result = $highlights[$k][1]; 24714d732701SDanilo Cesar Lemes de Paula# print STDERR "scanning pattern:$pattern, highlight:($result)\n"; 24724d732701SDanilo Cesar Lemes de Paula $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n"; 24738484baaaSRandy Dunlap} 24748484baaaSRandy Dunlap 24758484baaaSRandy Dunlap# Read the file that maps relative names to absolute names for 24768484baaaSRandy Dunlap# separate source and object directories and for shadow trees. 24778484baaaSRandy Dunlapif (open(SOURCE_MAP, "<.tmp_filelist.txt")) { 24788484baaaSRandy Dunlap my ($relname, $absname); 24798484baaaSRandy Dunlap while(<SOURCE_MAP>) { 24808484baaaSRandy Dunlap chop(); 24818484baaaSRandy Dunlap ($relname, $absname) = (split())[0..1]; 24828484baaaSRandy Dunlap $relname =~ s:^/+::; 24838484baaaSRandy Dunlap $source_map{$relname} = $absname; 24848484baaaSRandy Dunlap } 24858484baaaSRandy Dunlap close(SOURCE_MAP); 24868484baaaSRandy Dunlap} 24878484baaaSRandy Dunlap 248888c2b57dSJani Nikulaif ($output_selection == OUTPUT_EXPORTED || 248988c2b57dSJani Nikula $output_selection == OUTPUT_INTERNAL) { 2490c9b2cfb3SJani Nikula 2491c9b2cfb3SJani Nikula push(@export_file_list, @ARGV); 2492c9b2cfb3SJani Nikula 249388c2b57dSJani Nikula foreach (@export_file_list) { 249488c2b57dSJani Nikula chomp; 249588c2b57dSJani Nikula process_export_file($_); 249688c2b57dSJani Nikula } 249788c2b57dSJani Nikula} 249888c2b57dSJani Nikula 24998484baaaSRandy Dunlapforeach (@ARGV) { 25008484baaaSRandy Dunlap chomp; 25018484baaaSRandy Dunlap process_file($_); 25028484baaaSRandy Dunlap} 25038484baaaSRandy Dunlapif ($verbose && $errors) { 25048484baaaSRandy Dunlap print STDERR "$errors errors\n"; 25058484baaaSRandy Dunlap} 25068484baaaSRandy Dunlapif ($verbose && $warnings) { 25078484baaaSRandy Dunlap print STDERR "$warnings warnings\n"; 25088484baaaSRandy Dunlap} 25098484baaaSRandy Dunlap 25102c12c810SPierre-Louis Bossartif ($Werror && $warnings) { 25112c12c810SPierre-Louis Bossart print STDERR "$warnings warnings as Errors\n"; 25122c12c810SPierre-Louis Bossart exit($warnings); 25132c12c810SPierre-Louis Bossart} else { 25142c12c810SPierre-Louis Bossart exit($output_mode eq "none" ? 0 : $errors) 25152c12c810SPierre-Louis Bossart} 2516