1 Coding conventions in the Samba tree
2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 Coding style guidelines are about reducing the number of unnecessary
11 reformatting patches and making things easier for developers to work
13 You don't have to like them or even agree with them, but once put in place
14 we all have to abide by them (or vote to change them). However, coding
15 style should never outweigh coding itself and so the guidelines
16 described here are hopefully easy enough to follow as they are very
17 common and supported by tools and editors.
19 The basic style for C code is the Linux kernel coding style (See
20 Documentation/CodingStyle in the kernel source tree). This closely matches
21 what most Samba developers use already anyways, with a few exceptions as
24 The coding style for Python code is documented in PEP8,
25 https://www.python.org/dev/peps/pep-0008/. New Python code should be compatible
26 with Python 2.6, 2.7, and Python 3.4 onwards. This means using Python 3 syntax
27 with the appropriate 'from __future__' imports.
29 But to save you the trouble of reading the Linux kernel style guide, here
32 * Maximum Line Width is 80 Characters
33 The reason is not about people with low-res screens but rather sticking
34 to 80 columns prevents you from easily nesting more than one level of
35 if statements or other code blocks. Use source3/script/count_80_col.pl
36 to check your changes.
38 * Use 8 Space Tabs to Indent
39 No whitespace fillers.
41 * No Trailing Whitespace
42 Use source3/script/strip_trail_ws.pl to clean up your files before
45 * Follow the K&R guidelines. We won't go through all of them here. Do you
46 have a copy of "The C Programming Language" anyways right? You can also use
47 the format_indent.sh script found in source3/script/ if all else fails.
57 Add the follow to your $HOME/.emacs file:
59 (add-hook 'c-mode-hook
62 (c-toggle-auto-state)))
67 (Thanks to SATOH Fumiyasu <fumiyas@osstech.jp> for these hints):
69 For the basic vi editor included with all variants of \*nix, add the
70 following to $HOME/.exrc:
75 For Vim, the following settings in $HOME/.vimrc will also deal with
76 displaying trailing whitespace:
78 if has("syntax") && (&t_Co > 2 || has("gui_running"))
80 function! ActivateInvisibleCharIndicator()
81 syntax match TrailingSpace "[ \t]\+$" display containedin=ALL
82 highlight TrailingSpace ctermbg=Red
84 autocmd BufNewFile,BufRead * call ActivateInvisibleCharIndicator()
86 " Show tabs, trailing whitespace, and continued lines visually
87 set list listchars=tab:»·,trail:·,extends:…
89 " highlight overly long lines same as TODOs.
91 autocmd BufNewFile,BufRead *.c,*.h exec 'match Todo /\%>' . &textwidth . 'v.\+/'
98 BreakBeforeBraces: Linux
99 AllowShortIfStatementsOnASingleLine: false
100 IndentCaseLabels: false
101 BinPackParameters: false
102 BinPackArguments: false
106 =========================
107 FAQ & Statement Reference
108 =========================
113 Comments should always use the standard C syntax. C++
114 style comments are not currently allowed.
116 The lines before a comment should be empty. If the comment directly
117 belongs to the following code, there should be no empty line
118 after the comment, except if the comment contains a summary
119 of multiple following code blocks.
127 * This is a multi line comment,
128 * which explains the logical steps we have to do:
130 * 1. We need to set i=5, because...
131 * 2. We need to call complex_fn1
134 /* This is a one line comment about i = 5. */
138 * This is a multi line comment,
139 * explaining the call to complex_fn1()
146 * @brief This is a doxygen comment.
148 * This is a more detailed explanation of
149 * this simple function.
151 * @param[in] param1 The parameter value of the function.
153 * @param[out] result1 The result value of the function.
155 * @return 0 on success and -1 on error.
157 int example(int param1, int *result1);
164 * This is a multi line comment,
165 * which explains the logical steps we have to do:
167 * 1. We need to set i=5, because...
168 * 2. We need to call complex_fn1
170 /* This is a one line comment about i = 5. */
173 * This is a multi line comment,
174 * explaining the call to complex_fn1()
180 /*This is a one line comment.*/
182 /* This is a multi line comment,
183 with some more words...*/
186 * This is a multi line comment,
187 * with some more words...*/
189 Indention & Whitespace & 80 columns
190 -----------------------------------
192 To avoid confusion, indentations have to be tabs with length 8 (not 8
193 ' ' characters). When wrapping parameters for function calls,
194 align the parameter list with the first parameter on the previous line.
195 Use tabs to get as close as possible and then fill in the final 7
196 characters or less with whitespace. For example,
198 var1 = foo(arg1, arg2,
201 The previous example is intended to illustrate alignment of function
202 parameters across lines and not as encourage for gratuitous line
203 splitting. Never split a line before columns 70 - 79 unless you
204 have a really good reason. Be smart about formatting.
206 One exception to the previous rule is function calls, declarations, and
207 definitions. In function calls, declarations, and definitions, either the
208 declaration is a one-liner, or each parameter is listed on its own
209 line. The rationale is that if there are many parameters, each one
210 should be on its own line to make tracking interface changes easier.
213 If, switch, & Code blocks
214 -------------------------
216 Always follow an 'if' keyword with a space but don't include additional
217 spaces following or preceding the parentheses in the conditional.
226 Yes we have a lot of code that uses the second form and we are trying
227 to clean it up without being overly intrusive.
229 Note that this is a rule about parentheses following keywords and not
230 functions. Don't insert a space between the name and left parentheses when
233 Braces for code blocks used by for, if, switch, while, do..while, etc.
234 should begin on the same line as the statement keyword and end on a line
235 of their own. You should always include braces, even if the block only
236 contains one statement. NOTE: Functions are different and the beginning left
237 brace should be located in the first column on the next line.
239 If the beginning statement has to be broken across lines due to length,
240 the beginning brace should be on a line of its own.
242 The exception to the ending rule is when the closing brace is followed by
243 another language keyword such as else or the closing while in a do..while
252 for (x=1; x<10; x++) {
256 for (really_really_really_really_long_var_name=0;
257 really_really_really_really_long_var_name<10;
258 really_really_really_really_long_var_name++)
260 print("%d\n", really_really_really_really_long_var_name);
264 printf("also good\n");
271 print("I'm in a loop!\n"); }
281 print("I should be in braces.\n");
287 While many people have been academically taught that "goto"s are
288 fundamentally evil, they can greatly enhance readability and reduce memory
289 leaks when used as the single exit point from a function. But in no Samba
290 world what so ever is a goto outside of a function or block of code a good
295 int function foo(int y)
301 z = malloc(sizeof(int) * y);
308 print("Allocated %d elements.\n", y);
322 Samba has large amounts of historical code which makes use of data types
323 commonly supported by the C99 standard. However, at the time such types
324 as boolean and exact width integers did not exist and Samba developers
325 were forced to provide their own. Now that these types are guaranteed to
326 be available either as part of the compiler C99 support or from
327 lib/replace/, new code should adhere to the following conventions:
329 * Booleans are of type "bool" (not BOOL)
330 * Boolean values are "true" and "false" (not True or False)
331 * Exact width integers are of type [u]int[8|16|32|64]_t
333 Most of the time a good name for a boolean variable is 'ok'. Here is an
334 example we often use:
343 It makes the code more readable and is easy to debug.
348 Samba tries to avoid "typedef struct { .. } x_t;" so we do always try to use
349 "struct x { .. };". We know there are still such typedefs in the code,
350 but for new code, please don't do that anymore.
355 All pointer variables MUST be initialized to NULL. History has
356 demonstrated that uninitialized pointer variables have lead to various
357 bugs and security issues.
359 Pointers MUST be initialized even if the assignment directly follows
360 the declaration, like pointer2 in the example below, because the
361 instructions sequence may change over time.
365 char *pointer1 = NULL;
366 char *pointer2 = NULL;
368 pointer2 = some_func2();
372 pointer1 = some_func1();
379 pointer2 = some_func2();
383 pointer1 = some_func1();
385 Make use of helper variables
386 ----------------------------
388 Please try to avoid passing function calls as function parameters
389 in new code. This makes the code much easier to read and
390 it's also easier to use the "step" command within gdb.
397 name = get_some_name();
402 ret = some_function_my_name(name);
408 ret = some_function_my_name(get_some_name());
411 Please try to avoid passing function return values to if- or
412 while-conditions. The reason for this is better handling of code under a
417 x = malloc(sizeof(short)*10);
419 fprintf(stderr, "Unable to alloc memory!\n");
424 if ((x = malloc(sizeof(short)*10)) == NULL ) {
425 fprintf(stderr, "Unable to alloc memory!\n");
428 There are exceptions to this rule. One example is walking a data structure in
431 while ((opt = poptGetNextOpt(pc)) != -1) {
432 ... do something with opt ...
435 Another exception: DBG messages for example printing a SID or a GUID:
436 Here we don't expect any surprise from the printing functions, and the
437 main reason of this guideline is to make debugging easier. That reason
438 rarely exists for this particular use case, and we gain some
439 efficiency because the DBG_ macros don't evaluate their arguments if
440 the debuglevel is not high enough.
442 if (!NT_STATUS_IS_OK(status)) {
443 struct dom_sid_buf sid_buf;
444 struct GUID_txt_buf guid_buf;
446 "objectSID [%s] for GUID [%s] invalid\n",
447 dom_sid_str_buf(objectsid, &sid_buf),
448 GUID_buf_string(&cache->entries[idx], &guid_buf));
451 But in general, please try to avoid this pattern.
454 Control-Flow changing macros
455 ----------------------------
457 Macros like NT_STATUS_NOT_OK_RETURN that change control flow
458 (return/goto/etc) from within the macro are considered bad, because
459 they look like function calls that never change control flow. Please
460 do not use them in new code.
462 The only exception is the test code that depends repeated use of calls
463 like CHECK_STATUS, CHECK_VAL and others.
471 frame = talloc_stackframe();
473 if (ret == LDB_SUCCESS) {
474 if (result->count == 0) {
475 ret = LDB_ERR_NO_SUCH_OBJECT;
477 struct ldb_message *match =
478 get_best_match(dn, result);
481 return LDB_ERR_OPERATIONS_ERROR;
483 *msg = talloc_move(mem_ctx, &match);
492 frame = talloc_stackframe();
494 if (ret != LDB_SUCCESS) {
499 if (result->count == 0) {
501 return LDB_ERR_NO_SUCH_OBJECT;
504 match = get_best_match(dn, result);
507 return LDB_ERR_OPERATIONS_ERROR;
510 *msg = talloc_move(mem_ctx, &match);
518 Use these following macros instead of DEBUG:
520 DBG_ERR log level 0 error conditions
521 DBG_WARNING log level 1 warning conditions
522 DBG_NOTICE log level 3 normal, but significant, condition
523 DBG_INFO log level 5 informational message
524 DBG_DEBUG log level 10 debug-level message
528 DBG_ERR("Memory allocation failed\n");
529 DBG_DEBUG("Received %d bytes\n", count);
531 The messages from these macros are automatically prefixed with the