Backporting
|
|
This article includes a list of references, related reading or external links, but its sources remain unclear because it lacks inline citations. (October 2011) |
Backporting is the action of taking a certain software modification (patch) and applying it to an older version of the software than it was initially created for. It forms part of the maintenance step in a software development process.
The simplest and probably most common situation of backporting is a fixed security-hole in a newer version of a piece of software. Consider this simplified example:
- Software v2.0 had a security vulnerability that is fixed by changing the text 'is_unsecured' to 'is_secured'.
- The same security hole exists in Software v1.0, from which the codebase for the newer version is derived, but there the text may read 'is_unsecured'.
By taking the modification that fixes Software v2.0 and changing it so that it applies to Software v1.0, one has effectively backported the fix.
In real life situations, the modifications that a single aspect of the software has undergone may be simple (only a few lines of code have changed) up to heavy and massive (many modifications spread across multiple files of the code). In the latter case, backporting may become tedious and inefficient and should only be undergone if the older version of the software is really needed in favour of the newer (if, for example, the newer version still suffers stability problems that prevent its use in mission-critical situations).
Contents |
Procedures [edit]
The process of backporting can roughly be divided into these steps:
- Identification of the problem in the older version of the software that needs to be fixed by a backport
- Finding out which (usually recent) modification of the code fixed the problem
- Adapting the modification to the old code situation (the proper backporting)
- One or several levels of quality control—testing whether the backported version maintains previous functionality as well as if it properly implements the new functionality
Usually, multiple such modifications are bundled in a patch set.
Backports can be provided by the core developer group of the software. Since backporting needs access to the source code of a piece of software, this is the only way that backporting is done for closed source software—the backports will usually be incorporated in binary upgrades along the old version line of the software. With open-source software, backports are sometimes created by software distributors and later sent upstream (that is, submitted to the core developers of the afflicted software).
Examples [edit]
Many features of Windows Vista were backported to Windows XP when Service Pack 3 was released for Windows XP, thereby facilitating compatibility of applications (mostly games) originally with Vista as a minimum requirement to run on XP SP3 as a minimum requirement instead.