Skip to main content

The Power of 10: Rules for Developing Safety-Critical Code

  • …

Excerpts from The Power of 10: Rules for Developing Safety-Critical Code - Wikipedia by Contributors to Wikimedia projects:

From Wikipedia, the free encyclopedia

Coding guidelines by Gerald J. Holzmann

The Power of 10 Rules were created in 2006 by Gerard J. Holzmann of the NASA/JPL Laboratory for Reliable Software.1 The rules are intended to eliminate certain C coding practices which make code difficult to review or statically analyze. These rules are a complement to the MISRA C guidelines and have been incorporated into the greater set of JPL coding standards.2

The ten rules are:1

  1. Avoid complex flow constructs, such as goto and recursion.
  2. All loops must have fixed bounds. This prevents runaway code.
  3. Avoid heap memory allocation.
  4. Restrict functions to a single printed page.
  5. Use a minimum of two runtime assertions per function.
  6. Restrict the scope of data to the smallest possible.
  7. Check the return value of all non-void functions, or cast to void to indicate the return value is useless.
  8. Use the preprocessor sparingly.
  9. Limit pointer use to a single dereference, and do not use function pointers.
  10. Compile with all possible warnings active; all warnings should then be addressed before release of the software.

The NASA study of the Toyota electronic throttle control firmware found at least 243 violations of these rules.34

Footnotes

  1. The Power of 10: Rules for Developing Safety-Critical Code ↩ ↩2

  2. JPL C Coding Standard - JPL Laboratory for Reliable Software ↩

  3. Unintended Acceleration and Other Embedded Software Bugs, March 1st, 2011, by Michael Barr, Embedded Gurus ↩

  4. NASA Engineering and Safety Center Technical Assessment Report, National Highway Traffic Safety Administration Toyota Unintended Acceleration Investigation, Appendix A ↩