Year 2038 problem: Difference between revisions
Undid revision 449671373 by 24.23.93.90 (talk) unrelated |
m Removed an unnecessary reference name Tags: Mobile edit Mobile app edit iOS app edit App section source |
||
Line 1: | Line 1: | ||
{{short description|Computer software bug occurring in 2038}} |
|||
[[Image:Year 2038 problem.gif|thumb|400px|Example showing how the date would reset (at 03:14:08 UTC on 19 January 2038).]] |
|||
[[File:Year 2038 problem.gif|thumb|upright=2.0|An animated visual of the bug in action. The [[integer overflow|overflow]] error will occur at 03:14:08 UTC on 19 January 2038.]] |
|||
The '''year 2038 problem''' (also known as the '''Unix Millennium Bug''', '''Y2K38''' or '''Y2.038K''' by analogy to the [[Y2K problem]]) may cause some [[computer software]] to fail at some point near the year 2038. The problem affects all software and systems that both store [[system time]] as a [[integer (computer science)|signed 32-bit integer]], and interpret this number as the number of seconds since |
|||
The '''year 2038 problem''' (also known as '''Y2038''',<ref name=":0" /> '''Y2K38''', '''Y2K38 superbug''' or the '''Epochalypse'''<ref>{{cite web |url=https://www.linaro.org/blog/the-end-of-an-era/ |title=The end of an Era |date=February 6, 2020 |first=Arnd |last=Bergmann |publisher=Linaro |access-date=13 September 2020 |archive-date=7 February 2020 |archive-url=https://web.archive.org/web/20200207034639/https://www.linaro.org/blog/the-end-of-an-era/ |url-status=live }}</ref><ref>{{cite news |url=https://www.tomsguide.com/us/2038-bug-bh2017,news-25551.html |title=Digital 'Epochalypse' Could Bring World to Grinding Halt |first=Paul |last=Wagenseil |date=July 28, 2017 |work=Tom's Guide |access-date=13 September 2020 |archive-date=29 November 2021 |archive-url=https://web.archive.org/web/20211129222317/https://www.tomsguide.com/us/2038-bug-bh2017,news-25551.html |url-status=live }}</ref>) is a [[Time formatting and storage bugs|time computing problem]] that leaves some computer systems unable to represent times after 03:14:07 [[Coordinated Universal Time|UTC]] on 19 January 2038. |
|||
00:00:00 [[Coordinated Universal Time|UTC]] on Thursday, 1 January 1970.<ref>{{cite web | url =http://www.opengroup.org/onlinepubs/000095399/ | title = The Open Group Base Specifications Issue 6 IEEE Std 1003.1, 2004 Edition (definition of epoch) | work = [[IEEE]] and [[The Open Group]] | publisher = [[The Open Group]] | year = 2004 | accessdate = 7 March 2008 | quote = }}</ref> The farthest time that can be represented this way is 03:14:07 [[Coordinated Universal Time|UTC]] on Tuesday, 19 January 2038.<ref name=spinellis>{{cite book |title= Code quality: the open source perspective. |series= Effective software development serie in [[Safari Books Online]] |author= Diomidis Spinellis |edition= illustrated |publisher= [[Adobe Press]] |year= 2006 |isbn= 0321166078 |página= 49 |url= http://books.google.es/books?id=vEN-ckcdtCwC&pg=PA49&dq=292,277,026,596&client=opera&cd=1#v=onepage&q=292%2C277%2C026%2C596&f=false }}</ref> |
|||
Times beyond this moment will "wrap around" and be stored internally as a negative number, which these systems will interpret as a date in 1901 rather than 2038. This is caused by [[integer overflow]]. The counter "runs out" of usable digits, "increments" the sign bit instead, and reports a maximally negative number (continuing to count ''up'', toward zero). This will likely cause problems for users of these systems due to erroneous calculations. |
|||
The problem exists in systems which measure [[Unix time]]—the number of seconds elapsed since the ''Unix [[Epoch (computing)|epoch]]'' (00:00:00 UTC on 1 January 1970)—and store it in a [[Integer (computer science)|signed 32-bit integer]]. The data type is only capable of representing integers between −(2{{sup|31}}) and [[2,147,483,647|2<sup>31</sup> − 1]], meaning the latest time that can be properly encoded is 2{{sup|31}} − 1 seconds after epoch (03:14:07 UTC on 19 January 2038). Attempting to increment to the following second (03:14:08) will cause the [[integer overflow|integer to overflow]], setting its value to −(2{{sup|31}}) which systems will interpret as 2{{sup|31}} seconds ''before'' epoch (20:45:52 UTC on 13 December 1901). The problem is similar in nature to the [[year 2000 problem]], the difference being the Year 2000 problem had to do with [[Decimal|base 10 numbers]], whereas the Year 2038 problem involves [[Binary number|base 2 numbers]]. |
|||
Further, while most programs will only be affected in or very close to 2038, programs that work with future dates will begin to run into problems much sooner. For example, a program that works with dates 20 years in the future will have to be fixed no later than in 2018. |
|||
Analogous storage constraints will be reached in [[Time_formatting_and_storage_bugs#Year_2106|2106]], where systems storing Unix time as an ''unsigned'' (rather than signed) 32-bit integer will overflow on 7 February 2106 at 06:28:15 UTC. |
|||
Because most [[32-bit]] [[Unix-like]] systems store and manipulate time in this format, it is usually called [[Unix time]], and so the year 2038 problem is often referred to as the Unix Millennium Bug. However, any other non-Unix [[operating system]]s and software that store and manipulate time this way will be just as vulnerable. |
|||
Computer systems that use time for critical computations may encounter fatal errors if the year 2038 problem is not addressed. Some applications that use future dates have already encountered the bug.<ref name=":1" /><ref name=":2" /> The most vulnerable systems are those which are infrequently or never updated, such as [[Legacy system|legacy]] and [[embedded system]]s. Modern systems and software updates to legacy systems address this problem by using signed [[64-bit computing|64-bit]] integers instead of 32-bit integers, which will take 292 billion years to overflow—approximately 21 times the estimated [[age of the universe]]. |
|||
==Early problems== |
|||
In May 2006, reports surfaced of an early manifestation of the Y2038 problem in the [[AOLserver]] software. The software was designed with a [[kludge]] to handle a database request that should "never" time out. Rather than specifically handling this special case, the initial design simply specified an arbitrary [[Timeout (computing)|time-out]] date in the future. The default configuration for the server specified that the request should time out after one billion seconds. One billion seconds (approximately thirty-two years) after 9:27.28 pm on 12 May 2006 is beyond the 2038 cutoff date. Thus, after this time, the time-out calculation overflowed and returned a date that was actually in the past, causing the software to crash. When the problem was discovered, AOL server managers had to edit the configuration file and set the time-out to a lower value.<ref>{{cite web | url=http://substitute.livejournal.com/1430908.html | title=The Future Lies Ahead | date=28 June 2006 | accessdate=19 November 2006}}</ref><ref>[http://www.mail-archive.com/aolserver@listserv.aol.com/msg09844.html Weird "memory leak" problem in AOLserver 3.4.2/3.x] 12 May 2006</ref> |
|||
== |
== Cause == |
||
Many computer systems measure time and date using [[Unix time]], an international standard for digital timekeeping. Unix time is defined as the number of seconds elapsed since 00:00:00 [[Coordinated Universal Time|UTC]] on 1 January 1970 (an arbitrarily chosen time based on the creation of the first [[Unix|Unix system]]), which has been dubbed the ''Unix epoch''.<ref>{{cite web|title=Epoch Time|url=https://www.unixtutorial.org/epoch-time/|access-date=13 April 2023|work=unixtutoria|date=15 March 2019|language=en|archive-date=13 April 2023|archive-url=https://web.archive.org/web/20230413221727/https://www.unixtutorial.org/epoch-time/|url-status=live}}</ref> |
|||
[[Embedded systems]] are most likely to be affected by the 2038 bug. Transportation systems from flight to automobiles increasingly use embedded systems. <!--Do not delete. Cars will use the same flawed 8/16 bit systems for decades, unless something changes--> Automobiles, electric vehicles, and hybrid vehicles are increasingly using embedded systems to maximize efficiency and reduce pollution. Other automotive safety systems include anti-lock braking system (ABS), electronic stability control (ESC/ESP), traction control (TCS) and automatic four-wheel drive. New aircraft contain advanced avionics such as inertial guidance systems and GPS receivers that also have considerable safety requirements. Another major use of embedded systems is in communications devices, including cell phones and Internet appliances (routers, wireless access points, etc.) which rely on storing an accurate time and date and are increasingly based on subsets of UNIX (Android, Apple iOS, "light" versions of Linux, etc.). |
|||
Unix time has historically been encoded as a [[integer (computer science)|signed 32-bit integer]], a data type composed of 32 [[Bit|binary digits]] (bits) which represent an integer value, with 'signed' meaning that the number can represent both positive and negative numbers, as well as zero; and is usually stored in [[two's complement]] format.{{efn|Unless otherwise specified, all the numbers provided in this article have been derived using two's complement for signed integer arithmetic.}} Thus, a signed 32-bit integer can only represent integer values from −(2{{sup|31}}) to [[2,147,483,647|2<sup>31</sup> − 1]] inclusive. Consequently, if a signed 32-bit integer is used to store Unix time, the latest time that can be stored is 2<sup>31</sup> − 1 (2,147,483,647) seconds after epoch, which is {{#time:H:i:s "on" l, j F Y|@{{#expr:2^31 -1}}}}.<ref name="spinellis">{{cite book|author=Diomidis Spinellis|url=https://books.google.com/books?id=vEN-ckcdtCwC&q=292%2C277%2C026%2C596&pg=PA49|title=Code quality: the open source perspective|publisher=[[Adobe Press]]|year=2006|isbn=978-0-321-16607-4|edition=illustrated|series=Effective software development series in [[Safari Books Online]]|page=49}}</ref> Systems that attempt to increment this value by one more second to 2{{sup|31}} seconds after epoch (03:14:08) will suffer [[integer overflow]], inadvertently flipping the sign bit to indicate a negative number. This changes the integer value to −(2{{sup|31}}), or 2{{sup|31}} seconds ''before'' epoch rather than ''after'', which systems will interpret as 20:45:52 on Friday, 13 December 1901. From here, systems will continue to count up, toward zero, and then up through the positive integers again. As many computer systems use time computations to run critical functions, the bug may introduce serious problems. |
|||
{{As of|2010}}, most embedded systems use [[8-bit]] or [[16-bit]] [[microprocessors]], even as desktop systems are transitioning to [[64-bit]] systems. Despite the modern [[Moore's Law|18–24-month]] generational update in computer systems technology, embedded systems are designed to last the lifetime of the machine in which they are a component. It is conceivable that some of these systems may still be in use in 2038. It may be impractical or, in some cases, impossible to upgrade the software running these systems, ultimately requiring replacement if 32-bit <tt>'''[[time_t]]'''</tt> limitations are to be corrected. |
|||
== Vulnerable systems == |
|||
The use of 32-bit <tt>time_t</tt> has also been encoded into some file formats, which means it can live on well beyond the life of the machines on which such file formats were originally supported. |
|||
Any system using [[data structure]]s with signed 32-bit time representations has an inherent risk of failing. A full list of these data structures is virtually impossible to derive, but there are well-known data structures that have the Unix time problem: |
|||
* File systems that use 32 bits to represent times in [[inode]]s |
|||
* Databases with 32-bit time fields |
|||
* Database query languages (such as [[SQL]]) that have <code>UNIX_TIMESTAMP()</code>-like commands |
|||
=== Embedded systems === |
|||
==Data structures with time problems== |
|||
[[Embedded system]]s that use dates for either computation or diagnostic logging are most likely to be affected by the Y2038 problem.<ref name=":0">{{cite news|url=https://www.theguardian.com/technology/2014/dec/17/is-the-year-2038-problem-the-new-y2k-bug|title=Is the Year 2038 problem the new Y2K bug?|newspaper=The Guardian|date=17 December 2014|access-date=11 October 2018|archive-date=25 January 2022|archive-url=https://web.archive.org/web/20220125075051/https://www.theguardian.com/technology/2014/dec/17/is-the-year-2038-problem-the-new-y2k-bug|url-status=live}}</ref> Despite the modern [[Moore's law|18–24 month generational update in computer systems technology]], embedded systems are designed to last the lifetime of the machine in which they are a component. It is conceivable that some of these systems may still be in use in 2038. It may be impractical or, in some cases, impossible to upgrade the software running these systems, ultimately requiring replacement if the 32-bit limitations are to be corrected. |
|||
Many data structures in use today have 32-bit time representations embedded into their structure. A full list of these data structures is impossible to derive but there are well-known data structures that have the Unix time problem. |
|||
Many transportation systems from flight to automobiles use embedded systems extensively. <!-- Please do not delete - for decades, there will be plenty of older cars on the road, which will use the same outdated 8/16 bit systems for decades, unless something changes. Actually it already has - engine controllers have been mostly 32-bit for a decade! But the point stands, that legacy systems can't easily be changed. --> In automotive systems, this may include [[anti-lock braking system]] (ABS), [[electronic stability control]] (ESC/ESP), [[Traction control system|traction control]] (TCS) and automatic [[four-wheel drive]]; aircraft may use [[Inertial navigation system|inertial guidance systems]] and [[Satellite navigation device|GPS receivers]].{{efn|GPS suffers its own time counter overflow problem known as [[GPS Week Number Rollover]].}} Another major use of embedded systems is in communications devices, including cell phones and Internet-enabled appliances (e.g. [[Router (computing)|routers]], [[wireless access point]]s, [[IP camera]]s) which rely on storing an accurate time and date and are increasingly based on Unix-like operating systems. For example, the Y2038 problem makes some devices running 32-bit [[Android (operating system)|Android]] crash and not restart when the time is changed to that date.<ref>{{cite web|title=ZTE Blade running Android 2.2 has 2038 problems|url=https://issuetracker.google.com/issues/36928638|access-date=20 November 2018|archive-date=19 May 2022|archive-url=https://web.archive.org/web/20220519230355/https://issuetracker.google.com/issues/36928638|url-status=live}}</ref> |
|||
* file systems (like many [[inode]] file systems still in use) |
|||
* databases (that have 32-bit time fields) |
|||
* [[COBOL]] databases from the 1970s, 1980s and 1990s that have not been replaced by 2038-compliant systems |
|||
* embedded factory, refinery control and monitoring subsystems |
|||
* assorted medical devices |
|||
* assorted military devices |
|||
However, this does not imply that all embedded systems will suffer from the Y2038 problem, since many such systems do not require access to dates. For those that do, those systems which only track the difference between times/dates and not absolute times/dates will, by the nature of the calculation, not experience a major problem. This is the case for automotive diagnostics based on legislated standards such as CARB ([[California Air Resources Board]]).<ref>{{cite web|url=http://www.arb.ca.gov/testmeth/testmeth.htm#vehicles|title=ARB Test Methods / Procedures|publisher=[[California Air Resources Board]]|website=ARB.ca.gov|access-date=12 September 2013|archive-date=18 November 2016|archive-url=https://web.archive.org/web/20161118163253/https://www.arb.ca.gov/testmeth/testmeth.htm#vehicles|url-status=dead}}</ref> |
|||
Each one of these places where data structures using 32-bit time are in place has its own risks related to failure of the product to perform as designed. |
|||
== Early problems == |
|||
==Solutions== |
|||
In May 2006, reports surfaced of an early manifestation of the Y2038 problem in the [[AOLserver]] software. The software was designed with a [[kludge]] to handle a database request that should "never" time out. Rather than specifically handling this special case, the initial design simply specified an arbitrary [[Timeout (computing)|time-out]] date in the future with a default configuration specifying that requests should time out after a maximum of one billion seconds. However, one billion seconds before the 2038 cutoff date is 01:27:28 UTC on 13 May 2006, so requests sent after this time would result in a time-out date which is beyond the cutoff. This made time-out calculations overflow and return dates that were actually in the past, causing software to crash. When the problem was discovered, AOLServer operators had to edit the configuration file and set the time-out to a lower value.<ref name=":1">{{cite web|date=28 June 2006|title=The Future Lies Ahead|url=http://substitute.livejournal.com/1430908.html|access-date=19 November 2006|archive-date=28 November 2006|archive-url=https://web.archive.org/web/20061128235428/http://substitute.livejournal.com/1430908.html|url-status=live}}</ref><ref name=":2">[http://www.mail-archive.com/aolserver@listserv.aol.com/msg09844.html Weird "memory leak" problem in AOLserver 3.4.2/3.x] {{Webarchive|url=https://web.archive.org/web/20100104130626/http://www.mail-archive.com/aolserver@listserv.aol.com/msg09844.html |date=4 January 2010 }} 12 May 2006</ref> |
|||
There is no universal solution for the Year 2038 problem. Any change to the definition of the <tt>time_t</tt> data type would result in [[binary code compatibility|code compatibility]] problems in any application in which date and time representations are dependent on the nature of the signed 32-bit <tt>time_t</tt> integer. For example, changing <tt>time_t</tt> to an unsigned 32-bit integer, which would extend the range to the year 2106, would adversely affect programs that store, retrieve, or manipulate dates prior to 1970, as such dates are represented by negative numbers. |
|||
== Solutions<span class="anchor" id="Y2106"></span> == |
|||
Most [[operating system]]s designed to run on [[64-bit]] [[hardware architecture|hardware]] already use signed 64-bit <tt>time_t</tt> integers, effectively eliminating the Year 2038 problem in any software that has been developed to use the extended format. Using a signed 64-bit value introduces a new wraparound date that is over twenty times greater than the assumed [[age of the universe]]: approximately 292 billion years from now, at 15:30:08 on Sunday, 4 December 292,277,026,596. The ability to make computations on dates is limited by the fact that <code>struct tm</code> uses a signed 32 bit int value for the year. This limits the year to a maximum of 2,147,485,547. |
|||
There is no universal solution for the Year 2038 problem. For example, in the [[C (programming language)|C language]], any change to the definition of the <code>[[time_t]]</code> data type would result in [[binary-code compatibility|code-compatibility]] problems in any application in which date and time representations are dependent on the nature of the signed 32-bit <code>time_t</code> integer. Changing <code>time_t</code> to an unsigned 32-bit integer, which would extend the range to 2106<ref>{{cite web | url = https://sourceware.org/glibc/wiki/Y2038ProofnessDesign | title = DRAFT: Y2038 Proofness Design | access-date = 2024-05-25 | archive-date = 21 September 2019 | archive-url = https://web.archive.org/web/20190921231248/https://sourceware.org/glibc/wiki/Y2038ProofnessDesign | url-status = live }}</ref> (specifically, 06:28:15 UTC on Sunday, 7 February 2106), would adversely affect programs that store, retrieve, or manipulate dates prior to 1970, as such dates are represented by negative numbers. Increasing the size of the <code>time_t</code> type to 64 bits in an existing system would cause incompatible changes to the layout of structures and the binary interface of functions. |
|||
Most operating systems designed to run on 64-bit [[hardware architecture|hardware]] already use signed 64-bit <code>time_t</code> integers. Using a signed 64-bit value introduces a new wraparound date that is over twenty times greater than the estimated [[age of the universe]]: approximately 292 billion years from now.<ref>{{cite web | url = https://ximalas.info/2015/03/10/when-does-the-64-bit-unix-time_t-really-end/ | title = When does the 64-bit Unix time_t really end? | access-date = 2022-09-24 | archive-date = 23 September 2022 | archive-url = https://web.archive.org/web/20220923220457/https://ximalas.info/2015/03/10/when-does-the-64-bit-unix-time_t-really-end/ | url-status = live }}</ref> The ability to make [[computation]]s on dates is limited by the fact that <code>tm_year</code> uses a signed 32-bit integer value starting at 1900 for the year. This limits the year to a maximum of 2,147,485,547 (2,147,483,647 + 1900).<ref>{{cite web|url=http://stablecross.com/files/End_Of_Time.html|date=17 April 2010|title=The End of Time|access-date=19 March 2012|first=Bob|last=Felts|website=Stablecross.com|archive-date=11 October 2012|archive-url=https://web.archive.org/web/20121011060328/http://stablecross.com/files/End_Of_Time.html|url-status=live}}</ref> |
|||
Alternative proposals have been made (some of which are in use), such as storing either [[millisecond]]s or [[microsecond]]s since an [[Epoch (reference date)#Computing|epoch]] (typically either 1 January 1970 or 1 January 2000) in a signed-64 bit integer, providing a minimum of 300,000 years range.<ref>{{cite web |
|||
|url=http://unununium.org/articles/uuutime |
|||
|archiveurl=http://web.archive.org/web/20060408161959/http://unununium.org/articles/uuutime |
|||
|archivedate=4 August 2006 |
|||
|title=Unununium Time |
|||
|accessdate=19 November 2006}}</ref><ref>{{cite web |
|||
|url=http://java.sun.com/j2se/1.4.2/docs/enwiki/api/java/lang/System.html#currentTimeMillis() |
|||
|title=Java API documentation: System.currentTimeMillis |
|||
|author=Sun Microsystems |
|||
|accessdate=7 May 2007}}</ref> Other proposals for new time representations provide different precisions, ranges, and sizes (almost always wider than 32 bits), as well as solving other related problems, such as the handling of [[leap second]]s. |
|||
Alternative proposals have been made (some of which are already in use), such as storing either [[millisecond]]s or [[microsecond]]s since an epoch (typically either 1 January 1970 or 1 January 2000) in a signed 64-bit integer, providing a minimum range of 292,000 years at microsecond resolution.<ref>{{cite web |
|||
==See also== |
|||
| url=http://unununium.org/articles/uuutime |
|||
* [[System time]] |
|||
| archive-url=https://web.archive.org/web/20060408161959/http://unununium.org/articles/uuutime |
|||
* [[Unix billennium]] |
|||
| archive-date=8 April 2006 |title=Unununium Time |
|||
* [[Unix time]] |
|||
| access-date=19 November 2006}}</ref><ref>{{cite web |
|||
* [[Year 2000 problem]] |
|||
| url=https://docs.oracle.com/javase/9/docs/enwiki/api/java/lang/System.html#currentTimeMillis-- |
|||
| title=Java API documentation for System.currentTimeMillis() |
|||
| author=Sun Microsystems |
|||
| access-date=29 September 2017 |
|||
| archive-date=30 September 2017 |
|||
| archive-url=https://web.archive.org/web/20170930040244/https://docs.oracle.com/javase/9/docs/enwiki/api/java/lang/System.html#currentTimeMillis-- |
|||
| url-status=live |
|||
}}</ref> In particular, Java's and JavaScript's use of 64-bit signed integers to represent absolute timestamps as "milliseconds since 1 January 1970" will work correctly for the next {{tooltip|1=292 million years|2=The theoretical overflow date is 17 August 292278994, 07:12:55.807 UTC.}}. Other proposals for new time representations provide different precisions, ranges, and sizes (almost always wider than 32 bits), as well as solving other related problems, such as the handling of [[leap second]]s. In particular, TAI64<ref>{{Cite web|url=http://cr.yp.to/libtai/tai64.html|title=TAI64|access-date=4 September 2012|archive-date=26 September 2012|archive-url=https://web.archive.org/web/20120926120001/http://cr.yp.to/libtai/tai64.html|url-status=live}}</ref> is an implementation of the [[International Atomic Time]] (TAI) standard, the current international real-time standard for defining a second and frame of reference. |
|||
=== Implemented solutions === |
|||
==References== |
|||
* Starting with [[Ruby (programming language)|Ruby]] version 1.9.2 (released on 18 August 2010), the bug with year 2038 is fixed,<ref>{{cite web|date=18 August 2010|title=Ruby 1.9.2 is released|url=https://www.ruby-lang.org/en/news/2010/08/18/ruby-1-9-2-released/|access-date=1 April 2022|archive-date=8 April 2022|archive-url=https://web.archive.org/web/20220408110503/https://www.ruby-lang.org/en/news/2010/08/18/ruby-1-9-2-released/|url-status=live}}</ref> by storing time in a signed 64-bit integer on systems with 32-bit <code>time_t</code>.<ref>{{Cite web |title=time.c: use 64bit arithmetic even on platforms with 32bit VALUE |website=[[GitHub]] |url=https://github.com/ruby/ruby/commit/cea57f8fff58d933cd7a452e9ee0745d5a7c7577 |access-date=3 November 2023 |archive-date=3 November 2023 |archive-url=https://web.archive.org/web/20231103040211/https://github.com/ruby/ruby/commit/cea57f8fff58d933cd7a452e9ee0745d5a7c7577 |url-status=live }}</ref> |
|||
{{Reflist}} |
|||
* Starting with [[NetBSD]] version 6.0 (released in October 2012), the NetBSD operating system uses a 64-bit <code>time_t</code> for both 32-bit and 64-bit architectures. Applications that were compiled for an older NetBSD release with 32-bit <code>time_t</code> are supported via a binary compatibility layer, but such older applications will still suffer from the Y2038 problem.<ref>{{cite web|date=17 October 2012|title=Announcing NetBSD 6.0|url=https://www.netbsd.org/releases/formal-6/NetBSD-6.0.html|access-date=18 January 2016|archive-date=15 January 2016|archive-url=https://web.archive.org/web/20160115091208/http://www.netbsd.org/releases/formal-6/NetBSD-6.0.html|url-status=live}}</ref> |
|||
* [[OpenBSD]] since version 5.5, released in May 2014, also uses a 64-bit <code>time_t</code> for both 32-bit and 64-bit architectures. In contrast to [[NetBSD]], there is no binary compatibility layer. Therefore, applications expecting a 32-bit <code>time_t</code> and applications using anything different from <code>time_t</code> to store time values may break.<ref>{{cite web|date=1 May 2014|title=OpenBSD 5.5 released (May 1, 2014)|url=http://www.openbsd.org/plus55.html|access-date=18 January 2016|archive-date=22 December 2015|archive-url=https://web.archive.org/web/20151222005608/http://www.openbsd.org/plus55.html|url-status=live}}</ref> |
|||
* [[Linux]] originally used a 64-bit <code>time_t</code> for 64-bit architectures only; the pure 32-bit [[Application binary interface|ABI]] was not changed due to backward compatibility.<ref name="Pondering2038">{{cite web|author=Jonathan Corbet|author-link=Jonathan Corbet|date=14 August 2013|title=Pondering 2038|url=https://lwn.net/Articles/563285/|url-status=live|archive-url=https://web.archive.org/web/20160304081847/https://lwn.net/Articles/563285/|archive-date=4 March 2016|access-date=9 March 2016|website=[[LWN.net]]}}</ref> Starting with version [[Linux kernel version history#Releases 5.x.y|5.6]] of 2020, 64-bit <code>time_t</code> is supported on 32-bit architectures, too. This was done primarily for the sake of [[Linux on embedded systems|embedded Linux]] systems.<ref>{{Cite web|title=LKML: Arnd Bergmann: [GIT PULL] y2038: core, driver and file system changes|url=https://lkml.org/lkml/2020/1/29/355?anz=web|access-date=2020-01-30|website=lkml.org|archive-date=14 February 2020|archive-url=https://web.archive.org/web/20200214070752/https://lkml.org/lkml/2020/1/29/355?anz=web|url-status=live}}</ref> |
|||
* [[GNU C Library]] since version 2.34 (released August 2021), added support for using 64-bit <code>time_t</code> on 32-bit platforms with appropriate Linux versions. This support can be activated by defining preprocessor macro <code>_TIME_BITS</code> to <code>64</code> when compiling source code.<ref>{{cite web |last1=O'Donell |first1=Carlos |title=The GNU C Library version 2.34 is now available |url=https://sourceware.org/pipermail/libc-alpha/2021-August/129718.html |website=Sourceware |access-date=2024-04-30 |date=2021-08-02 |archive-date=30 April 2024 |archive-url=https://web.archive.org/web/20240430060406/https://sourceware.org/pipermail/libc-alpha/2021-August/129718.html |url-status=live }}</ref> |
|||
* [[FreeBSD]] uses 64-bit <code>time_t</code> for all 32-bit and 64-bit architectures except 32-bit i386, which uses signed 32-bit <code>time_t</code> instead.<ref>{{Cite web|url=https://www.freebsd.org/cgi/man.cgi?arch|title=arch|website=www.freebsd.org|access-date=26 September 2018|archive-date=26 September 2018|archive-url=https://web.archive.org/web/20180926205510/https://www.freebsd.org/cgi/man.cgi?arch|url-status=live}}</ref> |
|||
* The [[x32 ABI]] for Linux (which defines an environment for programs with 32-bit addresses but running the processor in 64-bit mode) uses a 64-bit <code>time_t</code>. Since it was a new environment, there was no need for special compatibility precautions.<ref name="Pondering2038" /> |
|||
* [[Network File System]] version 4 has defined its time fields as <code>struct nfstime4 {int64_t seconds; uint32_t nseconds;}</code> since December 2000.<ref>{{cite IETF|rfc=7530|title=Network File System (NFS) Version 4 Protocol|section=2.2|sectionname=Structured Data Types|date=March 2015|editor1-first=Thomas|editor1-last=Haynes|editor2-first=David|editor2-last=Noveck}}</ref> Version 3 supports unsigned 32-bit values as <code>struct nfstime3 {uint32 seconds; uint32 nseconds;};</code>.<ref>{{cite web | url = https://datatracker.ietf.org/doc/html/rfc1813 | title= NFS Version 3 Protocol Specification | date= June 1995 | access-date = 2024-05-25 | last1= Staubach | first1= Peter | last2= Pawlowski | first2= Brian | last3= Callaghan | first3= Brent }}</ref> Values greater than zero for the seconds field denote dates after the 0-hour, January 1, 1970. Values less than zero for the seconds field denote dates before the 0-hour, January 1, 1970. In both cases, the nseconds (nanoseconds) field is to be added to the seconds field for the final time representation. |
|||
* The [[ext4]] filesystem, when used with inode sizes larger than 128 bytes, has an extra 32-bit field per timestamp, of which 30 bits are used for the nanoseconds part of the timestamp, and the other 2 bits are used to extend the timestamp range to the year 2446.<ref>{{cite web|url=https://www.kernel.org/doc/html/latest/filesystems/ext4/dynamic.html#inode-timestamps|title=ext4 Data Structures and Algorithms|access-date=2022-09-13|archive-date=13 September 2022|archive-url=https://web.archive.org/web/20220913224855/https://www.kernel.org/doc/html/latest/filesystems/ext4/dynamic.html#inode-timestamps|url-status=live}}</ref> |
|||
* The [[XFS]] filesystem, starting with Linux 5.10, has an optional "big timestamps" feature which extends the timestamp range to the year 2486.<ref>{{cite web|url=https://www.phoronix.com/news/XFS-Linux-5.10|title=XFS File-System With Linux 5.10 Punts Year 2038 Problem To The Year 2486|author=Michael Larabel|website=[[Phoronix]]|date=15 October 2020|access-date=2022-09-13|archive-date=13 September 2022|archive-url=https://web.archive.org/web/20220913232215/https://www.phoronix.com/news/XFS-Linux-5.10|url-status=live}}</ref> |
|||
* While the native APIs of [[OpenVMS]] can support timestamps up to 31 July 31086,<ref name="Crazy time, Stanford, 1997">{{Cite web|date=1997-07-24|title=Why is Wednesday, November 17, 1858 the base time for OpenVMS (VAX VMS)?|url=https://www.slac.stanford.edu/~rkj/crazytime.txt|url-status=live|archive-url=https://web.archive.org/web/19970724202734/https://www.slac.stanford.edu/~rkj/crazytime.txt|archive-date=1997-07-24|access-date=2020-01-08|website=[[Stanford University]]|df=dmy-all}}</ref> the C runtime library (CRTL) uses 32-bit integers for <code>time_t</code>.<ref name="vsi-c-rtl">{{cite web|date=November 2020|title=VSI C Run-Time Library Reference Manual for OpenVMS Systems|url=https://vmssoftware.com/docs/VSI_CRTL_REF.pdf|access-date=2021-04-17|publisher=VSI|archive-date=17 April 2021|archive-url=https://web.archive.org/web/20210417113107/https://vmssoftware.com/docs/VSI_CRTL_REF.pdf|url-status=dead}}</ref> As part of Y2K compliance work that was carried out in 1998, the CRTL was modified to use unsigned 32-bit integers to represent time; extending the range of <code>time_t</code> up to 7 February 2106.<ref>{{cite web|title=OpenVMS and the year 2038|url=https://www.zx.net.nz/mirror/h71000.www7.hp.com/2038.html|access-date=2021-04-17|publisher=HP|archive-date=17 April 2021|archive-url=https://web.archive.org/web/20210417113108/https://www.zx.net.nz/mirror/h71000.www7.hp.com/2038.html|url-status=live}}</ref> |
|||
* [[PostgreSQL]] since version 7.2, released 2002-02-04, stores timestamp WITHOUT TIMEZONE as 64-bit.<ref>{{cite web|title=PostgreSQL Release 7.2|date=January 2012|url=https://www.postgresql.org/docs/7.2/release-7-2.html|access-date=25 April 2024|archive-date=26 April 2024|archive-url=https://web.archive.org/web/20240426022618/https://www.postgresql.org/docs/7.2/release-7-2.html|url-status=live}}</ref>{{failed verification|date=May 2024}} Prior versions already stored timestamp as 64-bit.{{citation needed|date=May 2024}} |
|||
* As of [[MySQL]] 8.0.28, released in January 2022, the functions <code>FROM_UNIXTIME()</code>, <code>UNIX_TIMESTAMP()</code>, and <code>CONVERT_TZ()</code> handle 64-bit values on platforms that support them. This includes 64-bit versions of Linux, macOS, and Windows.<ref>{{cite web|title=What Is New in MySQL 8.0|url=https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-additions|website=dev.mysql.com}}</ref><ref>{{cite web|title=Changes in MySQL 8.0.28 (2022-01-18, General Availability)|url=https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-28.html|website=dev.mysql.com|access-date=14 May 2024|archive-date=8 December 2023|archive-url=https://web.archive.org/web/20231208180456/https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-28.html|url-status=live}}</ref> In older versions, built-in functions like <code>UNIX_TIMESTAMP()</code> will return 0 after 03:14:07 [[UTC]] on 19 January 2038.<ref>{{cite web|title=MySQL Bugs: #12654: 64-bit unix timestamp is not supported in MySQL functions|url=https://bugs.mysql.com/bug.php?id=12654|website=bugs.mysql.com|access-date=28 March 2017|archive-date=29 March 2017|archive-url=https://web.archive.org/web/20170329045924/https://bugs.mysql.com/bug.php?id=12654|url-status=live}}</ref> |
|||
* As of [[MariaDB]] 11.5.1, released in May 2024, the data type <code>TIMESTAMP</code> and functions <code>FROM_UNIXTIME()</code>, <code>UNIX_TIMESTAMP()</code>, and <code>CONVERT_TZ()</code> handle unsigned 32-bit values on 64-bit versions of Linux, macOS, and Windows.<ref>{{cite web|title=MariaDB 11.5.1 Release Notes|url=https://mariadb.com/kb/en/mariadb-11-5-1-release-notes/}}</ref> This extended the range to 2106-02-07 06:28:15 and allowed users to store such timestamp values in tables without changing the storage layout and thus staying fully compatible with existing user data. |
|||
* Starting with [[Visual C++]] 2005, the CRT uses a 64-bit <code>time_t</code> unless the <code>_USE_32BIT_TIME_T</code> preprocessor macro is defined.<ref>{{Cite web |last= |date=2023-05-25 |title=Microsoft C/C++ change history 2003 - 2015 |url=https://learn.microsoft.com/en-us/cpp/porting/visual-cpp-change-history-2003-2015 |access-date=2024-08-13 |website=learn.microsoft.com |language=en-us}}</ref> However, the [[Windows API]] itself is unaffected by the year 2038 bug, as [[Microsoft Windows|Windows]] internally tracks time as the number of 100-nanosecond intervals since 1 January 1601 in a 64-bit signed integer, which will not overflow until year [[Time formatting and storage bugs#Year 30,828|30,828]].<ref>{{Cite web |last= |date=2021-01-07 |title=About Time - Win32 apps |url=https://learn.microsoft.com/en-us/windows/win32/sysinfo/about-time |access-date=2024-08-13 |website=learn.microsoft.com |language=en-us}}</ref> |
|||
== |
== See also == |
||
* [[Time formatting and storage bugs]] lists other similar problems, often caused by rollover similar to the cause of this year 2038 problem. |
|||
* [http://computer.howstuffworks.com/question75.htm Entry in How Stuff Works] |
|||
* A [[GPS week number rollover]] will coincidentally happen later in 2038, for a different reason than this year 2038 problem. |
|||
* [http://maul.deepsky.com/%7Emerovech/2038.html The Project 2038 Frequently Asked Questions] |
|||
* [http://www.merlyn.demon.co.uk/critdate.htm#Y2038 Critical dates 2038] |
|||
== Notes == |
|||
* [http://y2038.googlecode.com/ A 2038-safe replacement for time.h on 32 bit systems] |
|||
{{notelist}} |
|||
== References == |
|||
{{reflist}} |
|||
== External links == |
|||
*[https://sourceware.org/glibc/wiki/Y2038ProofnessDesign Y2038 Proofness Design] [[GNU C Library|glibc]] Wiki |
|||
*[https://computer.howstuffworks.com/question75.htm Entry in How Stuff Works] |
|||
*[http://maul.deepsky.com/%7Emerovech/2038.html The Project 2038 Frequently Asked Questions] |
|||
*[https://people.cs.nctu.edu.tw/~tsaiwn/sisc/runtime_error_200_div_by_0/www.merlyn.demon.co.uk/critdate.htm#Y2038 ''Critical and Significant Dates'' 2038] |
|||
*[https://github.com/evalEmpire/y2038/wiki A 2038-safe replacement for time.h on 32 bit systems] |
|||
*{{Cite web |title=Solving the Year 2038 problem in the Linux kernel |url=https://opensource.com/article/19/1/year2038-problem-linux-kernel }} |
|||
* [https://applevox.com/ iPhone troubleshooting] |
|||
*{{cite news |url=https://www.bbc.com/future/article/20150505-the-numbers-that-lead-to-disaster |title=The number glitch that can lead to catastrophe |work=BBC Future |first=Chris |last=Baraniuk |date=5 May 2015}} |
|||
* {{cite web|last=Clewett|first=James|title=2,147,483,647 – The End of Time [Unix]|url=http://www.numberphile.com/videos/unix_time.html|website=Numberphile|publisher=[[Brady Haran]]|access-date=7 April 2013|archive-url=https://web.archive.org/web/20170522031114/http://www.numberphile.com/videos/unix_time.html|archive-date=22 May 2017|url-status=dead}} |
|||
{{Year-related problems}} |
{{Year-related problems}} |
||
{{Doomsday}} |
|||
{{Use dmy dates|date=August 2010}} |
|||
{{Use dmy dates|date=August 2019}} |
|||
{{DEFAULTSORT:Year 2038 Problem}} |
|||
[[Category:Time formatting and storage bugs|2038 problem]] |
|||
[[Category:Operating system technology]] |
|||
[[Category:Programming bugs]] |
|||
[[Category:Future problems]] |
|||
[[Category:2030s]] |
|||
[[ |
[[Category:2038|Problem]] |
||
[[Category:Future problems|Year 02038 Problem]] |
|||
[[bg:Проблемът 2038 година]] |
|||
[[Category:Operating system technology]] |
|||
[[cs:Problém roku 2038]] |
|||
[[Category:Time formatting and storage bugs|Year 02038 problem]] |
|||
[[de:Jahr-2038-Problem]] |
|||
[[Category:Unix]] |
|||
[[es:Problema del año 2038]] |
|||
[[Category:Linux]] |
|||
[[eu:2038 efektua]] |
|||
[[Category:Software bugs]] |
|||
[[fr:Bug de l'an 2038]] |
|||
[[Category:January 2038 events]] |
|||
[[ko:2038년 문제]] |
|||
[[is:2038-vandinn]] |
|||
[[it:Bug dell'anno 2038]] |
|||
[[he:באג 2038]] |
|||
[[hu:2038-probléma]] |
|||
[[ml:വൈ. 2 കെ. 38]] |
|||
[[ja:2038年問題]] |
|||
[[no:År 2038-problemet]] |
|||
[[pl:Problem roku 2038]] |
|||
[[pt:Problema do ano 2038]] |
|||
[[ru:Проблема 2038 года]] |
|||
[[simple:Year 2038 Problem]] |
|||
[[fi:Y2K38]] |
|||
[[sv:År 2038-problemet]] |
|||
[[tr:2038 yılı problemi]] |
|||
[[uk:Проблема 2038 року]] |
|||
[[zh-yue:2038年問題]] |
|||
[[zh:2038年问题]] |
Latest revision as of 19:57, 1 January 2025
The year 2038 problem (also known as Y2038,[1] Y2K38, Y2K38 superbug or the Epochalypse[2][3]) is a time computing problem that leaves some computer systems unable to represent times after 03:14:07 UTC on 19 January 2038.
The problem exists in systems which measure Unix time—the number of seconds elapsed since the Unix epoch (00:00:00 UTC on 1 January 1970)—and store it in a signed 32-bit integer. The data type is only capable of representing integers between −(231) and 231 − 1, meaning the latest time that can be properly encoded is 231 − 1 seconds after epoch (03:14:07 UTC on 19 January 2038). Attempting to increment to the following second (03:14:08) will cause the integer to overflow, setting its value to −(231) which systems will interpret as 231 seconds before epoch (20:45:52 UTC on 13 December 1901). The problem is similar in nature to the year 2000 problem, the difference being the Year 2000 problem had to do with base 10 numbers, whereas the Year 2038 problem involves base 2 numbers.
Analogous storage constraints will be reached in 2106, where systems storing Unix time as an unsigned (rather than signed) 32-bit integer will overflow on 7 February 2106 at 06:28:15 UTC.
Computer systems that use time for critical computations may encounter fatal errors if the year 2038 problem is not addressed. Some applications that use future dates have already encountered the bug.[4][5] The most vulnerable systems are those which are infrequently or never updated, such as legacy and embedded systems. Modern systems and software updates to legacy systems address this problem by using signed 64-bit integers instead of 32-bit integers, which will take 292 billion years to overflow—approximately 21 times the estimated age of the universe.
Cause
[edit]Many computer systems measure time and date using Unix time, an international standard for digital timekeeping. Unix time is defined as the number of seconds elapsed since 00:00:00 UTC on 1 January 1970 (an arbitrarily chosen time based on the creation of the first Unix system), which has been dubbed the Unix epoch.[6]
Unix time has historically been encoded as a signed 32-bit integer, a data type composed of 32 binary digits (bits) which represent an integer value, with 'signed' meaning that the number can represent both positive and negative numbers, as well as zero; and is usually stored in two's complement format.[a] Thus, a signed 32-bit integer can only represent integer values from −(231) to 231 − 1 inclusive. Consequently, if a signed 32-bit integer is used to store Unix time, the latest time that can be stored is 231 − 1 (2,147,483,647) seconds after epoch, which is 03:14:07 on Tuesday, 19 January 2038.[7] Systems that attempt to increment this value by one more second to 231 seconds after epoch (03:14:08) will suffer integer overflow, inadvertently flipping the sign bit to indicate a negative number. This changes the integer value to −(231), or 231 seconds before epoch rather than after, which systems will interpret as 20:45:52 on Friday, 13 December 1901. From here, systems will continue to count up, toward zero, and then up through the positive integers again. As many computer systems use time computations to run critical functions, the bug may introduce serious problems.
Vulnerable systems
[edit]Any system using data structures with signed 32-bit time representations has an inherent risk of failing. A full list of these data structures is virtually impossible to derive, but there are well-known data structures that have the Unix time problem:
- File systems that use 32 bits to represent times in inodes
- Databases with 32-bit time fields
- Database query languages (such as SQL) that have
UNIX_TIMESTAMP()
-like commands
Embedded systems
[edit]Embedded systems that use dates for either computation or diagnostic logging are most likely to be affected by the Y2038 problem.[1] Despite the modern 18–24 month generational update in computer systems technology, embedded systems are designed to last the lifetime of the machine in which they are a component. It is conceivable that some of these systems may still be in use in 2038. It may be impractical or, in some cases, impossible to upgrade the software running these systems, ultimately requiring replacement if the 32-bit limitations are to be corrected.
Many transportation systems from flight to automobiles use embedded systems extensively. In automotive systems, this may include anti-lock braking system (ABS), electronic stability control (ESC/ESP), traction control (TCS) and automatic four-wheel drive; aircraft may use inertial guidance systems and GPS receivers.[b] Another major use of embedded systems is in communications devices, including cell phones and Internet-enabled appliances (e.g. routers, wireless access points, IP cameras) which rely on storing an accurate time and date and are increasingly based on Unix-like operating systems. For example, the Y2038 problem makes some devices running 32-bit Android crash and not restart when the time is changed to that date.[8]
However, this does not imply that all embedded systems will suffer from the Y2038 problem, since many such systems do not require access to dates. For those that do, those systems which only track the difference between times/dates and not absolute times/dates will, by the nature of the calculation, not experience a major problem. This is the case for automotive diagnostics based on legislated standards such as CARB (California Air Resources Board).[9]
Early problems
[edit]In May 2006, reports surfaced of an early manifestation of the Y2038 problem in the AOLserver software. The software was designed with a kludge to handle a database request that should "never" time out. Rather than specifically handling this special case, the initial design simply specified an arbitrary time-out date in the future with a default configuration specifying that requests should time out after a maximum of one billion seconds. However, one billion seconds before the 2038 cutoff date is 01:27:28 UTC on 13 May 2006, so requests sent after this time would result in a time-out date which is beyond the cutoff. This made time-out calculations overflow and return dates that were actually in the past, causing software to crash. When the problem was discovered, AOLServer operators had to edit the configuration file and set the time-out to a lower value.[4][5]
Solutions
[edit]There is no universal solution for the Year 2038 problem. For example, in the C language, any change to the definition of the time_t
data type would result in code-compatibility problems in any application in which date and time representations are dependent on the nature of the signed 32-bit time_t
integer. Changing time_t
to an unsigned 32-bit integer, which would extend the range to 2106[10] (specifically, 06:28:15 UTC on Sunday, 7 February 2106), would adversely affect programs that store, retrieve, or manipulate dates prior to 1970, as such dates are represented by negative numbers. Increasing the size of the time_t
type to 64 bits in an existing system would cause incompatible changes to the layout of structures and the binary interface of functions.
Most operating systems designed to run on 64-bit hardware already use signed 64-bit time_t
integers. Using a signed 64-bit value introduces a new wraparound date that is over twenty times greater than the estimated age of the universe: approximately 292 billion years from now.[11] The ability to make computations on dates is limited by the fact that tm_year
uses a signed 32-bit integer value starting at 1900 for the year. This limits the year to a maximum of 2,147,485,547 (2,147,483,647 + 1900).[12]
Alternative proposals have been made (some of which are already in use), such as storing either milliseconds or microseconds since an epoch (typically either 1 January 1970 or 1 January 2000) in a signed 64-bit integer, providing a minimum range of 292,000 years at microsecond resolution.[13][14] In particular, Java's and JavaScript's use of 64-bit signed integers to represent absolute timestamps as "milliseconds since 1 January 1970" will work correctly for the next 292 million years. Other proposals for new time representations provide different precisions, ranges, and sizes (almost always wider than 32 bits), as well as solving other related problems, such as the handling of leap seconds. In particular, TAI64[15] is an implementation of the International Atomic Time (TAI) standard, the current international real-time standard for defining a second and frame of reference.
Implemented solutions
[edit]- Starting with Ruby version 1.9.2 (released on 18 August 2010), the bug with year 2038 is fixed,[16] by storing time in a signed 64-bit integer on systems with 32-bit
time_t
.[17] - Starting with NetBSD version 6.0 (released in October 2012), the NetBSD operating system uses a 64-bit
time_t
for both 32-bit and 64-bit architectures. Applications that were compiled for an older NetBSD release with 32-bittime_t
are supported via a binary compatibility layer, but such older applications will still suffer from the Y2038 problem.[18] - OpenBSD since version 5.5, released in May 2014, also uses a 64-bit
time_t
for both 32-bit and 64-bit architectures. In contrast to NetBSD, there is no binary compatibility layer. Therefore, applications expecting a 32-bittime_t
and applications using anything different fromtime_t
to store time values may break.[19] - Linux originally used a 64-bit
time_t
for 64-bit architectures only; the pure 32-bit ABI was not changed due to backward compatibility.[20] Starting with version 5.6 of 2020, 64-bittime_t
is supported on 32-bit architectures, too. This was done primarily for the sake of embedded Linux systems.[21] - GNU C Library since version 2.34 (released August 2021), added support for using 64-bit
time_t
on 32-bit platforms with appropriate Linux versions. This support can be activated by defining preprocessor macro_TIME_BITS
to64
when compiling source code.[22] - FreeBSD uses 64-bit
time_t
for all 32-bit and 64-bit architectures except 32-bit i386, which uses signed 32-bittime_t
instead.[23] - The x32 ABI for Linux (which defines an environment for programs with 32-bit addresses but running the processor in 64-bit mode) uses a 64-bit
time_t
. Since it was a new environment, there was no need for special compatibility precautions.[20] - Network File System version 4 has defined its time fields as
struct nfstime4 {int64_t seconds; uint32_t nseconds;}
since December 2000.[24] Version 3 supports unsigned 32-bit values asstruct nfstime3 {uint32 seconds; uint32 nseconds;};
.[25] Values greater than zero for the seconds field denote dates after the 0-hour, January 1, 1970. Values less than zero for the seconds field denote dates before the 0-hour, January 1, 1970. In both cases, the nseconds (nanoseconds) field is to be added to the seconds field for the final time representation. - The ext4 filesystem, when used with inode sizes larger than 128 bytes, has an extra 32-bit field per timestamp, of which 30 bits are used for the nanoseconds part of the timestamp, and the other 2 bits are used to extend the timestamp range to the year 2446.[26]
- The XFS filesystem, starting with Linux 5.10, has an optional "big timestamps" feature which extends the timestamp range to the year 2486.[27]
- While the native APIs of OpenVMS can support timestamps up to 31 July 31086,[28] the C runtime library (CRTL) uses 32-bit integers for
time_t
.[29] As part of Y2K compliance work that was carried out in 1998, the CRTL was modified to use unsigned 32-bit integers to represent time; extending the range oftime_t
up to 7 February 2106.[30] - PostgreSQL since version 7.2, released 2002-02-04, stores timestamp WITHOUT TIMEZONE as 64-bit.[31][failed verification] Prior versions already stored timestamp as 64-bit.[citation needed]
- As of MySQL 8.0.28, released in January 2022, the functions
FROM_UNIXTIME()
,UNIX_TIMESTAMP()
, andCONVERT_TZ()
handle 64-bit values on platforms that support them. This includes 64-bit versions of Linux, macOS, and Windows.[32][33] In older versions, built-in functions likeUNIX_TIMESTAMP()
will return 0 after 03:14:07 UTC on 19 January 2038.[34] - As of MariaDB 11.5.1, released in May 2024, the data type
TIMESTAMP
and functionsFROM_UNIXTIME()
,UNIX_TIMESTAMP()
, andCONVERT_TZ()
handle unsigned 32-bit values on 64-bit versions of Linux, macOS, and Windows.[35] This extended the range to 2106-02-07 06:28:15 and allowed users to store such timestamp values in tables without changing the storage layout and thus staying fully compatible with existing user data. - Starting with Visual C++ 2005, the CRT uses a 64-bit
time_t
unless the_USE_32BIT_TIME_T
preprocessor macro is defined.[36] However, the Windows API itself is unaffected by the year 2038 bug, as Windows internally tracks time as the number of 100-nanosecond intervals since 1 January 1601 in a 64-bit signed integer, which will not overflow until year 30,828.[37]
See also
[edit]- Time formatting and storage bugs lists other similar problems, often caused by rollover similar to the cause of this year 2038 problem.
- A GPS week number rollover will coincidentally happen later in 2038, for a different reason than this year 2038 problem.
Notes
[edit]- ^ Unless otherwise specified, all the numbers provided in this article have been derived using two's complement for signed integer arithmetic.
- ^ GPS suffers its own time counter overflow problem known as GPS Week Number Rollover.
References
[edit]- ^ a b "Is the Year 2038 problem the new Y2K bug?". The Guardian. 17 December 2014. Archived from the original on 25 January 2022. Retrieved 11 October 2018.
- ^ Bergmann, Arnd (6 February 2020). "The end of an Era". Linaro. Archived from the original on 7 February 2020. Retrieved 13 September 2020.
- ^ Wagenseil, Paul (28 July 2017). "Digital 'Epochalypse' Could Bring World to Grinding Halt". Tom's Guide. Archived from the original on 29 November 2021. Retrieved 13 September 2020.
- ^ a b "The Future Lies Ahead". 28 June 2006. Archived from the original on 28 November 2006. Retrieved 19 November 2006.
- ^ a b Weird "memory leak" problem in AOLserver 3.4.2/3.x Archived 4 January 2010 at the Wayback Machine 12 May 2006
- ^ "Epoch Time". unixtutoria. 15 March 2019. Archived from the original on 13 April 2023. Retrieved 13 April 2023.
- ^ Diomidis Spinellis (2006). Code quality: the open source perspective. Effective software development series in Safari Books Online (illustrated ed.). Adobe Press. p. 49. ISBN 978-0-321-16607-4.
- ^ "ZTE Blade running Android 2.2 has 2038 problems". Archived from the original on 19 May 2022. Retrieved 20 November 2018.
- ^ "ARB Test Methods / Procedures". ARB.ca.gov. California Air Resources Board. Archived from the original on 18 November 2016. Retrieved 12 September 2013.
- ^ "DRAFT: Y2038 Proofness Design". Archived from the original on 21 September 2019. Retrieved 25 May 2024.
- ^ "When does the 64-bit Unix time_t really end?". Archived from the original on 23 September 2022. Retrieved 24 September 2022.
- ^ Felts, Bob (17 April 2010). "The End of Time". Stablecross.com. Archived from the original on 11 October 2012. Retrieved 19 March 2012.
- ^ "Unununium Time". Archived from the original on 8 April 2006. Retrieved 19 November 2006.
- ^ Sun Microsystems. "Java API documentation for System.currentTimeMillis()". Archived from the original on 30 September 2017. Retrieved 29 September 2017.
- ^ "TAI64". Archived from the original on 26 September 2012. Retrieved 4 September 2012.
- ^ "Ruby 1.9.2 is released". 18 August 2010. Archived from the original on 8 April 2022. Retrieved 1 April 2022.
- ^ "time.c: use 64bit arithmetic even on platforms with 32bit VALUE". GitHub. Archived from the original on 3 November 2023. Retrieved 3 November 2023.
- ^ "Announcing NetBSD 6.0". 17 October 2012. Archived from the original on 15 January 2016. Retrieved 18 January 2016.
- ^ "OpenBSD 5.5 released (May 1, 2014)". 1 May 2014. Archived from the original on 22 December 2015. Retrieved 18 January 2016.
- ^ a b Jonathan Corbet (14 August 2013). "Pondering 2038". LWN.net. Archived from the original on 4 March 2016. Retrieved 9 March 2016.
- ^ "LKML: Arnd Bergmann: [GIT PULL] y2038: core, driver and file system changes". lkml.org. Archived from the original on 14 February 2020. Retrieved 30 January 2020.
- ^ O'Donell, Carlos (2 August 2021). "The GNU C Library version 2.34 is now available". Sourceware. Archived from the original on 30 April 2024. Retrieved 30 April 2024.
- ^ "arch". www.freebsd.org. Archived from the original on 26 September 2018. Retrieved 26 September 2018.
- ^ Haynes, Thomas; Noveck, David, eds. (March 2015). "Structured Data Types". Network File System (NFS) Version 4 Protocol. sec. 2.2. doi:10.17487/RFC7530. RFC 7530.
- ^ Staubach, Peter; Pawlowski, Brian; Callaghan, Brent (June 1995). "NFS Version 3 Protocol Specification". Retrieved 25 May 2024.
- ^ "ext4 Data Structures and Algorithms". Archived from the original on 13 September 2022. Retrieved 13 September 2022.
- ^ Michael Larabel (15 October 2020). "XFS File-System With Linux 5.10 Punts Year 2038 Problem To The Year 2486". Phoronix. Archived from the original on 13 September 2022. Retrieved 13 September 2022.
- ^ "Why is Wednesday, November 17, 1858 the base time for OpenVMS (VAX VMS)?". Stanford University. 24 July 1997. Archived from the original on 24 July 1997. Retrieved 8 January 2020.
- ^ "VSI C Run-Time Library Reference Manual for OpenVMS Systems" (PDF). VSI. November 2020. Archived from the original (PDF) on 17 April 2021. Retrieved 17 April 2021.
- ^ "OpenVMS and the year 2038". HP. Archived from the original on 17 April 2021. Retrieved 17 April 2021.
- ^ "PostgreSQL Release 7.2". January 2012. Archived from the original on 26 April 2024. Retrieved 25 April 2024.
- ^ "What Is New in MySQL 8.0". dev.mysql.com.
- ^ "Changes in MySQL 8.0.28 (2022-01-18, General Availability)". dev.mysql.com. Archived from the original on 8 December 2023. Retrieved 14 May 2024.
- ^ "MySQL Bugs: #12654: 64-bit unix timestamp is not supported in MySQL functions". bugs.mysql.com. Archived from the original on 29 March 2017. Retrieved 28 March 2017.
- ^ "MariaDB 11.5.1 Release Notes".
- ^ "Microsoft C/C++ change history 2003 - 2015". learn.microsoft.com. 25 May 2023. Retrieved 13 August 2024.
- ^ "About Time - Win32 apps". learn.microsoft.com. 7 January 2021. Retrieved 13 August 2024.
External links
[edit]- Y2038 Proofness Design glibc Wiki
- Entry in How Stuff Works
- The Project 2038 Frequently Asked Questions
- Critical and Significant Dates 2038
- A 2038-safe replacement for time.h on 32 bit systems
- "Solving the Year 2038 problem in the Linux kernel".
- iPhone troubleshooting
- Baraniuk, Chris (5 May 2015). "The number glitch that can lead to catastrophe". BBC Future.
- Clewett, James. "2,147,483,647 – The End of Time [Unix]". Numberphile. Brady Haran. Archived from the original on 22 May 2017. Retrieved 7 April 2013.