1.\" Copyright (c) 1995-2001 FreeBSD Inc. 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL [your name] OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.\" 26.Dd December 7, 2001 27.Dt STYLE 9 28.Os 29.Sh NAME 30.Nm style 31.Nd "kernel source file style guide" 32.Sh DESCRIPTION 33This file specifies the preferred style for kernel source files in the 34.Fx 35source tree. 36It is also a guide for the preferred userland code style. 37Many of the style rules are implicit in the examples. 38Be careful to check the examples before assuming that 39.Nm 40is silent on an issue. 41.Bd -literal 42/* 43 * Style guide for FreeBSD. Based on the CSRG's KNF (Kernel Normal Form). 44 * 45 * @(#)style 1.14 (Berkeley) 4/28/95 46 * $FreeBSD$ 47 */ 48 49/* 50 * VERY important single-line comments look like this. 51 */ 52 53/* Most single-line comments look like this. */ 54 55/* 56 * Multi-line comments look like this. Make them real sentences. Fill 57 * them so they look like real paragraphs. 58 */ 59.Ed 60.Pp 61After any copyright header, there is a blank line, and the 62.Va rcsid 63for source files. 64Version control system ID tags should only exist once in a file 65(unlike in this one). 66Non-C/C++ source files follow the example above, while C/C++ source files 67follow the one below. 68All VCS (version control system) revision identification in files obtained 69from elsewhere should be maintained, including, where applicable, multiple IDs 70showing a file's history. 71In general, do not edit foreign IDs or their infrastructure. 72Unless otherwise wrapped (such as 73.Dq Li "#if defined(LIBC_SCCS)" ) , 74enclose both in 75.Dq Li "#if 0 ... #endif" 76to hide any uncompilable bits 77and to keep the IDs out of object files. 78Only add 79.Dq Li "From: " 80in front of foreign VCS IDs if the file is renamed. 81.Bd -literal 82#if 0 83#ifndef lint 84static char sccsid[] = "@(#)style 1.14 (Berkeley) 4/28/95"; 85#endif /* not lint */ 86#endif 87 88#include <sys/cdefs.h> 89__FBSDID("$FreeBSD$"); 90.Ed 91.Pp 92Leave another blank line before the header files. 93.Pp 94Kernel include files (i.e.\& 95.Pa sys/*.h ) 96come first; normally, include 97.Aq Pa sys/types.h 98OR 99.Aq Pa sys/param.h , 100but not both. 101.Aq Pa sys/types.h 102includes 103.Aq Pa sys/cdefs.h , 104and it is okay to depend on that. 105.Bd -literal 106#include <sys/types.h> /* Non-local includes in angle brackets. */ 107.Ed 108.Pp 109For a network program, put the network include files next. 110.Bd -literal 111#include <net/if.h> 112#include <net/if_dl.h> 113#include <net/route.h> 114#include <netinet/in.h> 115#include <protocols/rwhod.h> 116.Ed 117.Pp 118Do not use files in 119.Pa /usr/include 120for files in the kernel. 121.Pp 122Leave a blank line before the next group, the 123.Pa /usr 124include files, 125which should be sorted alphabetically by name. 126.Bd -literal 127#include <stdio.h> 128.Ed 129.Pp 130Global pathnames are defined in 131.Aq Pa paths.h . 132Pathnames local 133to the program go in 134.Qq Pa pathnames.h 135in the local directory. 136.Bd -literal 137#include <paths.h> 138.Ed 139.Pp 140Leave another blank line before the user include files. 141.Bd -literal 142#include "pathnames.h" /* Local includes in double quotes. */ 143.Ed 144.Pp 145Do not 146.Ic #define 147or declare names in the implementation namespace except 148for implementing application interfaces. 149.Pp 150The names of 151.Dq unsafe 152macros (ones that have side effects), and the names of macros for 153manifest constants, are all in uppercase. 154The expansions of expression-like macros are either a single token 155or have outer parentheses. 156Put a single tab character between the 157.Ic #define 158and the macro name. 159If a macro is an inline expansion of a function, the function name is 160all in lowercase and the macro has the same name all in uppercase. 161.\" XXX the above conflicts with ANSI style where the names are the 162.\" same and you #undef the macro (if any) to get the function. 163.\" It is not followed for MALLOC(), and not very common if inline 164.\" functions are used. 165If a 166macro needs more than a single line, use braces 167.Ql ( \&{ 168and 169.Ql \&} ) . 170Right-justify the 171backslashes; it makes it easier to read. 172If the macro encapsulates a compound statement, enclose it in a 173.Ic do 174loop, 175so that it can safely be used in 176.Ic if 177statements. 178Any final statement-terminating semicolon should be 179supplied by the macro invocation rather than the macro, to make parsing easier 180for pretty-printers and editors. 181.Bd -literal 182#define MACRO(x, y) do { \e 183 variable = (x) + (y); \e 184 (y) += 2; \e 185} while (0) 186.Ed 187.Pp 188Enumeration values are all uppercase. 189.Bd -literal 190enum enumtype { ONE, TWO } et; 191.Ed 192.Pp 193When declaring variables in structures, declare them sorted by use, then 194by size, and then in alphabetical order. 195The first category normally does not apply, but there are exceptions. 196Each one gets its own line. 197Try to make the structure 198readable by aligning the member names using either one or two tabs 199depending upon your judgment. 200You should use one tab only if it suffices to align at least 90% of 201the member names. 202Names following extremely long types 203should be separated by a single space. 204.Pp 205Major structures should be declared at the top of the file in which they 206are used, or in separate header files if they are used in multiple 207source files. 208Use of the structures should be by separate declarations 209and should be 210.Ic extern 211if they are declared in a header file. 212.Bd -literal 213struct foo { 214 struct foo *next; /* List of active foo. */ 215 struct mumble amumble; /* Comment for mumble. */ 216 int bar; /* Try to align the comments. */ 217 struct verylongtypename *baz; /* Won't fit in 2 tabs. */ 218}; 219struct foo *foohead; /* Head of global foo list. */ 220.Ed 221.Pp 222Use 223.Xr queue 3 224macros rather than rolling your own lists, whenever possible. 225Thus, 226the previous example would be better written: 227.Bd -literal 228#include <sys/queue.h> 229 230struct foo { 231 LIST_ENTRY(foo) link; /* Use queue macros for foo lists. */ 232 struct mumble amumble; /* Comment for mumble. */ 233 int bar; /* Try to align the comments. */ 234 struct verylongtypename *baz; /* Won't fit in 2 tabs. */ 235}; 236LIST_HEAD(, foo) foohead; /* Head of global foo list. */ 237.Ed 238.Pp 239Avoid using typedefs for structure types. 240This makes it impossible 241for applications to use pointers to such a structure opaquely, which 242is both possible and beneficial when using an ordinary struct tag. 243When convention requires a 244.Ic typedef , 245make its name match the struct tag. 246Avoid typedefs ending in 247.Dq Li _t , 248except as specified in Standard C or by \*[Px]. 249.Bd -literal 250/* Make the structure name match the typedef. */ 251typedef struct bar { 252 int level; 253} BAR; 254typedef int foo; /* This is foo. */ 255typedef const long baz; /* This is baz. */ 256.Ed 257.Pp 258All functions are prototyped somewhere. 259.Pp 260Function prototypes for private functions (i.e. functions not used 261elsewhere) go at the top of the first source module. 262Functions 263local to one source module should be declared 264.Ic static . 265.Pp 266Functions used from other parts of the kernel are prototyped in the 267relevant include file. 268Function prototypes should be listed in a logical order, preferably 269alphabetical unless there's a compelling reason to use a different 270ordering. 271.Pp 272Functions that are used locally in more than one module go into a 273separate header file, e.g.\& 274.Qq Pa extern.h . 275.Pp 276Do not use the 277.Dv __P 278macro. 279.Pp 280In general code can be considered 281.Dq "new code" 282when it makes up about 50% or more of the file(s) involved. 283This is enough 284to break precedents in the existing code and use the current 285.Nm 286guidelines. 287.Pp 288The kernel has a name associated with parameter types, e.g., in the kernel 289use: 290.Bd -literal 291void function(int fd); 292.Ed 293.Pp 294In header files visible to userland applications, prototypes that are 295visible must use either 296.Dq protected 297names (ones beginning with an underscore) 298or no names with the types. 299It is preferable to use protected names. 300E.g., use: 301.Bd -literal 302void function(int); 303.Ed 304.Pp 305or: 306.Bd -literal 307void function(int _fd); 308.Ed 309.Pp 310Prototypes may have an extra space after a tab to enable function names 311to line up: 312.Bd -literal 313static char *function(int _arg, const char *_arg2, struct foo *_arg3, 314 struct bar *_arg4); 315static void usage(void); 316 317/* 318 * All major routines should have a comment briefly describing what 319 * they do. The comment before the "main" routine should describe 320 * what the program does. 321 */ 322int 323main(int argc, char *argv[]) 324{ 325 char *ep; 326 long num; 327 int ch; 328.Ed 329.Pp 330For consistency, 331.Xr getopt 3 332should be used to parse options. 333Options 334should be sorted in the 335.Xr getopt 3 336call and the 337.Ic switch 338statement, unless 339parts of the 340.Ic switch 341cascade. 342Elements in a 343.Ic switch 344statement that cascade should have a 345.Li FALLTHROUGH 346comment. 347Numerical arguments should be checked for accuracy. 348Code that cannot be reached should have a 349.Li NOTREACHED 350comment. 351.Bd -literal 352 while ((ch = getopt(argc, argv, "abn:")) != -1) 353 switch (ch) { /* Indent the switch. */ 354 case 'a': /* Don't indent the case. */ 355 aflag = 1; 356 /* FALLTHROUGH */ 357 case 'b': 358 bflag = 1; 359 break; 360 case 'n': 361 num = strtol(optarg, &ep, 10); 362 if (num <= 0 || *ep != '\e0') { 363 warnx("illegal number, -n argument -- %s", 364 optarg); 365 usage(); 366 } 367 break; 368 case '?': 369 default: 370 usage(); 371 /* NOTREACHED */ 372 } 373 argc -= optind; 374 argv += optind; 375.Ed 376.Pp 377Space after keywords 378.Pq Ic if , while , for , return , switch . 379No braces are 380used for control statements with zero or only a single statement unless that 381statement is more than a single line in which case they are permitted. 382Forever loops are done with 383.Ic for Ns 's , 384not 385.Ic while Ns 's . 386.Bd -literal 387 for (p = buf; *p != '\e0'; ++p) 388 ; /* nothing */ 389 for (;;) 390 stmt; 391 for (;;) { 392 z = a + really + long + statement + that + needs + 393 two + lines + gets + indented + four + spaces + 394 on + the + second + and + subsequent + lines; 395 } 396 for (;;) { 397 if (cond) 398 stmt; 399 } 400 if (val != NULL) 401 val = realloc(val, newsize); 402.Ed 403.Pp 404Parts of a 405.Ic for 406loop may be left empty. 407Do not put declarations 408inside blocks unless the routine is unusually complicated. 409.Bd -literal 410 for (; cnt < 15; cnt++) { 411 stmt1; 412 stmt2; 413 } 414.Ed 415.Pp 416Indentation is an 8 character tab. 417Second level indents are four spaces. 418If you have to wrap a long statement, put the operator at the end of the 419line. 420.Bd -literal 421 while (cnt < 20 && this_variable_name_is_too_long && 422 ep != NULL) 423 z = a + really + long + statement + that + needs + 424 two + lines + gets + indented + four + spaces + 425 on + the + second + and + subsequent + lines; 426.Ed 427.Pp 428Do not add whitespace at the end of a line, and only use tabs 429followed by spaces 430to form the indentation. 431Do not use more spaces than a tab will produce 432and do not use spaces in front of tabs. 433.Pp 434Closing and opening braces go on the same line as the 435.Ic else . 436Braces that are not necessary may be left out. 437.Bd -literal 438 if (test) 439 stmt; 440 else if (bar) { 441 stmt; 442 stmt; 443 } else 444 stmt; 445.Ed 446.Pp 447No spaces after function names. 448Commas have a space after them. 449No spaces 450after 451.Ql \&( 452or 453.Ql \&[ 454or preceding 455.Ql \&] 456or 457.Ql \&) 458characters. 459.Bd -literal 460 error = function(a1, a2); 461 if (error != 0) 462 exit(error); 463.Ed 464.Pp 465Unary operators do not require spaces, binary operators do. 466Do not use parentheses unless they are required for precedence or unless the 467statement is confusing without them. 468Remember that other people may 469confuse easier than you. 470Do YOU understand the following? 471.Bd -literal 472 a = b->c[0] + ~d == (e || f) || g && h ? i : j >> 1; 473 k = !(l & FLAGS); 474.Ed 475.Pp 476Exits should be 0 on success, or according to the predefined 477values in 478.Xr sysexits 3 . 479.Bd -literal 480 exit(EX_OK); /* 481 * Avoid obvious comments such as 482 * "Exit 0 on success." 483 */ 484} 485.Ed 486.Pp 487The function type should be on a line by itself 488preceding the function. 489The opening brace of the function body should be 490on a line by itself. 491.Bd -literal 492static char * 493function(int a1, int a2, float fl, int a4) 494{ 495.Ed 496.Pp 497When declaring variables in functions declare them sorted by size, 498then in alphabetical order; multiple ones per line are okay. 499If a line overflows reuse the type keyword. 500.Pp 501Be careful to not obfuscate the code by initializing variables in 502the declarations. 503Use this feature only thoughtfully. 504DO NOT use function calls in initializers. 505.Bd -literal 506 struct foo one, *two; 507 double three; 508 int *four, five; 509 char *six, seven, eight, nine, ten, eleven, twelve; 510 511 four = myfunction(); 512.Ed 513.Pp 514Do not declare functions inside other functions; ANSI C says that 515such declarations have file scope regardless of the nesting of the 516declaration. 517Hiding file declarations in what appears to be a local 518scope is undesirable and will elicit complaints from a good compiler. 519.Pp 520Casts and 521.Ic sizeof Ns 's 522are not followed by a space. 523Note that 524.Xr indent 1 525does not understand this rule. 526.Ic sizeof Ns 's 527are written with parenthesis always. 528The redundant parenthesis rules do not apply to 529.Fn sizeof var 530instances. 531.Pp 532.Dv NULL 533is the preferred null pointer constant. 534Use 535.Dv NULL 536instead of 537.Vt ( "type *" ) Ns 0 538or 539.Vt ( "type *" ) Ns Dv NULL 540in contexts where the compiler knows the 541type, e.g., in assignments. 542Use 543.Vt ( "type *" ) Ns Dv NULL 544in other contexts, 545in particular for all function args. 546(Casting is essential for 547variadic args and is necessary for other args if the function prototype 548might not be in scope.) 549Test pointers against 550.Dv NULL , 551e.g., use: 552.Pp 553.Bd -literal 554(p = f()) == NULL 555.Ed 556.Pp 557not: 558.Bd -literal 559!(p = f()) 560.Ed 561.Pp 562Do not use 563.Ic \&! 564for tests unless it is a boolean, e.g. use 565.Bd -literal 566if (*p == '\e0') 567.Ed 568.Pp 569not 570.Bd -literal 571if (!*p) 572.Ed 573.Pp 574Routines returning 575.Vt "void *" 576should not have their return values cast 577to any pointer type. 578.Pp 579Values in 580.Ic return 581statements should be enclosed in parentheses. 582.Pp 583Use 584.Xr err 3 585or 586.Xr warn 3 , 587do not roll your own. 588.Bd -literal 589 if ((four = malloc(sizeof(struct foo))) == NULL) 590 err(1, (char *)NULL); 591 if ((six = (int *)overflow()) == NULL) 592 errx(1, "number overflowed"); 593 return (eight); 594} 595.Ed 596.Pp 597Old-style function declarations look like this: 598.Bd -literal 599static char * 600function(a1, a2, fl, a4) 601 int a1, a2; /* Declare ints, too, don't default them. */ 602 float fl; /* Beware double vs. float prototype differences. */ 603 int a4; /* List in order declared. */ 604{ 605.Ed 606.Pp 607Use ANSI function declarations unless you explicitly need K&R compatibility. 608Long parameter lists are wrapped with a normal four space indent. 609.Pp 610Variable numbers of arguments should look like this. 611.Bd -literal 612#include <stdarg.h> 613 614void 615vaf(const char *fmt, ...) 616{ 617 va_list ap; 618 619 va_start(ap, fmt); 620 STUFF; 621 va_end(ap); 622 /* No return needed for void functions. */ 623} 624 625static void 626usage() 627{ 628 /* Insert an empty line if the function has no local variables. */ 629.Ed 630.Pp 631Use 632.Xr printf 3 , 633not 634.Xr fputs 3 , 635.Xr puts 3 , 636.Xr putchar 3 , 637whatever; it is faster and usually cleaner, not 638to mention avoiding stupid bugs. 639.Pp 640Usage statements should look like the manual pages 641.Sx SYNOPSIS . 642The usage statement should be structured in the following order: 643.Bl -enum 644.It 645Options without operands come first, 646in alphabetical order, 647inside a single set of brackets 648.Ql ( \&[ 649and 650.Ql \&] ) . 651.It 652Options with operands come next, 653also in alphabetical order, 654with each option and its argument inside its own pair of brackets. 655.It 656Required arguments 657(if any) 658are next, 659listed in the order they should be specified on the command line. 660.It 661Finally, 662any optional arguments should be listed, 663listed in the order they should be specified, 664and all inside brackets. 665.El 666.Pp 667A bar 668.Pq Ql \&| 669separates 670.Dq either-or 671options/arguments, 672and multiple options/arguments which are specified together are 673placed in a single set of brackets. 674.Bd -literal -offset 4n 675"usage: f [-aDde] [-b b_arg] [-m m_arg] req1 req2 [opt1 [opt2]]\en" 676"usage: f [-a | -b] [-c [-dEe] [-n number]]\en" 677.Ed 678.Bd -literal 679 (void)fprintf(stderr, "usage: f [-ab]\en"); 680 exit(EX_USAGE); 681} 682.Ed 683.Pp 684Note that the manual page options description should list the options in 685pure alphabetical order. 686That is, without regard to whether an option takes arguments or not. 687The alphabetical ordering should take into account the case ordering 688shown above. 689.Pp 690New core kernel code should be reasonably compliant with the 691.Nm 692guides. 693The guidelines for third-party maintained modules and device drivers are more 694relaxed but at a minimum should be internally consistent with their style. 695.Pp 696Stylistic changes (including whitespace changes) are hard on the source 697repository and are to be avoided without good reason. 698Code that is approximately 699.Fx 700KNF 701.Nm 702compliant in the repository must not diverge from compliance. 703.Pp 704Whenever possible, code should be run through a code checker 705(e.g., 706.Xr lint 1 707or 708.Nm gcc Fl Wall ) 709and produce minimal warnings. 710.Sh SEE ALSO 711.Xr indent 1 , 712.Xr lint 1 , 713.Xr err 3 , 714.Xr sysexits 3 , 715.Xr warn 3 716.Sh HISTORY 717This man page is largely based on the 718.Pa src/admin/style/style 719file from the 720.Bx 4.4 Lite2 721release, with occasional updates to reflect the current practice and 722desire of the 723.Fx 724project. 725