Year 2038 problem

From HandWiki
Short description: Computer software bug


An animated visual of the bug in action. The overflow error occurs at 03:14:08.

The Year 2038 problem (also known as Y2038,[1] Y2K38, or the Epochalypse[2][3]) is a time formatting bug in computer systems with representing 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.

Computer systems that use time for critical computations may encounter fatal errors if the Y2038 problem is not addressed. Some applications that use future dates have already encountered the bug. The most vulnerable systems are those which are infrequently or never updated, such as legacy and embedded systems. There is no universal solution to the problem, though many modern systems have been upgraded to measure Unix time with signed 64-bit integers which will not overflow for 292 billion years.

Cause

Many computer systems measure time and date as 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), which has been dubbed the Unix epoch.

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 one bit is reserved to indicate sign (+/–). 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.[4] 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, towards zero, and then up through the positive integers again. As many computer systems use time computations to run critical functions, the bug may introduce fatal errors.

Vulnerable systems

Any system using data structures with 32-bit time representations has an inherent risk to fail. 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 (many file systems use only 32 bits to represent times in inodes)
  • Binary file formats (that use 32-bit time fields)
  • Databases (that have 32-bit time fields)
  • Database query languages, like SQL that have UNIX_TIMESTAMP()-like commands

Embedded systems

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.[note 1] 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.[5]

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).[6]

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 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 32 years) after 01:27:28 UTC on 13 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, AOLServer operators had to edit the configuration file and set the time-out to a lower value.[7][8]

Players of games or apps which are programmed to impose waiting periods[9] are running into this problem when the players try to bypass the waiting period by setting the date on their devices to a date past 19 January 2038, but are unable to do so, since a 32-bit Unix time format is being used.

Solutions

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. For example, changing time_t to an unsigned 32-bit integer, which would extend the range to 2106 (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. 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).[10]

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 300,000 years at microsecond resolution.[11][12] In particular, Java's use of 64-bit long integers everywhere to represent time 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[13] 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

  • Starting with Ruby version 1.9.2, the bug with year 2038 is fixed.[14]
  • 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-bit time_t are supported via a binary compatibility layer, but such older applications will still suffer from the Y2038 problem.[15]
  • 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-bit time_t and applications using anything different from time_t to store time values may break.[16]
  • 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.[17] Starting with version 5.6, 64-bit time_t is supported on 32-bit architectures, too. This was done primarily for the sake of embedded Linux systems.[18]
  • FreeBSD uses 64-bit time_t for all 32-bit and 64-bit architectures except 32-bit i386, which uses signed 32-bit time_t instead.[19]
  • 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.[17]
  • Network File System version 4 has defined its time fields as struct nfstime4 {int64_t seconds; uint32_t nseconds;} since December 2000.[20] 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.
  • While the native APIs of OpenVMS can support timestamps up to the 31st of July 31086,[21] the C runtime library (CRTL) uses 32-bit integers for time_t.[22] 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 time_t up to the 7th of February 2106.[23]
  • Starting with Telegram version 8.0.1 (for Android and IOS), version 3.1.0 (for Windows) switched from int32 to int64.
  • As of MySQL 8.0.28, the functions FROM_UNIXTIME(), UNIX_TIMESTAMP(), and CONVERT_TZ() handle 64-bit values on platforms that support them. This includes 64-bit versions of Linux, MacOS, and Windows.[24] In relational database versions prior to August 2021, built-in functions like UNIX_TIMESTAMP() will return 0 after 03:14:07 UTC on 19 January 2038.[25]

See also

Notes

  1. GPS suffers its own time counter overflow problem known as GPS Week Number Rollover.

References

  1. 1.0 1.1 "Is the Year 2038 problem the new Y2K bug?". The Guardian. 17 December 2014. https://www.theguardian.com/technology/2014/dec/17/is-the-year-2038-problem-the-new-y2k-bug. 
  2. Bergmann, Arnd (February 6, 2020). "The end of an Era". Linaro. https://www.linaro.org/blog/the-end-of-an-era/. 
  3. Wagenseil, Paul (July 28, 2017). "Digital 'Epochalypse' Could Bring World to Grinding Halt". Tom's Guide. https://www.tomsguide.com/us/2038-bug-bh2017,news-25551.html. 
  4. 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. https://books.google.com/books?id=vEN-ckcdtCwC&q=292%2C277%2C026%2C596&pg=PA49. 
  5. "ZTE Blade running Android 2.2 has 2038 problems". https://issuetracker.google.com/issues/36928638. 
  6. "ARB Test Methods / Procedures". California Air Resources Board. http://www.arb.ca.gov/testmeth/testmeth.htm#vehicles. 
  7. "The Future Lies Ahead". 28 June 2006. http://substitute.livejournal.com/1430908.html. 
  8. Weird "memory leak" problem in AOLserver 3.4.2/3.x 12 May 2006
  9. Fahey, Mike (21 January 2013). "Infinite Lives in Candy Crush Saga Isn't Cheating, It's Time Travel". http://kotaku.com/5977630/infinite-lives-in-candy-crush-saga-isnt-cheating-its-time-travel. 
  10. Felts, Bob (17 April 2010). "The End of Time". http://stablecross.com/files/End_Of_Time.html. 
  11. "Unununium Time". http://unununium.org/articles/uuutime. 
  12. Sun Microsystems. "Java API documentation for System.currentTimeMillis()". https://docs.oracle.com/javase/9/docs/api/java/lang/System.html#currentTimeMillis--. 
  13. "TAI64". http://cr.yp.to/libtai/tai64.html. 
  14. "Ruby 1.9.2 is released". 18 August 2010. https://www.ruby-lang.org/en/news/2010/08/18/ruby-1-9-2-released/. 
  15. "Announcing NetBSD 6.0". 17 October 2012. https://www.netbsd.org/releases/formal-6/NetBSD-6.0.html. 
  16. "OpenBSD 5.5 released (May 1, 2014)". 1 May 2014. http://www.openbsd.org/plus55.html. 
  17. 17.0 17.1 Jonathan Corbet (14 August 2013). "Pondering 2038". https://lwn.net/Articles/563285/. 
  18. "LKML: Arnd Bergmann: [GIT PULL y2038: core, driver and file system changes"]. https://lkml.org/lkml/2020/1/29/355?anz=web. 
  19. "Arch". https://www.freebsd.org/cgi/man.cgi?arch. 
  20. Haynes, Thomas; Noveck, David, eds. (March 2015), Network File System (NFS) Version 4 Protocol, sec. 2.2, doi:10.17487/RFC7530, RFC 7530, https://tools.ietf.org/html/rfc7530 
  21. "Why is Wednesday, November 17, 1858 the base time for OpenVMS (VAX VMS)?". 1997-07-24. https://www.slac.stanford.edu/~rkj/crazytime.txt. 
  22. "VSI C Run-Time Library Reference Manual for OpenVMS Systems". VSI. November 2020. https://vmssoftware.com/docs/VSI_CRTL_REF.pdf. 
  23. "OpenVMS and the year 2038". HP. https://www.zx.net.nz/mirror/h71000.www7.hp.com/2038.html. 
  24. "What Is New in MySQL 8.0". https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-additions. 
  25. "MySQL Bugs: #12654: 64-bit unix timestamp is not supported in MySQL functions". https://bugs.mysql.com/bug.php?id=12654. 

External links