xref: /freebsd/share/man/man9/style.9 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1.\" Copyright (c) 1995 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 14, 1995
27.Dt STYLE 9
28.Os FreeBSD
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.  It is also a guide for preferred userland code style.
36.Bd -literal
37/*
38 * Style guide for FreeBSD.  Based on the CSRG's KNF (Kernel Normal Form).
39 *
40 *	@(#)style	1.14 (Berkeley) 4/28/95
41 * $FreeBSD$
42 */
43
44/*
45 * VERY important single-line comments look like this.
46 */
47
48/* Most single-line comments look like this. */
49
50/*
51 * Multi-line comments look like this.  Make them real sentences.  Fill
52 * them so they look like real paragraphs.
53 */
54.Ed
55.Pp
56After any copyright header, there is a blank line, and the
57.Va rcsid
58for source files.
59Version control system ID tags should only exist once in a file
60(unlike this one).
61Non-C/C++ source files follow the above example, while C/C++ source files
62follow the below one.
63All VCS (version control system) revision identification from files obtained
64from elsewhere should be maintained, including if there are multiple IDs
65showing a file's history.
66In general, keep the IDs in tact, including any `$'s.
67Most non-FreeBSD VCS IDs should be indented by a tab if in a comment.
68.Bd -literal
69#ifndef lint
70#if 0
71static char sccsid[] = "@(#)style	1.14 (Berkeley) 4/28/95";
72#endif
73static const char rcsid[] =
74  "$FreeBSD$";
75#endif /* not lint */
76.Ed
77.Pp
78Followed by another blank line.
79.Pp
80Kernel include files (i.e. sys/*.h) come first; normally, you'll need
81<sys/types.h>
82OR <sys/param.h>, but not both!  <sys/types.h> includes <sys/cdefs.h>,
83and it's okay to depend on that.
84.Bd -literal
85#include <sys/types.h>	/* Non-local includes in angle brackets. */
86.Ed
87.Pp
88If it's a network program, put the network include files next.
89.Bd -literal
90#include <net/if.h>
91#include <net/if_dl.h>
92#include <net/route.h>
93#include <netinet/in.h>
94#include <protocols/rwhod.h>
95.Ed
96.Pp
97Then there's a blank line, followed by the /usr include files.
98The /usr include files should be sorted!
99.Bd -literal
100#include <stdio.h>
101.Ed
102.Pp
103Global pathnames are defined in /usr/include/paths.h.  Pathnames local
104to the program go in pathnames.h in the local directory.
105.Bd -literal
106#include <paths.h>
107.Ed
108.Pp
109Then, there's a blank line, and the user include files.
110.Bd -literal
111#include "pathnames.h"		/* Local includes in double quotes. */
112.Ed
113.Pp
114Do not #define or declare names in the implementation namespace except
115for implementing application interfaces.
116.Pp
117The names of
118.Dq Li unsafe
119macros (ones that have side effects), and the names of macros for
120manifest constants, are all in uppercase.
121The expansions of expression-like macros are either a single token
122or have outer parentheses.
123Put a single tab character between the
124.Ql #define
125and the macro name.
126If a macro is an inline expansion of a function, the function name is
127all in lowercase and the macro has the same name all in uppercase.
128.\" XXX the above conflicts with ANSI style where the names are the
129.\" same and you #undef the macro (if any) to get the function.
130.\" It is not followed for MALLOC(), and not very common if inline
131.\" functions are used.
132If a
133macro needs more than a single line, use braces
134.Po
135.Sq \&{
136and
137.Sq \&}
138.Pc .
139Right-justify the
140backslashes; it makes it easier to read.
141If the macro encapsulates a compound statement, enclose it in a
142.Dq Li do
143loop,
144so that it can safely be used in
145.Dq Li if
146statements.
147Any final statement-terminating semicolon should be
148supplied by the macro invocation rather than the macro, to make parsing easier
149for pretty-printers and editors.
150.Bd -literal
151#define	MACRO(x, y) do {						\e
152	variable = (x) + (y);						\e
153	(y) += 2;							\e
154} while(0)
155.Ed
156.Pp
157Enumeration values are all uppercase.
158.Bd -literal
159enum enumtype { ONE, TWO } et;
160.Ed
161.Pp
162When declaring variables in structures, declare them sorted by use, then
163by size, and then by alphabetical order.  The first category normally
164doesn't apply, but there are exceptions.  Each one gets its own line.
165Put a tab after the first word, i.e. use
166.Ql int^Ix;
167and
168.Ql struct^Ifoo *x; .
169.Pp
170Major structures should be declared at the top of the file in which they
171are used, or in separate header files if they are used in multiple
172source files.  Use of the structures should be by separate declarations
173and should be "extern" if they are declared in a header file.
174.Bd -literal
175struct foo {
176	struct	foo *next;	/* List of active foo */
177	struct	mumble amumble;	/* Comment for mumble */
178	int	bar;
179};
180struct foo *foohead;		/* Head of global foo list */
181.Ed
182.Pp
183Use
184.Xr queue 3
185macros rather than rolling your own lists, whenever possible.  Thus,
186the previous example would be better written:
187.Bd -literal
188#include <sys/queue.h>
189struct	foo {
190	LIST_ENTRY(foo)	link;	/* Queue macro glue for foo lists */
191	struct	mumble amumble;	/* Comment for mumble */
192	int	bar;
193};
194LIST_HEAD(, foo) foohead;	/* Head of global foo list */
195.Ed
196.Pp
197Avoid using typedefs for structure types.  This makes it impossible
198for applications to use pointers to such a structure opaquely, which
199is both possible and beneficial when using an ordinary struct tag.
200When convention requires a typedef, make its name match the struct
201tag.  Avoid typedefs ending in
202.Dq Li \&_t ,
203except as specified in Standard C or by
204.Tn POSIX .
205.Bd -literal
206/* Make the structure name match the typedef. */
207typedef struct bar {
208	int	level;
209} BAR;
210.Ed
211.Pp
212All functions are prototyped somewhere.
213.Pp
214Function prototypes for private functions (i.e. functions not used
215elsewhere) go at the top of the first source module.  Functions
216local to one source module should be declared
217.Ql static .
218.Pp
219Functions used from other parts of the kernel are prototyped in the
220relevant include file.
221.Pp
222Functions that are used locally in more than one module go into a
223separate header file, e.g.
224.Pa extern.h .
225.Pp
226Only use the __P macro from the include file <sys/cdefs.h> if the source
227file in general is (to be) compilable with a K&R Old Testament compiler.
228Use of the __P macro in new code is discouraged, although modifications
229to existing files should be consistent with that file's conventions.
230.Pp
231In general code can be considered
232.Dq new code
233when it makes up about 50% or more of the file[s] involved.  This is enough
234to break precedents in the existing code and use the current style guidelines.
235.Pp
236The kernel has a name associated with parameter types, e.g., in the kernel
237use:
238.Bd -literal
239void	function(int fd);
240.Ed
241.Pp
242In header files visible to userland applications, prototypes that are
243visible must use either protected names or no names with the types.  It
244is preferable to use protected names.
245e.g., use:
246.Bd -literal
247void	function(int);
248.Ed
249.Pp
250or:
251.Bd -literal
252void	function(int _fd);
253.Ed
254.Pp
255Prototypes may have an extra space after a tab to enable function names
256to line up:
257.Bd -literal
258static char	*function(int _arg, const char *_arg2, struct foo *_arg3,
259		    struct bar *_arg4);
260static void	 usage(void);
261
262/*
263 * All major routines should have a comment briefly describing what
264 * they do.  The comment before the "main" routine should describe
265 * what the program does.
266 */
267int
268main(int argc, char *argv[])
269{
270	long num;
271	int ch;
272	char *ep;
273
274.Ed
275.Pp
276For consistency, getopt should be used to parse options.  Options
277should be sorted in the getopt call and the switch statement, unless
278parts of the switch cascade.  Elements in a switch statement that
279cascade should have a FALLTHROUGH comment.  Numerical arguments
280should be checked for accuracy.  Code that cannot be reached should
281have a NOTREACHED comment.
282.Bd -literal
283	while ((ch = getopt(argc, argv, "abn:")) != -1)
284		switch (ch) {		/* Indent the switch. */
285		case 'a':		/* Don't indent the case. */
286			aflag = 1;
287			/* FALLTHROUGH */
288		case 'b':
289			bflag = 1;
290			break;
291		case 'n':
292			num = strtol(optarg, &ep, 10);
293			if (num <= 0 || *ep != '\e0') {
294				warnx("illegal number, -n argument -- %s",
295				    optarg);
296				usage();
297			}
298			break;
299		case '?':
300		default:
301			usage();
302			/* NOTREACHED */
303		}
304	argc -= optind;
305	argv += optind;
306
307.Ed
308.Pp
309Space after keywords (if, while, for, return, switch).  No braces are
310used for control statements with zero or only a single statement unless that
311statement is more than a single line in which case they are permitted.
312Forever loops are done with for's, not while's.
313.Bd -literal
314	for (p = buf; *p != '\e0'; ++p)
315		;	/* nothing */
316	for (;;)
317		stmt;
318	for (;;) {
319		z = a + really + long + statement + that + needs +
320		    two lines + gets + indented + four + spaces +
321		    on + the + second + and + subsequent + lines;
322	}
323	for (;;) {
324		if (cond)
325			stmt;
326	}
327	if (val != NULL)
328		val = realloc(val, newsize);
329.Ed
330.Pp
331Parts of a for loop may be left empty.  Don't put declarations
332inside blocks unless the routine is unusually complicated.
333.Bd -literal
334	for (; cnt < 15; cnt++) {
335		stmt1;
336		stmt2;
337	}
338.Ed
339.Pp
340Indentation is an 8 character tab.
341Second level indents are four spaces.
342.Bd -literal
343	while (cnt < 20)
344		z = a + really + long + statement + that + needs +
345		    two lines + gets + indented + four + spaces +
346		    on + the + second + and + subsequent + lines;
347.Ed
348.Pp
349Do not add whitespace at the end of a line, and only use tabs
350followed by spaces
351to form the indentation.  Do not use more spaces than a tab will produce
352and do not use spaces in front of tabs.
353.Pp
354Closing and opening braces go on the same line as the else.
355Braces that aren't necessary may be left out.
356.Bd -literal
357	if (test)
358		stmt;
359	else if (bar) {
360		stmt;
361		stmt;
362	} else
363		stmt;
364.Ed
365.Pp
366No spaces after function names.  Commas have a space after them.  No spaces
367after
368.Sq \&(
369or
370.Sq \&[
371or preceding
372.Sq \&]
373or
374.Sq \&)
375characters.
376.Bd -literal
377	error = function(a1, a2);
378	if (error != 0)
379		exit(error);
380.Ed
381.Pp
382Unary operators don't require spaces, binary operators do.  Don't
383use parentheses unless they're required for precedence or unless the
384statement is confusing without them.  Remember that other people may
385confuse easier than you.  Do YOU understand the following?
386.Bd -literal
387	a = b->c[0] + ~d == (e || f) || g && h ? i : j >> 1;
388	k = !(l & FLAGS);
389.Ed
390.Pp
391Exits should be 0 on success, or according to the predefined
392values in
393.Xr sysexits 3 .
394.Bd -literal
395	exit(EX_OK);	/*
396			 * Avoid obvious comments such as
397			 * "Exit 0 on success."
398			 */
399}
400.Ed
401.Pp
402The function type should be on a line by itself
403preceding the function.
404.Bd -literal
405static char *
406function(int a1, int a2, float fl, int a4)
407{
408.Ed
409.Pp
410When declaring variables in functions declare them sorted by size,
411then in alphabetical order; multiple ones per line are okay.
412If a line overflows reuse the type keyword.
413.Pp
414Be careful to not obfuscate the code by initializing variables in
415the declarations.  Use this feature only thoughtfully.
416DO NOT use function calls in initializers!
417.Bd -literal
418	struct foo one, *two;
419	double three;
420	int *four, five;
421	char *six, seven, eight, nine, ten, eleven, twelve;
422
423	four = myfunction();
424.Ed
425.Pp
426Do not declare functions inside other functions; ANSI C says that
427such declarations have file scope regardless of the nesting of the
428declaration.  Hiding file declarations in what appears to be a local
429scope is undesirable and will elicit complaints from a good compiler.
430.Pp
431Casts and sizeof's are not followed by a space.  Note that
432.Xr indent 1
433does not understand this rule.
434.Pp
435NULL is the preferred null pointer constant.  Use NULL instead of
436(type *)0 or (type *)NULL in contexts where the compiler knows the
437type, e.g., in assignments.  Use (type *)NULL in other contexts,
438in particular for all function args.  (Casting is essential for
439variadic args and is necessary for other args if the function prototype
440might not be in scope.)
441Test pointers
442against NULL, e.g., use:
443.Bd -literal
444(p = f()) == NULL
445.Ed
446.Pp
447not:
448.Bd -literal
449!(p = f())
450.Ed
451.Pp
452Don't use '!' for tests unless it's a boolean, e.g. use
453.Bd -literal
454if (*p == '\e0')
455.Ed
456.Pp
457not
458.Bd -literal
459if (!*p)
460.Ed
461.Pp
462Routines returning void * should not have their return values cast
463to any pointer type.
464.Pp
465Use
466.Xr err 3
467or
468.Xr warn 3 ,
469don't roll your own!
470.Bd -literal
471	if ((four = malloc(sizeof(struct foo))) == NULL)
472		err(1, (char *)NULL);
473	if ((six = (int *)overflow()) == NULL)
474		errx(1, "Number overflowed.");
475	return (eight);
476}
477.Ed
478.Pp
479Old-style function declarations look like this:
480.Bd -literal
481static char *
482function(a1, a2, fl, a4)
483	int a1, a2;	/* Declare ints, too, don't default them. */
484	float fl;	/* Beware double vs. float prototype differences. */
485	int a4;		/* List in order declared. */
486{
487.Ed
488.Pp
489Use ANSI function declarations unless you explicitly need K&R compatibility.
490Long parameter lists are wrapped with a normal four space indent.
491.Pp
492Variable numbers of arguments should look like this.
493.Bd -literal
494#include <stdarg.h>
495
496void
497vaf(const char *fmt, ...)
498{
499	va_list ap;
500
501	va_start(ap, fmt);
502	STUFF;
503	va_end(ap);
504	/* No return needed for void functions. */
505}
506
507static void
508usage()
509{
510	/* Insert an empty line if the function has no local variables. */
511.Ed
512.Pp
513Use
514.Xr printf 3 ,
515not fputs/puts/putchar/whatever; it's faster and usually cleaner, not
516to mention avoiding stupid bugs.
517.Pp
518Usage statements should look like the manual pages synopsis.
519The usage statement should be structured in the following order:
520.Pp
521.Bl -enum
522.It
523Options without operands come first,
524in alphabetical order,
525inside a single set of brackets
526.Po
527.Sq \&[
528and
529.Sq \&]
530.Pc .
531.It
532Options with operands come next,
533also in alphabetical order,
534with each option and its argument inside its own pair of brackets.
535.It
536Required arguments
537.Pq if any
538are next,
539listed in the order they should be specified in the command line.
540.It
541Finally,
542any optional arguments should be listed,
543listed in the order they should be specified,
544and all inside brackets.
545.El
546.Pp
547A bar
548.Pq Sq \&|
549separates either-or options/arguments,
550and multiple options/arguments which are specified together are
551placed in a single set of brackets.
552.Pp
553.Bd -ragged -offset 4n
554"usage: f [-aDde] [-b b_arg] [-m m_arg] req1 req2 [opt1 [opt2]]\en"
555"usage: f [-a | -b] [-c [-dEe] [-n number]]\en"
556.Ed
557.Bd -literal
558	(void)fprintf(stderr, "usage: f [-ab]\en");
559	exit(EX_USAGE);
560}
561.Ed
562.Pp
563New core kernel code should be reasonably compliant with the style guides.
564The guidelines for third-party maintained modules and device drivers are more
565relaxed but at a minimum should be internally consistent with their style.
566.Pp
567Stylistic changes (including whitespace changes) are hard on the source
568repository and are to be avoided without good reason.  Code that is
569approximately
570.Xr style 9
571compliant in the repository must not diverge from compliance.
572.Pp
573Whenever possible, code should be run through a code checker
574(e.g.,
575.Xr lint 1
576or
577"gcc -Wall") and produce minimal warnings.
578.Sh SEE ALSO
579.Xr indent 1 ,
580.Xr lint 1 ,
581.Xr err 3 ,
582.Xr sysexits 3 ,
583.Xr warn 3
584.Sh HISTORY
585This man page is largely based on the src/admin/style/style file from
586the
587.Tn BSD
5884.4-Lite2 release, with updates to reflect the current practice and
589desire of the
590.Fx
591project.
592