Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Software update

From Wikipedia, the free encyclopedia
Process of changing installed software to be more modern
This article is about software update in general. For the discontinued macOS component, seeApple Software Update.

Software update is the process of changing installedsoftware with the intent to make it more modern. It also refers to thestored data used to update software. When storage was significantly more expensive,patching files was the dominant form of update. With the advent of larger distribution storage media and higher Internet bandwidth, it became common to replace entire files instead of patching.

An update may require prior application of other updates, or may require prior or concurrent updates to multiple components. To facilitate updates, operating systems often provide automatic or semi-automatic updating facilities.Package management systems offer update automation.

An update can be any size. An update can be relatively large when the changes add or replace data such asgraphics and sound files; for example for agame update. An update usually takes less time to run than an initial installation of the software.

Although often intended toupgrade, an update may instead degrade. An update may include unintentionalregression problems. In some cases, an update intentionally disables functionality, for instance, by removing aspects for which the consumer is no longer licensed.

Management

[edit]
ASparkle software update prompt on macOS
See also:Category:Software update managers,Push technology,Pull technology, andSoftware verification

Software update systems allow for updates to be managed by users and software developers. In the2017 Petya cyberpandemic, the financial software "MeDoc"'s update system is said to have been compromised to spreadmalware via its updates.[1][2] On the Tor Blog, cybersecurity expert Mike Perry states thatdeterministic, distributed builds are likely the only way to defend against malware that attacks the software development andbuild processes to infect millions of machines in a single, officially signed, instantaneous update.[3] Update managers also allow for security updates to be applied quickly and widely. Update managers ofLinux such asSynaptic allow users to update all software installed on their machine. Applications like Synaptic use cryptographic checksums to verify source/local files before they are applied to ensure fidelity against malware.[4][5]

Automatic updating has become more widespread over time. Some cite a cause of its prevalence to be due toWindows support in early 2000s.Service Pack 2 of Windows XP (available in 2004) enabled it by default.

Classification

[edit]

Updates are classified many ways. Notable classifications in alphabetical order follow.

Hotfix

[edit]
This section is an excerpt fromHotfix.[edit]

Ahotfix is a software update that is released outside the normal update cycle or intended to be applied to a live system; often to fix abug.[6]

Originally,hotfix referred topatching ahot system – a productionserver that is actively servingclients. For development, such a change usually must be designed quickly and outside normal development processes; at relatively high cost and disrupting other development effort. For the user, a hotfix is relatively risky since it is applied to a server without time for testing it. The risk of applying the hotfix must be weighed against the risk ofnot applying it. The problem to be fixed might be so critical that inaction is riskier than the potential loss of service.

Over time, the meaning has shifted to an update that is created with urgency or released outside the normal update cycle for the software.

Applying (installing) a hotfix generally involves the same process as any software update. Most modernoperating systems and desktopapplications can download and apply updates automatically.Network administrators may use software programs to automate and simplify applying updates to the machines they manage.

Malicious update

[edit]

Somehacker may compromise legitimate software update channel and injectmalicious code.[7]

Patch

[edit]
This section is an excerpt fromPatch (computing).[edit]

Apatch isdata for modifying an existingsoftware resource such as aprogram or afile, often to fixbugs andsecurity vulnerabilities.[8][9] Patch is also the process of applying the data to the existing resource. Patching a system involves applying a patch. A patch may be created to improve functionality,usability, orperformance. A patch may be created manually, but commonly it is created via a tool that compares two versions of the resource and generates data that can be used to transform one to the other.

Typically, a patch needs to be applied to the specific version of the resource it is intended to modify, although there are exceptions. Some patching tools can detect the version of the existing resource and apply the appropriate patch, even if it supports multiple versions. As more patches are released, their cumulative size can grow significantly, sometimes exceeding the size of the resource itself. To manage this, the number of supported versions may be limited, or a complete copy of the resource might be provided instead.

Patching allows for modifying abinaryexecutable. Although this can be technically challenging (requires a thorough understanding of the workings of the executable), it may be feasible when thesource code is unavailable tobuild a full executable, and it allows for a smaller distribution which can be more economical than distributing full files.

Although often intended to fix problems, a patch can introduce new problems – a scenario calledsoftware regression. In some cases, an update intentionally disables functionality, for instance, by removing aspects for which the consumer is no longer licensed.Patch management is a part oflifecycle management, and involves a strategy and planning of what patches should be applied to which systems and at what times. Typically, a patch is applied in a permanent way (i.e. tostorage), but in some cases, a patch is applied to memory (i.e. via a tool such as adebugger) in which case the change is lost when the resource is reloaded from storage.

Software update is sometimes conflated with patch even though they are notsynonyms. An update can be implemented using patch files and the patching process. Also, some may contend that patching is not limited to modifying file content; that adding, removing and replacing whole files is patching. Typically, patch connotates a relatively small change, so a patch that is large in size or scope may be called the more generalsoftware update or another more specific name such asservice pack.Windows NT and its successors (includingWindows 2000,Windows XP,Windows Vista andWindows 7) useservice pack.[10] Historically,IBM used the termsFixPak andCorrective Service Diskette for such updates.[11]

Patch release

[edit]
This section is an excerpt fromPatch release.[edit]
A software versioning diagram
Point releases are the off-white boxes in the diagram.
Apatch release (also known as point release, dot release, or bugfix release) is arelease ofsoftware, especially one intended to fixbugs or for relatively small changes rather than add significantfeatures. Often, there are too many bugs to be fixed in a single major or minor release, creating a need for a point release.

Program temporary fix

[edit]
This section is an excerpt fromProgram temporary fix.[edit]

In IBM terminology, aprogram temporary fix or product temporary fix (PTF), sometimes depending on date,[12][13] is a one or morebug fixes – distributed in a form ready toinstall.

A PTF normally follows anAuthorized Program Analysis Report (APAR),[14] and where an "APAR fix" was issued, the PTF "is a tested APAR"[15] or set of APAR fixes. However, if an APAR is resolved as "Fixed If Next" or "Permanent Restriction" then there may be no PTF fixing it, only a subsequent release.

Security patch

[edit]

Asecurity patch is a change to correct the weakness described by a vulnerability. The corrective action prevents successful exploitation and removes or mitigates a threat's capability to exploit a specific vulnerability. Patch management is a part ofvulnerability management – the cyclical practice of identifying, classifying, remediating, and mitigating vulnerabilities.

Security patches are the primary method of fixing security vulnerabilities in software. Currently Microsoft releases its security patches once a month ("patch Tuesday"), and other operating systems and software projects have security teams dedicated to releasing the most reliable software patches as soon after a vulnerability announcement as possible. Security patches are closely tied toresponsible disclosure.

These security patches are critical to ensure that business process does not get affected. In 2017, companies were struck by a ransomware calledWannaCry which encrypts files in certain versions ofMicrosoft Windows and demands a ransom via BitCoin. In response to this, Microsoft released a patch which stops the ransomware from running.

Service pack

[edit]
This section is an excerpt fromService pack.[edit]

In computing, aservice pack comprises a collection of updates, fixes, or enhancements to asoftware program delivered in the form of a single installable package. Companies often release a service pack when the number of individualpatches to a given program reaches a certain (arbitrary) limit, or the software release has shown to be stabilized with a limited number of remaining issues based on users' feedback andbug reports. In large software applications such as office suites, operating systems, database software, or network management, it is not uncommon to have a service pack issued within the first year or two of a product's release. Installing a service pack is easier and less error-prone than installing many individual patches, even more so when updating multiple computers over a network, where service packs are common.

Service packs are usually numbered, and thus shortly referred to as SP1, SP2, SP3 etc.[16] They may also bring, besidesbug fixes,[17] entirely new features, as is the case ofSP2 ofWindows XP (e.g.Windows Security Center), or SP3 and SP4 of the heavily database dependentTrainz 2009: World Builder Edition.[18]

Unofficial patch

[edit]
This section is an excerpt fromUnofficial patch.[edit]

Anunofficial patch, a.k.a. community patch and fan patch, is a software update created by a third party, such as auser community, without the involvement of whoever is considered the official maintainer of thesoftware (i.e. original developer). An unofficial patch generally does not change the intended use of the software, in contrast to other third-party adaptions such asmods orcracks.

An unofficial patch is typically intended to repair bugs and provide new capabilities such as support for neweroperating systems, increaseddisplay resolutions and new display formats.[19][20] While unofficial patches are most common for the PC platform, they can also be found for console games e.g. in context of the emulation community.[21]

Afan translation is an unofficial patch that adds natural language support to software.[22] Fan translations are most common forJapanese role-playing games which are often not localized for Western markets.[23][24]

Aslipstream like patch combines multiple official patches into one unofficial update package as a convenience to users when individual patches are only available online or as small incremental updates.

A common motivation for creating an unofficial patch is lack oftechnical support from the official maintainer which may result from:

Video game patch

[edit]

Avideo game receives an update (often called a patch) to fix problems and to change features such as change game rules andalgorithms. These updates may be prompted by the discovery ofexploits in themultiplayer game experience that can be used to gain unfair advantages over other players. Extra features and gameplay tweaks can often be added. These kinds of updates are common infirst-person shooters withmultiplayer capability, and inMMORPGs, which are typically very complex with large amounts of content, almost always rely heavily on updates following the initial release, where updates sometimes add new content and abilities available to players. Because the balance and fairness for all players of an MMORPG can be severely corrupted within a short amount of time by an exploit, servers of an MMORPG are sometimes taken down with short notice to apply a critical fix.

Companies sometimes release games knowing that they have bugs.Computer Gaming World'sScorpia in 1994 denounced "companies—too numerous to mention—who release shoddy product knowing they can get by with patches and upgrades, and who make'pay-testers of their customers".[32]

Process

[edit]

Software update processes vary dramatically. Some notable processes are described here.

Firmware update

[edit]

Updatingfirmware (i.e.motherboardBIOS) can be challenging when it involves replacing the entire image on the hardware. As such, an error or interruption during the update process, such as loss of power, may render the hardware unusable.

An update, a binary image, is often installed via a supplier-provided program that overwrite the existing image with another. This program may safeguard against serious damage. For example, the update procedure could make and keep a backup of the firmware in case it determines that the primary copy is corrupt (i.e. via achecksum).

Limited release

[edit]

In the cases of large updates or of significant changes, distributors often limit availability of updates to qualified developers as abeta test.

Hot patching

[edit]

Hot patching, also known aslive patching ordynamic software updating, is the application of patches without shutting down and restarting the system or the program concerned. This addresses problems related to unavailability of service provided by the system or the program.[33] Method can be used to updateLinux kernel without stopping the system.[34][35]A patch that can be applied in this way is called ahot patch or alive patch. This is becoming a common practice in the mobile app space.[36] Companies likeRollout.io usemethod swizzling to deliver hot patches to the iOS ecosystem.[37] Another method for hot-patching iOS apps is JSPatch.[38]

Cloud providers often use hot patching to avoid downtime for customers when updating underlying infrastructure.[39]

Slipstreaming

[edit]

Slipstreaming is the act of integrating updates into theinstallation files of their original app, so that the result allows a direct installation of the updated app.[40][41]

The nature of slipstreaming means that it involves an initial outlay of time and work, but can save a lot of time (and, by extension, money) in the long term. This is especially significant for administrators that are tasked with managing a large number of computers, where typical practice for installing an operating system on each computer would be to use the original media and then update each computer after the installation was complete. This would take a lot more time than starting with a more up-to-date (slipstreamed) source, and needing to download and install the few updates not included in the slipstreamed source.

However, not all updates can be applied in this fashion and one disadvantage is that if it is discovered that a certain update is responsible for later problems, that update cannot be removed without using an original, non-slipstreamed installation source.

See also

[edit]

References

[edit]
  1. ^Thomson, Iain."Virus (cough, cough, Petya) goes postal at FedEx, shares halted".The Register.Archived from the original on 1 July 2017. Retrieved29 June 2017.
  2. ^"New Petya Distribution Vectors Bubbling to Surface". Threatpost. 28 June 2017.Archived from the original on 28 June 2017. Retrieved29 June 2017.
  3. ^"Deterministic Builds Part One: Cyberwar and Global Compromise | The Tor Blog".blog.torproject.org.Archived from the original on 23 June 2017. Retrieved11 July 2017.
  4. ^Proffitt, Brian (2008).Introducing Ubuntu: Desktop Linux. Cengage Learning.ISBN 978-1598637656. Retrieved11 July 2017.
  5. ^Magazines, S. P. H. (2007).HWM. SPH Magazines. Retrieved11 July 2017.
  6. ^Bragg, Roberta (2003). "5: Designing a Security Update Infrastructure".MCSE Self-Paced Training Kit (Exam 70–298): Designing Security for a Microsoft Windows Server 2003 Network.Redmond, WA:Microsoft Press. p. 5–12.ISBN 0735619697.
  7. ^"How Malicious Software Updates Endanger Everyone". american civil liberties union.
  8. ^"Microsoft issues biggest software patch on record". Reuters. 2009-10-14. Archived fromthe original on 16 October 2009. Retrieved14 October 2009.
  9. ^"What is a Bug Fix? – Definition from Techopedia".techopedia.com.Archived from the original on 2018-07-03. Retrieved2015-07-29.
  10. ^"Service Pack and Update Center".windows.microsoft.com.Archived from the original on 2015-06-01. Retrieved2015-06-01.
  11. ^"Glossary of terms".www.tavi.co.uk.Archived from the original on 2016-12-01. Retrieved2016-11-23.
  12. ^In 2001 a long time IBMer wrote "I thought it was now Product Temporary Fix.""Should APARs be accepted".
  13. ^Nonetheless PROGRAM temporary fix is still in use."Traps do not process for CiscoAPIC models in CA Spectrum".ca.com. September 11, 2017.
  14. ^IBM Corporation."IBM Security: APARs explained".ibm.com. RetrievedOct 14, 2019. a formal report from IBM development to customers that have notified IBM of a problem or suspected defect.
  15. ^Gabe Goldberg (June 12, 2013)."IBM's APAR process provides the tools for dealing with software issues".destinationz.org (MSP TechMedia). Archived from the original on April 1, 2014.
  16. ^One counterexample isMicrosoft SQL Server 2000 Service Pack 3a
  17. ^Example of Service Pack list of changes for a multi-module/multi-mode software product:Trainz SP2 involved feature changes and bug fixes
  18. ^Trainz Railway Simulators Service Packs Table versus major release version titles
  19. ^Sebayang, Andreas (27 May 2008)."High-Res-Patch für Command & Conquer 95 – Klassiker lässt sich nun in höherer Auflösung spielen" (in German).Golem.de. Retrieved3 April 2011.
  20. ^Moore, Bo (19 November 2013)."Is Your Game Crap? This Fan Will Fix It for You".Wired. Retrieved25 January 2014.Thoman had uploaded "DPfix 0.1 alpha," a patch that allowed Deadly Premonition players to manually adjust the game's resolution. [...] The most recent DPfix release fixed pixel offset errors that occurred at higher resolutions, fixed anti-aliasing when it was not being correctly applied, added improved depth-of-field effects, and added an option for screen space ambient occlusion.
  21. ^"Hacks – Bugfix". romhacking.net. Retrieved13 August 2014.
  22. ^Löding, Torge (9 September 2003)."Infogrames toleriert Fan-Übersetzung für Master of Orion 3" (in German).heise.de. Retrieved3 April 2011.
  23. ^Parkin, Simon (26 December 2008)."You Say Tomato: A Pro on Fan-Translating Nintendo's Mother 3".gamasutra.com. Retrieved3 April 2011.
  24. ^Szczepaniak, John (June 2006)."Japanese ROM Translation".Retro Gamer.25:102–105. Archived fromthe original on 2011-07-18. Retrieved2012-12-15.[1][2][3][4]
  25. ^Dirscherl, Hans-Christian (29 November 2005)."Nicht tot zu kriegen: Win 98 Service Pack 2.1" (in German). PCWelt.de. Retrieved6 April 2011.
  26. ^Cassia, Fernando (28 March 2007)."Open Source, the only weapon against "planned obsolescence"". theinquirer.net. Archived from the original on January 20, 2011. Retrieved15 January 2012.
  27. ^Newman, Jared (30 May 2011)."The Lost History of System Shock".g4tv.com. Archived fromthe original on January 13, 2013. RetrievedOctober 28, 2025.Looking Glass Studios closed in 2000, a year after System Shock 2's release, and the copyright to the series went into the hands of an insurance company. That left EA with only the System Shock name, but no actual development rights.
  28. ^Naraine, Ryan (4 January 2006)."IT Security & Network Security News – Another Unofficial WMF Patch Released". eweek.com. Retrieved7 January 2012.Security vendor ESET, makers of the NOD32 anti-virus program, on Wednesday shipped an interim patch for the bug, almost a week before Microsoft Corp. is scheduled to release a properly tested security update.
  29. ^Espiner, Tom (6 January 2006)."Firms urged to use unauthorised Windows patch".ZDNet.co.uk. Retrieved29 January 2012.
  30. ^"Huge virus threat rocks Microsoft".CNNmoney. January 3, 2006. Archived fromthe original on February 9, 2006. RetrievedOctober 28, 2025.Because of the severity of the threat, the SANS Institute, a computer security group, has released a patch for the vulnerability until Microsoft's fix is available next week.
  31. ^Sebayang, Andreas (23 March 2009)."Gothic 3 Community Patch soll fast alle Fehler beheben – mehr als 700 Veränderungen im letzten Community Patch" (in German). Golem.de. Retrieved3 April 2011.
  32. ^Scorpia (April 1994)."So You Want To Be A Hero?". Scorpion's View.Computer Gaming World. pp. 54–58.
  33. ^"Oracle Magazine". Oracle.com. Archived fromthe original on 2008-05-14. Retrieved2013-01-04.
  34. ^"Live patching the Linux kernel".Archived from the original on 2020-10-28. Retrieved2020-10-25.
  35. ^"Linux Kernel Live Patching: What It is and Who Needs It". 6 March 2020.Archived from the original on 28 October 2020. Retrieved25 October 2020.
  36. ^"Hot or Not? The Benefits and Risks of iOS Remote Hot Patching « Threat Research Blog".FireEye.Archived from the original on 2016-10-26. Retrieved2016-10-26.
  37. ^Perez, Sarah (22 September 2015)."Rollout.io Puts Mobile Developers Back In Control Of Their Apps".TechCrunch.Archived from the original on 2016-11-27. Retrieved2016-10-26.
  38. ^"bang590/JSPatch".GitHub.Archived from the original on 2017-01-04. Retrieved2016-10-26.
  39. ^"Hot Patching SQL Server Engine in Azure SQL Database".Techcommunity Microsoft. 2019-09-11.Archived from the original on 2019-09-13. Retrieved2019-09-15.
  40. ^Karp, David (14 July 2008)."Build an XP SP3 Recovery Disc".PC Magazine.Ziff Davis.Archived from the original on 9 January 2018. Retrieved7 September 2017.
  41. ^Thurrott, Paul (7 May 2008)."Slipstreaming Windows XP with Service Pack 3 (SP3)".Supersite for Windows.Penton.Archived from the original on 11 December 2016. Retrieved3 December 2016.
Retrieved from "https://en.wikipedia.org/w/index.php?title=Software_update&oldid=1301904984"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp