xref: /freebsd/share/man/man9/style.9 (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
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.
268.Pp
269Functions that are used locally in more than one module go into a
270separate header file, e.g.\&
271.Qq Pa extern.h .
272.Pp
273Do not use the
274.Dv __P
275macro.
276.Pp
277In general code can be considered
278.Dq "new code"
279when it makes up about 50% or more of the file(s) involved.
280This is enough
281to break precedents in the existing code and use the current
282.Nm
283guidelines.
284.Pp
285The kernel has a name associated with parameter types, e.g., in the kernel
286use:
287.Bd -literal
288void	function(int fd);
289.Ed
290.Pp
291In header files visible to userland applications, prototypes that are
292visible must use either
293.Dq protected
294names (ones beginning with an underscore)
295or no names with the types.
296It is preferable to use protected names.
297E.g., use:
298.Bd -literal
299void	function(int);
300.Ed
301.Pp
302or:
303.Bd -literal
304void	function(int _fd);
305.Ed
306.Pp
307Prototypes may have an extra space after a tab to enable function names
308to line up:
309.Bd -literal
310static char	*function(int _arg, const char *_arg2, struct foo *_arg3,
311		    struct bar *_arg4);
312static void	 usage(void);
313
314/*
315 * All major routines should have a comment briefly describing what
316 * they do.  The comment before the "main" routine should describe
317 * what the program does.
318 */
319int
320main(int argc, char *argv[])
321{
322	char *ep;
323	long num;
324	int ch;
325.Ed
326.Pp
327For consistency,
328.Xr getopt 3
329should be used to parse options.
330Options
331should be sorted in the
332.Xr getopt 3
333call and the
334.Ic switch
335statement, unless
336parts of the
337.Ic switch
338cascade.
339Elements in a
340.Ic switch
341statement that cascade should have a
342.Li FALLTHROUGH
343comment.
344Numerical arguments should be checked for accuracy.
345Code that cannot be reached should have a
346.Li NOTREACHED
347comment.
348.Bd -literal
349	while ((ch = getopt(argc, argv, "abn:")) != -1)
350		switch (ch) {		/* Indent the switch. */
351		case 'a':		/* Don't indent the case. */
352			aflag = 1;
353			/* FALLTHROUGH */
354		case 'b':
355			bflag = 1;
356			break;
357		case 'n':
358			num = strtol(optarg, &ep, 10);
359			if (num <= 0 || *ep != '\e0') {
360				warnx("illegal number, -n argument -- %s",
361				    optarg);
362				usage();
363			}
364			break;
365		case '?':
366		default:
367			usage();
368			/* NOTREACHED */
369		}
370	argc -= optind;
371	argv += optind;
372.Ed
373.Pp
374Space after keywords
375.Pq Ic if , while , for , return , switch .
376No braces are
377used for control statements with zero or only a single statement unless that
378statement is more than a single line in which case they are permitted.
379Forever loops are done with
380.Ic for Ns 's ,
381not
382.Ic while Ns 's .
383.Bd -literal
384	for (p = buf; *p != '\e0'; ++p)
385		;	/* nothing */
386	for (;;)
387		stmt;
388	for (;;) {
389		z = a + really + long + statement + that + needs +
390		    two + lines + gets + indented + four + spaces +
391		    on + the + second + and + subsequent + lines;
392	}
393	for (;;) {
394		if (cond)
395			stmt;
396	}
397	if (val != NULL)
398		val = realloc(val, newsize);
399.Ed
400.Pp
401Parts of a
402.Ic for
403loop may be left empty.
404Do not put declarations
405inside blocks unless the routine is unusually complicated.
406.Bd -literal
407	for (; cnt < 15; cnt++) {
408		stmt1;
409		stmt2;
410	}
411.Ed
412.Pp
413Indentation is an 8 character tab.
414Second level indents are four spaces.
415If you have to wrap a long statement, put the operator at the end of the
416line.
417.Bd -literal
418	while (cnt < 20 && this_variable_name_is_too_long &&
419	    ep != NULL)
420		z = a + really + long + statement + that + needs +
421		    two + lines + gets + indented + four + spaces +
422		    on + the + second + and + subsequent + lines;
423.Ed
424.Pp
425Do not add whitespace at the end of a line, and only use tabs
426followed by spaces
427to form the indentation.
428Do not use more spaces than a tab will produce
429and do not use spaces in front of tabs.
430.Pp
431Closing and opening braces go on the same line as the
432.Ic else .
433Braces that are not necessary may be left out.
434.Bd -literal
435	if (test)
436		stmt;
437	else if (bar) {
438		stmt;
439		stmt;
440	} else
441		stmt;
442.Ed
443.Pp
444No spaces after function names.
445Commas have a space after them.
446No spaces
447after
448.Ql \&(
449or
450.Ql \&[
451or preceding
452.Ql \&]
453or
454.Ql \&)
455characters.
456.Bd -literal
457	error = function(a1, a2);
458	if (error != 0)
459		exit(error);
460.Ed
461.Pp
462Unary operators do not require spaces, binary operators do.
463Do not use parentheses unless they are required for precedence or unless the
464statement is confusing without them.
465Remember that other people may
466confuse easier than you.
467Do YOU understand the following?
468.Bd -literal
469	a = b->c[0] + ~d == (e || f) || g && h ? i : j >> 1;
470	k = !(l & FLAGS);
471.Ed
472.Pp
473Exits should be 0 on success, or according to the predefined
474values in
475.Xr sysexits 3 .
476.Bd -literal
477	exit(EX_OK);	/*
478			 * Avoid obvious comments such as
479			 * "Exit 0 on success."
480			 */
481}
482.Ed
483.Pp
484The function type should be on a line by itself
485preceding the function.
486The opening brace of the function body should be
487on a line by itself.
488.Bd -literal
489static char *
490function(int a1, int a2, float fl, int a4)
491{
492.Ed
493.Pp
494When declaring variables in functions declare them sorted by size,
495then in alphabetical order; multiple ones per line are okay.
496If a line overflows reuse the type keyword.
497.Pp
498Be careful to not obfuscate the code by initializing variables in
499the declarations.
500Use this feature only thoughtfully.
501DO NOT use function calls in initializers.
502.Bd -literal
503	struct foo one, *two;
504	double three;
505	int *four, five;
506	char *six, seven, eight, nine, ten, eleven, twelve;
507
508	four = myfunction();
509.Ed
510.Pp
511Do not declare functions inside other functions; ANSI C says that
512such declarations have file scope regardless of the nesting of the
513declaration.
514Hiding file declarations in what appears to be a local
515scope is undesirable and will elicit complaints from a good compiler.
516.Pp
517Casts and
518.Ic sizeof Ns 's
519are not followed by a space.
520Note that
521.Xr indent 1
522does not understand this rule.
523.Ic sizeof Ns 's
524are written with parenthesis always.
525The redundant parenthesis rules do not apply to
526.Ic sizeof(var)
527instances.
528.Pp
529.Dv NULL
530is the preferred null pointer constant.
531Use
532.Dv NULL
533instead of
534.Vt ( "type *" ) Ns 0
535or
536.Vt ( "type *" ) Ns Dv NULL
537in contexts where the compiler knows the
538type, e.g., in assignments.
539Use
540.Vt ( "type *" ) Ns Dv NULL
541in other contexts,
542in particular for all function args.
543(Casting is essential for
544variadic args and is necessary for other args if the function prototype
545might not be in scope.)
546Test pointers against
547.Dv NULL ,
548e.g., use:
549.Pp
550.Bd -literal
551(p = f()) == NULL
552.Ed
553.Pp
554not:
555.Bd -literal
556!(p = f())
557.Ed
558.Pp
559Do not use
560.Ic \&!
561for tests unless it is a boolean, e.g. use
562.Bd -literal
563if (*p == '\e0')
564.Ed
565.Pp
566not
567.Bd -literal
568if (!*p)
569.Ed
570.Pp
571Routines returning
572.Vt "void *"
573should not have their return values cast
574to any pointer type.
575.Pp
576Values in
577.Ic return
578statements should be enclosed in parentheses.
579.Pp
580Use
581.Xr err 3
582or
583.Xr warn 3 ,
584do not roll your own.
585.Bd -literal
586	if ((four = malloc(sizeof(struct foo))) == NULL)
587		err(1, (char *)NULL);
588	if ((six = (int *)overflow()) == NULL)
589		errx(1, "number overflowed");
590	return (eight);
591}
592.Ed
593.Pp
594Old-style function declarations look like this:
595.Bd -literal
596static char *
597function(a1, a2, fl, a4)
598	int a1, a2;	/* Declare ints, too, don't default them. */
599	float fl;	/* Beware double vs. float prototype differences. */
600	int a4;		/* List in order declared. */
601{
602.Ed
603.Pp
604Use ANSI function declarations unless you explicitly need K&R compatibility.
605Long parameter lists are wrapped with a normal four space indent.
606.Pp
607Variable numbers of arguments should look like this.
608.Bd -literal
609#include <stdarg.h>
610
611void
612vaf(const char *fmt, ...)
613{
614	va_list ap;
615
616	va_start(ap, fmt);
617	STUFF;
618	va_end(ap);
619	/* No return needed for void functions. */
620}
621
622static void
623usage()
624{
625	/* Insert an empty line if the function has no local variables. */
626.Ed
627.Pp
628Use
629.Xr printf 3 ,
630not
631.Xr fputs 3 ,
632.Xr puts 3 ,
633.Xr putchar 3 ,
634whatever; it is faster and usually cleaner, not
635to mention avoiding stupid bugs.
636.Pp
637Usage statements should look like the manual pages
638.Sx SYNOPSIS .
639The usage statement should be structured in the following order:
640.Bl -enum
641.It
642Options without operands come first,
643in alphabetical order,
644inside a single set of brackets
645.Ql ( \&[
646and
647.Ql \&] ) .
648.It
649Options with operands come next,
650also in alphabetical order,
651with each option and its argument inside its own pair of brackets.
652.It
653Required arguments
654(if any)
655are next,
656listed in the order they should be specified on the command line.
657.It
658Finally,
659any optional arguments should be listed,
660listed in the order they should be specified,
661and all inside brackets.
662.El
663.Pp
664A bar
665.Pq Ql \&|
666separates
667.Dq either-or
668options/arguments,
669and multiple options/arguments which are specified together are
670placed in a single set of brackets.
671.Bd -literal -offset 4n
672"usage: f [-aDde] [-b b_arg] [-m m_arg] req1 req2 [opt1 [opt2]]\en"
673"usage: f [-a | -b] [-c [-dEe] [-n number]]\en"
674.Ed
675.Bd -literal
676	(void)fprintf(stderr, "usage: f [-ab]\en");
677	exit(EX_USAGE);
678}
679.Ed
680.Pp
681Note that the manual page options description should list the options in
682pure alphabetical order.
683That is, without regard to whether an option takes arguments or not.
684The alphabetical ordering should take into account the case ordering
685shown above.
686.Pp
687New core kernel code should be reasonably compliant with the
688.Nm
689guides.
690The guidelines for third-party maintained modules and device drivers are more
691relaxed but at a minimum should be internally consistent with their style.
692.Pp
693Stylistic changes (including whitespace changes) are hard on the source
694repository and are to be avoided without good reason.
695Code that is approximately
696.Fx
697KNF
698.Nm
699compliant in the repository must not diverge from compliance.
700.Pp
701Whenever possible, code should be run through a code checker
702(e.g.,
703.Xr lint 1
704or
705.Nm gcc Fl Wall )
706and produce minimal warnings.
707.Sh SEE ALSO
708.Xr indent 1 ,
709.Xr lint 1 ,
710.Xr err 3 ,
711.Xr sysexits 3 ,
712.Xr warn 3
713.Sh HISTORY
714This man page is largely based on the
715.Pa src/admin/style/style
716file from the
717.Bx 4.4 Lite2
718release, with occasional updates to reflect the current practice and
719desire of the
720.Fx
721project.
722