N-version programming


N-version programming, also known as multiversion programming or multiple-version dissimilar software, is a method or process in software engineering where multiple functionally equivalent programs are independently generated from the same initial specifications. The concept of N-version programming was introduced in 1977 by Liming Chen and Algirdas Avizienis with the central conjecture that the "independence of programming efforts will greatly reduce the probability of identical software faults occurring in two or more versions of the program". The aim of NVP is to improve the reliability of software operation by building in fault tolerance or redundancy.

NVP approach

The general steps of N-version programming are:
  1. An initial specification of the intended functionality of the software is developed. The specification should unambiguously define: functions, data formats, cross-check points, comparison algorithm, and responses to the comparison algorithm.
  2. From the specifications, two or more versions of the program are independently developed, each by a group that does not interact with the others. The implementations of these functionally equivalent programs use different algorithms and programming languages. At various points of the program, special mechanisms are built into the software which allow the program to be governed by the N-version execution environment. These special mechanisms include: comparison vectors, comparison status indicators, and synchronization mechanisms. The resulting programs are called N-version software.
  3. Some N-version execution environment is developed which runs the N-version software and makes final decisions of the N-version programs as a whole given the output of each individual N-version program. The implementation of the decision algorithms can vary ranging from simple as accepting the most frequently occurring output to some more complex algorithm.

    Criticisms

N-version programming has been applied to software in switching trains, performing flight control computations on modern airliners, electronic voting, and the detection of zero-day exploits, among other uses.